/** Tob banner *********************************************************/
.top-banner {
    background-color: #3a93bc;
    padding: 8px 0px;
    color: #FFF;
    font-weight: 700;
    font-size: 12px;
    line-height: 13px;
}
.top-banner .container-md {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.top-banner .text-wrapper {
        display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 100px;
}
.top-banner .close-top-banner-btn {
    margin-right: 24px;
    cursor: pointer;
}
.top-banner .solved-pads > span {
    padding: 2px 5px;
    margin: 0 5px;
    background: white;
    color: #374145;
}
@media (max-width: 991px) {
    .top-banner .text-wrapper {
        padding: 0px;
    }
    .top-banner .close-top-banner-btn {
        position: absolute;
        right: 0px;
        top: 0px;
        margin: 0px;
    }
}
@media (max-width: 767px) {
    .top-banner .text-wrapper {
            flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .top-banner .text-wrapper > div {
        margin-bottom: 8px;
    }
    .top-banner .text-wrapper > div:last-child {
        margin-bottom: 0px;
    }
    .top-banner .close-top-banner-btn {
        right: 24px;
    }
}
/** End Tob banner *****************************************************/

/** Header ***********************************************/
#_desktop_language_selector {
    margin-left: 24px;
}
#_desktop_language_selector .dropdown-menu,
#_desktop_currency_selector .dropdown-menu {
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 4px;
    padding: 0px;
    width: 157px;
    min-width: unset;
}
#_desktop_language_selector .dropdown-menu .dropdown-item,
#_desktop_currency_selector .dropdown-menu .dropdown-item {
        font-size: 13px;
    line-height: 35px;
    padding: 0px 10px 0px 12px;
}
#_desktop_language_selector .dropdown-menu .dropdown-item:hover,
#_desktop_language_selector .dropdown-menu .dropdown-item.selected,
#_desktop_currency_selector .dropdown-menu .dropdown-item:hover,
#_desktop_currency_selector .dropdown-menu .dropdown-item.selected {
    color: #374145;
    background-color: #EEE;
}
#_desktop_language_selector .dropdown-toggle:after,
#_desktop_currency_selector .dropdown-toggle:after {
    content: " ";
    width: 8px;
    height: 8px;
    background-image: url(../img/icon_caret_down.svg);
    display: block;
    background-size: 8px 8px;
    background-position: 0 0;
    right: 0;
    position: absolute;
    top: 7px;
    border: none;
}
#_desktop_language_selector a.dropdown-toggle,
#_desktop_currency_selector a.dropdown-toggle {
    font-size: 14px;
    font-weight: 600;
    padding-left: 0px;
}
#_desktop_cart {
    padding-right: 24px;
    margin-left: 32px;
}
#_desktop_cart .cart-nb-products,
#_mobile_cart .header-block__badge {
    border-radius: 50%;
    background-color: #70ad5e;
    min-width: 24px;
    height: 24px;
    text-align: center;
    color: white;
    padding-top: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}
#search_widget form .js-search-icon {
        position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#search_widget {
    min-width: unset;
}
#search_widget form input {
    font-size: 14px;
    padding: 8px;
    background-color: transparent;
    border-radius: 4px;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.03), 0 0 2px 0 rgba(0, 0, 0, 0.03);
    width: 247px;
        color: #5f7076;
}
#search_widget form input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
#search_widget form input::before,
#search_widget form input::after,
#search_widget form input::-ms-clear,
#search_widget form input::-webkit-search-cancel-button,
#search_widget form input::-moz-search-clear {
    display: none !important;
}
.amegamenu_mobile-open .header-logo-wrapper {
    position: relative;
    z-index: 102;
}
.header-logo-wrapper .container-md {
    position: relative;
    z-index: 1;
}
.header-logo-wrapper {
    height: 100px;
}
body#index .header-logo-wrapper {
    height: auto;
}
.header-logo-wrapper .container-md .logo-container{
    position: absolute;
    z-index: 100;
    height: 66px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.header-logo-wrapper .container-md .logo-container img {
    width: auto;
    height: 66px;
    display: block;
}
.nav-header-title {
    margin: 0px;
    padding: 0px;
    font-family: "Assistant", sans-serif;
    font-weight: 700;
    color: #374145;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.5;
}
@media (max-width: 768px) {
    .header-logo-wrapper .container-md .logo-container {
        margin: 0 auto;
        width: fit-content;
        position: unset;
        transform: none;
    }

    .nav-header-title {
        font-size: 12px;
    }

    #_mobile_language_selector {
        margin-left: 24px;
    }

    #_mobile_cart {
        margin-right: 8px;
    }
}
/** End Header ***********************************************/

