:root {
    --mainblack: #242323;
    --gray-hover: #f9f9f9;
    --bg-footer: #000000;
    --black: #000000;
    --price-faded: #d9d9d9;
    --product-before-offer: #969696;
    --discount: #c33c3c;
    --favorites: #952424;
    --input-grey: #ededed;
    --basket-grey :#cccccc;
    --basket-discount: #843e3e;
    --main-bg: url(/dist/images/background.png);
    --questionmark: url(/dist/images/questionmark.svg);
    --check: url(/dist/images/check.svg);
    --add-btn: url(/dist/images/add-button.svg);
    --minus-btn: url(/dist/images/minus-button.svg);
 }


html {
    /* Adjust font size */
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    /* Font varient */
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    /* Smoothing */
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body, body.active {
    position: relative;
    overflow-x: hidden;
}


body, p, h1, h2, h3, h4, h5, h6, a, input, select, button, span, li {
    font-family: 'Open Sans', sans-serif;
}

.container-fluid {
    padding: 142px 0 0 0;
}

.page {
    min-height: calc(100vh - 142px - 230px);
}

.mainColor {
    color: var(--color) !important;
}

.mainBgColor {
    background-image: var(--gradient) !important;
}

.mainBorderColor {
    border-color: var(--color) !important;
}

.mainGradientColor {
    background-image: var(--gradient);
}

.font-bold-600 {
    font-weight: 600 !important;
}

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.btn-link {
    margin: auto;
    padding: 0 1rem;
    height: 40px;
    border-radius: 4px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--gradient);
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    z-index: 1050;
}

.loader.modal-loader {
    position: absolute;
    background-color: rgba(0,0,0,0.85);
    /*border-radius: 0 0 12px 12px;*/
}

.loader:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    left:0;
    top:0;
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: bottom;
}

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

.loader div:nth-child(1) {
    left: -20px;
    animation: lds-ellipsis1 0.6s infinite;
}
.loader div:nth-child(2) {
    left: -20px;
    animation: lds-ellipsis2 0.6s infinite;
}
.loader div:nth-child(3) {
    left: 0;
    animation: lds-ellipsis2 0.6s infinite;
}
.loader div:nth-child(4) {
    left: 20px;
    animation: lds-ellipsis3 0.6s infinite;
}


@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.pk-loader {
    background: var(--bg-color);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}
.pk-loader svg {
    bottom: 0;
    height: 70px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
}
.pk-loader svg polygon {
    stroke-dasharray: 17;
    -webkit-animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
    animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
}
.loader-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    letter-spacing: 4px;
    margin-top: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
@-webkit-keyframes dash {
    to {
        stroke-dashoffset: 136;
    }
}
@keyframes dash {
    to {
        stroke-dashoffset: 136;
    }
}

#toTopBtn {
    display: none;
    background: none;
    text-align: center;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 40px;
    right: 30px;
    transition: all .4s;
    z-index: 1000;
}
#toTopBtn.bottom_up {
    bottom: 65px;
}

#toTopBtn img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
#toTopBtn:hover {
    cursor: pointer;
    background-color: #333;
}
#toTopBtn:active {
    background-color: #555;
}

.line-height-normal {
    line-height: normal;
}

[data-toggle~="collapse"] {
    cursor: pointer;
}

[data-toggle=modal] {
    cursor: pointer;
}

.no-border {
    border: none;
}

.no-background {
    background: none;
}

.no-radius {
    border-radius: 0;
}

.bg-black {
    background-color: #000000;
}

.dropdown-toggle {
    padding-right: 20px;
}

.toggle-icon {
    position: absolute;
    right: 0;
    top: 14px;
    width: 12.5px;
    height: 7.3px;
    object-fit: contain;
}

.dropdown-toggle::after {
    display: none;
}

.pac-container {
    z-index: 1050;
}

.pac-item {
    padding: 10px 10px 10px 25px;
}

.pac-icon-marker {
    display: none;
}

input {
    border: 1px solid #ffffff;
}

.price:before {
    content: '€';
}

input:focus,
button:focus,
.btn:focus,
a:focus {
    outline: none;
    box-shadow: none;
}

a {
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: initial;
}

.btn-link:hover {
    text-decoration: none;
    color: var(--white);
}

.label {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
}

select.form-control:not([size]):not([multiple]){
    height: 45px;
    padding-right: 30px;
}

