/* Author: Javier López López
   Version: 1.0
   File Description: Css file for products sections styles
*/

/*--------------------------------------------------------------
# Configurator
--------------------------------------------------------------*/

.configurator {
    padding: 40px 0 100px;
}

.bg-forest {
    min-height: 100vh;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.bg-overlay {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}

@media(min-width: 1500px) {
    .configurator {
        padding: 70px 0 100px;
    }
}

@media(min-width: 1700px) {
    .configurator {
        padding: 80px 0 100px;
    }
}


.configurator .tab-content {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.configurator .progress {
    height: 10px;
    margin-bottom: 40px !important;
}

.configurator .progress .progress-bar {
    background-image: inherit;
    background-color: var(--thm-base) !important;
    border-radius: 20px 40px 0 20px;
}

.configurator .quest-title {
    margin-bottom: 30px !important;
    width: 100%;
}

.configurator .quest-answers {
    display: inline-flex;
    flex-flow: column;
    margin-bottom: 30px;
}

.configurator .answers-inline {
    flex-flow: row;
    flex-wrap: wrap;
}

input.hidden-answer {
    display: none;
}

.quest-answer {
    min-width: 240px;
    margin-right: 12px;
}

@media screen and (max-width: 768px) {
    .bg-forest {
        background-image: url(../images/bg_forest_mobile.avif);
    }

    .quest-answers,
    .quest-answer {
        width: 100%;
    }

    .quest-answer {
        margin-right: 0;
    }
}

.conf-product {
    border: 2px solid var(--thm-base);
    border-radius: 8px;
}

.conf-product li {
    list-style: none;
}

form .error {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .75rem;
    color: #f1556c;
    line-height: 1.5;
}

.product-selected img {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
}

.extra-title {
    font-weight: bold;
}

.extra-title span {
    font-family: Montserrat-Bold;
}


/*--------------------------------------------------------------
# Conf btn
--------------------------------------------------------------*/

.conf-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--thm-secondary)), to(var(--thm-base)));
    background-image: linear-gradient(90deg, var(--thm-secondary) 0%, var(--thm-base) 100%);
    border-radius: 31px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 12px 50px 12px 50px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    line-height: 36px;
    width: 100%;
}

.conf-next {
    padding-right: 70px;
}

.conf-btn:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #fff;
    border-radius: 31px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.conf-btn span {
    position: relative;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--thm-base)), to(var(--thm-secondary)));
    background-image: linear-gradient(90deg, var(--thm-base) 0%, var(--thm-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.conf-btn:hover::before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
}

.conf-btn:hover span {
    background-image: none;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}

.conf-btn.conf-next:after {
    content: "";
    width: 26px;
    height: 26px;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../images/arrow-right.png);
    filter: invert(21%) sepia(99%) saturate(1438%) hue-rotate(181deg) brightness(99%) contrast(103%);
    margin-left: 20px;
    position: absolute;
    right: 30px;
    top: calc(50% - 12.5px);
    -webkit-transition: all 0s .2s, transform .2s ease-in;
    -o-transition: all 0s .2s, transform .2s ease-in;
    transition: all 0s .2s, transform .2s ease-in;
    background-size: 25px;
}

.conf-btn-icon span {
    display: flex;
    justify-content: space-evenly;
}

.conf-btn-icon svg {
    position: absolute;
    right: 32px;
    top: 0;
    bottom: 0;
    filter: invert(18%) sepia(100%) saturate(2239%) hue-rotate(187deg) brightness(94%) contrast(101%);
    transition: all 0s .2s;
}

.conf-btn-icon:hover svg {
    filter: invert(100%) sepia(0%) saturate(24%) hue-rotate(87deg) brightness(112%) contrast(105%);
}

.option-selected:before {
    -webkit-transform: scale(0, 1) !important;
    transform: scale(0, 1) !important;
    -webkit-transform-origin: right center !important;
    transform-origin: right center !important;
}

.option-selected span {
    background-image: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* conf btn lt */

.conf-btn,
.conf-btn-lt {
    margin-bottom: 12px;
    text-align: start;
    cursor: pointer;
    overflow: hidden;
}

.conf-btn-lt {
    margin-right: 2px;
    border-radius: 20px;
    padding: 4px 36px 4px 16px;
    width: initial;
    min-width: 160px;
}

.conf-btn span,
.conf-btn-lt span {
    -webkit-text-fill-color: inherit;
    color: var(--thm-base);
}

.conf-btn.conf-next:hover:after,
.conf-btn-lt.conf-next:hover:after {
    content: "";
    background-image: url(../images/arrow-right-white.png);
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    filter: initial;
}

.conf-btn-lt.conf-next:after {
    content: "";
    width: 15px;
    height: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../images/arrow-right.png);
    filter: invert(21%) sepia(99%) saturate(1438%) hue-rotate(181deg) brightness(99%) contrast(103%);
    margin-left: 20px;
    position: absolute;
    right: 12px;
    top: calc(50% - 8px);
    -webkit-transition: all 0s .2s, transform .2s ease-in;
    -o-transition: all 0s .2s, transform .2s ease-in;
    transition: all 0s .2s, transform .2s ease-in;
    background-size: 14px;
}

