.alert-block {
    right: 1rem;
    top: 1rem;
    left: 1rem;
}

@media(min-width:576px) {
    .alert-block {
        right: 1.5rem;
        top: 1.5rem;
        left: auto;
    }
}

.ds-alert {
    background: var(--ds-white-color);
    box-shadow: 0px 4px 40px 0px rgba(37, 38, 39, 0.22);
    padding: 1.5rem;
    overflow: hidden;
    border: var(--ds-main-border)
}

.ds-alert .purchase-success {
    display: none !important;
}

.ds-alert-text {
    font-size: 12px;
}

@media(min-width:1200px) {
    .ds-alert-text {
        font-size: 14px;
    }
}

@media(min-width:576px) {
    .ds-alert {
        width: 370px;
    }
}

.ds-alert-text a {
    color: var(--ds-links-color);
    text-decoration: underline
}

.ds-alert-text a:hover {
    text-decoration: none
}

.alert-text-item + .alert-text-item {
    margin-top: .5rem
}

.ds-alert [data-bs-dismiss=modal] {
    display: none !important
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes iconOpacity {
    0%,
    100% {
        opacity: 0
    }
    40%,
    80% {
        opacity: .96
    }
    60% {
        opacity: 1
    }
}

@keyframes iconOpacity {
    0%,
    100% {
        opacity: 0
    }
    40%,
    80% {
        opacity: .96
    }
    60% {
        opacity: 1
    }
}

#ds_fixed_contact_button {
    background: var(--ds-primary-color);
    position: fixed;
    right: 15px;
    bottom: 26px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1020
}

#ds_fixed_contact_button.clicked {
    z-index: 1041
}

#ds_fixed_contact_substrate {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
    display: none
}

#ds_fixed_contact_substrate.active {
    z-index: 1020;
    display: block
}

.ds-fixed-contact-pulsation {
    background: var(--ds-primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: 2s infinite pulsation;
    animation: 2s infinite pulsation;
    display: none;
}

@media(min-width:420px) {
    #ds_fixed_contact_button {
        right: 30px;
        width: 70px;
        height: 70px
    }
    .ds-fixed-contact-pulsation {
        width: 100px;
        height: 100px
    }
}

.ds-fixed-contact-icon {
    color: var(--ds-white-color);
    width: 100%;
    font-size: 20px;
    overflow: hidden;
    display: none;
}

.ds-fixed-contact-icon .fa-envelope {
    -webkit-animation: 3s infinite iconOpacity;
    animation: 3s infinite iconOpacity;
    width: 20px;
    height: 20px
}

@media(min-width:420px) {
    .ds-fixed-contact-icon {
        font-size: 28px
    }
    .ds-fixed-contact-icon .fa-envelope {
        width: 28px;
        height: 28px
    }
}

.ds-fixed-contact-text {
    font-size: 7px;
    text-transform: uppercase;
    line-height: 9px;
    color: var(--ds-white-color)
}

.ds-fixed-contact-dropdown {
    position: absolute;
    bottom: 60px;
    right: 36px;
    padding: 20px;
    border-radius: 6px;
    background: var(--ds-white-color);
    display: block;
    opacity: 0;
    z-index: -1;
    transform: translateY(20px);
    -webkit-transition: transform .3s, opacity .3s;
    -o-transition: transform.3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    -webkit-box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    visibility: hidden;
    min-width: 250px;
    will-change: transform, opacity;
}

@media(min-width:420px) {
    .ds-fixed-contact-text {
        font-size: 8px;
        line-height: 10px
    }
    .ds-fixed-contact-dropdown {
        right: 60px
    }
}

.ds-fixed-contact-dropdown.expanded {
    transform: translateY(0);
    opacity: .98;
    z-index: 1;
    visibility: visible
}

.ds-fixed-contact-item {
    color: var(--ds-dark-text-color);
    transition: color var(--ds-main-transition);
}

.ds-fixed-contact-item:not(:last-child) {
    margin-bottom: 18px
}

.ds-fixed-contact-item:hover {
    color: var(--ds-links-color)
}

.ds-fixed-contact-item > * {
    pointer-events: none;
}

.ds-fixed-contact-item-icon {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    max-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    margin-right: 10px;
    color: var(--ds-white-color)
}

.ds-fixed-contact-item-icon svg {
    width: 20px !important;
    height: 20px
}

.ds-fixed-contact-messenger {
    background: #0084ff
}

.ds-fixed-contact-viber {
    background: #7c529d
}

.ds-fixed-contact-telegram {
    background: #2ca5e0
}

.ds-fixed-contact-skype {
    background: #31c4ed
}

.ds-fixed-contact-whatsapp {
    background: #25d366
}

.ds-fixed-contact-email {
    background: #50a8ff
}

.ds-fixed-contact-call {
    background: #3cba8b
}

.ds-fixed-contact-contacts {
    background: #e6a83a
}

@media(max-width:991px) {
    .ds-fixed-contact-viber-desktop {
        display: none !important
    }
}

