/*!
Theme Name: Chic Des Roses
Theme URI: https://chicdesroses.com/
Author: Chic Des Roses
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cdr
*/

:root {
    --animate-duration: 0.5s;
    --animate-delay-1: 0.15s;
    --animate-delay-2: 0.25s;
}

html {
    height: 100%;
}

html, body {
    min-height: 100%;
}

body {
    position: relative;
    -webkit-font-smoothing: antialiased;
}

#view {
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-40 {
    margin-top: 60px !important;
}

.mb-40 {
    margin-bottom: 60px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

@media (min-width: 992px) {
    .mb-40 {
        margin-bottom: 40px !important;
    }
    .mt-40 {
        margin-top: 40px !important;
    }
}

@media (min-width: 1200px) {
    .mt-xl-0 {
        margin-top: 0 !important;    
    }
    .mb-xl-0 {
        margin-bottom: 0 !important;    
    }
}

.relative {
    position: relative;
}

.has-arrow {
    display: flex;
    align-items: center;
}

.has-arrow:hover,
.has-arrow:focus {
    color: var(--bs-black);
}

.has-arrow svg {
    margin-left: 10px;
    transition: transform 0.15s ease-in-out;
}

.has-arrow:hover svg,
.has-arrow:focus svg {
    transform: translateX(4px);
}

.has-arrow svg path {
    transition: all 0.2s ease-out;
    fill: var(--bs-secondary);
}

.has-arrow:hover svg path,
.has-arrow:focus svg path {
    fill: var(--bs-secondary);
}

.wide {
    max-width: 1024px;
    margin: 0 auto;
}

.medium {
    max-width: 690px;
    margin: 0 auto;
}

.modal-open {
    overflow: hidden !important;
    height: 100%;
    min-height: initial;
}

@media (max-width: 1399.98px) {
    .wide {
        max-width: 740px;
    }
}

.smaller h2,
.smaller .h2 {
    font-size: 2rem;
    text-align: left;
}

.smaller h3,
.smaller .h3 {
    font-size: 1.5rem;
    text-align: left;
}

.smaller p + h3,
.smaller p + .h3 {
    margin-top: 30px;
}

.q-mark {
    display: inline-block;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background-image: url(assets/images/q-mark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    margin-left: 5px;
}

.tooltip-inner {
    border: 1px solid var(--bs-black);
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 8px 12px;
    max-width: 400px;
}

/* Header */

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    z-index: 1010;
    transition: all 0.3s ease-out;
    padding: 1rem 0;
    background-color: #fff;
}

.checkout #header {
    position: relative;
}
/*
@media (min-width: 992px) {
    #header.store-header {
        padding: 34px 0;
    }
    #header.store-header.sticky {
        padding: 1rem 0;
    }   
}
*/
.menu-open {
    height: 100%;
}

body:not(.menu-open) #header.sticky {
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgba(110,110,110,0.3);
}

body.admin-bar #header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar #header {
		top: 46px;
	}
}

@media (max-width: 600px) {
	body.admin-bar #header {
		top: 0;
		z-index: 999999;
	}
}

@media (min-width: 992px) {
    #header .navbar-brand {
        transform: translateY(-1px);
    }
}

.navbar-brand img {
    height: auto;
}

#header .nav-item + .nav-item {
    margin-left: 56px;
}

#header .nav-link,
#footer .widget ul li a {
    position: relative;
    padding: 0;
}

#header .nav-link:not(.dropdown-toggle):before,
#footer .widget ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--bs-black);
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1)
}

#header .nav-link:hover,
#header .nav-link:focus,
#header .nav-link:active {
    color: var(--bs-black);
}

#header .nav-item a:not(.btn) {
    transition: color 0.15s ease-out;
    display: block;
}

#header .nav-item a svg path {
    fill: var(--bs-black);
    transition: all 0.15s ease-out;
}

#header .nav-item a:hover svg path {
    fill: var(--bs-primary);
}

#header .nav-item a:hover,
#header .nav-item a:focus {
    box-shadow: none;
    outline: 0;
}

#header .active .nav-link:before,
#header .current-menu-item .nav-link:before,
#header .nav-link:hover:before,
#header .nav-link:focus:before,
#header .nav-link:active:before,
#footer .widget ul li a:hover:before,
#footer .widget ul li a:focus:before,
#footer .widget ul li a:active:before {
    width: 100%;
}

#header .btn-item .btn {
    padding: 10.5px 20.5px;
    font-size: 18px;
    line-height: 27px;
    transition: opacity 0.15s ease-in-out;
}

#header .btn-item .btn:hover,
#header .btn-item .btn:focus,
#header .btn-item .btn:active,
#header .btn-item .btn:active:focus {
    background-color: var(--bs-secondary);
    border-color:  var(--bs-secondary);
    color: var(--bs-black);
    opacity: 0.8;
}

#header .shopping-bag-button,
#header .search-button {
    padding: 0;
    border: none;
}

#header .shopping-bag-button svg path,
#header .search-button svg path {
    transition: fill 0.15s ease-in-out;
}

#header .shopping-bag-button:hover svg path,
#header .shopping-bag-button:focus svg path,
#header .search-button:hover svg path,
#header .search-button:focus svg path {
    fill: var(--bs-primary);
}

.dropdown-toggle {
    margin-right: 20px;
    outline: 0;
    box-shadow: none;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    display: block;
    width: 15px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    margin: 0;
    padding: 0;
    background-image: url('assets/images/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    transition: transform 0.2s ease-out;
}

#header .dropdown-menu {
    min-width: 70px;
    padding: 18px;
    margin: 0;
    border-radius: 5px;
    border: none;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
/*
#header .dropdown-menu:before {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 19px;
    top: -8px;
    right: 0px;
    background-image: url('assets/images/angle.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
*/
#header .dropdown-menu button {
    color: var(--bs-gray);
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    text-align: center;
    width: 100%;
    display: inline-block;
    transition: color 0.15s ease-out;
}

#header .dropdown-menu button:hover,
#header .dropdown-menu button:focus {
    color: var(--bs-secondary);
}

#header .dropdown-menu button.active,
#header .dropdown-menu button.active:hover {
    color: var(--bs-primary);
    font-weight: 600;
}

#header .dropdown-menu button + button {
    margin-top: 10px;
}

#header .dropdown-menu.dropdown-search {
    min-width: 40%;
    left: auto;
    right: 0;
    transform: none;
    top: 58px;
    padding: 15px;
}

#header .searchform .search-control {
    position: relative;
    margin-bottom: 0;
}

#header .searchform .search-control:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(assets/images/search.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

#header .searchform .search-control .form-control {
    padding-left: 40px;
}

#header .nav-item.cart-item {
    position: relative;
}

#header .nav-item.cart-item .shop-cart-status {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-secondary);
    position: absolute;
    top: 1px;
    right: -2px;
    z-index: 1;
    transition: all 0.2s ease-out;
    pointer-events: none;
}

