/* =============================================
   Components – карточки, новости, видео, табы, формы и пр.
   ============================================= */

/* -------- Новости -------- */
.gc-news-list {
    list-style-type: none;
    margin-left: 0;
}
.gc-news-list-item {
    margin-top: 20px;
}
.gc-news-img-wraper {
    position: relative;
}
.gc-news-img-wraper img {
    max-height: 580px;
    object-fit: cover;
}
.gc-news-category {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-transform: uppercase;
    padding: 10px;
    font-weight: 700;
    background-color: rgba(74, 74, 74, 0.46);
    text-align: left;
}
.gc-news-category a {
    color: #fff;
}
.gc-news-img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.gc-news-link {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff !important;
    text-transform: uppercase;
    padding: 10px 10px 25px;
    font-weight: 700;
    background-color: rgba(74, 74, 74, 0.46);
    text-align: left;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gc-news-date {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding: 5px;
}
li:nth-child(1).gc-news-list-item .gc-news-content {
    display: none;
}
.gc-news-list-item:after {
    content: "";
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-top: 40px;
}
li:nth-child(2).gc-news-list-item .gc-news-img-wraper,
li:nth-child(3).gc-news-list-item .gc-news-img-wraper,
li:nth-child(4).gc-news-list-item .gc-news-img-wraper {
    width: 40%;
    float: left;
    margin-right: 10px;
    height: 175px;
}
li:nth-child(2).gc-news-list-item .gc-news-category,
li:nth-child(2).gc-news-list-item .gc-news-link,
li:nth-child(2).gc-news-list-item .gc-news-date,
li:nth-child(3).gc-news-list-item .gc-news-category,
li:nth-child(3).gc-news-list-item .gc-news-link,
li:nth-child(3).gc-news-list-item .gc-news-date,
li:nth-child(4).gc-news-list-item .gc-news-category,
li:nth-child(4).gc-news-list-item .gc-news-link,
li:nth-child(4).gc-news-list-item .gc-news-date {
    display: none;
}
li:nth-child(2).gc-news-list-item img,
li:nth-child(3).gc-news-list-item img,
li:nth-child(4).gc-news-list-item img {
    width: 100%;
    max-height: 170px;
    height: 170px;
    object-fit: cover;
}
.gc-news-content {
    font-size: 14px;
    text-align: left;
    height: 190px;
}
.gc-news-small-link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    font-size: 16px;
    color: #000 !important;
    font-weight: 700;
}
.gc-news-description a {
    transition: 0.3s ease-in;
    color: #ff7b31;
}
.gc-news-description a:hover,
.gc-news-description a:focus {
    text-decoration: underline;
    text-decoration-color: #b0590e;
}
.gc-news-category-link {
    display: block;
    width: 150px;
    margin: 0 auto;
    margin-top: 30px;
    border: 1px solid #656565;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease-in;
}
.gc-news-category-link:hover {
    color: #fff;
    background-color: #fd7f33;
    border: 1px solid #fd7f33;
}
a.gc-news-category-link {
    color: #656565;
}

/* -------- YouTube плеер -------- */
.youtube {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    overflow: hidden;
    transition: all .2s ease-out;
    cursor: pointer;
    margin: 0 auto 0 auto;
}
.youtube .play {
    background: grey;
    border-radius: 50%/10%;
    color: #fff;
    font-size: 2em;
    height: 1.7em;
    margin: 150px auto;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: .1em;
    width: 2.7rem;
    transition: .3s ease-in;
}
.youtube .play:before {
    background: inherit;
    border-radius: 5%/50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%;
}
.youtube .play:after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
    content: ' ';
    font-size: .6em;
    height: 0;
    margin: -1em 0 0 -.75em;
    top: 50%;
    position: absolute;
    width: 0;
}
.youtube .play:hover {
    background: #cc181e;
}