@media(min-width:768px) {
    #ds_fixed_contact_button {
        bottom: 30px
    }
}

.popover {
    font-family: Ubuntu, sans-serif;
    border-color: transparent;
    border-radius: .5rem;
    box-shadow: var(--ds-medium-shadow);
    background-color: var(--ds-white-color);
    color: var(--ds-dark-text-color)
}

.popover-arrow::after {
    border-top-color: var(--ds-white-color) !important;
}

@media(min-width:360px) {
    .popover {
        min-width: 260px
    }
}

@media(max-width:991px) {
    #ds_fixed_contact_button {
        max-width: 0;
    }
}

@media(min-width:992px) {
    .popover {
        z-index: 19999
    }

    .ds-fixed-contact-pulsation {
        display: block;
    }

    .ds-fixed-contact-icon {
        display: flex;
    }
}

.popover-arrow:before {
    border-color: transparent !important
}

.popover-header {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1.075rem;
    padding: 1rem 1rem .5rem;
    color: var(--ds-dark-text-color);
}

.popover-header:before {
    border-color: transparent !important
}

.popover-body {
    padding: 0 1rem 1rem;
    font-size: .875rem;
    color: var(--ds-secondary-text-color);
}

.popover-body p+p {
    margin-top: 1rem
}

.popover-body ul {
    padding: 1rem 0 1rem .75rem
}



.ds-loader {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    display: block;
    margin: 20px auto;
    position: relative;
    opacity: 1;
    box-sizing: border-box;
}

.ds-loader div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #f2f2f2;
    animation-timing-function: cubic-bezier(0, 1, 1, 0)
}

.ds-loader div:nth-child(1) {
    left: 8px;
    -webkit-animation: preloaderanimation1 .6s infinite;
    animation: preloaderanimation1 .6s infinite
}

.ds-loader div:nth-child(2) {
    left: 8px;
    -webkit-animation: preloaderanimation2 .6s infinite;
    animation: preloaderanimation2 .6s infinite
}

.ds-loader div:nth-child(3) {
    left: 32px;
    -webkit-animation: preloaderanimation2 .6s infinite;
    animation: preloaderanimation2 .6s infinite
}

.ds-loader div:nth-child(4) {
    left: 56px;
    -webkit-animation: preloaderanimation3 .6s infinite;
    animation: preloaderanimation3 .6s infinite
}