/** Start Footer **************************************************/
.footer .footer__block__content li {
    list-style: disc;
    color: #30393c;
    font-size: 13px;
}

#footer_sub_menu_7 {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: 1fr 1fr;
    column-gap: 10px
}
.footer__main__top {
    position: relative;
}
.footer__main__top .footer__block:nth-child(2) .footer__block__title {
    opacity: 0;
    visibility: hidden;
}
.email-subscription {
    position: absolute;
    bottom: 0;
    right: -12px;
    width: 50%;
    padding: 20px 24px !important;
}

.blockreassurance {
    border-top: 4px solid #F7F9FA;
    padding-top: 40px;
    margin: 40px 12px 0;
    padding-bottom: 28px;
}
.blockreassurance > .row {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.blockreassurance > .row > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    margin: 0;
    padding: 0;
    align-items: center;
}
.blockreassurance .block-title {
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    margin-right: 20px
}
.blockreassurance .block-icon,
.blockreassurance .block-icon img {
    height: auto;
    width: auto
}

#footer_sub_menu_9 {

    padding-left: 0
}
#footer_sub_menu_9 li {
    list-style: none;
}

#footer_sub_menu_9 .custom-page-link:before {
    content: '';
    background: url(/themes/hummingbird/assets/img/map_maker.svg) no-repeat center;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: text-bottom;
}
/*.footer__main__top .footer__block:nth-child(4) .footer__block__title:after {*/
/*    content: '';*/
/*    width: 15px;*/
/*    height: 10px;*/
/*    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 160c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-9.2-9.2-11.9-22.9-6.9-34.9S19.1 160 32 160l320 0z"/></svg>') no-repeat center;*/
/*    background-size: cover;*/
/*    margin: 0 15px*/
/*}*/

.footer .footer__block__title {
    align-items: center;
}

.footer__before .banner {
    position: relative
}
.footer__before .banner picture img {
    width: 100%
}
.footer__before .texts {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translate(-50%);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 700;
    gap: 32px
}
.footer__before .banner_desc {
    display: flex;
    max-width: 60%;
    gap: 32px;
    text-align: left;
    font-size: 14px;
    font-weight: 900;
    padding-right: 32px
}
.footer__before .banner_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    padding-left: 32px
}
.footer .footer__block__toggle {
    justify-content: flex-start;
    gap: 15px;
}
.footer .footer__block__toggle svg {
    max-width: 20px;
    margin-bottom: 1.25rem;
    display: none
}
.footer__main__top .footer__block:nth-child(4) svg {
    display: block
}
@media (min-width: 768px) {
    #footer_sub_menu_9.collapse {
        display: none
    }
    #footer_sub_menu_9.collapse.show {
        display: block
    }
}
@media (max-width: 992px) {
    #footer_sub_menu_5, #footer_sub_menu_6 {
        display: block;
    }

    .footer__main__top .footer__block:nth-child(1),
    .footer__main__top .footer__block:nth-child(2) {
        width: 50%
    }

    #footer_sub_menu_6 {
        padding: 0
    }

    .email-subscription {
        position: static;
        width: 100%;
        order: -1;
        margin-bottom: 16px;
    }

    .email-subscription .email-subscription__content__inputs input[type=email] {
        margin-right: 0
    }

    .email-subscription .email-subscription__content__inputs {
        flex-direction: column;
        gap: 8px;
    }

    .email-subscription .email-subscription__content__inputs .btn-primary {
        width: 100%;
    }

    .email-subscription .email-subscription__content__inputs .newsletter_name, .email-subscription .email-subscription__content__inputs .newsletter_email {
        width: 100%;
        margin: 0
    }

    .email-subscription__content__right,
    .email-subscription__content__left {
        padding: 0;
        width: 100%
    }

    .footer .footer__main {
        padding-top: 0;
        padding-bottom: 48px
    }

    .blockreassurance {
        margin: 0;
        padding: 40px 0 0;
    }

    .blockreassurance > .row {
        flex-direction: column;
        margin: 0;
        gap: 20px;
    }

    .blockreassurance > .row > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .footer__before .texts {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 32px
    }
    .footer__before .banner_desc {
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        padding: 0
    }
    .footer__before .banner_title {
        width: 100%;
        text-align: left;
        padding: 32px 0 0
    }
    .footer__before .banner {
        max-height: 450px;
        overflow: hidden
    }
}