#header .nav-item.cart-item .shop-cart-status.hidden {
    transform: scale(0.0001);
}

#header .back-to-store {
    font-weight: 500;
}

#header .back-to-store svg {
    margin-right: 10px;
}
@media (max-width: 991.98px) {
    #header .back-to-store svg {
        margin-right: 0;
    }
    #header .back-to-store span {
        display: none;
    } 
}

/* Toggler */

#header .toggler {
    margin-left: 60px;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 30px;
    height: 20px;
    line-height: 20px;
    background: none;
    border: none;
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
    cursor: pointer;
	outline: 0;
}
#header .toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--bs-black);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: width .25s ease-in-out, background-color 0.15s ease-out;
}

#header .toggler span:nth-child(1) {
    top: 0px;
}
#header .toggler span:nth-child(2),#header .toggler span:nth-child(3) {
    top: 9px;
}
#header .toggler span:nth-child(4) {
    top: 18px;
    right: 0;
    left: auto;
}
#header .toggler:hover span {
    background: var(--bs-primary);
}
#header .toggler:hover span:nth-child(4) {
    width: 100%;
}
#header .toggler span:nth-child(4) {
    width: 75%;
}
/*
.menu-open #header .toggler span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}
.menu-open #header .toggler span:nth-child(2) {
    transform: rotate(45deg);
}
.menu-open #header .toggler span:nth-child(3) {
    transform: rotate(-45deg);
}
.menu-open #header .toggler span:nth-child(4) {
    top: 10px;
    width: 0%;
    right: 50%;
}
*/

@media (max-width: 1599.98px) {
    .navbar-brand {
        margin-right: 60px;
    }
    #header .nav-item + .nav-item {
        margin-left: 36px;
    }
    #header .toggler {
        margin-left: 40px;
    }
    #header .nav-item svg {
        height: 28px;
    }
}

@media (max-width: 1399.98px) {
    .navbar-brand {
        margin-right: 30px;
    }
    #header .nav-item + .nav-item {
        margin-left: 28px;
    }
    #header .toggler {
        margin-left: 30px;
    }
    #header:not(.store-header) .navbar-brand img {
        max-width: 130px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #header .nav-link,
    #header .nav-item a:not(.btn) {
        font-size: 14px;
    }
    #header .nav-item .btn {
        font-size: 16px;
        line-height: 24px;
    }
    #header .nav-item + .nav-item {
        margin-left: 24px;
    }
    #header .dropdown-menu button {
        font-size: 14px;
        line-height: 21px;
    }
    #header .nav-item svg {
        height: 26px;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand {
        margin-right: 0;
    }    
    #header .toggler {
        margin-left: 0;
    }
    #header .nav-item.cart-item {
        margin-left: 0;
    }
    #header .navbar-brand img {
        max-width: 130px;
    }
    #header .toggler:hover span {
        background: var(--bs-primary);
    }
}

@media (min-width: 992px) {
    #header .nav-item + .btn-item {
        position: absolute;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */

.menu-open .modal-backdrop {
	background-color: #fff;
}

.menu-open .modal-backdrop.show {
	opacity: 1;
}

.menu-open .modal-content {
	background: none;
	border: none;
}
.menu-open .modal-content .close {
    position: absolute;
    top: 21px;
    right: 8px;
    z-index: 1;
    padding: 0;
    transition: all 0.3s ease-out;
}
.menu-open .modal-content .close:hover {
    transform: scale(1.1);
}

.sliding-menu {
    min-height: 222px;
}

.sliding-menu {
    position: relative;
    overflow: hidden;
    text-align: left;
    font-size: 18px;
}

.sliding-menu__panel {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    padding-left: 0;
}

.sliding-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sliding-menu li + li {
    margin-top: 20px;
}

.sliding-menu li a,
.sliding-menu li .sliding-menu__nav {
    display: block;
    padding: 0;
    text-align: left;
    font-size: 18px;
    line-height: 27px;
    position: relative;
    color: var(--bs-black);
    text-decoration: none;
    border-width: 0;
    width: 100%;
    background-color: transparent;
    -webkit-transition: color 250ms ease, background-color 250ms ease;
       -moz-transition: color 250ms ease, background-color 250ms ease;
         -o-transition: color 250ms ease, background-color 250ms ease;
            transition: color 250ms ease, background-color 250ms ease;
}

.sliding-menu li.menu-item-has-children + li {
    margin-top: 34px;
}

.sliding-menu li a {
    display: inline;
}

.sliding-menu li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--bs-black);
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1)
}

.sliding-menu li a:hover,
.sliding-menu li a:focus,
.sliding-menu li a:active {
    color: var(--bs-black);
}

.sliding-menu li a:hover:before {
    width: 100%;
}

.sliding-menu li .sliding-menu__nav {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bs-black);
    position: relative;
}

.sliding-menu li .sliding-menu__nav.sliding-menu__back {
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    color: var(--bs-gray);
    padding-bottom: 29px;
    margin-bottom: 40px;
    padding-left: 29px;
    border-bottom: 1px solid var(--bs-gray);
}

.sliding-menu .sliding-menu__nav:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url(assets/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    transition: all 0.3s ease-out;
    background-color: #fff;
    opacity: 1;
    transform: translateY(-50%);
}

.sliding-menu li .sliding-menu__nav.sliding-menu__back:before {
    content: '';
    right: auto;
    top: 15px;
    left: 0;
    margin-right: 20px;
    width: 10px;
    height: 17px;
    background-image: url(assets/images/back-arrow.svg);
}

.sliding-menu .sliding-menu__back {
    color: #fff;
    background-color: #555;
    font-weight: bold;
}

.sliding-menu .sliding-menu__back:before {
    float: left;
    margin-right: 1em;
    content: "\3008";
}

.sliding-menu .sliding-menu__icon {
    margin-right: .4em;
}

.sliding-menu .sliding-menu__separator {
    margin: .4em 1em;
    border-top: 2px solid #555;
}

#mobileMenu {
    z-index: 20550000000;
    background-color: #fff;
}

#mobileMenu .container {
    position: relative;
    padding-top: 80px;
    padding-bottom: 30px;
}

#mobileMenu .nav-pills .nav-link {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

#mobileMenu .nav-pills .nav-item + .nav-item {
    margin-top: 40px;
}

#mobileMenu .nav-pills .nav-link.active {
    background: none;
    color: var(--bs-black);
}

#mobileMenu .nav-pills .nav-link:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bs-bg-gray);
    background-image: url(assets/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease-out
}

#mobileMenu .nav-pills .nav-link.active:after {
    opacity: 1;
    transform: translateY(-50%);
}

#mobileMenu .nav-pills .nav-link span {
    position: relative;
}

#mobileMenu .nav-pills .nav-link span:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--bs-black);
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1)
}

#mobileMenu .nav-pills .nav-link:hover {
    color: var(--bs-black);
}