@-webkit-keyframes preloaderanimation1 {
    0% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes preloaderanimation1 {
    0% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes preloaderanimation3 {
    0% {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes preloaderanimation3 {
    0% {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-webkit-keyframes preloaderanimation2 {
    0% {
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    100% {
        -ms-transform: translate(24px, 0);
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0)
    }
}

@keyframes preloaderanimation2 {
    0% {
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    100% {
        -ms-transform: translate(24px, 0);
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0)
    }
}

/*.ds-loader {*/
/*    width: 8px;*/
/*    height: 40px;*/
/*    border-radius: 4px;*/
/*    display: block;*/
/*    margin: 20px auto;*/
/*    position: relative;*/
/*    background: currentColor;*/
/*    color: var(--ds-primary-color);*/
/*    opacity: 0.7;*/
/*    box-sizing: border-box;*/
/*    animation: animloader 0.3s 0.3s linear infinite alternate;*/
/*  }*/
/*  */
/*  .ds-loader::after, .ds-loader::before {*/
/*    content: '';*/
/*    width: 8px;*/
/*    height: 40px;*/
/*    border-radius: 4px;*/
/*    background: currentColor;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    left: 20px;*/
/*    box-sizing: border-box;*/
/*    animation: animloader 0.3s  0.45s  linear infinite alternate;*/
/*  }*/

/*  .ds-loader::before {*/
/*    left: -20px;*/
/*    animation-delay: 0s;*/
/*  }*/
/*  */
/*  @keyframes animloader {*/
/*    0%   { height: 48px} */
/*    100% { height: 4px}*/
/*  }*/

/*@keyframes loaderMove {*/
/*    0% {*/
/*        transform: translateX(-40%);*/
/*    }*/
/*    50% {*/
/*        transform: translateX(20%);*/
/*        width: 80%;*/
/*    }*/
/*    100% {*/
/*        transform: translateX(100%);*/
/*        width: 100%;*/
/*    }*/
/*}*/

.ds-loader-overlay {
    position: fixed;
    z-index: 19999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ds-livesearch {
    top: 46px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12300;
    background: var(--ds-light-bg-color);
    gap: .5rem;
    -webkit-box-shadow: 0 2px 24px 0 rgba(37,38,39,.08);
    box-shadow: 0 2px 24px 0 rgba(37,38,39,.08);
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    max-height: 0;
}

@media (min-width: 768px) {
    .ds-livesearch {
        z-index: 13300;
    }
}

.ds-livesearch.expanded {
    max-height: unset;
}

.ds-livesearch .ds-livesearch-categories-item {
    flex: 1 0 30%;
    max-width: 30%
}

.ds-livesearch .ds-livesearch-categories-item img {
    max-width: 100%;
    height: auto
}

.ds-livesearch .ds-subcategories-title {
    hyphens: auto;
}

.ds-livesearch-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

@media (min-width: 568px) {
    .ds-livesearch .ds-livesearch-categories-item {
        flex: 1 0 50%;
        max-width: 50%
    }
}

@media (min-width: 768px) {
    .ds-last-reviews-item {
        width:50%
    }

    .ds-livesearch {
        top: calc(100% + .325rem);
        max-height: 0;
        left: 1rem;
        right: 0;
        border-radius: 7px;
        position: absolute;
        bottom: auto;
    }

    .ds-livesearch.expanded {
        max-height: calc(100vh - 5rem)
    }

    .ds-livesearch .ds-livesearch-categories-item {
        flex: 1 0 25%;
        max-width: 25%
    }
}

.ds-livesearch-item {
    background: var(--ds-white-color);
    gap: 1rem
}

.ds-livesearch-item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    border-right: var(--ds-main-border)
}

.ds-livesearch-item-img img {
    margin-bottom: 1rem
}

.ds-livesearch-item-sticker {
    background: var(--ds-green-color);
    color: var(--ds-white-color);
    text-align: center;
    border-radius: 4.0625rem;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.ds-livesearch-item-sticker.red-bg {
    background: var(--ds-red-color)
}

.ds-livesearch-item-sticker.red-bg-new {
    background: #f44332
}

.ds-livesearch-item-title {
    line-height: 1
}

.ds-livesearch-item-title:hover {
    color: var(--ds-links-color)
}

.ds-livesearch-item .ds-price-new {
    line-height: 1
}

@media (max-width: 567.98px) {
    .ds-livesearch-items-box {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
    }
}

.modal {
    z-index: 14505
}

.modal-open {
    overflow: hidden
}

.modal-backdrop {
    background: var(--ds-popup-backdrop-bg);
    opacity: 1;
    z-index: 12500;
    --bs-backdrop-opacity: 1
}

.modal-dialog.wide {
    --bs-modal-width: 860px
}

.modal-content {
    padding: 1.5rem;
    border: 0;
    background-color: var(--ds-white-color);
    -webkit-box-shadow: var(--ds-dark-shadow);
    box-shadow: var(--ds-dark-shadow)
}

.modal-header {
    border: 0;
    border-bottom: var(--ds-main-border)
}

.modal-header .btn-close {
    border-radius: .625rem;
    background-color: #f4f4f4;
    --bs-btn-close-bg: none;
    width: 2rem;
    height: 2rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2rem;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 1;
}

.modal-header .btn-close svg path {
    fill: #00171f
}

.modal-title {
    line-height: 1.2
}

.modal-body {
    padding: 0;
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-body .ds-buy-one-click {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important
}

.modal-body .ds-buy-one-click>:first-child {
    margin-bottom: .5rem
}

.modal-body .ds-buy-one-click .form-control {
    font-size: .75rem;
    min-width: 200px;
}

.modal-body .ds-buy-one-click .form-control::-webkit-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::-moz-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control:-ms-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::-ms-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::placeholder {
    font-size: .75rem
}

@media (max-width: 767.98px) {
    #error_minimum {
        font-size: .875rem
    }
}

.modal-body-cart .ds-buy-one-click {
    border-top: 0
}

.modal-body-cart .ds-buy-one-click>:first-child {
    display: none
}

.modal-body .ds-cart-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem
}

.modal-body-cart .ds-cart-recommended-products {
    overflow-x: auto;
}

.modal-body-cart .ds-cart-recommended-products-item {
    flex: 0 0 80%;
    max-width: 80%;
}

@media(min-width: 768px) {
    .modal-body-cart .ds-cart-recommended-products-item {
        flex: 0 0 330px;
        max-width: 330px;
    }
}

.modal-body-cart .ds-cart-recommended-products .content-block {
    transition: border var(--ds-main-transition);
}

.modal-body-cart .ds-cart-recommended-products .content-block:hover {
    box-shadow: none;
    border-color: var(--ds-form-control-focus-color);
}

.modal-body-buttons {
    border-top: var(--ds-main-border)
}

@media (max-width: 575.98px) {
    .modal-body-buttons .button-primary {
        width:100%
    }
}

.modal-body-form>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem)
}

.modal-body-product-img-box {
    flex: 0 0 320px;
    min-width: 320px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA&data-fill-color=12345");
    padding: 0;
    margin: 0 auto;
}

.modal-body-product-panel {
    border: var(--ds-main-border);
    flex: 0 0 12246px
}

.modal-body-product-img img {
    width: 100px;
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: .25rem;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

@media (min-width: 360px) {
    .modal-body-product-img {
        width:158px;
        height: 158px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 158px;
        flex: 0 0 158px
    }

    .modal-body-product-img img {
        width: 150px
    }
}

.modal-body-product-title {
    line-height: 1.2
}

.modal-body-product-info .ds-module-rating-star {
    width: 12px;
    height: 12px;
    cursor: pointer
}

.modal-body-product-info .ds-module-rating-star+.ds-module-rating-star {
    margin-left: .75rem
}

.modal-body-product .ds-product-options {
    border-bottom: 0
}

.modal-body-quick-view {
    background-color: var(--ds-light-bg-color)
}

.modal-body-quick-view .ds-product-main-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.modal-body-quick-view .ds-product-main-buttons .button-outline {
    margin-top: 1rem;
    margin-left: 0
}

@media (min-width: 768px) {
    .modal-body-product {
        border-right:var(--ds-main-border)
    }

    .modal-body .ds-product-images {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(52% - 1rem);
        flex: 0 0 calc(52% - 1rem);
        max-width: calc(52% - 1rem)
    }
}

.modal-body .ds-product-main-content {
    border-top: var(--ds-main-border)
}

.modal-body-popup-text>:not(:first-child) {
    margin-top: 1rem
}

.modal-body-popup-text ol,.modal-body-popup-text ul {
    padding-left: 1rem
}

.modal-small-text {
    line-height: 1.2
}

#popup_review_form .modal-body-product-img {
    width: 88px;
    height: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px
}

#popup_review_form .modal-body-product-img img {
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: .25rem;
    width: 80px;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

@media (min-width: 360px) {
    #popup_review_form .modal-body-product-img {
        width:120px;
        height: 120px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px
    }

    #popup_review_form .modal-body-product-img img {
        width: 112px
    }
}

@media (max-width: 359.98px) {
    .modal-header .modal-title {
        font-size:1.25rem!important
    }

    #quickViewModal .ds-product-main-cart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #quickViewModal .ds-product-main-cart .ds-module-quantity {
        margin-right: 0!important;
        margin-bottom: 1rem
    }
}

@media (min-width: 992px) {
    #quickViewModal .ds-product-main {
        -webkit-box-flex:0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 48%
    }
}