.conf-btn-lt:before {
    border-radius: 20px;
}


/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes appear {
    0% {
        margin-left: 100%;
        opacity: 0;
    }

    100% {
        margin-left: 0;
        opacity: 1;
    }
}

@keyframes disappear {
    from {
        margin-left: 0;
        opacity: 1;
    }

    to {
        margin-left: -100%;
        opacity: 0;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.configurator .tab-pane,
.configurator .appear,
.configurator .disappear,
.configurator .tab-pane2,
.configurator .appear2,
.configurator .disappear2 {
    flex-shrink: 0;
    width: 100%;
}

.configurator .appear {
    transition: opacity .15s linear;
}

.configurator .disappear {
    animation: disappear 300ms forwards;
}

.configurator .appear2 {
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}

.configurator .disappear2 {
    -webkit-animation: fadeout 1s;
    animation: fadeout 1s;
}

.list-dues {
    width: 70%;
}

@media screen and (max-width: 1400px) {
    .list-dues {
        width: 100% !important;
    }
}

/*--------------------------------------------------------------
# Product glass
--------------------------------------------------------------*/

.products-glass {
    flex-wrap: nowrap;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.product-glass,
.product-glass-2 {
    position: relative;
    width: 280px;
    margin: 0 32px 32px 0;
    box-shadow: 0 3px 20px 0 rgb(0 0 0 / 12%);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: visible;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    padding: 0;
}

.product-glass {
    margin-top: 4px;
}

.product-glass-2 {
    flex-direction: column;
    align-items: center;
}

.product-glass-2 .product-manual {
    padding-bottom: 32px;
}

.product-glass-2 .product-manual h3 {
    margin-bottom: 20px;
}

.product-glass .product-image,
.product-glass-2 .product-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 1.5rem;
    transition: 0.6s;
}

.product-glass .product-image {
    margin-bottom: 116px;
}

.product-glass-2 .product-image {
    margin-bottom: 24px;
}

.product-glass .product-image img,
.product-glass-2 .product-image img {
    display: block;
    width: 100%;
}

.product-glass .product-content {
    position: absolute;
    padding: 20px;
    width: 100%;
    border-radius: 15px;
    text-align: center;
    transform: translateY(304px);
    transition: all 0.6s, background-color 0s;
}

.product-glass:hover .product-content {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, .6);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s, background-color 0.3s 0.3s ease-in-out;
}

.product-glass:hover .product-image {
    position: absolute;
    transform: scale(1.2) translateY(20px);
}

.product-glass .product-content h3,
.product-glass-2 h3 {
    font-size: 1.7em;
}

.product-glass .product-content .product-description {
    display: none;
    text-align: justify;
    padding: 2px 8px;
}

.product-glass:hover .product-content .product-description {
    display: block;
}

.product-glass:hover .product-content .product-description a {
    font-size: 13px;
}

.product-glass .product-content h5 {
    font-size: 18px;
    margin: 12px 0;
    z-index: 3;
}

.product-glass .product-content h5 span {
    font-family: 'Montserrat-Bold';
    font-size: 1.3rem;
}

.product-glass .product-items {
    display: none;
    flex: 1;
    flex-flow: column;
    padding: 2px 16px;
    width: 100%;
}

.product-glass:hover .product-content .product-items,
.product-glass:hover .product-content .product-btn {
    display: block;
}

.product-glass .product-item {
    display: flex;
}

.product-glass .product-item p {
    font-weight: bold;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
}

.product-glass .product-item img {
    margin-right: 8px;
}

.product-glass .product-item img {
    width: 32px;
    height: 32px;
}

.product-glass .product-content .product-btn {
    display: none;
    width: fit-content;
    position: relative;
    padding: 8px 32px;
    margin: 6px auto;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.product-glass .product-content .product-btn:hover {
    color: white;
}

@media screen and (min-width: 1400px) {
    .product-container .row {
        --bs-gutter-x: 0;
    }
}

@media screen and (max-width: 1399px) {
    .products-glass {
        flex-wrap: wrap;
    }

    .product-glass,
    .product-glass-2 {
        min-width: 220px;
        width: 100%;
        max-width: 280px;
        margin: 24px auto;
        flex-shrink: inherit;
    }

    .product-glass .product-description {
        margin: 0 6px;
    }

    .product-glass .product-image {
        position: initial !important;
        margin-bottom: 100px;
    }

    .product-glass .product-content h3,
    .product-glass-2 h3 {
        font-size: 1.4em;
    }

    .product-glass .product-content h5 {
        font-size: 16px;
    }

    .product-glass .product-content h5 span {
        font-size: 1.2rem;
    }

    .product-glass .product-items {
        padding: 2px 4px;
    }

    .product-glass .product-item img {
        margin-right: 6px;
        margin-left: 6px;
    }

    .product-glass .product-item img {
        width: 28px;
        height: 28px;
    }

    .product-glass .product-content .product-btn,
    .product-glass-2 a {
        padding: 4px 32px;
    }
}

.ribbon-recommended {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 110px;
    height: 110px;
    text-align: right;
    transition: 500ms linear all;
}

.ribbon-recommended span {
    background: var(--thm-base);
    font-size: 13px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 140px;
    display: block;
    -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 6%), 0 1px 0 0 rgb(0 0 0 / 2%);
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 6%), 0 1px 0 0 rgb(0 0 0 / 2%);
    position: absolute;
    top: 29px;
    left: -30px;
    font-weight: 600;
    padding: 2px 0;
}