#mobileMenu .nav-pills .nav-link:hover span:before {
    width: 100%;
}

#mobileMenu .tab-content h5 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#mobileMenu .tab-content {
    padding-left: 45px;
}

#mobileMenu .tab-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#mobileMenu .tab-content ul li + li {
    margin-top: 20px;
}

#mobileMenu .tab-content ul li a {
    font-size: 18px;
    line-height: 27px;
    position: relative;
}

#mobileMenu .tab-content ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--bs-black);
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1)
}

#mobileMenu .tab-content ul li a:hover,
#mobileMenu .tab-content ul li a:focus,
#mobileMenu .tab-content ul li a:active {
    color: var(--bs-black);
}

#mobileMenu .tab-content ul li a:hover:before {
    width: 100%;
}

#mobileMenu .social-part {
    width: calc(100% - 15px);
    margin-top: 20px;
    padding-top: 30px;
}

#mobileMenu .desktop-menu .social-part {
    margin-bottom: 20px;
}

#mobileMenu .social-part h4 {
    margin-bottom: 20px;
}

#mobileMenu .cdr-social li {
    margin: 0;
    margin-right: 24px;
    width: auto;
}

#mobileMenu .cdr-social li svg {
    width: auto;
    max-width: 100%;
    height: 26px;
}

@media (max-width: 1599.98px) {
    #mobileMenu .container {
        padding-top: 30px;
    }
    #mobileMenu .tab-content h5 {
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    #mobileMenu .container {
        padding-top: 90px;
    }
    .menu-open .modal-content .close {
        left: 10px;
        right: auto;
        top: 11px;
    }
    #mobileMenu .searchform {
        margin-bottom: 50px;
    }
    #mobileMenu .searchform .search-control {
        position: relative;
        margin-bottom: 0;
    }
    #mobileMenu .searchform .search-control .form-control:not(:placeholder-shown) {
        border-color: var(--bs-primary);
    }
    #mobileMenu .searchform .search-control .form-control {
        border-bottom: 1px solid var(--bs-light);
    }
    #mobileMenu .searchform .search-control:before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        display: block;
        width: 19px;
        height: 19px;
        background-image: url(assets/images/search.svg);
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #mobileMenu .searchform .form-control {
        padding-left: 40px;
    }
    #mobileMenu .nav-pills .nav-link {
        font-size: 20px;
        line-height: 1.5;
    }
    #mobileMenu .nav-pills .nav-link span:before {
        display: none;
    }
    #mobileMenu .nav-pills .nav-link:after {
        background-color: #fff;
        right: -14px;
        opacity: 1;
        transform: translateY(-50%);
    }
    #mobileMenu .nav-pills .nav-item + .nav-item {
        margin-top: 34px;
    }
    #mobileMenu .secondary-menu .nav-item a:hover {
        color: var(--bs-primary);
    }
    /*
    #mobileMenu .secondary-menu .nav-item a svg path,
    #mobileMenu .secondary-menu .nav-item a svg g {
        fill: var(--bs-primary);
        transition: all 0.15s ease-out;
    }
    #mobileMenu .secondary-menu .nav-item a:hover svg path,
    #mobileMenu .secondary-menu .nav-item a:hover svg g {
        fill: var(--bs-secondary);
    }
    */
    #mobileMenu .tab-content {
        padding-left: 0;
    }
    #mobileMenu .tab-content h6 {
        font-weight: 600;
        margin-bottom: 30px;
    }
    #mobileMenu .btn-back {
        display: none;
        align-items: center;
        font-size: 20px;
        color: var(--bs-gray);
        padding-bottom: 29px;
        margin-bottom: 40px;
        border-bottom: 1px solid var(--bs-light);
    }
    #mobileMenu .btn-back.show {
        display: flex;
    }
    #mobileMenu .btn-back img {
        margin-right: 20px;
    }
    #mobileMenu .secondary-menu {
        margin-top: 60px;
    }
    #mobileMenu .secondary-menu li {
        padding: 25px 0; 
        border-bottom: 1px solid var(--bs-light);
    }
    #mobileMenu .secondary-menu li:first-child {
        border-top: 1px solid var(--bs-light);
    }
    #mobileMenu .secondary-menu .select {
        position: relative;
    }
    #mobileMenu .secondary-menu .select span {
        position: absolute;
        left: 0;
        pointer-events: none;
    }
    #mobileMenu .secondary-menu .form-select {
        padding-right: 20px;
        cursor: pointer;
    }
    #mobileMenu .social {
        margin-top: 30px;
    }
    #mobileMenu .secondary-menu svg path {
        fill: var(--bs-black);
    }
}   

/* Content */

body:not(.home).error404 main {
    padding: 200px 0 100px;
}

body:not(.home).error404 main h1 {
    font-size: 6rem;
    margin-bottom: 20px;
}

body:not(.home).error404 main .lead {
    max-width: 640px;
    margin: 0 auto 30px;
}
/*
body:not(.home) main {
    padding: 100px 0;
}
*/
body.single-post main {
    padding-bottom: 0;
    padding-top: 100px;
}

body.single-post .entry-content p + h2,
body.single-post .entry-content p + .h2,
body.single-post .entry-content p + h3,
body.single-post .entry-content p + .h3,
body.single-post .entry-content ul + h2,
body.single-post .entry-content ul + .h2,
body.single-post .entry-content ul + h3,
body.single-post .entry-content ul + .h3,
body.single-post .entry-content ol + h2,
body.single-post .entry-content ol + .h2,
body.single-post .entry-content ol + h3,
body.single-post .entry-content ol + .h3 {
    margin-top: 60px;
}

section, .section {
    padding: 140px 0;
}

section.features {
    padding-bottom: 100px;
}

.content-404 {
    margin-bottom: 100px;
}

.page-template-with-hero main .lead {
    font-weight: 500;
}

@media (min-width: 1400px) {
    .page-template-with-hero main .lead {
        max-width: 580px;
    }
    .page-template-with-hero main .lead.full {
        max-width: 980px;
    }
}

@media (min-width: 1600px) {
    .page-template-with-hero main .lead {
        max-width: 700px;
    }
    .page-template-with-hero main .lead.full {
        max-width: 1100px;
    }
}

main > section:first-child h2 {
    text-transform: capitalize;
}

@media (max-width: 1599.98px) {
    section, .section {
        padding: 100px 0;
    }
    section.features {
        padding-bottom: 60px;
    }
}

@media (max-width: 991.98px) {
    /*
    body:not(.home) main {
        padding: 80px 0;
    }
    */
    body.single-post main {
        padding-top: 0;
        padding-bottom: 0;
    }
    section, .section {
        padding: 80px 0;
    }
    section.features {
        padding-bottom: 60px;
    }
    /*
    main > section:first-child h2, main > section:first-child .lead {
        text-align: center;
    }
    */
    main section h2, main section .lead {
        text-align: center;
    }
    .woocommerce-order-received main > section:first-child .lead {
        text-align: left;
    }
    main > section:first-child h2 br {
        display: none;
    }
    .tax-product_cat h1 br {
        display: none;
    }
    .page-template-product-category h1 br {
        display: none;
    }
    .page-template-with-hero h3 {
        padding-bottom: 10px;
        border-bottom: 3px solid #FFD25E;
    }
}