select.form-control + .collapse-icon {
    right: 10px;
    top:0;
    bottom: 0;
    margin: auto;
    height: 7.3px;
    object-fit: contain;
    pointer-events: none;
}

.select_icon_lower select.form-control + .collapse-icon,
.select_icon_fluid select.form-control + .collapse-icon {
    bottom: 25%;
}

.text-danger p {
    color: #dc3545!important;
    line-height: normal;
}

.form-control {
    height: 45px;
    border-radius: 4px;
    background-color: #eeeeee;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
    border: none;
    outline: none;
    box-shadow: none;
}


input:focus,
.custom-file,
.custom-file:focus,
.custom-file:active,
.custom-file-input,
.page .custom-file-input:focus,
.custom-file-input:active,
.custom-file-label:focus,
.custom-file-label:active {
    box-shadow: none;
    outline: none;
}

.custom-file-input:focus~.custom-file-label {

}
select.form-control:not([size]):not([multiple])
.custom-file-input:focus~.custom-file-label::after {
    border-color: transparent;
}

.custom-file-input~.custom-file-label::after {
    content: '' !important;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    background-image: url('/dist/images/upload.svg'); /*TODO*/
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    margin-top: 2px;
}

.page .custom-file-input:focus~.custom-file-label {
    box-shadow: none;
    outline: none;
}

.custom-file-label {
    height: 45px;
    border: 1px dashed #979797 !important;
    box-shadow: none;
    outline: none !important;
    display: flex;
    align-items: center;
}

.form-control:focus {
    background-color: #eeeeee;
}


.form-control::placeholder {
    color: rgba(0,0,0, 0.5);
}

.form-subtitle {
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
}

select.form-control,
.form-control:focus {
    color: inherit;
}

.submit_btn {
    height: 50px;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    border-radius: 0;
    background-color: var(--black);
}

.submit_btn_outline {
    height: 50px;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--black);
    border-radius: 0;
    background-color: var(--white);
    border: 1px solid var(--black);
}


.form-check-input {
    opacity: 0;
}

form .form-check-label {
    padding-left: 30px;
    cursor: pointer;
}

form .form-check-label:before {
    content: '';
    width: 27.3px;
    height: 27.3px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.modal form .form-check-label:before {
    background-color: var(--input-grey);
    top: 0;
    bottom: 0;
    margin: auto;
}

form .form-check-input:checked~.form-check-label::after {
    content: '';
    width: 27.3px;
    height: 27.3px;
    background-color: var(--black);
    background-image: url(/dist/images/check.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom:0;
    margin: auto;
}

.modal form .form-check-input:checked~.form-check-label::after {
    top: 0;
    bottom: 0;
    margin: auto;
}


form .form-check-center {
    width: fit-content;
    margin: auto;
}

.modal form .collapse-icon {
    width: 12.5px;
    height: 7.3px;
    object-fit: contain;
    right: 15px;
    bottom: 20px;
    pointer-events: none;
}

.line {
    width: 100%;
    height: 1.5px;
    background-color: var(--black);
    opacity: 0.1;
}

.text-normal {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.06;
    letter-spacing: normal;
    color: var(--black);
    margin-bottom: 0;
}

.text-bold {
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    color: var(--black);
    margin-bottom: 0;
}

.page .content {
    padding-top: 2.5rem;
}

.page .content,
.page .content p {
    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    text-align: justify;
    color: var(--black);
}

.page .thankyou-content,
.page .thnakyou-content p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: var(--black);
}

.pr-alert {
    padding: .5rem 1rem;
    font-family: 'Open Sans';
    font-size: 14.8px;
    font-weight: 400;
}

.pr-alert.alert-success {
    background-color: #9ecc7f;
    border-color: #9ecc7f;
}

.pr-alert.alert-danger {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.rotated-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

#top-navbar .navbar-phone {
    position: absolute;
    right: 10px;
    top: 14px;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    height: 30px;
}

#top-navbar .mobile-icon {
    width: 40px;
    height: 40px;
}

#top-navbar .mail-icon {
    width: 40px;
    height: 40px;
}

#top-navbar .menu-icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

#top-navbar .navbar-phone img {
    width: 27px;
}

#top-navbar .dropdown-menu {
    top: 90%;
}

#top-navbar .dropdown-menu.show {
    background-color: var(--white);
    border-radius: 0.15rem;
}

#top-navbar .dropdown-menu {
    transition: ease-out 1s;
}

#top-navbar .dropdown-menu.show .dropdown-item {
    font-size: 12.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
    padding: 0.5rem 1.5rem;
}