.ribbon-recommended span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 3px solid #002d4a;
    border-top: 3px solid #002d4a;
}

.ribbon-recommended span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-right: 3px solid #002d4a;
    border-top: 3px solid #002d4a;
}

.product-glass:hover .ribbon-recommended {
    transform: rotate(-45deg) translateY(-10px) translateX(-30px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.preloader {
    position: fixed;
    display: flex;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    z-index: 1000;
    max-height: 100vh;
    background: #eff1f3 !important;
}

/*--------------------------------------------------------------
# Saving result
--------------------------------------------------------------*/

.saving-footer {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.saving-footer .conf-btn {
    width: initial;
    min-width: 200px;
    margin: 0;
}

.product-result img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-result .product-result-desc {
    text-align: center;
    margin-top: 12px;
}

.configurator .saving {
    text-align: center;
    position: relative;
    margin-bottom: 8px;
}

.configurator .saving img {
    height: 80px;
    width: fit-content;
    margin-bottom: 8px;
}

.configurator .saving h3 {
    height: 50px;
    font-weight: 500;
    font-size: 48px;
    position: relative;
    margin: 0 0 7px;
    line-height: 1em;
}

.configurator .saving p {
    height: 40px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
}

@media (max-width: 991px) {
    .configurator .saving img {
        height: 70px;
    }

    .configurator .saving h3 {
        font-size: 36px;
    }

    .configurator .saving p {
        font-size: 16px;
    }

    .configurator .answers-inline {
        flex-flow: column;
    }
}

@media print {
    .configurator {
        padding: 0;
    }

    .configurator .saving {
        flex: 0 0 auto !important;
        width: 33.33333333% !important;
    }

    .floating-container,
    #download_pdf_saving,
    footer,
    .answers-inline,
    .progress-bar,
    #shape_footer_top {
        display: none !important;
    }
}


/*--------------------------------------------------------------
# Icon btn
--------------------------------------------------------------*/

.icon-btn {
    align-self: end;
    font-size: 22px;
    padding: 0;
    border: none;
    background-color: transparent;
    text-transform: none;
    line-height: 1.5em;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    overflow: visible;
    color: var(--thm-heading-text);
}

.icon-btn:hover {
    transform: scale(1.15);
}

.icon-btn:hover,
.icon-btn:focus {
    cursor: pointer;
    transition: .2s all ease-in-out;
    text-decoration: none;
}

.icon-btn svg {
    display: inline-block;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.icon-btn .share-icon {
    width: 1em;
    height: 1em;
}


/*--------------------------------------------------------------
# Product detail
--------------------------------------------------------------*/

.p-details-gallery {
    display: none;
    margin: 0 auto;
    padding: 0;
    float: left;
    overflow: hidden;
}

.p-details-gallery li {
    list-style: none;
    margin: 0 5px 5px;
    width: 120px;
    height: calc(25% - 5px);
    border: 1px solid rgba(0, 0, 0, .2);
    overflow: hidden;
}

.p-details-gallery li .gallery-element {
    height: 100%;
    display: flex;
    align-items: center;
}

.p-details-gallery li img {
    width: 100%;
}

.p-main-image {
    float: left;
    flex: 1;
    margin: 0 5px 5px;
    border: 1px solid rgba(0, 0, 0, .2);
    overflow: hidden;
}

.p-main-image img {
    width: 100%;
    height: fit-content;
}

.p-details-main-content-info {
    text-align: center;
}

.p-details-main-content-manual a,
.p-details-main-content-data-sheet a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: fit-content;
}

.p-details-main-content-data-sheet a {
    margin: auto;
}

.p-details-main-content-manual a svg,
.p-details-main-content-data-sheet a svg {
    filter: invert(37%) sepia(27%) saturate(333%) hue-rotate(161deg) brightness(96%) contrast(83%);
    transition: all 0ms 350ms;
    margin-left: 12px;
}

.p-details-main-content-manual a:hover svg,
.p-details-main-content-data-sheet a:hover svg {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(139deg) brightness(102%) contrast(106%);
}

.credibyte-finance {
    background-color: #FFFFFF;
    border-style: solid;
    border-color: #eae7e4;
    border-radius: 0;
    border-width: 1px;
    padding: 14px;
    display: flex;
    align-items: center;
}

.credibyte-finance p {
    font-size: 13px;
    margin-left: 8px;
    margin-bottom: 0;
}

.p-details-config p {
    margin: 8px !important;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.p-details-config .p-config-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-details-config .p-config-options .p-config-option {
    flex: 0.46;
}

.p-details-config .p-config-options .p-config-option label {
    margin: 0 !important;
    width: 100% !important;
    background: var(--thm-base) !important;
}

.product-summary p {
    margin: 0;
    font-weight: 600;
    text-align: end;
}

.product-summary-price {
    font-size: 24px;
    display: flex;
    color: #3b3b3b;
    margin-left: 8px !important;
}

.btn-product {
    border-radius: 6px !important;
    width: 100% !important;
}

.btn-product-p2 {
    padding: 11px 25px;
}

/* quantity */

.product-quantity .input-quantity {
    color: #000;
    display: inline-block;
    vertical-align: top;
    font-size: 25px;
    font-weight: 700;
    line-height: 10px;
    padding: 0 2px;
    min-width: 35px;
    text-align: center;
}

.product-quantity .quantity-plus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: white;
    width: 30px;
    height: 30px;
    font: 30px/1 Arial, sans-serif;
    text-align: center;
    border-radius: 50%;
}

.product-quantity .quantity-minus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: white;
    width: 30px;
    height: 30px;
    font: 30px/1 Arial, sans-serif;
    text-align: center;
    line-height: 0.8;
    border-radius: 50%;
    background-clip: padding-box;
}

.product-quantity .quantity-disabled {
    cursor: initial;
    background-color: #d1d1d1 !important;
}

.quantity-minus:not(.quantity-disabled):hover {
    background-color: var(--thm-secondary) !important;
}

.quantity-plus:hover {
    background-color: var(--thm-secondary) !important;
}

.product-quantity span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-quantity input {
    border: 0;
    width: 2%;
}

.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity input:disabled {
    background-color: white;
    -moz-appearance: textfield;
}

/* product features */

.product-features {
    flex: 1;
    flex-flow: column;
    padding: 8px 16px;
    min-height: 100px;
    width: 100%;
}

.product-features .product-item {
    display: flex;
    margin-bottom: 4px;
}

.product-features .product-item p {
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
}

.product-features .product-item img {
    margin-right: 12px;
    width: 38px;
    height: 38px;
}

@media (min-width: 768px) {
    .p-details-main-content-info {
        text-align: initial;
    }

    .p-details-main-content-data-sheet a {
        margin: 0;
    }

    .p-details-config p {
        text-align: initial;
    }
}

@media (min-width: 1200px) {
    .p-details-gallery {
        display: block;
    }
}


/*--------------------------------------------------------------
# Tabset
--------------------------------------------------------------*/

.tabset>input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
    display: block;
}