.hero {
    padding: 80px 0 80px;
    position: relative;
}

.home .hero,
.woocommerce-shop .hero,
.page-template-product-category .hero {
    padding: 120px 0 0;
}

.home .hero + section,
.woocommerce-shop .hero + section,
.page-template-product-category .hero + section {
    padding-top: 0;
}

.hero:not(.full) {
    min-height: 500px;
    padding: 100px 0;
}

.page-template-only-hero .hero:not(.full) {
    height: auto;
    padding: 180px 0 80px;
    min-height: 100vh;
}

.page-template-only-hero .hero:not(.full) h1 {
    font-size: 2.5rem;
}

.page-template-only-hero .hero:not(.full) h1,
.page-template-only-hero .hero:not(.full) .btn {
    opacity: 1 !important;
    transform: none !important;
    -webkit-animation-name: none !important;
    animation-name: none !important;
}

.page-template-only-hero .form-control {
    background: none;
}

.hero .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
}

.hero .background > * {
    height: 65%;
}

.home .hero,
.woocommerce-shop .hero,
.page-template-product-category .hero {
    flex-direction: column-reverse;
}

.home .hero .background,
.woocommerce-shop .hero .background,
.page-template-product-category .hero .background {
    position: relative;
    padding-top: 100%;
}

.home .hero .background,
.home .hero .background > *,
.woocommerce-shop .hero .background,
.woocommerce-shop .hero .background > *,
.page-template-product-category .hero .background,
.page-template-product-category .hero .background > * {
    height: 100%;
}

.hero .background img,
.hero .background-cover {
    transition: opacity 0.2s ease-out;
}

.hero .background img,
.hero .background-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
}

.home .hero .background img,
.woocommerce-shop .hero .background img,
.page-template-product-category .hero .background img {
    opacity: 1;
}

.home .hero .background img,
.woocommerce-shop .hero .background img,
.page-template-product-category .hero .background img {
    position: absolute;
    top: 0;
    left: 0;
    object-position: 45% 50%;
}

.page-template-product-category #header {
    background-color: rgba(255,255,255,0.5) !important;
}

@media (min-width: 992px) {
    #header {
        padding: 1.625rem 0;
    }
    .hero .background,
    .hero .background > * {
        height: 100%;
    }
    .home #header,
    .woocommerce-shop #header,
    .page-template-product-category #header,
    .personalized-gift-packaging-boxes #header {
        background-color: rgba(255,255,255,0.2) !important;
    }

    .home .hero .background img,
    .woocommerce-shop .hero .background img,
    .page-template-product-category .hero .background img,
    .personalized-gift-packaging-boxes .hero .background img {
        object-position: 50% 0%;
        opacity: 1;
        position: relative;
    }
    .home .hero,
    .woocommerce-shop .hero,
    .page-template-product-category .hero {
        background-color: var(--bs-light);
        flex-direction: row;
    }
    .home .hero .background,
    .woocommerce-shop .hero .background,
    .page-template-product-category .hero .background {
        left: auto;
        width: 50%;
        padding-top: 0;
        position: absolute;
    }
}

.hero .container {
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .home .hero h1,
    .woocommerce-shop .hero h1,
    .page-template-product-category .hero h1 {
        margin-bottom: 10px;
    }
    .page-template-product-category .hero.full .lead.rating {
        margin: 0 0 10px 0;
        justify-content: flex-start;
    }
    .home .hero.full.has-bg-mobile .lead,
    .woocommerce-shop .hero.full.has-bg-mobile .lead,
    .page-template-product-category .hero.full .lead {
        font-size: 1rem;
        margin: 0 0 30px 0;
    }
    .home .hero .header-content,
    .woocommerce-shop .hero .header-content,
    .page-template-product-category .hero .header-content {
        /*transform: translateY(150px);*/
        text-align: center;
    }
    .home .hero .header-content,
    .woocommerce-shop .hero .header-content,
    .page-template-product-category .hero .header-content {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .home .hero.full,
    .woocommerce-shop .hero.full,
    .page-template-product-category .hero.full {
        height: auto;
        padding: 200px 0 50px;
    }
    .home .hero.full {
        padding-top: 300px;
    }
    .home .hero.full,
    .woocommerce-shop .hero.full,
    .page-template-product-category .hero.full {
        padding-top: 62px;
        padding-bottom: 0;
    }
    .home .hero.full + main > section:first-child,
    .woocommerce-shop .hero.full + main > section:first-child,
    .page-template-product-category .hero.full + main > section:first-child {
        padding-top: 40px;
    }
}

.hero.full h1 {
    font-size: 1.75rem;
}

.hero h1, .hero .lead, .hero .btn:not(.btn-link) {
    opacity: 0;
}

.hero .lead {
    margin-bottom: 30px;
}

.hero:not(.full) .lead {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    max-width: 640px;
}

.request-a-quote .hero:not(.full) .lead {
    max-width: 840px;
}

.home .hero .lead {
    font-size: 1.25rem;
    margin: 0 0 40px;
}

.page-template-with-hero .hero .lead {
    font-size: 1.25rem;
    margin: 0 0 40px;
}

.tax-product_cat .hero .lead {
    margin: 0 auto 40px;
}

.tax-product_cat .hero .lead.rating {
    margin: 0 auto 20px;
}

.tax-product_cat .hero .lead.rating img {
    max-width: 100%;
    height: auto;
}

.tax-product_cat .hero .lead.rating div {
    flex: 1;
}

.cover {
    max-width: 480px;
    margin: 0 auto;
}

.cover img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.2s ease-out;
}

.hero {
    text-align: center;
}

.hero.full .lead.rating img {
    max-width: 100%;
    height: auto;
}
.hero.full .lead.rating .btn-link {
    font-size: 14px;
    white-space: nowrap;
}

.hero .lead {
    margin: 0 auto;
}
.home .hero .lead,
.hero.full .lead,
.page-template-with-hero .hero .lead {
    margin: 0 auto 30px;
}

.hero.full .lead.rating {
    justify-content: center;
    margin: 0 auto 20px;
}