/* -------- Спойлер -------- */
.spoiler-parent {
    position: relative;
}
.spoiler-overlay {
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), #fff);
    background-image: linear-gradient(transparent, #fff);
    height: 80%;
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    display: block;
}
.spoiler-parent.spoiler-active .spoiler-overlay {
    display: none;
}
.spoiler-children {
    max-height: 135px;
    overflow: hidden;
    -webkit-transition: max-height .5s;
    transition: max-height .5s;
    transition: .5s;
    padding: 20px;
    padding-top: 0;
}
.spoiler-parent.spoiler-active .spoiler-children {
    max-height: 5000px;
    -webkit-transition: max-height .9s;
    transition: max-height .1s;
}
.spoiler-btn {
    cursor: pointer;
    border-radius: 3px;
    border: 2px solid #fd7f33;
    align-items: center;
    transition: .5s;
    margin: 20px auto 0;
    width: 100px;
    position: relative;
    z-index: 9;
}
.spoiler-container i.fa.fa-angle-double-down {
    font-size: 30px;
    display: block;
    text-align: center;
    color: #fd7f33;
    transition: .5s;
}
.spoiler-parent.spoiler-active i.fa.fa-angle-double-down {
    transform: rotate(180deg);
    transition: .5s;
}

/* -------- Форма в правой части -------- */
.gc-right-form {
    height: 580px;
    max-width: 380px;
    margin: 0 auto;
    background-color: #eee;
    box-shadow: 14px 11px 12px -2px rgba(0, 0, 0, 0.28);
    margin-bottom: 35px;
}
.gc-right-form .wpcf7 {
    padding: 0 30px;
}
.form-logo-box {
    padding: 30px 0;
}
.form-logo-img {
    width: 150px;
    display: block;
    margin: 0 auto;
}
.title-form h3 {
    text-align: center;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
}
.gc-right-wrapp {
    width: 100%;
    position: relative;
}
.gc-right-form input {
    border: 0 solid;
    background-color: transparent;
    max-width: 100%;
    outline: 0;
}
.your-name,
.your-email,
.your-message,
.intl-tel-input input {
    width: 100%;
    display: block;
    background-color: transparent;
    border-bottom: 1px solid #cccfd8;
}
.intl-tel-input {
    width: 100%;
}
.right-form-phone {
    display: block;
    width: 100% !important;
}
.gc-right-form textarea {
    border: 0 solid;
    background-color: transparent;
    resize: none;
    outline: 0;
    height: 70px;
}
.gc-recap-box {
    margin-top: 20px;
}
.wpcf7-form-control-wrap {
    display: flex;
    justify-content: center;
}
.cf7-right-button-wrap {
    margin-top: 20px;
    display: block;
    width: 100%;
}
.gc-right-form input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    border: 0 solid;
    background-color: #ff7b31;
    height: 46px;
    border-radius: 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    margin: 0 auto;
    padding: 0px;
    transition: .3s ease-in;
}
.gc-right-form input.wpcf7-form-control.wpcf7-submit:hover,
.gc-right-form input.wpcf7-form-control.wpcf7-submit:focus {
    border: 1px solid #ff7b31;
    background-color: transparent;
    color: #ff7b31;
}

/* -------- Связанные товары / посты -------- */
.related_ch.autoplay {
    float: left;
    display: inline-block;
    border: 1px solid #ececec;
    height: 230px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px;
}
.third-post {
    width: 50%;
}
.third-post:last-child {
    width: 100%;
}
.related_post {
    width: 100%;
    float: right;
    margin-bottom: 30px;
    margin-top: 35px;
}
.related_ch__img {
    color: #5a5a5a;
    transition: .3s ease-in;
}
.related_ch__img:hover,
.related_ch__img:focus {
    color: #ff7701;
}
.related_ch__img img {
    height: 160px;
    width: 100%;
    object-fit: scale-down;
    text-align: center;
}

