.header-lang .dropdown-menu .dropdown-item {
    text-align: center;
    padding: 5px 15px;
}

.header-lang .dropdown-menu .dropdown-item.active {
    color: #fff;
}

/* spinner */
.svg-spinner {
    -webkit-animation: spinner-rotate 2s linear infinite;
    animation: spinner-rotate 2s linear infinite;
}
.svg-spinner .svg-spinner-path {
    stroke-linecap: round;
    -webkit-animation: spinner-dash 1.5s ease-in-out infinite;
    animation: spinner-dash 1.5s ease-in-out infinite;
}

.font-weight-semibold {
    font-weight: 600;
}

.w-1 {
    width: 1%;
}

@-webkit-keyframes spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner-rotate {
    100% {
        transform: spinner-rotate(360deg);
    }
}
@-webkit-keyframes spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
@keyframes spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* text-block */
.text-block {
    font-size: 18px;
    line-height: 1.5;
}

.text-block blockquote {
    position: relative;
    background-color: rgba(38, 119, 235, 0.05);
    padding: 25px 35px;
    margin-left: 60px;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: #000;
    margin-bottom: 10px;
}

.text-block blockquote::before {
    content: "";
    position: absolute;
    background-color: rgba(38, 119, 235, 1);
    width: 3px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
}

.text-block blockquote p {
    margin-bottom: 0;
}

.text-block h4 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.text-block p {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 18px;
}

.text-block a {

}

.text-block .video-player {
    height: 550px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.text-block .video-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.text-block table {
    position: relative;
    background-color: transparent;
    border: 1px solid #999;
    overflow: hidden;
    width: 85%;
    margin-bottom: 25px;
}

.text-block table th {
    border: 1px solid #999;
    padding: 5px 10px;
}
.text-block table td {
    border: 1px solid #999;
    padding: 5px 10px;
}

.text-block img {
    margin-right: 15px;
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
}

/* rating-stars */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 12px;
}
.star-rating input[type="radio"] {
    display: none;
}
.star-rating label {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 4px 0 0;
}
.star-rating label:first-child {
    margin-right: 0;
}
.star-rating label svg {
    fill: #ccc;
    display: block;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: #FCB300;
}
.star-rating label:hover svg,
.star-rating label:hover ~ label svg,
.star-rating input[type="radio"]:checked ~ label svg {
    fill: currentColor;
}
.star-rating.disabled {
    pointer-events: none;
}

/* product variants */
.product-variant-attributes-row .product-variant-attribute-value {
    cursor: pointer;
}
.product-variant-attributes-row.product-variant-attributes-row-list
    .product-variant-attribute-value
    .btn-outline-light {
    box-shadow: none;
    color: #000;
    background-color: #fff;
    border-color: #babac0;
}
.product-variant-attributes-row.product-variant-attributes-row-list
    .product-variant-attribute-value.disabled
    .btn-outline-light {
    color: #bfbfbf;
    background-color: #f6f6f6;
    border-color: #f6f6f6;
}
.product-variant-attributes-row.product-variant-attributes-row-list
    .product-variant-attribute-value.active
    .btn-outline-light {
    color: #000;
    background-color: #fff;
    border-color: #7b54c9;
}
.product-variant-attributes-row.product-variant-attributes-row-buttons
    .product-variant-attribute-value
    .btn-outline-light {
    box-shadow: none;
    color: #000;
    background-color: #fff;
    border-color: #babac0;
}
.product-variant-attributes-row.product-variant-attributes-row-buttons
    .product-variant-attribute-value.disabled
    .btn-outline-light {
    color: #bfbfbf;
    background-color: #f6f6f6;
    border-color: #f6f6f6;
}
.product-variant-attributes-row.product-variant-attributes-row-buttons
    .product-variant-attribute-value.active
    .btn-outline-light {
    color: #000;
    background-color: #fff;
    border-color: #7b54c9;
}
.product-variant-attributes-row.product-variant-attributes-row-colors
    .product-variant-attribute-value
    .color-button {
    margin-right: 4px;
    margin-bottom: 4px;
}
.product-variant-attributes-row.product-variant-attributes-row-colors
    .product-variant-attribute-value.disabled
    .color-button {
    opacity: 0.1;
}
.product-variant-attributes-row.product-variant-attributes-row-colors
    .product-variant-attribute-value.active
    .color-button:before {
    opacity: 1;
}

/* cart */
.cart_items_container {
    position: relative;
    overflow: hidden;
}
.cart_items_container.disabled::before {
    content: '';
    z-index: 1000;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); */
}

/* color buttons */

.color-button {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    position: relative;
    text-align: center;
}
.color-button.color-button-light {
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    line-height: 28px;
}
.color-button::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    line-height: 28px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    opacity: 0;
    transition: all 0.1s;
    padding-left: 1px;
    padding-top: 1px;
}
.color-button.color-button-light::before {
    color: #000;
}