#quickViewModal .ds-product-images-main {
    height: auto
}

#quickViewModal .ds-product-images-main img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto
}

[data-bs-dismiss=modal] {
    text-decoration: none
}

@media (min-width: 360px) {
    #productOptionModal .modal-body-product-img {
        width:128px;
        height: 128px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 128px;
        flex: 0 0 128px
    }

    #productOptionModal .modal-body-product-img img {
        width: 120px
    }
}

#cartModal .modal-dialog {
    --bs-modal-width: 720px
}

@media (max-width: 767.98px) {
    .empty-popup-cart .button-primary {
        width:100%
    }
}

#loginTabs {
    border-bottom: 0;
}

#loginTabs .nav-link {
    margin-bottom: 0;
    background-color: #fdfdfd;
    border: var(--ds-main-border);
    border-radius: 0.25rem;
    padding: .5rem 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
    line-height: 1;
    transition: background-color var(--ds-main-transition), color var(--ds-main-transition), border var(--ds-main-transition);
    font-size: .75rem;
    color: var(--ds-light-text-color);
}

@media (min-width: 1200px) {
    #loginTabs .nav-link {
        padding: .75rem 1.5rem;
        font-size: .875rem;
    }
}

#loginTabs .nav-item + .nav-item {
    margin-left: 0.5rem;
}

#loginTabs .nav-link.active {
    color: var(--ds-primary-color);
    box-shadow: var(--ds-light-shadow);
    font-weight: 700;
    color: var(--ds-dark-text-color);
    background-color: var(--ds-white-color);
}

#loginTabs .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ds-primary-color);
}

#otp-form-code .otp-code-block {
    background: var(--ds-light-bg-color);
}

.ds-account-column-nav li {
    padding: 0;
    font-size: inherit
}

.ds-account-column-nav li:not(:last-child) {
    border-bottom: var(--ds-main-border)
}

.ds-account-column-nav .ds-column-categories-children.ds-categories-2 li {
    padding: 1rem!important;
    border-bottom: 0;
    border-top: var(--ds-main-border)
}

.ds-account-column-nav-item {
    line-height: 1;
    white-space: nowrap;
    padding: .75rem 1rem;
    -webkit-transition: background-color var(--ds-main-transition);
    transition: background-color var(--ds-main-transition)
}

.ds-account-column-nav-item:hover {
    background-color: #fbfbfb
}

.ds-account-column-nav-item:hover .ds-account-column-nav-item-text {
    text-decoration: underline
}

.ds-account-column-nav-item-icon {
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-right: .75rem;
    background-color: var(--ds-light-bg-color)
}

.ds-account-column-nav-item-icon svg path {
    fill: var(--ds-dark-text-color)
}

.ds-account .content-block:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.ds-account-login-button {
    min-width: 160px
}

@media (max-width: 575.98px) {
    .ds-account-login-button {
        width:100%
    }
}

.ds-account-wishlist-info {
    border-left: var(--ds-main-border)
}

.ds-account-wishlist-title {
    line-height: 1.2
}

