/* --- to override Bootstrap --- */

*, ::after, ::before {
    -moz-box-sizing: border-box;
}


button:focus,
.btn:focus,
.btn-light:focus,
.btn-dark:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus, 
.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}
.rtl {
    unicode-bidi: bidi-override;
    direction: rtl;
}
.bg-light {
    background-color: var(--grey-light)!important;
}

.bg-dark {
    background-color: var(--grey-dark)!important;
}

.bg-green{
    background-color: var(--cta-green)!important;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

a {
    text-decoration: inherit;
    color: inherit;
}

a:hover {
    text-decoration: inherit;
    color: inherit;
}

.alert {
    position: fixed;
    bottom: .6rem;
    max-width: 70%;
    margin: auto 1rem;
    border-radius: 0;
    opacity: .8;
    z-index: 20;
    animation: appear 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.small,
small {
    font-size: 85%;
    font-weight: 300;
}

.smaller {
    font-size: 70%;
    font-weight: 300;
}

.big {
    font-size: 115%;
}

.shadow {
    -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.08) !important;
    -moz-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.08) !important;
}

.nav-link {
    cursor: pointer;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .8rem;
        padding-left: .8rem;
    }
}

@media screen and (min-width: 1200px) {
    .container-large {
        max-width: 1500px;
    }
}

/* --- Background --- */

html {
    scroll-behavior: smooth;
}

.bg-main {
    background-color: var(--main);
}

.bg-main-light {
    background-color: var(--main-light);
}

.bg-main-dark {
    background-color: var(--main-dark);
}

/* --- Text --- */

.text-main {
    color: var(--main);
}


.text-main-light {
    color: var(--main-light);
}

.text-main-dark {
    color: var(--main-dark);
}

/* --- Nav --- */

.navbar {
    font-weight: 400;
    width: 100%;
}

.navbar-toggler {
    border: none;
}


.navbar-collapse form input {
    background-color: rgba(255, 255, 255, 0.9);
    font-size: .8rem;
    font-weight: 300;
    max-width: 60%;
}

.navbar-collapse form button {
    font-size: .8rem;
}

.navbar .nav-item.active {
    font-weight: 600;
}

.nav-item.sub a,
.nav-item.sub-sub a {
    display: inline-flex;
    padding: 0.2rem 0;
}
.nav-item.sub a::before {
    border-top: 3px solid var(--main);
    width: .2rem;
    margin-top: .55rem;
    content: "";
    margin-right: .5rem;
}

.nav-item.sub-sub a::before {
    border-top: 1px solid var(--main-light);
    width: 1.2rem;
    margin-top: .6rem;
    content: "";
    margin-right: .5rem;
}

@media screen and (min-width:992px) {
    nav .sub-menu {
        position: absolute;
        width: 100%;
        background-color: white;
        padding: 2rem 10vw;
        column-count: 3;
        left: 0;
        top: 62px;
    }

    .nav-item.sub a::before {
        border-top: none;
        width: 0;
        content: none;
        margin-right: 0;
    }

    .nav-item.sub a {
        border-bottom: 2px solid var(--main);
        width: 100%;
        font-size: 1.2rem;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: .4rem;
    }
    
}

@media screen and (max-width: 991px) {
    .navbar {
        background-color: white !important;
        color: var(--body-color) !important;
        z-index: 100;
    }
    
    .navbar-collapse form input {
        margin-left: auto;
    }

    .navbar-collapse form button {
        margin-right: auto;
        font-size: .8rem
    }
    
    nav #shop {
        column-count: 3;
    }
}

@media screen and (max-width: 575px) {
    .navbar-collapse form button {
        margin-left: auto;
    }
    
    .navbar #shop {
        display: none !important;
    }
}

@media screen and (min-width: 576px) {
    .navbar #shop-m {
        display: none !important;
    }
}


.nav-colored {
    background-color: #fff !important;
  transition: background-color 200ms linear;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.08) !important;
    -moz-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.08) !important;
}

.nav-transparent {
    background: transparent!important;
}

.nav-link{
    padding:5px 10px;
}

.navitem-active{
    padding:5px 10px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    font-size: 85%;
    color: #6c757d;
}

.breadcrumbs a::after {
    content: " / ";
}

.breadcrumbs a:last-of-type {
    color: var(--body-color);
    font-weight: 400;
    pointer-events: none;
}

.breadcrumbs a:last-of-type::after {
    content: "";
}

/* --- Animation --- */