.inweb-progressbar {
    display: flex;
    flex-direction: column-reverse;
}
.inweb-progressbar-block {
    position: relative;
    padding: 2px 0 15px 40px;
}
.inweb-progressbar-block::before,
.inweb-progressbar-block::after {
    content: '';
    display: block;
    position: absolute;
}
.inweb-progressbar-block::before {
    left: 14px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #ddd;
}
.inweb-progressbar-block::after {
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
}
.inweb-progressbar-block:first-child::before {
    display: none;
}
.inweb-progressbar-block.active::after {
    background-color: #3AC267;
    border-color: #3AC267;
}
.inweb-progressbar-block.active ~ .inweb-progressbar-block::after {
    background-color: #3AC267;
    border-color: #3AC267;
}
.inweb-progressbar-block.active ~ .inweb-progressbar-block::before {
    background-color: #3AC267;
}


.inweb-progressbar-block.inweb-progressbar-block-danger.active::after {
    background-color: #D40000;
    border-color: #D40000;
}
.inweb-progressbar-block.inweb-progressbar-block-danger.active ~ .inweb-progressbar-block::after {
    background-color: #D40000;
    border-color: #D40000;
}
.inweb-progressbar-block.inweb-progressbar-block-danger.active ~ .inweb-progressbar-block::before {
    background-color: #D40000;
}

.inweb-progressbar-block.inweb-progressbar-block-info.active::after {
    background-color: #00A6E7;
    border-color: #00A6E7;
}
.inweb-progressbar-block.inweb-progressbar-block-info.active ~ .inweb-progressbar-block::after {
    background-color: #00A6E7;
    border-color: #00A6E7;
}
.inweb-progressbar-block.inweb-progressbar-block-info.active ~ .inweb-progressbar-block::before {
    background-color: #00A6E7;
}

.inweb-progressbar-block h4 {}
.inweb-progressbar-block p {
    margin: 0;
}


.profile-img {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 24px;
}
.profile-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.standard-shadow {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ajax-search-form {
    position: relative;
}
.ajax-search-results {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 75px;
    z-index: 1000;
    display: none;
}
.ajax-search-results::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
}
@media all and (max-width: 991px) {
    .ajax-search-results {
        top: 133px;
    }
}
@media all and (max-width: 425px) {
    .ajax-search-results {
        top: 110px;
    }
}
.ajax-search-results-content {
    position: relative;
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    max-height: 80%;
    border-top: 1px solid #eee;
}
.ajax-search-results.active {
    display: block;
}
.ajax-search-results .list-group-item {
    display: flex;
    flex-wrap: nowrap;
    font-size: 14px;
    align-items: center;
    border: none;
}
.ajax-search-results img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    margin-right: 10px;
}

.compare-page-link {
    position: fixed;
    bottom: 0;
    right: 0;
    display: none;
    z-index: 10000;
}
.compare-page-link.active {
    display: block;
}
.text-gray {
    color: #666;
}
.text-gray-light {
    color: #ccc;
}

/* screen icons */
.screen-icons {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 99;
    width: 40px;
}
.screen-icons-btn {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    line-height: 65px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.screen-icons-btn svg,
.screen-icons-btn img {
    display: inline-block;
    width: 20px;
    height: 20px;
}
.screen-icons-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: phone-call-pulse 1.8s ease-out;
    animation: phone-call-pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.screen-phone-call-button {
    background: #00be5c;
    color: #fff !important;
}
.screen-phone-call-button svg,
.screen-phone-call-button img {
    -webkit-animation: phone-call-rotate 2s ease;
    animation: phone-call-rotate 2s ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.screen-phone-call-button::before {
    background-color: #00be5c;
}
.screen-telegram-button {
    background: #2CA5E0;
    color: #fff !important;
}
.screen-telegram-button svg {
    margin-right: 3px;
}
.screen-telegram-button::before {
    background-color: #2CA5E0;
}
@media (min-width: 1080px) {
    .screen-icons {
        width: 60px;
    }
    .screen-icons-btn {
        width: 60px;
        height: 60px;
        margin-top: 25px;
    }
    .screen-icons-btn svg,
    .screen-icons-btn img {
        width: 30px;
        height: 30px;
    }
    .screen-icons-btn::before {
        top: -15px;
        left: -15px;
        width: 90px;
        height: 90px;
    }
}
@-webkit-keyframes phone-call-pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: 0.3;
    }
    to {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}
@keyframes phone-call-pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: 0.6;
    }
    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}
@-webkit-keyframes phone-call-rotate {
    0% {
        -webkit-transform: rotate(0);
    }
    35% {
        -webkit-transform: rotate(0);
    }
    40% {
        -webkit-transform: rotate(10deg);
    }
    45% {
        -webkit-transform: rotate(-10deg);
    }
    50% {
        -webkit-transform: rotate(10deg);
    }
    55% {
        -webkit-transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(10deg);
    }
    65% {
        -webkit-transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(0);
    }
}
@keyframes phone-call-rotate {
    0% {
        transform: rotate(0);
    }
    35% {
        transform: rotate(0);
    }
    40% {
        transform: rotate(10deg);
    }
    45% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    55% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(10deg);
    }
    65% {
        transform: rotate(0);
    }
    to {
        transform: rotate(0);
    }
}
/* end screen icons */

/* .bg-mask-dark-30 {
    position: relative;
} */
.bg-mask-dark-30::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