#top-navbar .dropdown-menu.show .dropdown-item.disabled {
    pointer-events: none;
}

#top-navbar .dropdown-menu.show .dropdown-item:hover,
#top-navbar .dropdown-menu.show .dropdown-item.active,
#top-navbar .dropdown-menu.show .dropdown-item:focus {
    background-color: var(--gray-hover);
}

#top-navbar .account_dropdown .arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

#top-navbar .account_dropdown .profile-icon {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 50%;
}

#top-navbar .account_dropdown .user_name {
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    color: var(--black);
    margin: 1rem auto 0;
}

#top-navbar .account_dropdown .logout-icon {
    width: 11px;
    height: 13px;
    object-fit: contain;
}

#top-navbar .account_dropdown .dropdown-menu {
    left: -80%;
    top: 100%;
}

#top-navbar .account_dropdown .dropdown-item {
    white-space: normal;
}


/*#top-navbar .dropdown-menu.show .dropdown-item:not(:last-child) {*/
    /*border-bottom: solid 0.5px #729954;*/
/*}*/

/*#top-navbar .dropdown-menu.show .dropdown-item:hover {*/
    /*color: #729954;*/
/*}*/

.section-head {
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: center;
    color: #242323;
}

.section-subhead {
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #353535;
}

.head-line {
    width: 100%;
    height: 2px;
    background-color: var(--black);
}

.container-fluid {
    overflow-x: hidden;
}

    /* TOP NAVIGATION */


#top-navbar {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0)), url(/dist/images/header_bg.png);
    height: 142px;
}


#top-navbar .getStarted {
    width: 160px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    background-image: var(--gradient);
    margin-left: 0.7rem;
    margin-right: 0.55rem;
}

#top-navbar .nav-link {
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
}

#top-navbar .nav.green .nav-link {
    color: #3e5038;
}

#top-navbar .nav.black .nav-link {
    color: #58595b;
    margin-top: auto;
    margin-bottom: .25rem;
    font-weight: 400;
    font-size: 16px;
}

#top-navbar .orderNow .nav-link {
    color: #ffffff;
}


#top-navbar .learnMore .nav-link {
    color: #ffffff;
}


#top-navbar.scrolled {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 90px;
}

#top-navbar .nav-contact a {
    font-family: 'Open Sans', 'sans-serif';
    font-weight: bold;
    font-size: 12px;
}

#top-navbar .nav-contact a span {

    margin-left: 0.5rem;
}


#top-navbar .logo-img {
    width: 280px;
    height: 54px;
    object-fit: contain;
    object-position: left;
    transition: all 0.3s;
}

#top-navbar.scrolled .logo-img {
    width: 200px;
    height: 40px;
}

.tracker-icon {
    width: 33.7px;
    height: 33.7px;
    object-fit: contain;
}

#top-navbar .open-menu path,
#top-navbar .tracker-icon path,
#top-navbar .favorites-icon path,
#top-navbar .profile-icon path,
#top-navbar .cart-icon path {
    fill: #ffffff;
}

#top-navbar .bars {
    font-size: 35px;
    color: #729954;
}

.favorites-icon {
    width: 29px;
    height: 25.4px;
    object-fit: contain;
}


.profile-icon {
    width: 26.6px;
    height: 30.6px;
    object-fit: contain;
}


.cart-icon {
    width: 26.5px;
    height: 28px;
    object-fit: contain;
    margin-right: 0.25rem;
}

.orderNow {
    width: 159.8px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

#top-navbar .learnMore {
    width: 210px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

#top-navbar .learnMore:hover {
    background: transparent;
}

.login-icon {
    width: 26.5px;
    height: 29.6px;
    object-fit: contain;
}

.orderNow:hover {
    background: transparent;
}

#top-navbar .badge {
    position: absolute;
    top:0;
    right: 0;
    width: 17px;
    height: 17px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    border-radius: 50%;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    background: #c33c3c;
}

.addToFavBtn.addedToFavorites .favorites-icon path {
    fill: var(--favorites);
    stroke: var(--favorites);
}

.product-categories .card-img-top {
    width: 100%;
    height: 368px;
    object-fit: cover;
}

.product-categories .card-img-overlay {
    height: 368px;
    z-index: 0;
}