.anim-appear {
    animation: appear 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.anim-zoom-smooth {
    animation: zoom-smooth 2s ease-in-out infinite alternate;
    -webkit-animation: zoom-smooth 2s ease-in-out infinite alternate;
}

@keyframes zoom-smooth {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    90% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }
}

/* --- Header main-page --- */

header.main-page .btn-main {
    border-color: transparent;
    background-color: white;
}

@media screen and (max-width: 767px) {
    header.main-page {
    }
    
    header.main-page div {
    }
    header.main-page div p {
    }
}

/* --- How it works --- */

.hiw svg{
    width: 50%;
    margin: 0 auto;
}

header.prime-page {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header.prime-page div {
    color: white;
}

/* --- Product slider --- */
.deal-item > a > div {
    position: relative;
    /*background-color: #F2F2F2;*/
    height: 100%;
    transition: all 500ms;
    /*border-radius: 10px;*/
    border: 1px solid #ccc;
}

.deal-item > a > div:hover {
    background-color: #ffffff;
    border: 1px solid var(--main-light);
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
}

.deal-item .overlay-item {
    pointer-events: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
    background-color: var(--main-light);
}

.deal-item:hover .overlay-item {
    opacity: .6;
}

.deal-item .overlay-text {
    pointer-events: none;
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: opacity 0.3s;
    font-weight: bold;
    font-size: 1.2rem;
}

.deal-item:hover .overlay-text {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .deal-item:last-of-type {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .deal-item:nth-last-of-type(2) {
        display: none;
    }
}

/* --- Filters --- */
.filter-header:not(:first-of-type) {
    margin-top: .5rem;
}

.filter-header {
    margin-bottom: .5rem;
}

.filters-block .link-filter {
    display: inline-flex;
    width: 100%;
    padding: 5px 0;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filters-block .link-filter.suboption {
    padding-left: 1.2rem;
    transform: scale(0.9);
}

.filters-block .link-filter input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filters-block .link-filter span {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 10px;
    text-align: center;
    background-color: white;
    border: solid 1px var(--grey);
    line-height: 16px;
    border-radius: 3px;
    top: 1px;
    transition: all 0.2s;
}

.filters-block .link-filter label {
    cursor: pointer;
}

.filters-block .link-filter:not(.selected) span i {
    display: none;
}

.filters-block .link-filter:not(.selected):hover span {
    border: solid 1px var(--grey-dark);
    margin-right: 1rem;
}

.filters-block .link-filter.selected span {
    border-color: var(--grey-dark);
    background-color: var(--grey-dark);
    margin-right: 1rem;
}

.filters-block .link-filter.selected span i {
    display: inline-flex;
    color: white;
}

.filters-block .brand-filter {
    max-height: 250px;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    padding: 0 0.4rem 0.5rem;
    border-bottom: 0.5px solid #f1f1f1;
    overflow-y: scroll;
}

.filters-block .brand-filter::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.filters-block .brand-filter::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.filters-block .brand-filter::-webkit-scrollbar-thumb {
    background-color: #000000;
}

/* --- Collection page --- */

.inner-collection-item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.title-collection-item {
    padding-bottom: 2rem;
    margin-bottom: 0
}

.discount-tag {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 10px;
    z-index: 9;
}

.discount-tag-2 {
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    padding: 5px 10px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: var(--main-dark);
    color: #fff;
}
.discount-tag-2:before {
    position: absolute;
    top: 100%;
    left: 5px;
    content: '';
    border-color: var(--main-dark) transparent transparent var(--main-dark);
    border-width: 3px;
    border-style: solid;
}

.back-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
}

/* --- Product page --- */

.product-view .carousel-indicators {
    position: relative;
    justify-content: left;
    opacity: .7;
    transition: opacity 0.2s;
}

.product-view .carousel-indicators {
    position: relative;
    justify-content: left;
    margin-right: 5%;
    margin-left: 5%;
}

.product-view .carousel-indicators div {
    opacity: .6;
    transition: opacity 0.2s;
}

.product-view .carousel-indicators div.active {
    opacity: 1;

}

.product-view .price .discount {
    background-color: var(--main-dark);
    color: white;
    font-weight: 400;
    font-size: 1.2rem;
    padding: .2rem .8rem;
}

.product-view .star-ratings-sprite {
    background-repeat: repeat-x;
    font-size: 0;
    height: 18px;
    line-height: 0;
    overflow: hidden;
    text-indent: -999em;
    width: 90px;
}

.product-view .star-ratings-sprite-rating {
    background-repeat: repeat-x;
    background-position: 0 100%;
    float: left;
    height: 18px;
    display: block;
}

/* select product */

.product-view #product-selection {
    position: relative;
}

.product-view #product-selection .row {
    margin: 0;
}