.ds-account-wishlist-title:hover {
    color: var(--ds-links-color);
    text-decoration: underline
}

.ds-account-wishlist .no-btn {
    top: 1rem;
    right: 1rem;
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center
}

.ds-account-wishlist .no-btn svg {
    width: 12px;
    height: 12px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width: 767.98px) {

    .ds-account table td {
        white-space: nowrap
    }
}

@keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

@keyframes fadeInColumn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.fadeInColumn {
    animation-name: fadeInColumn;
    animation-duration: 0.8s;
}

.oct-animated svg {
    animation: rotateIcon 0.5s ease-in-out infinite;
}

.error_style {
    background-color: var(--ds-error-bg-color)!important;
    border: 1px solid #fe4d97!important;
    -webkit-transition: background-color var(--ds-main-transition),border var(--ds-main-transition);
    transition: background-color var(--ds-main-transition),border var(--ds-main-transition)
}

.error_style+label {
    color: var(--ds-red-color)!important
}

.error_style::-webkit-input-placeholder {
    color: var(--ds-red-color)!important
}

.error_style::-moz-placeholder {
    color: var(--ds-red-color)!important
}

.error_style:-ms-input-placeholder {
    color: var(--ds-red-color)!important
}

.error_style::-ms-input-placeholder {
    color: var(--ds-red-color)!important
}

.error_style::placeholder {
    color: var(--ds-red-color)!important
}

.tooltip {
    z-index: 19999;
}

.ds-switcher button {
    background: 0 0;
    border: none;
    text-decoration: underline;
    color: var(--ds-links-color);
    font-size: .875rem;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0
}

.ds-switcher button.active {
    color: var(--ds-primary-dark-color);
    text-decoration: none;
    background: var(--ds-primary-light-color);
    font-size: 1rem;
    font-weight: 700;
    padding: .25rem .5rem;
    cursor: default;
    pointer-events: none;
    border: var(--ds-main-border)
}

.ds-switcher button+button {
    margin-left: .5rem
}

.ds-switcher button.language-select {
    text-transform: uppercase
}

.ds-switcher button:hover {
    text-decoration: none
}

.pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0!important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 1rem;
    padding: 1rem 0
}

.pagination li a,.pagination li span {
    display: block;
    line-height: 1rem;
    padding: .5rem .75rem;
    border-radius: 7px;
    color: var(--ds-light-text-color);
    -webkit-transition: background var(--ds-main-transition),color var(--ds-main-transition);
    transition: background var(--ds-main-transition),color var(--ds-main-transition);
    text-decoration: none;
    will-change: background, color;
}

.pagination li.active span,.pagination li:hover a {
    color: var(--ds-white-color);
    background: var(--ds-primary-color)
}

.table {
    margin-bottom: 0;
    border-left: var(--ds-main-border);
    border-right: var(--ds-main-border);
    border-color: var(--ds-border-color);
    font-weight: 400
}

.table>:not(:first-child) {
    border-top: var(--ds-main-border)
}

.table .thead-dark th {
    background-color: var(--ds-light-bg-color);
    border-top: var(--ds-main-border);
    color: var(--ds-dark-text-color)
}

.table tbody {
    font-size: 14px;
    color: var(--ds-secondary-text-color)
}

.table td {
    border-color: var(--ds-border-color)
}

.table td,.table th {
    vertical-align: top
}

.table tbody tr:first-child td {
    border-top: 0
}

.table td a {
    color: var(--ds-links-color);
    text-decoration: underline
}

.table td a:hover {
    text-decoration: none
}

.table thead {
    border-left: var(--ds-main-border);
    border-right: var(--ds-main-border)
}

.table thead th {
    font-size: 1rem;
    line-height: 20px;
    padding: .75rem 1rem;
    vertical-align: middle;
    font-weight: 700;
    color: var(--ds-dark-text-color);
    background-color: var(--ds-primary-light-color);
    border: 0;
    border-bottom: var(--ds-main-border)
}

.table tbody tr:hover>* {
    --bs-table-bg-state: #FDFDFD
}

.ds-theme-switcher {
    background-color: var(--ds-light-bg-color)
}

.ds-theme-switcher-btn {
    display: grid;
    place-items: center;
    padding-left: .75rem;
    padding-right: .75rem;
    cursor: pointer
}

.ds-theme-switcher-btn.active {
    background-color: var(--ds-white-color);
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.08)
}

.ds-theme-switcher-btn.light svg path {
    fill: var(--ds-yellow-color)
}

.ds-blog-search-button {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1.75rem
}

.ds-blog-search-button svg path {
    -webkit-transition: fill var(--ds-main-transition);
    transition: fill var(--ds-main-transition)
}

.ds-blog-search-button:focus:not([disabled]),.ds-blog-search-button:hover {
    -webkit-box-shadow: none!important;
    box-shadow: none!important
}

.ds-blog-search-button:focus:not([disabled]) svg path,.ds-blog-search-button:hover svg path {
    fill: var(--ds-primary-color)
}