.product-categories .card-img-link {
    width: 100%;
    height: 368px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product .discount_label,
.product-categories .discount_label {
    height: 47px;
    background-color: #fafafa;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--discount);
    position: absolute;
    left: 0;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .discount_label {
    left: 20%;
    top: 25px;
    box-shadow: 0 0 5px lightgrey;
}

.product-categories .product_buttons {
    background: none;
    border:none;
    outline: none;
    box-shadow: none;
    margin: 0 0.5rem;
}

.product-categories .card-img-overlay .product_buttons {
    display: none;
}

.product-categories .card-img-overlay:hover {
    background-color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-categories .card-img-overlay:hover .product_buttons {
    display: block;
    z-index: 10;
}

.product-categories .card-img-overlay:hover .discount_label {
    display: none;
}

.product-categories .favorites-icon {
    width: 38.5px;
    height: 33px;
    object-fit: contain;
}

.product-categories .view-icon {
    width: 52px;
    height: 30px;
    object-fit: contain;
}

.product-categories .cart-icon {
    width: 38.5px;
    height: 33px;
    object-fit: contain;
}


.product-categories .card-title {
    height: 54px;
    font-size: 19px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.37;
    letter-spacing: normal;
    color: var(--black);
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-categories .price_section {
    max-width: calc(100% - 105px);
    height: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.product-categories .beforeOfferPrice {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-decoration: line-through;
    color: var(--price-faded);
}

.product-categories .afterOfferPrice {
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
}

.product-categories .badge:empty {
    display: inherit;
}

.product-categories .color-badge {
    width: 14px;
    height: 14px;
    padding: 0;
    margin: 0 0.15rem 0.35rem;
}

.product-categories .color-badge.bordered {
    border: solid 1px #979797;
}

.product-categories .color-badge.badge-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.product-categories .slick-slide {
    margin-left: 10px;
    margin-right: 10px;
}

.slider .slick-prev,
.slider .slick-next {
    width: 54px;
    height: 54px;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.11);
    background-color: var(--white);
    z-index: 1;
    top: 50%;
}

.slider .slick-arrow.slick-disabled {
    display: none !important;
}

.slider .slick-prev:before,
.slider .slick-next:before {
    width: 24px;
    height: 24px;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.slider .slick-prev:before {
    transform: rotate(-180deg);
}



button {
    border: none;
    background: none;
    outline: none;
    box-shadow: none;
}


button.navbar-brand {
    background: none;
    border-width: 0;
    padding: 0;
    margin: 0;
}

button:hover {
    cursor: pointer;
}

button:focus, a:focus {
    outline: none;
    box-shadow: none;
}


.open-menu {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

/* BANNERS */

.category-banner .card-img-top {
    width: 100%;
    height: 239px;
    object-fit: cover;
}

.category-banner .card-img-top.card-img-lg {
    height: 588px;
}

.category-banner .card-title {
    font-size: 34px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--white);
}

.mega-banner .card-img {
    width: 100%;
    height: 486px;
    object-fit: cover;
    object-position: right;
}

.mega-banner .card-title {
    font-size: 60.3px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fafafa;
}

.mega-banner .card-text {
    font-size: 53.1px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--white);
}

.mega-banner .btn {
    width: fit-content;
    height: 66px;
    border: solid 1px var(--white);
    background: transparent;
    border-radius: 0;
    font-size: 24.3px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--white);
    padding: .375rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mega-banner .card-body {
    padding: 4rem;
    width: 500px;
    height: 486px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.payment-methods .card {
    border: none;
    border-radius: 0;
}

.payment-methods .card-img-top {
    width: 100%;
    max-width: 61px;
    height: 39px;
    object-fit: contain;
}

.payment-methods .card-body {
    font-size: 14.4px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
}

.payment-methods .delete_card_btn {
    border: none;
    background: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}


.payment-methods .trash-icon {
    width: 31px;
    height: 32px;
    object-fit: contain;
}


/* BREABCRUMBS */

.breadcrumb {
    display: block;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black) !important;
    display: inline;
    white-space: normal;
}

.breadcrumb .breadcrumb-item.active {
    font-weight: 500;
}


.breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}


.breadcrumb-item+.breadcrumb-item::before {
    color: var(--black) !important;
}

.breadcrumb .open_cart_btn {
    cursor: pointer;
}


/* PAGINATION */

.isotope-pager {
    display: flex;
    justify-content: center;
    align-items: center;
}

.isotope-pager .pager {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    margin-left: -1px;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: rgba(0,0,0,0.5);
}

.isotope-pager .pager.current {
    color: var(--black);
}

.pagination .page-link {
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: rgba(0,0,0,0.5);
    background: none;
    border:none;
    outline: none;
    box-shadow: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

.forgot_pass_link {
    width: 50%;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: var(--black);
    padding-top: 5px;
}

.pagination .page-link.current {
    color: var(--black);
}

.pagination .page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* MODALS */

.modal-dialog.modal-main {
    max-width: 700px;
}

.modal-dialog.modal-lg {
    max-width: 1420px;
}

.modal-content {
    border:none;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: center;
    color: #363535;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border: none;
}

.modal-header .close,
.modal-header .close:hover {
    opacity: 1;
}

.modal-header .close-modal {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.modal-form-container {
    width: 520px;
    margin: auto;
}

.modal .form-control {
    background-color: var(--input-grey);
}

.modal .submit_btn {
    width: 340px;
}


.modal-lg .map {
    width: 100%;
    height: 851px;
    margin-left: -1px;
    margin-bottom: 1px;
}

.address-form-container {
    width: 610px;
    margin: auto;
    height: 100%;
}

.address-form-container .enter_address_btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.address-form-container .locate-icon,
.address-form-container .delete-icon {
    width: 33px;
    height: 34px;
    object-fit: contain;
}

.address-form-container .manual_submit_section {
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 7.5px;
    margin-bottom: 2rem;
}

.address-form-container .manual_submit_section .manual_submit_btn {
    background-color: var(--black);
    border-radius: 50%;
    width: 51px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-form-container .manual_submit_section .pin-con {
    width: 16px;
    height: 20px;
    object-fit: contain;
}

.address-form-container .not_find_address_text {
    font-size: 18.7px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: #656565;
    margin-bottom: 0;
}

.address-form-container .manual_submit_section  .submit_manually_text {
    font-size: 16.7px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    color: #656565;
    margin-bottom: 0;
}

.address-form-container .illustration {
    width: 269.5px;
    height: 157.4px;
    object-fit: contain;
}

.address-form-container textarea {
    height: 86px;
    resize: none;
}


.modal-lg .marker_message {
    padding: 0.75rem;
    border-radius: 7.5px;
    background-color: var(--black);
    font-size: 16.7px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--white);
    position: absolute;
    width: calc(100% - 110px);
    left: 30px;
    bottom: 35px;
}


/* BASKET */

#basket {
    width: 630px;
    position: fixed;
    z-index: 1040;
    height: 100%;
    right: -630px;
    transition: all .3s;
}

#basket.active {
    right: 0;
}

#basket .basket-head {
    font-size: 19px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
}

#basket .close-cart {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

#basket .basket_body {
    height: calc(100vh - 310px);
    overflow-y: auto;
}

#basket .basket_calculation {
    background-color: var(--bg-color);
}