@media (min-width: 375px) {
    .hero.full {
        height: 100vh;
        /*min-height: 568px;*/
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero.full {
        height: auto;
    }
    .hero.full h1 br {
        display: none;
    }
    .tax-product_cat .hero .lead.rating div {
        flex: 0 0 auto;
    }
    .hero.full .lead.rating .btn-link {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .hero {
        padding: 130px 0 80px;
        text-align: left;
    }
    .hero.full {
        height: 100vh;
    }
    .hero.full {
        min-height: 700px;
        max-height: 900px;
    }
    .hero.full h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .cover {
        max-width: 480px;
    }
    .hero:not(.full) .lead {
        margin: 0 auto;
        font-weight: 500;
        font-size: 1.75rem;
        line-height: 1.4;
    }
    .hero.full .lead {
        margin: 0 0 40px;
        font-weight: 500;
        font-size: 1.25rem;
        line-height: 1.5;
    }
    .hero.full .lead.rating {
        justify-content: flex-start;
        margin: 0 0 20px;
    }
    .tax-product_cat .hero .lead.rating div {
        flex: 0 0 auto;
    }
    .hero.full .lead.rating .btn-link {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .cover {
        max-width: 600px;
    }
}

@media (min-width: 1400px) {
    .hero.full h1 {
        font-size: 3.5rem;
    }
    .page-template-with-hero .hero.full h1,
    .home .hero.full h1 {
        font-size: 3.875rem;
        margin-bottom: 30px;
    }
    .woocommerce-shop .hero.full h1 {
        max-width: 600px;
    }
    .hero.full .lead {
        font-size: 1rem;
    }
    .home .hero.full .lead,
    .page-template-with-hero .hero.full .lead,
    .woocommerce-shop .hero.full .lead,
    .hero:not(.full) .lead {
        font-size: 1.25rem;
        max-width: 570px;
    }
    .home .hero.full .lead,
    .page-template-with-hero .hero.full .lead {
        margin: 0 0 50px;
    }
    .cover {
        max-width: 700px;
    }
}

@media (min-width: 1600px) {
    .hero:not(.full) {
        height: 600px;
    }
    .hero.full h1 {
        font-size: 5rem;
        margin-bottom: 30px;
    }
    .hero.full .lead {
        margin: 0 0 50px;
        font-size: 1.25rem;
    }
    .hero:not(.full) .lead {
        font-size: 2.25rem;
    }
    .cover {
        max-width: 800px;
    }
    .woocommerce-shop .hero.full h1 {
        max-width: 740px;
    }
}

.card .card-link {
    display: block;
    transition: color 0.2s ease-out;
}

.card .card-link:hover,
.card .card-link:focus {
    color: var(--bs-black);
    text-decoration: none;
}

.card .thumb {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100%;
    background-color: var(--bs-bg-gray);
}

.card.material .thumb {
    background-color: #fff;
}

.card .thumb img {
    transition: opacity 0.3s ease-out;
}

.card .thumb:after {
    content: '';
    position: absolute;
    display: block;
    bottom: -1px;
    left: -1px;
    width: 0;
    height: 2px;
    background-color: var(--bs-secondary);
    transition: width 0.2s ease-out;
    z-index: 1;
}

.card .thumb:before {
    content: '';
    position: absolute;
    display: block;
    bottom: -1px;
    left: -1px;
    height: 0;
    width: 2px;
    background-color: var(--bs-secondary);
    transition: height 0.2s ease-out;
    z-index: 1;
}

.card.material .thumb:before,
.card.material .thumb:after,
li.product:not(.product-category) .card .thumb:before,
li.product:not(.product-category) .card .thumb:after,
.search .product:not(.product-category) .card .thumb:before,
.search .product:not(.product-category) .card .thumb:after {
    display: none;
}

.card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.card .overlay img {
    max-width: 50%;
    height: auto;
    margin-bottom: 40px;
    transform: translateY(-10px);
    transition: transform 0.3s ease-out;
}

.card .overlay .btn {
    transform: translateY(10px);
    transition: transform 0.3s ease-out;
}

.card .overlay .btn:hover,
.card .overlay .btn:focus {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.card .badges {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: opacity 0.3s ease-out;
}

.card .badges ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.card .badges ul li {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.6875rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
}

.card .badges ul li + li {
    margin-left: 10px;
}

.card .badges ul li:nth-child(1) {
    background-color: #12B76C;
}

.card .badges ul li:nth-child(2) {
    background-color: #FFA271;
}

.card .card-link:hover > .thumb:after {
    width: 60%;
}

.card .card-link:hover > .thumb:before {
    height: 60%;
}

.card .card-link:hover .overlay {
    opacity: 1;
}

.card .card-link:hover .overlay img,
.card .card-link:hover .overlay .btn  {
    transform: none;
    opacity: 1 !important;
}

.search .product .card .card-link:hover > .thumb img:not(.icon),
li.product:not(.product-category) .card .card-link:hover > .thumb img:not(.icon),
.search .product .card .card-link:hover > .thumb .badges,
li.product:not(.product-category) .card .card-link:hover > .thumb .badges {
    opacity: 0.3;
}

.card .thumb img:not(.icon) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card .thumb.has-lazy img:not(.icon) {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.card .thumb.has-lazy img:not(.icon).flickity-lazyloaded,
.card .thumb.has-lazy img:not(.icon).lazyloaded {
    opacity: 1;
}

.card .card-title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .card .card-title {
        font-size: 16px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .card .card-title {
        font-size: 18px;
    }
}

.post .thumb {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100%;
    background-color: var(--bs-bg-gray);
    margin-bottom: 20px;
}

.post .thumb:after {
    content: '';
    position: absolute;
    display: block;
    bottom: -1px;
    left: -1px;
    width: 0;
    height: 2px;
    background-color: var(--bs-secondary);
    transition: width 0.2s ease-out;
    z-index: 1;
}

.post .thumb:before {
    content: '';
    position: absolute;
    display: block;
    bottom: -1px;
    left: -1px;
    height: 0;
    width: 2px;
    background-color: var(--bs-secondary);
    transition: height 0.2s ease-out;
    z-index: 1;
}

.post .post-link {
    transition: color 0.2s ease-out;
}

.post .post-link:hover > .thumb:after {
    width: 60%;
}

.post .post-link:hover > .thumb:before {
    height: 60%;
}

.post .post-link:hover > .thumb img.flickity-lazyloaded {
    transform: scale(1.03);
}

.post .thumb .thumb-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.post .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-out, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post .thumb img {
    opacity: 1;
}

.post .thumb img.lazyloaded,
.post .thumb img.flickity-lazyloaded {
    opacity: 1;
}

.post .category {
    font-size: 14px;
    color: var(--bs-gray);
    margin-bottom: 20px;
}

.post .post-title {
    font-weight: 500;
}

.post-wrapper {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 60px;
}

.review-wrapper {
    margin-bottom: 30px;
}

.post-wrapper .review {
    padding: 30px;
    background-color: var(--bs-bg-gray);
}

.post-wrapper .review-content {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
    font-size: 14px;
    font-weight: 300;
}

.post-wrapper .review-content p {
    margin-bottom: 20px;
}

.post-wrapper .review-content:before {
    content: '';
    display: block;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url(assets/images/quote.svg); 
}

.post-wrapper .review-content .review-title {
    margin-top: 15px;
}

.post-wrapper .review-content strong {
    font-weight: 500;
}

@media (min-width: 768px) {
    .post-wrapper {
        flex: 0 0 auto;
        width: 50%;
    }
    .cdr-latest-posts .post-wrapper {
        flex: 0 0 auto;
        width: 33.3333%;
    }
    .review-wrapper {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .review-wrapper {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .review-wrapper {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .post-wrapper {
        flex: 0 0 auto;
        width: 33.3333%;
    }
}

@media (min-width: 1400px) {
    .review-wrapper {
        width: 33.33333333%;
    }
}

@media (min-width: 1600px) {
    .post-wrapper .review {
        padding: 70px;
    }
    .post-wrapper .review-content:before {
        width: 40px;
        height: 25px;
    }
    .post-wrapper .review-content {
        padding-left: 40px;
        padding-top: 40px;
    }
}

.single article {
    padding-top: 80px;
    margin: 0 auto;
}

.single article .post-thumb {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100%;
    background-color: var(--bs-bg-gray);
    margin-bottom: 20px;
}

.single article .post-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.single article .post-thumb img.lazyloaded {
    opacity: 1;
}

.single article .post-date,
.single article .post-category {
    color: var(--bs-gray);
    margin-bottom: 30px;
    display: block;
}

.single article .post-category {
    margin-bottom: 40px;
}

.single article header {
    margin-bottom: 50px;
}

.single article header h1 {
    font-size: 2rem;
    line-height: 1.3;
}

.single article .entry-content h4,
.single article .entry-content p {
    margin-bottom: 30px;
}

.single article .entry-content a {
    text-decoration: underline;
    transition: color 0.2s ease-out;
}

.single article .entry-content h4:not(:first-child) {
    margin-top: 60px;
}

.single article .entry-content ul,
.single article .entry-content ol {
    padding-left: 20px;
    margin-bottom: 30px;
}

.single .latest-posts-wrapper {
    margin-top: 80px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 0 20px;
    background: var(--bs-bg-gray);
}

.single .latest-posts-wrapper h3 {
    margin-bottom: 40px;
}

.single .follow {
    margin-top: 100px;
    margin-bottom: 100px;
}

.single .testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 992px) {
    .single article .post-thumb {
        width: 400px;
    }
    .single article .post-meta {
        margin-left: 30px;
    }
    .single article .post-category {
        margin-bottom: 0px;
    }
    .single .latest-posts-wrapper {
        margin-top: 100px;
        padding: 100px 0 40px;
        margin-bottom: 0;
    }
    .single .testimonials {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1200px) {
    .single article {
        max-width: 940px;
    }
    .single article .post-thumb {
        width: 450px;
    }
    .single article header h1 {
        font-size: 2.5rem;
    }
    /*.single .latest-posts-wrapper {
        max-width: 1240px;
    }*/
}

@media (min-width: 1400px) {
    .single article {
        max-width: 1100px;
    }
    .single article .post-thumb {
        width: 500px;
    }
    /*.single .latest-posts-wrapper {
        max-width: 1480px;
    }*/
}

@media (min-width: 1600px) {
    .single article {
        max-width: 1320px;
    }
    .single article .post-thumb {
        width: 600px;
    }
    .single article header h1 {
        font-size: 3rem;
    }
    /*.single .latest-posts-wrapper {
        max-width: 1720px;
    }*/
}

main .wpb_text_column p {
    margin-bottom: 20px;
}

main .wpb_text_column a {
    transition: color 0.2s ease-out;
    text-decoration: underline;
}

main .wpb_text_column ul,
main .wpb_text_column ol {
    padding-left: 20px;
}

main .wpb_text_column ul li + li,
main .wpb_text_column ol li + li {
    margin-top: 20px;
}

main .sticky {
    margin-bottom: 60px;
}

main .sticky .toc-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--bs-black);
    display: block;
}

@media (min-width: 992px) {    
    main .sticky {
        position: sticky;
        position: -webkit-sticky;
        top: 150px;
        margin-bottom: 20px;
    }
}

/* Loader */

.cdr-load-more {
    position: relative;
    height: 62px;
}

.cdr-more-button {
    padding: 15px 35px;
}

.cdr-loader-wrapper {
    position: relative;
    display: none;
    height: 62px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    z-index: 2;
}

.cdr-loader-wrapper .cdr-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.8);
    height: 100%;
    width: 100%;
}

.cdr-loader-wrapper .cdr-loader img {
    width: 20px;
    height: 20px;
}

/* Breadcrumb */

.cdr-breadcrumb {
    padding-bottom: 40px;
}

.page-template-product-category .cdr-breadcrumb {
    padding-bottom: 40px;
    margin-top: 40px;
}
  
.cdr-breadcrumb .item-bread {
    display: inline-block;
}

.cdr-breadcrumb .item-bread a {
    position: relative;
    display: inline-block;
    transition: color 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.cdr-breadcrumb .item-bread:last-child a {
    display: inline;
}

.cdr-breadcrumb .item-bread a:hover {
    color: var(--bs-black);
}

.cdr-breadcrumb .item-bread a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--bs-black);
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1)
}

.cdr-breadcrumb .item-bread a:hover:before {
    width: 100%;
}

.cdr-breadcrumb.cdr-theme-breadcrumb .item-bread:after {
    content: "";
    display: inline-block;
    background-image: url(assets/images/crumb.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 12px;
    height: 9px;
    margin: 0 5px;
}

.cdr-breadcrumb.cdr-theme-breadcrumb .item-bread:last-of-type:after {
    content: none;
}

.cdr-breadcrumb .delimiter {
    margin: 0 5px;
}

@media (max-width: 991.98px ) {
    .cdr-breadcrumb .item-bread,
    .cdr-breadcrumb .item-bread a {
        color: var(--bs-gray);
        font-size: 12px;
    }
    .page-template-product-category .cdr-breadcrumb { 
        text-align: center;
    }
}

/* Footer */

#footer {
    padding: 100px 0;
    background-color: var(--bs-light);
}

#footer .widget {
    margin-bottom: 60px;
}

#footer .widget .widget-title,
#footer .payments-title {
    margin-bottom: 30px;
    font-size: 1.25rem;
    display: block;
    font-weight: 600;
    line-height: 1.3;
    color: var(--bs-black);
}