.ds-blog-post-gallery,.ds-blog-post-text {
    border-bottom: var(--ds-main-border)
}

.ds-blog-post-gallery-items {
    gap: .5rem
}

.ds-blog-post-gallery-item {
    display: grid;
    place-items: center;
    border: var(--ds-main-border);
    width: 92px;
    height: 92px
}

.ds-blog-post-gallery-item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1
}

.ds-blog-post-info {
    border-bottom: var(--ds-main-border);
    gap: 1rem
}

.ds-blog-post-comments {
    border-top: var(--ds-main-border)
}

@media (max-width: 575.98px) {
    .ds-blog-post .button-primary {
        width:100%
    }
}

#article-comments .ds-product-reviews-item-content {
    border-bottom: 0;
    padding-bottom: 0!important
}

.ds-empty-reviews svg path {
    fill: var(--ds-border-color);
}

#oct-infobar.hidden {
	opacity: 0;
	display: none;
}

.progress-bar {
    background-color: var(--ds-primary-color);
}

@media (max-width: 991.98px) {
    iframe#credential_picker_iframe {
        margin-bottom: 68px;
    }
}



/* side cart */
#sidecart-overlay {
    background: rgba(17,19,20,0);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: background var(--ds-main-transition);
    transition: background var(--ds-main-transition)
}

#sidecart-overlay.active {
    background: var(--ds-popup-backdrop-bg);
    z-index: 12001;
    visibility: visible
}

#sidecart-overlay.active.transparent {
    background: 0 0
}

#sidecart-overlay.active-sidebar {
    z-index: 14022
}

.ds-sidebar#sideCart {
    z-index: 14024
}
.ds-sidebar#sideCart .ds-cart-item-desc{
    padding-right: 1.5rem;
}
.ds-sidebar#sideCart .ds-cart-item .no-btn,
.ds-sidebar#sideCart .ds-cart-item .no-btn svg{
    width: 16px;
    height: 16px;
}
.ds-sidebar#sideCart .ds-cart-item .no-btn:hover svg path{
    stroke: #FF4D4F;
}
.ds-sidebar#sideCart .ds-module-caption {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 0;
    padding-left: .5rem
}
.ds-sidebar#sideCart .ds-sidebar-content {
    background-color: white !important;
}
.ds-sidebar#sideCart .ds-sidebar-content .ds-module-item:not(.product-layout) .ds-module-img {
    border-right: none !important;
}
.ds-sidebar#sideCart.active {
    margin-top: 24px;
    margin-right: 24px;
    border-radius: 8px 8px 0 0;
}
.ds-sidebar#sideCart .ds-sidebar-close {
    width: 32px;
    height: 32px;
    padding: 5px;
    background: #f4f4f4;
}
.ds-sidebar#sideCart .ds-sidebar-header{
    height: 5rem;
    border-bottom: none;
}
.ds-sidebar#sideCart .ds-sidebar-content{
    max-height: calc(100% - 5rem - 10.313rem);
}
.ds-sidebar#sideCart .ds-sidebar-content + .modal-cart-bottom{
    height: 10.313rem;
}
.ds-sidebar#sideCart .ds-sidebar-content.with_discounts{
    max-height: calc(100% - 5rem - 12.125rem);
}
.ds-sidebar#sideCart .ds-sidebar-content.with_discounts + .modal-cart-bottom{
    height: 12.125rem;
}
.ds-sidebar#sideCart .ds-sidebar-content.only_one_total{
    max-height: calc(100% - 5rem - 8rem);
}
.ds-sidebar#sideCart .ds-sidebar-content.only_one_total + .modal-cart-bottom{
    height: 8rem;
}

.ds-sidebar#sideCart .ds-sidebar-content.cart_is_empty{
    max-height: calc(100% - 5rem);
    align-items: center;
    justify-content: center;
}
.ds-sidebar#sideCart .modal-body-cart-items .ds-cart-item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}
.ds-sidebar#sideCart .modal-body-buttons{
    border-top:none;
}
.side-cart-item-info .ds-module-quantity{
    background: transparent;
}
.side-cart-item-info .ds-module-quantity button:hover{
    background-color: var(--ds-border-color);
}
.side-cart-item-info .ds-module-quantity{
    border: none;
    background: transparent;
}
.ds-module-quantity .form-control{
    background: transparent;
}
.side-cart-item-info .ds-module-quantity button{
    background: transparent;
    border: var(--ds-main-border);
    border-radius: .5rem;
    padding: 0;
    width: 1.5rem;
    flex: 1 1 1.5rem;
    height: 1.5rem;
}
.side-cart-item-info .ds-module-quantity button svg path{
    fill: var(--ds-primary-dark-color);
}
.side-cart-item-info .ds-module-quantity button:hover{
    background-color: var(--ds-border-color);
}
@media screen and (min-width:992px) {
    .ds-sidebar#sideCart {
        left: auto;
        right: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%)
    }

    .ds-sidebar#sideCart.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    .ds-sidebar#sideCart.active {
        margin-bottom: 24px;
        border-radius: 16px;
    }
}