#basket .basket_footer {
    background-color: var(--bg-footer);
}

#basket .checkout_btn:hover {
    color: var(--white);
}


.basket {
    background-color: var(--white);
}

.basket .empty-basket .empty-basket-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.basket .basket_product {
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.basket .basket_product_image {
    width: 100%;
    height: 115px;
    object-fit: contain;
    object-position: top;
    margin-top: 0.15rem;
}

.basket .basket_product_title {
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: normal;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.basket .remove-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.basket .basket_product_details {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--basket-grey);
    margin-bottom: 0.75rem;
    display: inline-block;
}

/*.basket .basket_product_color {*/
    /*width: 18px;*/
    /*height: 18px;*/
    /*display: inline-block;*/
    /*border-radius: 50%;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*padding: 10px;*/
/*}*/

.discount {
    color: var(--basket-discount) !important;
}

.basket .before_discount_price {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: right;
    color: var(--basket-grey);
    text-decoration: line-through;
    margin-bottom: 0;
}

.basket .after_discount_price {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: right;
    color: var(--black);
    margin-bottom: 0;
}

.basket .plus-icon,
.basket .minus-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.basket .input_quantity {
    width: 50px;
    height: auto;
    text-align: center;
    font-size: 13.6px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);

}

.basket .quantity_container {
    border: 1px solid rgba(0,0,0,0.4);
}

.basket .basket_calculation td {
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: middle;
}
.basket .basket_calculation .coupon_label,
.basket .basket_calculation .subtotal_label,
.basket .basket_calculation .discount_label,
.basket .basket_calculation .shipping_label {
    width: 82%;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: right;
    color: var(--black);
}

.basket .basket_calculation .total_label {
    font-size: 19px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.37;
    letter-spacing: normal;
    text-align: right;
    color: var(--black);
    padding-top: 0.5rem;
}