@media (max-width: 575px) {
    .blockreassurance .block-title {
        height: auto;
    }
    .blockreassurance .block-icon {
        height: auto;
        margin: 0
    }
}

/** End Footer **************************************************/

/** Product styles **************************************************/
.product__left {
    flex-direction: row;
    flex-wrap: nowrap;
    display: flex;
    padding-right: 48px;
}
.social-sharing .social-button {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    align-items: center;
    cursor: pointer
}
.social-sharing .social-button img {
    border: solid 2px #2589b1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 4px;
}
.social-sharing .social-button span {
    font-weight: 700;
    text-align: center;
    color: #30393c;
    margin-top: 8px;
    font-size: 8px;
    line-height: 1.5;
}

.product_categories .category_title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    color: #30393c;
    line-height: 24px;
}
.product_categories {
    display: flex;
    flex-flow: column;
}
.product__actions .recommend_info,
.product_categories .recommend_info {
    display: flex;
    line-height: 16px;
    padding: 10px 20px;
}
.product__actions .recommend_info:nth-child(2n+1),
.product_categories .recommend_info:nth-child(2n+1) {
    background: #fff;
}
.product__actions .product__prices .recommend_info {
    background: transparent
}
.product__actions .product__variants .recommend_title,
.product__actions .product__prices .recommend_title {
    margin: 0;
    text-transform: uppercase
}
.product-prices-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.product__actions .product-prices-block .product__total-price,
.product__actions .product-prices-block .product__current-price-block {
    display: flex;
    align-items: center;
    width: 45%;
    gap: 5px
}
.product__discount-percentage {
    margin-right: 10px;
    padding: 1px 2px;
    font-weight: 600;
    font-family: "Assistant", sans-serif;
    font-size: 21px;
    line-height: 23px;
    color: #fff;
    background: #f13340;
    border: 1px solid #d02a2c;
}
.product__actions .recommend_title,
.product_categories .recommend_title {
    font-size: 14px;
    color: #374145;
    width: 25%;
    font-weight: 600;
}
.product__actions .recommend_detail,
.product_categories .recommend_detail {
    padding-left: 4px;
    width: 75%;
    color: #30393c;
    font-size: 13px;
}