/* -------- Фильтр (ajax) -------- */
.gc-form-list {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    margin: 0 0 30px 0;
}
.gc-form-list__item {
    font-family: Roboto;
    color: #5a5a5a;
    font-size: 24px;
    font-weight: 300;
    text-align: left;
    position: relative;
    float: left;
    display: block;
    padding: 0 10px;
    border-bottom: 1px solid #5a5a5a;
}
.gc-form-list__item:hover {
    cursor: pointer;
    color: #d88c23;
}
.gc-form-list__item:hover .filter-submenu {
    left: auto;
}
.filter-submenu {
    color: #5a5a5a;
    font-size: 21px;
    list-style-type: none;
    text-align: left;
    position: absolute;
    top: 36px;
    left: -9999px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 5px 32px -8px #000;
    cursor: pointer;
    padding: 0 10px;
    margin-left: 0;
}
.filter-content {
    margin-top: 30px;
    margin-bottom: 80px;
}
.year-list {
    width: 85px;
}
.category-list {
    width: 275px;
}
.sort-list {
    width: 105px;
}

/* -------- Посты в списке -------- */
.post-list-info {
    width: 70%;
    height: auto;
    text-align: center;
    background: #fff;
    z-index: 2;
    box-shadow: 3px 2px 5px 0px rgba(0, 0, 0, 0.75);
    padding: 15px 30px;
    position: relative;
    float: right;
    margin-top: -80px;
    margin-bottom: 60px;
}
.post-list-info:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #bababa;
    position: absolute;
    left: 0;
    bottom: -30px;
}
div.pfpItem img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}
.cg-read-more {
    display: block;
    width: 170px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #656565;
    border: 1px solid #656565;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 2px;
    text-decoration: none;
    transition: .3s ease-in;
}
.cg-read-more:hover {
    background-color: #656565;
    color: #fff;
}
.alm-btn-wrap {
    margin-bottom: 30px;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}
.ajax-load-more-wrap {
    position: relative;
    display: flex;
}
.alm-load-more-btn {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    width: 160px;
    height: 50px;
    color: #ff7b31;
    overflow: hidden;
    font-weight: 300;
    cursor: pointer;
    background: transparent;
    border: 1px solid #ff7b31;
    transition: all .3s ease-in;
    padding: 0;
}
.alm-load-more-btn:hover,
.alm-load-more-btn:focus {
    background-color: #ff7b31;
    color: #fff;
}
@media screen and (max-width: 64.06125em) {
    .post-list-info-title {
        font-size: 1.55rem;
    }
}
@media screen and (max-width: 40.06125em) {
    .post-wraper {
        height: 250px;
        margin-bottom: 300px;
    }
    .post-list-info {
        width: 100%;
        margin-top: -20px;
    }
    .post-list-info p {
        font-size: 0.9rem;
    }
    .post-list-info-title {
        font-size: 1.3rem;
    }
    .gc-form-list {
        margin: 30px 0 30px 0;
    }
}