#footer .widget ul {
    list-style: none;
    padding-left: 0;
}

#footer .widget ul li + li {
    margin-top: 10px;
}

#footer .widget ul li a {
    text-decoration: none;
    transition: color 0.15s ease-out;
}

#footer .widget ul li a:hover,
#footer .widget ul li a:focus,
#footer .widget ul li a:active {
    color: var(--bs-black);
}

#footer .footer-form {
    max-width: 440px;
    margin: 0 auto;
}

.backtotop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    z-index: 10000;
    border: 1px solid var(--bs-gray);
    border-radius: 50%;
    transition: all 0.3s ease-out;
    padding: 12px;
}

.backtotop svg {
    max-width: 100%;
    height: 100%;
}

.backtotop.show svg path {
    transition: fill 0.3s ease-out;
}

.backtotop.show:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.backtotop.show:hover svg path {
    fill: var(--bs-black);
}

.backtotop.show {
    opacity: 1;
}

.form-group,
main .wpb_text_column .form-group {
    position: relative;
    margin-bottom: 30px;
}

body:not(.request-a-quote) .form-group label,
#footer .form-group label {
    font-size: 14px;
    position: absolute;
    top: 5px;
    left: 0;
    color: var(--bs-gray);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.request-a-quote main .form-group label {
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    flex: 0 0 auto;
}