/* NEW BLOG */
.blog_cats{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.blog_cat{
    color: #00171F;
    padding: .5rem 1rem;
    height: 40px;
    -webkit-transition: color .3s, background .3s;
    -o-transition: color .3s, background .3s;
    transition: color .3s, background .3s;
    border: 1px solid #F2F2F2;
    background: #fff;
}
.blog_cat_counter{
    color: #9CA3AF;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
.blog_cat.active,
.blog_cat:hover,
.blog_cat:focus{
    color: #fff;
    background: #5E90F4;
    -webkit-transition: color .3s, background .3s;
    -o-transition: color .3s, background .3s;
    transition: color .3s, background .3s;
}
.blog_cat.active .blog_cat_counter,
.blog_cat:hover .blog_cat_counter,
.blog_cat:focus .blog_cat_counter{
    color: #fff;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
.blog_cat.active,
.blog_cat.active .blog_cat_counter{
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.blog_article_top{
	position: relative;
}
.blog_article_thumb{
	height: 456px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 16px;
}
.blog_article_thumb img{
	-o-object-fit: cover;
	   object-fit: cover;
}
.blog_article_details{
	position: absolute;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 24px;
    gap: 16px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    z-index: 1;
}
.blog_article_details:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 169px;
    background: -webkit-gradient(
        linear,
        left bottom, left top,
        from(rgba(0, 0, 0, 0.6)),
        color-stop(28%, rgba(0, 0, 0, 0.45)),
        color-stop(50%, rgba(0, 0, 0, 0.25)),
        color-stop(70%, rgba(0, 0, 0, 0.12)),
        color-stop(85%, rgba(0, 0, 0, 0.04)),
        to(rgba(0, 0, 0, 0))
    );
    background: -o-linear-gradient(
        bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.45) 28%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.12) 70%,
        rgba(0, 0, 0, 0.04) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.45) 28%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.12) 70%,
        rgba(0, 0, 0, 0.04) 85%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: -1;
}
.blog_item_cat{
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
    padding: 4px 12px;
    border-radius: 50px;
    line-height: 19px;
}
.blog_item_cat .small_text{
	font-size: 12px;
    font-weight: 500;
	line-height: 19px;
}
.blog_article_h1 h1{
	color: #fff;
}
.blog_article_infos{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
}
.blog_article_infos>div{
    padding: 8px 12px;
    background: #e6e6e6;
    border-radius: 50px;
    line-height: normal;
}
.blog_article_infos>div .icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 16px;
    min-width: 16px;
}
.blog_article_infos>div .text{
    line-height: normal;
}
.content-block.blog_article_content{
    background-color: transparent!important;
    border: none!important;
}
.acricle_toc{
    border-radius: 1rem;
}
.article_link_scroll{
    padding: 8px 12px;
    cursor: pointer;
    -webkit-transition: background-color var(--ds-main-transition);
    -o-transition: background-color var(--ds-main-transition);
    transition: background-color var(--ds-main-transition);
}
.article_link_scroll:hover{
    background-color: #EFF4FF;
}
.article_divider{
    height: 1px;
    background-color: #f2f2f2;
}
.blog_article_dop_images{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
}
.blog_article_dop_image {
    width: 200px;
    border-radius: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.blog_article_tag{
    background: #F3F4F6;
    -webkit-transition: all var(--ds-main-transition);
    -o-transition: all var(--ds-main-transition);
    transition: all var(--ds-main-transition);
}
.blog_article_tag:hover{
    background: #EFF4FF;
    color: #5E90F4;
}
.blog_item{
    height: 384px;
    border-radius: 16px;
    overflow: hidden;
}
.blog_item_link{
    border-radius: 1rem;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    isolation: isolate;
}
.blog_item_info{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 2;
}
.blog_item_bottom{
    position: relative;
    padding: 1rem;
}
.blog_item_bottom:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 164px;
    background: -webkit-gradient(
        linear,
        left bottom, left top,
        from(rgba(0, 0, 0, 0.6)),
        color-stop(28%, rgba(0, 0, 0, 0.45)),
        color-stop(50%, rgba(0, 0, 0, 0.25)),
        color-stop(70%, rgba(0, 0, 0, 0.12)),
        color-stop(85%, rgba(0, 0, 0, 0.04)),
        to(rgba(0, 0, 0, 0))
    );
    background: -o-linear-gradient(
        bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.45) 28%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.12) 70%,
        rgba(0, 0, 0, 0.04) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.45) 28%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.12) 70%,
        rgba(0, 0, 0, 0.04) 85%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: -1;
}
.blog_item_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #F3F4F6;
}
.blog_item_image img {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    -o-object-fit: cover;
       object-fit: cover;
    /* object-position: center; */
    display: block;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.4, 0, 0.25, 1) 0ms;
    transition: -webkit-transform 400ms cubic-bezier(0.4, 0, 0.25, 1) 0ms;
    -o-transition: transform 400ms cubic-bezier(0.4, 0, 0.25, 1) 0ms;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.25, 1) 0ms;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.25, 1) 0ms, -webkit-transform 400ms cubic-bezier(0.4, 0, 0.25, 1) 0ms;
    -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
            transform: scale(1.025);
}
.blog_item_link:hover .blog_item_image img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
.blog_item_title{
    color: #fff;
    line-height: normal;
    max-height: 2.25rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: normal;
}
.blog_item_cat{
    background-color: #5e90f4;
}
.blog_item_cat .small_text{
    color: #fff;
}
.blog_item_info .blog_item_cat{
    margin: 1rem 0 0 1rem;
}
.blog_item_infos{
    gap: 12px;
}
.blog_item_infos span{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    color: #D1D4DB;
}
.blog_item_infos span + span{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
}
.blog_item_infos span + span:before{
    content: '';
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 4px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23D1D4DB'/%3E%3C/svg%3E%0A");
}