/* -------- Страница товара (single product) -------- */
.gc-single-product__img-wrap {
    height: 580px;
    position: relative;
}
.gc-single-product__img-wrap img {
    width: 100%;
    max-height: 580px;
    object-fit: contain;
}
.gc-single-product__price {
    position: absolute;
    width: 200px;
    right: 0;
    text-align: right;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.gc-single-product__shop-link {
    position: absolute;
    right: 0;
    bottom: 15px;
    color: #fff;
    background-color: #ff7701;
    padding: 10px 30px;
    border: 2px solid #ff7701;
    transition: .3s ease-in;
    text-transform: uppercase;
    font-weight: 600;
}
.gc-single-product__shop-link:hover,
.gc-single-product__shop-link:focus {
    color: #ff7701;
    background-color: #fff;
}
.gc-single-product__shop-price {
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0;
}
.gc-single-product__configurator_link {
    background-image: url(../images/configurator.svg);
    background-repeat: no-repeat;
    background-position: right 5px;
    position: absolute;
    right: 0;
    bottom: 20px;
    padding: 7px 45px 0 0;
    height: 50px;
    text-transform: uppercase;
    color: #ff7b31;
    transition: .3s ease-in;
    font-size: 24px;
}
.gc-single-product__configurator_link:hover,
.gc-single-product__configurator_link:active {
    color: #ff7b31;
    text-decoration: underline;
}
.page-id-14269 .gc-page-title {
    text-align: right;
}
.postid-31127 .gc-breadcrumbs {
    display: none;
}

/* -------- Табы -------- */
.gc-tabs {
    margin-bottom: 30px;
    width: 100%;
}
.tabs {
    display: flex;
}
.tabs .tabs-title {
    transition: .3s ease-in;
    flex: 1;
}
.tabs .tabs-title a {
    color: #5a5a5a;
    font-size: 14px;
}
.tabs .tabs-title a:hover {
    background: rgba(255, 123, 49, 0.8);
    color: #fff;
}
.gc-tab-link {
    background: #ff7701;
    color: #fff;
}
.tabs-title > a:focus,
.tabs-title > a[aria-selected='true'] {
    background: rgba(255, 123, 49, 0.8);
    color: #fff;
}

/* -------- Видео на странице товара (youtube-single) -------- */
.youtube-single {
    background-size: cover;
    height: 440px;
    background-repeat: no-repeat;
    background-position: center center;
}
.youtube-single .play {
    background: grey;
    border-radius: 50% / 10%;
    color: #FFF;
    font-size: 2em;
    height: 1.7em;
    padding: 0;
    text-indent: 0.1em;
    transition: all 150ms ease-out;
    width: 2.7em;
    transition: .2s ease-in;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.youtube-single .play:hover {
    background: #cc181e;
    cursor: pointer;
}
.youtube-single .play:before {
    background: inherit;
    border-radius: 5% / 50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%;
}
.youtube-single .play:after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
    content: ' ';
    font-size: 0.6em;
    height: 0;
    margin: -1em 0 0 -0.75em;
    top: 50%;
    left: 50%;
    position: absolute;
    width: 0;
}

/* -------- Форма "Запрос цены" -------- */
.price-form {
    background-color: #eee;
    padding: 30px 15px;
}
.form-quote {
    display: block;
    margin-top: 20px;
}
.price-form-name,
.price-form-phone,
.price-form-mail {
    background-color: transparent;
    border: none;
}
.quote-for {
    background-color: transparent;
}
.price-form-msg {
    width: 100%;
    margin-bottom: 15px;
    background-color: transparent;
}
@media screen and (max-width: 64.06125em) {
    .gc-single-product__img-wrap {
        height: 450px;
        display: flex;
        align-items: center;
    }
    .gc-single-product__img-wrap img {
        max-height: 450px;
    }
    .tabs {
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 40.06125em) {
    #tab-2 {
        overflow: scroll;
    }
    div.youtube-single {
        height: 280px;
    }
}

/* -------- Конфигуратор (6-7) -------- */
.page-template-configurator-6-7 #ezfc_element-1,
.page-template-configurator-6-7 #ezfc_element-2,
.page-template-configurator-6-7 .ezfc-price-wrapper-element {
    position: fixed !important;
    right: 1%;
    width: calc(((100% - 2% - 1rem * 11) / 12) * 4 - -2.25rem * 3);
    z-index: 2;
    padding: 0;
}
#ezfc_element-1 {
    top: 117px;
    background-color: #fff;
    padding-top: 10px;
    display: flex;
}
#ezfc_element-1 label {
    padding-left: 0 !important;
    width: 40%;
}
#ezfc_element-1 input {
    width: 60%;
}
#ezfc_element-2 {
    top: 175px;
    background-color: #fff;
    padding-top: 10px;
    display: flex;
}
#ezfc_element-2 label {
    padding-left: 0 !important;
    width: 40%;
}
#ezfc_element-2 input {
    width: 60%;
}
#ezfc_element-709,
#ezfc_element-710 {
    padding-bottom: 0;
    display: flex;
}
#ezfc_element-709 label,
#ezfc_element-710 label {
    width: 40%;
    font-size: 1em;
}
#ezfc_element-709 input,
#ezfc_element-710 input {
    width: 60%;
    font-weight: 600;
}
#ezfc_element-713 {
    padding-top: 3.25rem;
}
.ezfc-element-radio label {
    display: none !important;
}
.ezfc-element-wrapper-radio > label,
.ezfc-element-wrapper-checkbox > label {
    font-weight: 600 !important;
}
div.ui-draggable-handle.is-open {
    bottom: 20vh !important;
}
.gc-shop-single {
    padding: 30px 0;
}
.gc-shop-single__cat {
    display: none;
}
.gc-shop-single__content {
    margin-bottom: 15px;
}
.gc-shop-single .cart {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.gc-shop-single .amount {
    font-size: 20px;
    font-weight: 600;
}
.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background-color: #ff7b31;
    border: 2px solid #ff7b31;
    transition: .3s ease-in;
}
.woocommerce button.button.alt:active,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:active,
.woocommerce a.button.alt:hover {
    background-color: #fff;
    color: #ff7b31;
}