.product-view #product-selection #chevron.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.product-view #product-selection #color-option {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    background: white;
    border: 0.5px solid rgb(221, 221, 221);
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12), 0 3px 5px -1px rgba(0,0,0,0.20);
    margin-top: 5px;
    padding: 0.5rem 1px;
}

.product-view #product-selection .color-option {
    padding: 0 1.2rem 0 0.5rem;
    background-color: white;
    cursor: pointer;
}

.product-view #product-selection .color-option:hover {
    filter: brightness(.96);
}

.product-view #product-selection #color-selected {
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
    position: relative;
    padding-bottom: 1px;
    cursor: pointer;
}

/* --- Account page --- */
.indicator-account {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: .05rem;
    font-weight: 500;
    padding: 0 1.5rem;
    cursor: pointer;
}

.indicator-account.active {
    background-color: var(--main-dark);
    color: white;
}

/* --- Cart page --- */

.cart-product-thumb .discount-tag {
    background-color: var(--main);
    color: white;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0 10px;
    position: absolute;
    padding: 5px 10px;
    text-align: center;
}

.item-in-cart {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.item-in-cart:last-of-type {
    border-bottom: none;
}

/* --- How it works --- */
.box-plan {
    transition: transform .2s;
}
.box-plan:hover {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}
.box-plan-back {
    width: calc(100% - 1.4rem);
    height: calc(100% - 1.4rem);
    position: absolute;
    left: -5px;
    top: -5px;
    background-color: var(--main);
    z-index: -1;
    margin: 1rem;
}

/* New nav */

.header_area_one .navbar-brand {
    padding:0 !important;
    max-height: 80px;
}

.menu > .nav-item {
    margin-right: 35px;
    padding: 36px 0px;
    position: relative;
    transition: all 0.2s linear;
}

.menu > .nav-item {
    padding: 34px 0;
}

.menu > .nav-item > .nav-link {
    font-size: 15px;
    color: #000;
    line-height: 1.55556;
    padding: 0px;
    position: relative;
    text-transform: capitalize;
}

.search_cart {
    align-items: center;
}

.menu > .nav-item {
    margin-right: 35px;
    padding: 36px 0px;
    position: relative;
    transition: all 0.2s linear;
}

.search_cart .nav-item.search {
    position: static;
}

.menu > .nav-item {
    padding: 34px 0;
}

.menu_one .search_cart .nav-item {
    padding-top: 26px;
    padding-bottom: 26px;
}

.menu > .nav-item:last-child {
    margin-right: 0;
}

.search_boxs {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s linear;
    background: #fff;
}

.open .search_boxs {
    opacity: 1;
    visibility: visible;
}

.search_boxs .search_box_inner {
    max-width: 1170px;
    width: 100%;
    position: relative;
    background: #fff;
    padding-left: 50px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.6s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.open .search_boxs .search_box_inner {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: 0.9s;
}

.search_boxs .search_box_inner .input-group {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s linear;
}

.search_boxs .search_box_inner .close_icon {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s linear;
}

.open .search_boxs .search_box_inner .input-group, .open .search_boxs .search_box_inner .close_icon {
    opacity: 1;
    transition: all 0.9s linear;
    visibility: visible;
}

.search_boxs .search_box_inner .input-group .form_control {
    border: 0px;
    font-size: 22px;
    color: #333333;
    font-family: futura-book;
    padding: 0px;
}

@media (max-width: 991px) {
    .header .container-fluid, .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
    }

    .header {
        background: #fff;
    }
    .header_bottom_four .custom_col_right,
    .header_bottom_five .custom_col_left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header .navbar-brand {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .menu > .nav-item {
        padding: 10px 0px;
        margin-right: 0;
    }

    .menu > .nav-item {
        border-top: 1px solid #f5f5f5;
    }

    .menu > .nav-item > .nav-link:before {
        display: none;
    }

    .menu > .nav-item.submenu .dropdown-menu {
        padding-left: 0px;
        padding-right: 0;
        box-shadow: none;
        padding-top: 25px;
    }

    .fixed-header .menu > .nav-item {
        padding: 10px 0px;
    }

    .menu > .nav-item.submenu.mega_menu .mega_menu_inner.dropdown-menu > .nav-item {
        width: 100%;
        padding-left: 15px;
    }

    .menu > .nav-item.submenu.mega_menu .dropdown-menu > .nav-item .dropdown-menu {
        display: block !important;
    }

    .menu > .nav-item.submenu.mega_menu .dropdown-menu > .nav-item:after,
    .menu > .nav-item.submenu.mega_menu .dropdown-menu > .nav-item:last-child {
        display: none;
    }

    .menu > .nav-item.submenu.mega_menu > .dropdown-menu > .nav-item + .nav-item {
        margin-top: 25px;
    }

    .navbar-collapse,
    .menu_four .navbar-collapse {
        max-height: 400px;
        overflow-y: scroll;
        margin-left: 0px;
        margin-right: 0px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-shadow: 0px 10px 10px 0px rgb(96 61 5 / 4%);
    }
    .header_bottom_five .navbar-collapse{
        padding-left: 0;
        padding-right: 0;
    }

    .offscreen_shop_cart .panel .panel_header {
        padding: 20px 60px 10px;
    }

    .search_cart .nav-item .nav-link {
        display: inline-block;
    }

    .search_cart .nav-item .nav-link .num {
        right: -17px;
    }
    
    .mobile_icon .menu {
        flex-direction: initial;
    }
    
    .mobile_icon .menu li {
        display: inline-block;
        border: 0px;
        margin-right: 20px;
    }
    
    .mobile_icon, .mega_menu_inner .maga_menu_col ul {
        display: flex !important;
    }
}

/*========= hamburger menu css ========*/
.navbar-toggler {
    padding: 0px;
    margin-left: 30px;
}

.navbar-toggler:focus {
    outline: none;
}

.menu_toggle {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: block;
}

.menu_toggle .hamburger {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
}

.menu_toggle .hamburger span {
    width: 0%;
    height: 2px;
    position: relative;
    top: 0;
    left: 0;
    margin: 4px 0;
    display: block;
    background: #333;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.menu_toggle .hamburger span:nth-child(1) {
    transition-delay: 0s;
}

.menu_toggle .hamburger span:nth-child(2) {
    transition-delay: 0.125s;
}

.menu_toggle .hamburger span:nth-child(3) {
    transition-delay: 0.2s;
}

.menu_toggle .hamburger-cross {
    position: absolute;
    height: 100%;
    width: 100%;
    transform: rotate(45deg);
    display: block;
}

.menu_toggle .hamburger-cross span {
    display: block;
    background: #333;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.menu_toggle .hamburger-cross span:nth-child(1) {
    height: 100%;
    width: 2px;
    position: absolute;
    top: 0;
    left: 10px;
    transition-delay: 0.3s;
}

.menu_toggle .hamburger-cross span:nth-child(2) {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 10px;
    transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
    width: 100%;
}

.collapsed .menu_toggle .hamburger span:nth-child(1) {
    transition-delay: 0.3s;
}

.collapsed .menu_toggle .hamburger span:nth-child(2) {
    transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span:nth-child(3) {
    transition-delay: 0.5s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
    height: 0%;
    transition-delay: 0s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
    width: 0%;
    transition-delay: 0.2s;
}

.fixed-header {
    position: fixed;
    min-height: 80px;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0px 6px 20px 0px rgba(96, 61, 5, 0.08);
}

.fixed-header .menu > .nav-item {
    padding: 20px 0px;
    transition: all 0.3s linear;
}

.menu > .nav-item > .nav-link:before {
    content: "";
    width: 0;
    position: absolute;
    height: 1px;
    bottom: 0;
    transition: all 0.2s linear;
    background: #000;
}

.menu > .nav-item:hover > .nav-link:before,
.menu > .nav-item:focus > .nav-link:before,
.menu > .nav-item > .navitem-active:before {
    width: 100%;
}

footer {
    box-shadow: 0px -4px 10px 0px #603d0514;
}

footer  a > p:hover {
    color:black;
    font-weight: 400;
}


/* --- Concept-style --- */

.font-title {
    /*font-family: 'Playfair Display', serif;*/
    font-weight:700;
}

.text-success {
    color: var(--cta-green) !important;
}


/* --- Buttons --- */

/*.btn:hover {*/
/*    color: white !important;*/
/*}*/

.form-control {
    border-radius: 0;
}

.btn-main {
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    background-color: transparent;
    padding: 1rem 2rem;
}

.btn-main:hover {
    background-color: rgba(33, 37, 41, 0.15);
    filter: brightness(0.95);
}

.btn-sec-dark {
    color: var(--main-dark);
    background-color: transparent;
    padding: .7rem 1.5rem;
}

.btn-sec-dark:hover {
    background-color: var(--main-dark);
    color: white
}

.btn-sec-dark:focus {
    background-color: var(--main-dark);
    color: white;
    filter: brightness(0.85);
}

.btn-main-light {
    color: var(--main);
    border: none;
    background-color: white;
    padding: .7rem 1.5rem;
}

.btn-main-light:hover {
    color: var(--main-dark);
}

.btn-ter-dark, .btn-main-dark {
    color: white;
    border: none;
    background-color: var(--main);
    padding: .7rem 1.5rem;
}

.btn-ter-dark:hover, .btn-main-dark:hover {
    background-color: var(--main-dark);
    color: white
}

.btn-mini {
    padding: .4rem 1rem
}

.btn-add-to-cart-sm,
.btn-submit {
    text-transform: uppercase;
    color: white;
    background-color: var(--cta-green);
}

.btn-submit {
    border: none;
    padding: .7rem 1.5rem;
}

.btn-add-to-cart {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    padding: 1rem 3rem;
    background-color: var(--cta-green);
}

.btn-add-to-cart:hover,
.btn-add-to-cart-sm:hover,
.btn-submit:hover:not([disabled="disabled"]):not([disabled]) {
    color:white;
    background-color: var(--cta-green-dark);
}

.btn-add-to-cart:disabled,
.btn-add-to-cart-sm:disabled,
.btn-submit:disabled {
    opacity:0.7;
    cursor: default;
}

.overlay-text > .bg-dark {
    border-radius:8px;
}

.btn-black {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    padding: .8rem 2.2rem;
    background-color: black;
    border-radius: 0;
}

/* --- Other --- */
.rounded {
    border-radius: 25px !important;
}

.main-form > input,
.main-form > textarea,
.login-form select,
.login-form input {
    border-color: #cecece;
    border-radius: 4px;
}

.main-form > input,
.login-form input {
    padding: 25px 20px;
}

.login-form select {
    padding: 10px 21px;
    height: 52px;
}

.main-form > textarea {
    padding: 20px 25px; 
}

/* --- Cards --- */

.img-card {
    overflow: hidden;
    border-radius:8px;
}

.column-img {
    background-size: cover;
    height: 100%;
}


/* --- Front-page --- */

@media only screen and (max-width: 991px) {
    .scrollable-menu {
        height: auto;
        max-height: 400px;
        overflow-x: hidden;
    }
}

/* ELEMENTS */
.how-it-works-box i {
    font-size: 55px;
    color: var(--main);
}

.st0 {
    fill: var(--main) !important;
}

.btn-hover-slide {
    border-color: var(--main-dark);
    color: var(--main-light);
    background-image: -webkit-linear-gradient(45deg, var(--main-light) 50%, transparent 50%);
    background-image: linear-gradient(45deg, var(--main-light) 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    -webkit-transition: background 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.btn-hover-slide:hover {
    background-position: 0;
    color: var(--main-dark)!important;
    border-color: var(--main-light);
    outline: 0;
}

.hero-banner {
    position: relative;
    min-height:20vh
}

.hero-banner:before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    background: rgba(0,0,0,.3);
}

.header-steps p {
    margin-bottom: 0;
    padding-bottom: 2px;
}

.header-steps i {
    margin: 0 10px;
}

.text-underline {
    border-bottom: 1px solid white;
}

.filter-title {
    font-size: 24px;
    line-height: 30px;
    font-family: futuraPtM;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.filter-title:before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-light);
    position: absolute;
    bottom: 0;
}

/*.filter-title:after {*/
/*    content: "";*/
/*    width: 35px;*/
/*    height: 2px;*/
/*    background: var(--main-dark);*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*}*/

.collection-item {
    background: #f7f7f7;
    border-radius: 10px;
    transition: all 500ms;
    border:1px solid white;
}

.collection-item:hover {
    background: white;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.1)!important;
    border: 1px solid var(--main-light);
}

.collection-item .title-collection-item {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-links a p {
    color:#737373;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-panel {
    position: absolute !important;
    left: -70px;
    cursor: default;
}

#cookie-bar {
    position: fixed;
    bottom: 0;
    padding: 1rem calc(50px + 1rem) 1rem 5%;
    background-color: #7f8596cc;
    z-index: 100;
}

#cookie-bar:hover {
    z-index: 2147483640!important;
}

.navbar-nav {
    font-size: 16px;
    font-weight: 500;
}

.navbar-fixed-light.fixed-top .navbar-nav .nav-link,
.navbar-hover-light:hover .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,0.7);
}

.credit-card {
    display: inline-block;
    width: 38px;
    height: 25px;
    margin-right: 5px;
    background-size: contain;
}
.copyright {
    padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
    .copyright {
        padding-bottom: 4rem;
    }
}