#basket.basket .basket_calculation .coupon_label,
#basket.basket .basket_calculation .subtotal_label,
#basket.basket .basket_calculation .discount_label,
#basket.basket .basket_calculation .shipping_label,
#basket.basket .basket_calculation .total_label {
    text-align: left;
}

.basket .basket_calculation .coupon_code,
.basket .basket_calculation .subtotal_sum,
.basket .basket_calculation .discount_sum,
.basket .basket_calculation .shipping_sum {
    font-size: 19px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.37;
    letter-spacing: normal;
    text-align: right;
    color: var(--black);
}

.basket .basket_calculation .total_sum {
    font-size: 25px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.04;
    letter-spacing: normal;
    text-align: right;
    color: var(--black);
    padding-top: 0.5rem;
}

.basket .basket_footer .cancel_order_btn {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black);
    display: block;
    margin: 1rem auto 0;
}



.noty-wrapper {
    position: absolute;
    z-index: 2;
    width: 350px;
    right: 10px;
    top: 50px;
}

.notify {
    z-index: 1;
    background: #fff;
    padding: 0.8rem;
    box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.16);
    border-radius: 7px;
    opacity: 0;
}

.notify.show {
    opacity: 1;
    transition: opacity 2s;
}

.notify.hide {
    opacity: 0;
    transition: opacity 2s;
}

.notify.show:not(:nth-child(1)) {
    margin-top: 10px;
}

.notify-cart .cart-item-img {
    width: 100%;
    height: 65px;
    object-fit: contain;
}

.notify-cart .title {
    font-size: 18px;
    font-weight: 600;
    background-image: linear-gradient(100deg,var(--black), var( --black));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notify-cart #cart-item-title {
    font-size: 17px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.46;
    letter-spacing: normal;
    color: #040406;
}

.notify-cart svg {
    margin-left: 0.25rem;
    width: 31px;
}



    /* FOOTER */


#learnMore {
    height: 466px;
    background-color: #292828;
}

#learnMore .container {
    height: 466px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#learnMore .card {
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

#learnMore .card-img {
    border: none;
    border-radius: 0;
    height: 466px;
    width: 100%;
    object-fit: cover;
}




#learnMore form {
    margin-top: 2rem;
}

#learnMore label {
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: normal;
    color: #ffffff;
    justify-content: flex-start;
    padding-bottom: 0.6rem;
}

#learnMore label[for="Email_or_Phone"] {
    padding-left: 24px;
}

#learnMore input[type="text"].form-control {
    width: 330px;
    height: 45px;
    border-radius: 0;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: normal;
    color: #575757;
    border: none;
}

#learnMore input[type="text"].form-control::placeholder {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: normal;
    color: #575757;
}

#learnMore .btn.contactForm-submit {
    width: 210px;
    height: 45px;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
}

#learnMore .btn.contactForm-submit:hover {
    opacity: 0.8;
}


button.nav-head {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.93;
    letter-spacing: normal;
    background: none;
    border-width: 0;
    padding-left: 0;
    width: 100%;
    text-align: left;
    position: relative;
}



#footer-top {
    background-color: var(--white);
}

#footer-bottom {
    background-color: var(--bg-footer);
}

#footer-top .nav-link {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.93;
    letter-spacing: normal;
    color: #3b3c3e;
    padding: 0.2rem 1rem;
}

#footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
    height: 57px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--white);
}

#footer-bottom .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.93;
    letter-spacing: normal;
    color: var(--white);
}

#footer-top .logo-img {
    width: 192px;
    height: 56px;
    object-fit: contain;
}

#footer-top .follow-us {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--white);
    padding-left: 0.75rem;
    padding-top: 0.15rem;
}

.footer-text,
.footer-text a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

#footer-top .footer-navigation .nav .nav-item:first-child .nav-link {
    padding-top: 0;
}

#footer-top .social-icons {
    width: 27px;
    height: 19px;
    object-fit: contain;
}

#footer-top .logo-dark {
    width: 271px;
    height: 53px;
    object-fit: contain;
}


.emblem {
    width: 23px;
    height: 22px;
    object-fit: contain;
    margin-left: 0.25rem;
    margin-right: 0.35rem;
}