/* -------- Конфигуратор (страницы) -------- */
.page-template-configurator-6-7 .gc-breadcrumbs {
    display: none;
}
.page-template-configurator-6-7 .gc-footer {
    display: none;
}
.page-template-configurator-6-7 .gc-page-title {
    padding-left: 16%;
}
@media screen and (max-width: 40.06125em) {
    .page-template-configurator-6-7 .gc-page-title {
        padding: 0;
        margin: 0;
    }
}
.conf-left-box {
    width: calc(((100% - 17% - 2.25rem * 11) / 12) * 8 - -2.25rem * 7 - -7%);
    position: fixed;
    left: 0;
    box-sizing: border-box;
    z-index: 2;
    background-color: #fff;
}
@media screen and (max-width: 75.06125em) {
    .conf-left-box {
        width: calc(((100% - 20% - 2.25rem * 11) / 12) * 8 - -2.25rem * 7 - -7%);
    }
}
@media screen and (max-width: 64.06125em) {
    .conf-left-box {
        width: calc(((100% - 20% - 2.25rem * 11) / 12) * 8 - -2.25rem * 7 - -7%);
    }
}
@media screen and (max-width: 40.06125em) {
    .conf-left-box {
        width: 100%;
        z-index: 3;
    }
}
.conf-right-box {
    top: 175px;
    right: 2%;
    width: calc(((100% - 14% - 2.25rem * 11) / 8.7) * 4 - -2.25rem * 3);
    padding-bottom: 1.5rem;
    box-sizing: border-box;
    position: absolute;
    z-index: 2;
}
@media screen and (max-width: 75.06125em) {
    .conf-right-box {
        width: calc(((100% - 0% - 2.25rem * 11) / 8.7) * 4 - -2.25rem * 3);
    }
}
@media screen and (max-width: 64.06125em) {
    .conf-right-box {
        width: calc(((100% - 0% - 2.25rem * 11) / 8.7) * 4 - -2.25rem * 3);
    }
}
@media screen and (max-width: 900px) and (min-width: 641px) {
    .conf-right-box {
        top: 162px;
    }
}
@media screen and (max-width: 40.06125em) {
    .conf-right-box {
        top: 340px;
        width: 96%;
        left: 2%;
        right: 2%;
        margin: 0 auto;
    }
}
.conf-right-box .ezfc-form {
    padding: 55px 0 0 0 !important;
}
@media screen and (max-width: 900px) and (min-width: 641px) {
    .conf-right-box .ezfc-form {
        padding: 110px 0 0 0 !important;
    }
}
.gc-configurator-6-7-img-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media screen and (max-width: 40.06125em) {
    .gc-configurator-6-7-img-wrap {
        max-height: 145px;
    }
}
.gc-configurator-6-7-img-wrap img {
    max-width: 50%;
    object-fit: contain;
    margin: 0 auto;
}
@media screen and (max-width: 64.06125em) {
    .gc-configurator-6-7-img-wrap img {
        width: 100%;
    }
}
@media screen and (max-width: 900px) and (min-width: 641px) {
    .gc-configurator-6-7-img-wrap img {
        width: 100%;
    }
}
.gc-configurator-6-7-img-wrap__notice {
    display: block;
    text-align: left;
    font-size: 14px;
    color: red;
    padding: 0 15px;
}
.page-template-configurator-6-7 .ezfc-price-wrapper-element {
    display: flex;
    align-items: center;
    width: calc(((100% - 14% - 2.25rem * 11) / 8.7) * 4 - -2.25rem * 3);
    top: 120px;
    right: 2%;
    background-color: #fff;
    padding: 10px 0;
}
@media screen and (max-width: 75.06125em) {
    .page-template-configurator-6-7 .ezfc-price-wrapper-element {
        width: calc(((100% - 0% - 2.25rem * 11) / 8.7) * 4 - -2.25rem * 3);
        top: 120px;
    }
}
@media screen and (min-width: 641px) and (max-width: 900px) {
    .page-template-configurator-6-7 .ezfc-price-wrapper-element {
        top: 130px;
    }
}
@media screen and (max-width: 40.06125em) {
    .page-template-configurator-6-7 .ezfc-price-wrapper-element {
        width: 96%;
        left: 2%;
        right: 2%;
        margin: 0 auto;
        top: 255px;
        z-index: 10;
    }
}
.page-template-configurator-6-7 .ezfc-price-wrapper-element label {
    padding-left: 0 !important;
    width: 40%;
    font-weight: 600 !important;
    font-size: 18px !important;
}
.page-template-configurator-6-7 .ezfc-price-wrapper-element .ezfc-price-wrapper {
    width: 60%;
}