.btn-quantity-label {
    font-size: 12px;
    color: #374145;
    text-transform: uppercase;
    padding: 24px 20px;
    background-color: #eeeff0;
    line-height: 18px;
    text-align: center
}
.product__minimal-quantity {
    color: #374145;
    font-size: 12px;
}
.product__minimal-quantity .material-icons {
    font-size: 16px;
}
.product-actions__button {
    padding-left: 32px;
}
.delivery_time {
    padding-right: 24px;
    font-weight: 700;
    color: #374145;
    font-size: 12px;
}
#product-infos-accordion {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px
}
#product-infos-accordion .accordion-item {
    width: 49%;
    max-height: 150px;
    overflow: hidden;
}
#product-infos-accordion .accordion-item.expand {
    max-height: 1500px;
}
.btn_show_more_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    width: 100%;
}
.btn_show_more_wrapper .bnt_show_more {
    width: 250px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    border: solid 1px #d0d4d6;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    background-color: white;
}
.attribute-name {
    position: absolute;
    font-size: 9px;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    line-height: 9px;
}
.page-product .product__variants .variant .color-variants .color-variant {
    position: relative;
}
.page-product .product__variants .color-variant .color:not(.active) .attribute-name {
    display: none
}
.typeofcape-wrapper {
    display: inline-block;
}
.product-type-cape {
    display: inline-flex;
    align-items: center;
}
.product-type-cape .form-label {
    margin: 0;
    padding: 18px 20px;
    background-color: #eeeff0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.33;
    color: #374145;
}
.product-type-cape .variant {
    display: flex;
    flex-direction: row-reverse;
}
.product-type-cape .select-dimension span.active {
    font-weight: bold;
}
.product-type-cape .select-dimension {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background-color: #eeeff0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.33;
    color: #374145;
}
.product-type-cape .form-select {
    font-size: 14px;
    padding: 4px 35px 4px 20px;
    height: auto;
    border: 0;
    border-radius: 4px;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.03), 0 0 2px 0 rgba(0, 0, 0, 0.03);
    color: #5f7076;
}
.product-type-cape .group-sizes-variations {
    display: flex;
}
.product-sizes-block {
    display: flex;
    gap: 32px;
}
.product-type-cape .select-dimension span {
    cursor: pointer;
    font-weight: 600;
}
.product-miniature__prices .price-wrapper {
    margin-top: auto;
}
@media (max-width: 767px) {
    .product-actions__button {
        padding: 24px 0 0;
        margin: 0
    }
    .product__actions .recommend_title, .product_categories .recommend_title {
        width: 35%;
    }
    .product__actions .recommend_detail, .product_categories .recommend_detail {
        width: 65%;
    }
    .product__actions .product__prices .recommend_info {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 5px;
    }
    #product-infos-accordion .accordion-item {
        width: 100%
    }
    .product-sizes-block {
        flex-wrap: wrap;
        gap: 20px
    }
    .page-product .product__variants .variant, .product-type-cape {
        width: 100%
    }
    .product-type-cape .group-sizes-variations,
    .product-type-cape .form-label {
        width: 50%
    }
}
/** End Product styles **************************************************/
/** Other styles **************************************************/
.no-border {
    border: none !important;
}
.no-shadow {
    box-shadow: none !important;
    text-shadow: none !important;
}
@media (max-width: 767px) {
    .footer__main__top .footer__block:nth-child(4) svg {
        margin-bottom: 0
    }
}
/** End Other styles **************************************************/

/** CMS Pages **************************************************/
#cms .breadcrumb {
    display: none;
}
/* #cms #wrapper {
    margin-top: 120px;
} */
#cms.layout-left-column #left-column {
    padding-right: calc(var(--bs-gutter-x) * .5);
}
#cms .footer__block__toggle {
    text-align: end;
}
#cms .cms-menu__icon {
    font-size: 2em;
}
#cms .cms-menu {
    padding-right: 10%;
}
#cms .cms-menu li {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px #374145;
}
#cms .cms-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: #374145;
    text-transform: uppercase;
}

#cms .page-content h1 {
    text-transform: uppercase;
    color: #30393c;
    font-weight: bold;
    font-size: 24px;
    margin-top: 0;
}

@media (max-width: 767px) {
    #cms .cms-menu {
        padding-right: 30%;
    }
    #cms #wrapper {
        margin-top: 40px;
    }
}

@media (min-width: 768px) {
    #cms .cms-menu {
        display: block;
    }
}

/** End CMS Pages **************************************************/

/** Category page ****************************************************/
.block-category #category-description {
    position: relative;
}
@media (min-width: 768px) {
    #category #js-product-list-header .category-cover img {
        max-height: 190px;
        width: auto;
    }
    #category-description {
        max-height: 115px;
        overflow: hidden;
    }
}
.block-category #category-description #show-more-category-desc {
    display: none;
    position: absolute;
    bottom: -6px;
    left: 50%;
    font-weight: 700;
    z-index: 9;
}
.block-category #category-description.has-vertical-overflow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    left: 0px;
    bottom: 0px;
    background-color: #ECEEEF;
    background: linear-gradient(180deg, rgba(236, 238, 239, 0.81) 0%, rgba(236, 238, 239, 1) 100%);
}
.block-category #category-description.has-vertical-overflow #show-more-category-desc {
    display: block;
}
.block-category #category-description.show-all {
    overflow: visible;
    max-height: unset;
}
.block-category #category-description.show-all #show-more-category-desc,
.block-category #category-description.show-all::after {
    display: none !important;
}
/** End Category page ************************************************/


.page-order #login_customer_popup_content {
    display: none;
}

#product #ps_checkout-payment-method-logo-block-container {
    display: none;
}

/* contact form ************************************* */
#contact input[name="submitMessage"] {
        background-color: #3a93bc;
}
/* end contact form ********************************* */