.tabset>label {
    position: relative;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

.tabset>label::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: 24px;
    height: 4px;
    background: #8d8d8d;
}

.tabset>label:hover,
.tabset>input:focus+label {
    color: var(--thm-base);
}

.tabset>label:hover::after,
.tabset>input:focus+label::after,
.tabset>input:checked+label::after {
    background: var(--thm-base);
}

.tabset>input:checked+label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
}


/*--------------------------------------------------------------
# Popups
--------------------------------------------------------------*/

.popup {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 24px;
    z-index: 101;
    backdrop-filter: blur(3px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    background-color: rgba(var(--bs-black-rgb), 0.5);
}

.popup-dialog {
    position: fixed;
    max-width: calc(100% - 48px);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    padding: 90px 50px 120px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.popup-active {
    visibility: visible !important;
    opacity: 1 !important;
}

.popup-active .popup-dialog {
    top: 50% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.popup-dialog .popup-header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.popup-dialog .popup-header .popup-header-left {
    height: 70px;
}

.popup-dialog .popup-header .popup-header-right {
    padding-right: 20px;
}

.popup-dialog .popup-header .popup-header-right svg {
    margin: 6px;
}

.popup-dialog .popup-header .popup-header-right svg:hover {
    cursor: pointer;
}

.popup-dialog .popup-header div {
    display: flex;
    align-items: center;
}

.popup-dialog .popup-header .popup-header-title {
    display: flex;
    align-items: center;
}

.popup-close {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    padding: 0 20px;
}

.popup-close a {
    width: 100%;
    margin: 0 0 20px;
    padding: 12px;
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
    transition: border-color 0.2s ease 0s;
    color: #fff;
    text-align: center;
}


/*--------------------------------------------------------------
# Payment method
--------------------------------------------------------------*/

#payment_section .white-card {
    padding: 20px;
    height: 100%;
}

.c-product-table .cp-bottom-border,
.c-product-table-summary .cp-bottom-border {
    border-bottom-width: 1px;
}

.c-product-table-summary td div {
    padding: 5px 0;
}

.c-product {
    display: flex;
    flex-wrap: nowrap;
}

.c-product-image img {
    width: 100px;
}

.c-product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-product-details p {
    margin-bottom: 0.75rem;
}

.c-product-title-underlined {
    padding: 16px 0;
}

.c-product-title-underlined:after {
    content: "";
    display: block;
    height: 1px;
    background: #c4c4c4;
    margin-top: 1em;
}

.c-product-payment-card {
    background-color: #f6f6f6;
    border: 1px solid #bcbcbc;
    border-radius: 0;
    transition: all 1s;
}

.c-product-payment-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms;
}

.c-product-payment-unfolded .c-product-payment-content {
    height: fit-content;
    padding: 24px;
    border-top: 1px solid #bcbcbc;
    background-color: #fff;
    opacity: 1;
    visibility: visible;
}

.c-product-payment-credibyte {
    max-width: 600px;
    margin: auto
}

.c-product-payment-credibyte>div {
    flex: 1;
}

.c-product-payment-credibyte span {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .c-product-payment-credibyte>div {
        flex: 0.46;
    }
}

/*--------------------------------------------------------------
# Radio Button
--------------------------------------------------------------*/

.custom-radio-btn[type="radio"]:checked,
.custom-radio-btn[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio-btn[type="radio"]:checked+label,
.custom-radio-btn[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom-radio-btn[type="radio"]:checked+label:before,
.custom-radio-btn[type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.custom-radio-btn[type="radio"]:checked+label:after,
.custom-radio-btn[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--thm-secondary);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radio-btn[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio-btn[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*--------------------------------------------------------------
# Credibyte Form
--------------------------------------------------------------*/

.form-group-50 {
    width: 50%;
    padding: 0 30px;
}

.step-part {
    display: none !important;
}

.step-part.active {
    display: flex !important;
}

.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 450px;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(0, 0, 0, 0.8);
    border-radius: 3px;
    transition: 0.2s;
}

.file-drop-area.is-active {
    background-color: rgba(255, 255, 255, 0.05);
}

.fake-btn {
    flex-shrink: 0;
    background-color: rgba(239, 241, 243, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

.file-input:focus {
    outline: none;
}

.c-product-credibyte-logo-right {
    position: absolute;
    right: 50px;
    top: 26px;
}

.credibyte-form .errorlist {
    padding: 0;
}

.credibyte-form .errorlist li {
    list-style: none;
    color: rgba(var(--bs-danger-rgb), 1) !important;
}

@media (max-width: 991px) {
    .step-part {
        flex-direction: column;
    }

    .form-group-50 {
        width: 100%;
        padding: 0;
    }

    .step {
        display: none;
    }

    .step.active {
        display: block;
    }

    .c-product-credibyte-logo-right {
        display: none;
    }
}

.hidden {
    display: none !important;
}

@media print {
    a {
        text-decoration: none;
        color: black;
        pointer-events: none;
        cursor: default;
    }

    a[href]:after {
        content: none !important;
    }

    .elementor-location-footer {
        display: none !important;
    }
}

.waas-product-image img {
    background-color: white;
}

body:not([class*=elementor-page-]) .site-main {
    max-width: 100% !important;
}