/* -------- USB конфигуратор -------- */
.page-template-usb-configurator .gc-breadcrumbs {
    display: none;
}
.page-template-usb-configurator .gc-footer {
    display: none;
}
body.admin-bar .gc-usb-configurator__img-box {
    position: fixed;
    top: 225px;
    left: 0;
}
body.admin-bar .gc-usb-configurator__conf-box {
    position: absolute;
    right: 0;
    top: 225px;
}
body.admin-bar .gc-usb-configurator .ezfc-price-wrapper-element {
    top: 120px;
}
.gc-usb-configurator .ezfc-price-wrapper-element {
    position: fixed;
    width: calc(50% - 1.875rem);
    top: 90px;
    right: 15px;
    background-color: #fff;
    padding: 15px 30px;
}

/* -------- Поиск результатов -------- */
.gc-search-result-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.gc-search-result-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
}

/* -------- Калькулятор окупаемости -------- */
.page-template-payback-calculator .ezfc-text-currency {
    display: none;
}

/* -------- Tech School -------- */
.page-template-tech_school .gc-breadcrumbs {
    z-index: 20;
}
.gc-tech-school {
    margin-top: -55px;
    margin-bottom: 30px;
}
@media screen and (max-width: 56.25em) {
    .gc-tech-school {
        margin-top: -45px;
    }
}
@media screen and (max-width: 48.875em) {
    .gc-tech-school {
        margin-top: -58px;
    }
}
@media screen and (max-width: 40em) {
    .gc-tech-school {
        margin-top: -68px;
    }
}
.gc-tech-school__inner {
    padding-top: 15px;
}
@media screen and (max-width: 42.1875em) {
    .gc-tech-school__header-img {
        display: none;
    }
}
.gc-tech-school-header {
    background: #a2a6a6;
    background: linear-gradient(0deg, #a2a6a6 48%, #ebebeb 100%);
}
.gc-tech-school-header__inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 42.1875em) {
    .gc-tech-school-header__inner {
        height: 90px;
    }
}
.gc-tech-school-title {
    position: absolute;
    bottom: 0;
}
.gc-tech-school-title img {
    margin-left: 6px;
}
.gc-tech-school-right {
    padding-left: 45px;
}
.gc-tech-school-webinar-registration {
    background: rgba(255, 123, 49, 0.8);
    box-shadow: 14px 11px 12px -2px rgba(0, 0, 0, 0.28);
    margin-bottom: 40px;
    transition: .3s ease-in;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gc-tech-school-webinar-registration:hover {
    transform: scale(1.03);
}
.gc-tech-school-webinar-registration a {
    color: #fff;
    text-align: center;
}
.gc-tech-school-webinar-registration a:hover,
.gc-tech-school-webinar-registration a:focus {
    cursor: pointer;
}
@media screen and (max-width: 40em) {
    .gc-tech-school-webinar-registration {
        margin-top: 55px;
    }
}
.page-template-tech_school .gc-right-form {
    height: auto;
}
.page-template-tech_school .gc-right-form input.wpcf7-form-control.wpcf7-submit {
    border-radius: 0;
    box-shadow: 14px 11px 12px -2px rgba(0, 0, 0, 0.28);
}
.gc-right-form-tech-school {
    padding-top: 40px;
}
.webinar-list {
    list-style-type: none;
    margin: 0;
}
.webinar-list__item {
    margin-top: 15px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}
.webinar-list__item-topic,
.webinar-list__item-date {
    display: flex;
    flex-direction: column;
}
.webinar-list__item-topic span,
.webinar-list__item-date span {
    color: rgba(255, 123, 49, 0.8);
}
.tech-school-tabs {
    border: none;
    border-bottom: 1px solid #eee;
}
.tech-school-tabs .tabs-title a {
    text-transform: uppercase;
}
.tech-school-tabs .tabs-title > a:focus,
.tech-school-tabs .tabs-title > a[aria-selected='true'] {
    background: transparent;
    color: rgba(255, 123, 49, 0.8);
}
.tech-school-tabs .tabs-title a:hover {
    color: rgba(255, 123, 49, 0.8);
    background: transparent;
}
.tech-school-tabs-content {
    border: none;
    margin-top: 40px;
}
.tech-school-tabs-content .tabs-panel {
    padding: 0;
}
.next-webinar-img {
    display: flex;
    justify-content: center;
}
.certificate-img {
    display: flex;
    justify-content: center;
}
.certificate-img img {
    max-width: 80%;
}
@media screen and (max-width: 48.4375em) {
    .tech-school-form .wpcf7-form-control-wrap div {
        transform: scale(0.9);
    }
}
@media screen and (max-width: 40em) {
    .tech-school-form .wpcf7-form-control-wrap div {
        transform: scale(1);
    }
}

/* -------- Текстовый контент (страницы) -------- */
.gc-text-info-content {
    max-height: 600px;
    padding: 15px 0;
}
.gc-text-info-content img {
    max-height: 600px;
    object-fit: contain;
}
.preview {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.preview__meta {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
}
@media screen and (max-width: 40.06125em) {
    .preview__thumb {
        margin-bottom: 20px;
    }
}
.entry__thumb {
    margin-bottom: 20px;
}
.entry__meta {
    color: #666;
    font-size: 14px;
}
.entry__cat {
    margin-top: 20px;
}
.gc-single-post__img-wrap {
    height: 580px;
}
.gc-single-post__img-wrap img {
    width: 100%;
    max-height: 580px;
    object-fit: contain;
}
.gc-products-page {
    padding-bottom: 50px;
}

/* ---- Ezfc price (общий) ---- */
.ezfc-price-wrapper-element {
    top: 88px !important;
    right: 0;
}