.blog_item.hero{
    height: 456px;
}
.blog_item.long,
.blog_item.solo,
.blog_item.double{
    height: 408px;
}
.blog_item.hero .blog_item_info,
.blog_item.long .blog_item_info,
.blog_item.double .blog_item_info{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.blog_module_link,
.blog_module_link:hover,
.blog_module_link:focus{
    color: #5E90F4;
}
#blog_share_overlay {
    background: rgba(17,19,20,0);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: background var(--ds-main-transition);
    -o-transition: background var(--ds-main-transition);
    transition: background var(--ds-main-transition)
}
.share_modal_content{
    padding: 1.5rem;
    border: 0;
    background-color: var(--ds-white-color);
    -webkit-box-shadow: var(--ds-dark-shadow);
            box-shadow: var(--ds-dark-shadow);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    border-radius: 1rem;
    outline: 0;
}
.share_modal_header{
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.share_modal_header .btn-close{
    border-radius: .625rem;
    background-color: #f4f4f4;
    --bs-btn-close-bg: none;
    width: 2rem;
    height: 2rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2rem;
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 1;
    margin-left: auto;
    text-decoration: none;
    --bs-btn-close-color: #000;
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: var(--bs-btn-close-color);
    border: 0;
    cursor: pointer;
}
.share_modal_copy_btn{
    cursor: pointer;
}
.share_modal_copy_btn .copy_icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
}
.share_modal_copy_btn .copy_icon .act,
.share_modal_copy_btn.active .copy_icon .def{
    display: none;
}
.share_modal_copy_btn.active .copy_icon .act{
    display: block;
}
.share_modal_copy{
    border: 1px solid #F2F2F2;
}
.share_modal_copy_info span,
.share_modal_copy_info input{
    line-height: normal;
}
.blog_article_share {
    position: relative;
}
.blog_share_btn {
    height: 40px;
    background-color: #F3F4F6;
    color: #00171F;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.blog_share_btn:hover{
    background-color: #5E90F4;
    color: #fff;
}
.share_modal{
    position: absolute;
    right: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    z-index: 99;
    top: calc(100% + .5rem);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}
.share_modal.active{
    visibility: visible;
    opacity: 1;
}
.blog_answer{
    position: relative;
}
.blog_answer:before{
    content: '';
    width: 2px;
    height: 100%;
    background-color: #F2F2F2;
    top: 0;
    left: -16px;
    position: absolute;
}
.ds-blog-search-button svg path{
    fill: none!important;
}
.blog_header_search{
    width: 100%;
    max-width: 240px;
}
.ds-blog-search input{
    background: #fff;
    padding-left: 44px;
}
.ds-blog-search .ds-blog-search-button{
    right: unset;
    left: 1rem;
}
@media screen and (min-width: 1440px) {
    .blog_item.hero .blog_item_title,
    .blog_item.long .blog_item_title{
        font-size: 1.5rem!important;
        max-height: 4rem;
    }
}
@media screen and (max-width: 991px){
    .blog_item.long{
        height: 336px;
    }
    .blog_item.solo,
    .blog_item.double{
        height: 196px;
    }
}
@media screen and (max-width: 767px) {
    #blog_share_overlay.active {
        background: var(--ds-popup-backdrop-bg);
        z-index: 12301;
        visibility: visible;
    }
    .blog_item.double{
        height: auto;
    }
    .blog_item.double .blog_item_link{
        min-height: 196px;
    }
    .blog_header_search{
        max-width: unset;
    }
    .blog_item.long{
        height: 296px;
    }
    .share_modal{
        position: fixed;
        top: unset;
        left: 0;
        right: 0;
        bottom: -100%;
        z-index: 12302;
        width: 100%;
        -webkit-transition: bottom var(--ds-main-transition);
        -o-transition: bottom var(--ds-main-transition);
        transition: bottom var(--ds-main-transition);
    }
    .share_modal.active{
        bottom: 0;
    }
    .share_modal_content{
        border-radius: 16px 16px 0 0;
    }
    .call_blog_comm_modal_btn{
        width: 100%;
    }
}