.form-control:focus, button:focus, input:focus {
    outline: none;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--white);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select:hover {
    cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


button {
    border: none;
}


/* FORM VALIDATION */



.invalid-feedback.input-email {
    padding-left: 1.5rem;
}


.form-control.error-input {
    border: 1px solid #dc3545 !important;
}


/* MEDIA QUERIES */
/* ============= */

/* BREAKPOINT XL */
/* ------------- */



@media (max-width: 1439px) {


    /* NAVBAR */
    #top-navbar .learnMore {
        width: 169.6px;
    }

    /* BANNERS */

    .mega-banner .card-body {
        width: 100%;
    }

    /* FOOTER */
    #learnMore input[type="text"].form-control {
        width: 370px;
    }

    #learnMore .btn.contactForm-submit {
        width: 168px;
    }


    /* MODALS */

    .modal-dialog.modal-main {
        max-width: 730px;
    }

    .modal-dialog.modal-lg {
        max-width: 1180px;
    }

    .modal-form-container {
        width: 580px;
    }

    .modal .submit_btn {
        width: 280px;
    }

    .address-form-container {
        width: 505px;
    }
}


/* BREAKPOINT LG */
/* ------------- */

@media (max-width: 1199px) {

    /* TOP NAVIGATION */
    #top-navbar .learnMore {
        width: 131.6px;
    }

    /* BANNERS */
    .mega-banner .card-body {
        padding: 3rem 1rem 3rem 2rem;
    }

    /* FOOTER */
    #learnMore input[type="text"].form-control {
        width: 330px;
    }

    #learnMore .btn.contactForm-submit {
        width: 213px;
    }

    #top-navbar .brand-section {
        margin-right: auto;
        /*margin-left: auto;*/
    }

    /* MODALS */

    .modal-dialog.modal-main {
        max-width: 700px;
    }

    .modal-dialog.modal-lg {
        max-width: 950px;
    }

    .modal-form-container {
        width: 586px;
    }

    .modal .submit_btn {
        width: 271px;
    }

    .address-form-container {
        width: 405px;
    }

}


@media (max-width: 982px) {

    #learnMore input[type="text"].form-control {
        width: 324px;
    }

}


/* BREAKPOINT MD */
/* ------------- */

@media (max-width: 969px) {


    /* TOP NAVIGATION */
    .navbar > .container {
        justify-content: flex-end;
    }


    #top-navbar .brand-section .navbar-brand a {
        margin: 0;
    }

    /*#top-navbar .brand-section .logo-img {*/
        /*object-position: right;*/
    /*}*/

    #top-navbar button.navbar-brand {
        padding-right: 10px;
    }

    #top-navbar .learnMore {
        width: 158px;
    }

    /* BANNERS */

    .category-banner .card-img-top.card-img-lg {
        height: 548px;
    }

    .mega-banner .card-title {
        font-size: 60.3px;
    }

    .payment-methods .card-body {
        padding: 0.5rem;
    }

    /* FOOTER */
    #learnMore,
    #learnMore .container,
    #learnMore .card-img {
        height: 620px;
    }


    #learnMore .form-inline {
        flex-flow: column;
    }

    #learnMore label[for="Email_or_Phone"] {
        padding-left: 15px;
    }

    #learnMore input[type="text"].form-control,
    #learnMore .btn.contactForm-submit {
        width: 345px;
    }

    #learnMore .btn.contactForm-submit {
        margin-top: 1rem;
    }

    #learnMore .input-container.position-relative {
        width: 375px;
    }


    /* FORM VALIDATION */

    .invalid-feedback.input-email {
        padding-left: 15px;
    }

    /* MODALS */

    .modal-dialog.modal-main {
        max-width: 640px;
    }

    .modal-dialog.modal-lg {
        max-width: 730px;
    }

    .modal-form-container {
        width: 542px;
    }

    .modal .submit_btn {
        width: 261px;
    }

    .address-form-container {
        width: 640px;
        min-height: 550px;
    }

    .modal-lg .map {
        height: 282px;
    }

    .modal-lg .marker_message {
        width: calc(100% - 130px);
        left: 50px;
        bottom: 25px;
    }

    #footer-top .logo-dark {
        width: 100%;
    }

        /* ISOTOPE */

    .isotope-pager .prev svg,
    .isotope-pager .next svg {
        display: none;
    }

    .isotope-pager.slider .slick-prev {
        left: 0;
    }

    .isotope-pager.slider .slick-next {
        right: 0;
    }

    .isotope-pager .pager {
        visibility: hidden;
    }

}


/* BREAKPOINT SM */
/* ------------- */