.request-a-quote main .form-check input {
    cursor: pointer;
}

.request-a-quote main .form-check label {
    cursor: pointer;
    flex: 0 0 auto;
}

.request-a-quote main .form-check .q-mark {
    flex: 0 0 15px;
}

.request-a-quote main input[type="file"] {
    display: none;
}

.request-a-quote main .custom-file-upload {
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 400;
    padding: 70px 20px;
    cursor: pointer;
    text-align: center;
    background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23979797' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='5' stroke-linecap='square'/%3e%3c/svg%3e")
}

.request-a-quote.file-uploaded main .custom-file-upload,
.request-a-quote main .custom-file-upload:hover {
    background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%2341A8EF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='5' stroke-linecap='square'/%3e%3c/svg%3e")

}

.request-a-quote main .custom-file-upload .btn {
    border-width: 2px;
    padding: 10px 20px;
}

.request-a-quote main .custom-file-upload strong {
    font-size: 1.5rem;
    font-weight: 500;
    transition: color .2s ease-out;
}

.request-a-quote.file-uploaded main .custom-file-upload strong,
.request-a-quote main .custom-file-upload:hover strong {
    color: var(--bs-cyan);
}

.request-a-quote.file-uploaded main .custom-file-upload svg path,
.request-a-quote main .custom-file-upload:hover svg path {
    fill: var(--bs-cyan);
    transition: color .2s ease-out;
}

.request-a-quote main .custom-file-upload span,
.request-a-quote main .custom-file-upload small {
    font-weight: 400;
    flex: 0 0 100%;
    word-break: break-all;
}

.request-a-quote main .form-check-input {
    margin-right: 10px;
}

.page-template-only-hero main .form-group label,
.form-group.active label,
.form-group .form-control:-webkit-autofill + label {
    transform: translateY(-120%);
}

.full-form .form-control {
    border-radius: 5px;
    border: 1px solid var(--bs-gray);
    padding: 23px 18px;
}

.request-a-quote main .full-form .form-control {
    padding: 15px 18px;
    border-radius: 5px;
    border: 1px solid var(--bs-gray);
}

.request-a-quote main .full-form .form-select {
    border-radius: 5px;
    border: 1px solid var(--bs-gray);
    padding: 15px 44px 15px 18px;
    background-position: right 18px center;
}

.request-a-quote main .form-group.active label,
.request-a-quote main .form-group .form-control:-webkit-autofill + label {
    transform: none;
}

#footer .footer-form {
    margin-top: 40px;
    margin-bottom: 60px;
}

#footer .footer-form .row {
    margin: 0 -5px;
}

#footer .footer-form .col,
#footer .footer-form .col-auto {
    padding: 0 5px;
}

#footer .footer-form .small {
    max-width: 350px;
    margin: 30px auto 0;
}

#footer .footer-form .btn {
    font-size: 14px;
    line-height: 1.5;
    padding: 7.5px 20px;
}

#footer .footer-form .form-control {
    background: none;
    padding: 2px 0 10px;
}

#footer .payments img {
    margin: 0 10px;
}

#footer .payments .small {
    max-width: 360px;
    margin: 48px auto 60px;
}

#footer .logo {
    display: inline-block;
    margin-bottom: 48px;
}

#footer .copy {
    margin-top: 30px;
}

#footer .notice {
    max-width: 650px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 50px;
}

@media (min-width: 992px ) and (max-width: 1199.98px) {
    #footer .container {
        max-width: 640px;
    }
}

@media (max-width: 991.98px) {
    #footer {
        padding: 80px 0 20px;
    }
    #footer .widget .widget-title {
        margin-bottom: 15px;
    }
    #footer .widget ul li + li {
        margin-top: 15px;
    }
    #footer .widget ul li a {
        font-size: 20px;
        line-height: 30px;
    }
    #footer .footer-form {
        order: -1;
    }
    #footer .footer-form label {
        font-size: 13px;
    }
    #footer .footer-form .btn {
        padding: 7.5px 15px;
    }
    #footer .payments h5 {
        margin-bottom: 20px;
    }
    #footer .payments .small {
        margin: 20px auto 60px;
    }
}

/* Components */

.cdr-social li {
    width: 42px;
    margin: 0 10px;
}

.cdr-social li svg {
    max-width: 42px;
    height: 32px;
}

.cdr-social li a svg path {
    fill: var(--bs-gold);
    transition: all 0.15s ease-out;
}

.cdr-social li a:hover svg path {
    fill: var(--bs-primary);
}

.wp-video {
    width: 100% !important;
}

.mejs-overlay-button {
    background: url(assets/images/play.svg) no-repeat !important;
    background-position: 50% 50% !important;
    background-size: cover !important;
    width: 100px !important;
    height: 100px !important;
    outline: 0;
}

.mejs-overlay-play {
    transition: background-color 0.3s ease-out;
}

.mejs-overlay-play:hover,
.mejs-overlay-play:focus {
    background: rgba(5, 20, 79, 0.3);
}

.mejs-overlay-play:hover .mejs-overlay-button,
.mejs-overlay-play:focus .mejs-overlay-button {
    background: url(assets/images/play-hover.svg) no-repeat !important;
    background-position: 50% 50% !important;
    background-size: cover !important;
    width: 100px !important;
    height: 100px !important;
}

.mejs-controls * {
    outline: 0;
}

.wp-video .mejs-controls {
    display: none;
}

.wp-video.playing .mejs-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
    position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, 0.75);
    border: none;
    color: #333;
}

.flickity-button:hover {
    background: white;
    cursor: pointer;
}

.flickity-button:focus {
    outline: none;
}

.flickity-button:active {
    opacity: 0.6;
}

.flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    /* prevent disabled button from capturing pointer up event. #716 */
    pointer-events: none;
}

.flickity-button-icon {
    fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* vertically center */
    transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -50px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: var(--bs-bg-purple);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.bg-purple .flickity-page-dots .dot {
    background: #fff;
}

.flickity-page-dots .dot.is-selected {
    width: 15px;
    height: 15px;
    background-color: var(--bs-purple);
}

.flickity-enabled.is-fade .flickity-slider > * {
    pointer-events: none;
    z-index: 0;
}
  
.flickity-enabled.is-fade .flickity-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
}