@media (max-width: 749px) {

    /* TOP NAVIGATION */
    /*#top-navbar .logo-img {*/
    /*width: 181px;*/
    /*height: 40px;*/
    /*}*/
    /* BREADCRUMBS */

    .page {
        min-height: calc(100vh - 142px - 350px);
    }

    /* BANNERS */

    .category-banner .card-img-top {
        height: 234px;
    }

    .category-banner .card-title {
        font-size: 24px;
    }

    .mega-banner .card-body {
        height: auto;
        align-items: center;
        padding: 2rem;
    }

    .mega-banner .card-title {
        font-size: 42.5px;
    }

    .mega-banner .card-text {
        text-align: center;
        font-size: 37.5px;
    }

    .mega-banner .btn {
        height: 46px;
        font-size: 17.1px;
    }

    .mega-banner .card-img {
        height: 292px;
    }


    /* MODALS */

    .modal-dialog.modal-main,
    .modal-dialog.modal-lg {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }


    .modal-form-container {
        width: 380px;
    }

    .modal .submit_btn {
        width: 100%;
    }

    .address-form-container {
        width: 380px;
    }

    /* BASKET */

    #basket {
        width: 100%;
        right: -100%;
    }


    /* FOOTER */
    #learnMore,
    #learnMore .container,
    #learnMore .card-img {
        height: 650px;
    }


    #learnMore label[for="Email_or_Phone"] {
        padding-left: 0;
    }

    #learnMore input[type="text"].form-control,
    #learnMore .btn.contactForm-submit {
        width: 335px;
    }

    #learnMore .input-container.position-relative {
        width: 335px;
    }


    /* FORM VALIDATION */
    .invalid-feedback.input-email {
        padding-left: 0;
    }

    .footer-text {
        text-align: left;
        line-height: normal;
    }

}

@media (max-width: 575px) {

    #footer-top .follow-us {
        padding-left: 0;
    }

    .select_icon_fluid select.form-control + .collapse-icon {
        bottom: 40%;
    }

    .select_icon_fluid_reverse select.form-control + .collapse-icon {
        bottom: 25%;
    }

}

/* BREAKPOINT XS */
/* ------------- */


@media (max-width: 480px) {


    .container {
        width: 300px;
    }

    #top-navbar.scrolled .logo-img {
        width: 100px;
        height: 22px;
    }

    a.navbar-brand {
        margin-right: 0;
        margin-left: 0;
    }

    .open-menu {
        width: 22px;
        height: 30px;
    }


    .payment-methods .card-body {
        font-size: 12px;
    }

    .payment-methods .trash-icon {
        width: 25px;
    }

    .payment-methods .card .card-body .col-7 {
        padding-left: 5px;
        padding-right: 5px;
    }

    /* BANNERS */

    .mega-banner .card-body {
        padding: 1rem;
    }


    /* MODALS */

    .modal-dialog.modal-main,
    .modal-dialog.modal-lg {
        max-width: 300px;
    }

    .modal-form-container {
        max-width: 260px;
        width: 100%;
    }

    .address-form-container {
        max-width: 260px;
        width: 100%;
    }

    /* BASKET */

    .basket .basket_product_footer_row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .basket .basket_product_price_col {
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
    }

    .basket .before_discount_price {
        margin-right: 0.5rem;
    }

    .noty-wrapper {
        width: calc(100% - 20px);
    }

        /* FOOTER */
    #learnMore input[type="text"].form-control,
    #learnMore .btn.contactForm-submit,
    #learnMore .input-container.position-relative {
        width: 270px;
    }


    .emblem {
        width: 20px;
        height: 20px;
    }

    #top-navbar .brand-section .logo-img {
        /*object-position: center;*/
        width: 143px;
        height: 42px;

    }

    #top-navbar button.navbar-brand {
        padding-right: 15px;
    }

    .emblem {
        position: unset;
        right: unset;
        top: unset;
    }

    .footer-text {
        padding-left: 0;
        text-align: center;
    }

    .subfooter-nav {
        padding-top: 0.35rem;
        padding-bottom: 0.25rem;
    }

    .subfooter-nav .nav-link {
        padding: 0.15rem 0.5rem 0.15rem 0;
    }


    #footer-top .footer-nav-col {
        flex-basis: 100%;
        max-width: 100%;
    }

    #footer-top .logos-col {
        flex-basis: 100%;
        max-width: 100%;
        align-items: center;
    }

    #footer-top .logos-col .d-flex.align-items-center.justify-content-end {
        justify-content: center !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }


}