/* WPCF7 */

.wpcf7 .ajax-loader {
    position: absolute;
    top: 50%;
    right: -20px;
    margin: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--bs-gray);
}

.wpcf7 .ajax-loader::before {
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    transform-origin: 5px 5px;
}

.full-form .wpcf7 .btn-wrapper .btn {
    width: 100%;
}

.full-form .wpcf7 .ajax-loader {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.wpcf7-form .form-title {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    color: var(--bs-black);
    display: block;
}

.request-a-quote main .full-form .wpcf7 .ajax-loader {
    display: block;
    text-align: center;
    margin: 20px auto;
}

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0;
    padding: 0;
    border: none;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: var(--bs-danger);
}

.wpcf7 .wpcf7-not-valid {
    border-color: var(--bs-danger);
}

.wpcf7 .wpcf7-not-valid-tip {
    margin-top: 10px;
    color: var(--bs-danger);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.wpcf7 .wpcf7-not-valid-tip:before {
    content: '';
    display: block;
    width: 8px;
    height: 12px;
    margin-right: 10px;
    background-image: url(assets/images/arrow-danger.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .full-form .wpcf7 .btn-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .full-form .wpcf7 .btn-wrapper .btn {
        width: auto;
    }
    .full-form .wpcf7 .ajax-loader {
        order: -1;
        margin-right: 10px;
        position: relative;
        top: 0;
        right: 0;
        left: auto;
        transform: none;
    }
    .full-form .wpcf7 form .wpcf7-response-output  {
        text-align: right;
    }
   .request-a-quote main .full-form .wpcf7 form .wpcf7-response-output {
       text-align: center;
   }
}

/* Animate */

.animated {
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.animated.animate__delay-1 {
    -webkit-animation-delay: var(--animate-delay-1);
    animation-delay:var(--animate-delay-1)
}

.animated.animate__delay-2 {
    -webkit-animation-delay: var(--animate-delay-2);
    animation-delay:var(--animate-delay-2)
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform:translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform:translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform:translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform:translateZ(0)
    }
}

/* Cookie */

.grecaptcha-badge {
	display: none !important
}

#cookie-law-info-bar {
    padding: 0 !important;
    background: none !important;
    bottom: 40px !important;
    box-shadow: none !important;
}

#cookie-law-info-bar .inner {
	padding: 30px;
	border-radius: 5px;
	background:var(--bs-orange);
	box-shadow: 0 -1px 10px rgb(172 171 171 / 30%);
}

.inner .cli-plugin-button {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	border-radius: 5px;
	padding: 15px 25px;
    outline: 0;
    box-shadow: none;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.inner .cli-plugin-button:hover,
.inner .cli-plugin-button:focus {
    background-color: #9EE7C6 !important;
    border-color: #9EE7C6 !important;
    color: var(--bs-primary) !important;
}

.cli-bar-message {
	font-size: 16px;
	line-height:24px;
	font-weight:500;
	flex: 1;
}


#cookie-law-info-bar .inner .cli-bar-message img,
#cookie-law-info-bar .inner .cli-bar-message p{
	margin-bottom: 24px;
}

.cli-bar-btn_container {
	margin-left: 0px
}

@media (min-width: 1200px) {
	#cookie-law-info-bar .inner {
	    padding: 30px 40px;
	}
	#cookie-law-info-bar .inner .cli-bar-message img {
        margin-right: 40px;
		margin-bottom: 0
    }
	.cli-bar-btn_container {
		margin-left: 30px
	}
	#cookie-law-info-bar .inner {
        display: flex;
        align-items: center;
        text-align: left;
	}
    #cookie-law-info-bar .inner .cli-bar-message p {
        margin-bottom:0;
    }
    #cookie-law-info-bar .inner .cli-bar-message {
        display: flex;
        align-items: center;
    }
    .inner .cli-plugin-button {
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        border-radius: 5px;
        padding: 15px 25px;
    }

    .cli-bar-message {
        font-size: 20px;
        line-height:30px;
        font-weight:500;
        flex: 1;
    }
}

@media (min-width: 1400px) {
	#cookie-law-info-bar .inner .cli-bar-message img {
        margin-right: 60px;
		margin-bottom: 0
    }
	#cookie-law-info-bar .inner {
	    padding: 40px 60px;
	}
}

.screen-reader-text {
	display: none !important;
}

.modal-backdrop.show {
    opacity: 0.4;
}

/* Modal */

#registerModal .modal-content {
    border-radius: 5px;
    border: none;
    padding: 50px 125px;
}

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

#registerModal .woocommerce-privacy-policy-text {
	display: none;
}

#registerModal .form-control {
	height: 60px;
	border: 1px solid var(--bs-primary);
	border-right: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 0.875rem;
	line-height: 1.5;
}

#registerModal button {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	font-size: 0.875rem;
	line-height: 1.5;
	height: 60px;
	font-weight: 400;
	padding: 15px 30px;
    white-space: nowrap;
}

#registerModal h5 {
    font-size: 1.5rem;
    line-height: 1.3;
    max-width: 400px;
}

#registerModal .mini-progress {
    max-width: 360px;
    height: 20px;
    list-style: none;
    margin: 0 auto 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#registerModal .mini-progress li {
    position: relative;
    flex: 1;
}

#registerModal .mini-progress li:before {
    content: '2';
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 2px solid #E9E9E9;
    background-color: #fff;
    border-radius: 50%;
    color: #E9E9E9;
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 1;
    text-align: center;
    font-size: 13px;
    line-height: 17px;
    font-weight: 600;
}

#registerModal .mini-progress li:after {
    content: '';
    display: block;
    width: 150%;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #E9E9E9;
    transform: translateY(-50%);
}

#registerModal .mini-progress li.current:before {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    content: '1';
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 17px;
    font-weight: 600;
}

#registerModal .mini-progress li.complete:before {
    content: '';
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-image: url(assets/images/mini-check.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#registerModal .mini-progress li.complete:before {
    left: 0;
    right: auto;
}

#registerModal .mini-progress li.current:before {
    left: 50%;
    right: 0;
    transform: translateX(-50%);
}

#registerModal .mini-progress li.complete:after,
#registerModal .mini-progress li.current:after {
    background-color: var(--bs-primary);
    width: 100%;
    right: auto;
    left: 0;
}

#registerModal .mini-progress li.current:after {
    width: 50%;
}

#registerModal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    outline: 0;
    box-shadow: none;
}

#registerModal .error {
    padding: 10px;
}

#registerModal .error a {
    color: var(--bs-red);
    font-weight: 600;
}

#registerModal .loader {
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 20px;
}

@media (max-width:767.98px) {
    #registerModal .modal-content {
        padding: 40px 30px;
        font-size: 0.875rem;
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    #registerModal .btn-close {
        padding: 15px;
        height: 20px;
    }
}