.preloader-page {
    flex-direction: column;
}

.preloader-page > img:first-child {
    margin-bottom: 20px;
}

.global-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 0;
}

.custom-button {
    border: 2px solid var(--white);
    border-radius: 100px;
    min-width: 170px;
    min-height: 40px;
    background: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    padding: 0 15px;
}

.custom-button > span {
    font-weight: 600;
    font-size: 13px;
    transition: .4s;
}

.custom-button:not([disabled]):hover, .active-menu-button {
    background: var(--white);
    border-color: var(--black);
}

.custom-button.custom-button-black {
    background: var(--black);
    border-color: var(--black);
}

.custom-button.custom-button-black > span {
    color: var(--white);
}

.custom-button.custom-button-black:not([disabled]):hover {
    background: var(--green);
}

.custom-button[disabled] {
    cursor: default;
    background: var(--green-light) !important;
    border-color: var(--green-light) !important;
}

.custom-button[disabled] span, .custom-button[disabled] {
    color: #999 !important;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.overflow-hidden {
    overflow: hidden;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.font-weight-normal {
    font-weight: 500 !important;
}

.xl-title {
    font-size: 75px !important;
    font-weight: bold !important;
}

.lg-title {
    font-weight: bold;
    font-size: 54px;
}

.md-title {
    font-weight: 500;
    font-size: 24px;
}

.subtitle {
    font-size: 36px;
    font-weight: bold;
}

.big-paragraph {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.text-muted {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted) !important;
}

.custom-link {
    transition: .4s;
}

.custom-link:hover, .active-menu-item {
    color: var(--green) !important;
}

.custom-link:hover {
    text-decoration: underline;
}

.custom-link--white:hover {
    color: var(--white) !important;
}

.active-parent-menu-item {
    color: var(--white);
}

.background-img-none {
    background-image: none !important;
}

/* dropdown */
.custom-dropdown {
    position: relative;
    z-index: 100;
}

.custom-dropdown .custom-dropdown-menu {
    background: var(--black);
    padding: 15px;
    position: absolute;
    top: 30px;
    display: none;
}

.custom-dropdown .custom-dropdown-menu a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.rotate-minus-180 {
    transform: rotate(-180deg);
}

/* HEADER */
.header-page {
    width: 100%;
    position: fixed;
    height: 90px;
    top: 0;
    transition: .4s;
    z-index: 101;
}

.header-page.header-scroll {
    background: var(--green);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .25);
    border-bottom: 3px solid var(--black);
}

.fluid-container {
    max-width: 1366px;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header-page .nav-page .menu {
    display: flex;
    align-items: center;
}

.header-page .nav-page .menu .active-menu-item span, .mobile-menu-box .active-menu-item {
    color: var(--white) !important;
}

.header-page .nav-page .menu li:not(:first-child) {
    margin-left: 40px;
}

.header-page .nav-page .menu li > .inside-text span {
    transition: .4s;
}

.header-page .nav-page .menu li.active > .inside-text span,
.header-page .nav-page .menu li:hover > .inside-text span {
    color: var(--white);
}

.header-page .nav-page .inside-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-page .nav-page .inside-text span {
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
}

.header-page .nav-page .inside-text img {
    margin-left: 5px;
}

.header-page .nav-page .custom-dropdown-menu {
    min-width: 256px;
}

.header-page .nav-page .custom-dropdown-menu li {
    margin-left: 0 !important;
}

.header-page .nav-page .custom-dropdown-menu li:not(:first-child) {
    margin-top: 5px;
}

.header-page .header-toolbar {
    display: flex;
    align-items: center;
}

.header-page .header-toolbar .login-button {
    margin-right: 40px;
}

.header-page .header-toolbar .basket-icon {
    height: 40px;
    width: 40px;
    border: 2px solid var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px 0 20px;
    position: relative;
}

.header-page .header-toolbar .basket-icon .badge, .mobile-menu-box .badge {
    border: 3px solid var(--green);
    background: var(--white);
    border-radius: 100%;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -6px;
}

.header-page .header-toolbar .basket-icon .badge span, .mobile-menu-box .badge span {
    font-size: 11px;
}

.header-page .header-toolbar .switch-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.header-page .header-toolbar .switch-lang span {
    font-size: 14px;
    font-weight: bold;
    transition: .4s;
}

.header-page .header-toolbar .switch-lang img {
    margin-left: 5px;
}

.header-page .header-toolbar .switch-lang:hover > span {
    color: #fff;
}

.header-page .header-toolbar .custom-dropdown-menu {
    min-width: 45px;
}

.header-page .header-toolbar .custom-dropdown-menu li:not(:first-child) {
    margin-top: 5px;
}

.header-page .header-toolbar .account-menu {
    margin-left: 20px;
    display: flex;
    cursor: pointer;
}

.header-page .account-menu .custom-dropdown-menu {
    min-width: 150px;
}

.header-page .mobile-menu-toggle {
    display: none;
}

.session-alerts {
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px;
    z-index: 1000;
}

.session-alerts .alert-text {
    font-weight: 500;
}


/* MOBILE MENU */
.mobile-menu-container {
    height: calc(100% - 90px);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 101;
    right: 0;
    display: none;
}

.mobile-menu-box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding: 14px;
}

.mobile-menu-box > ul:nth-child(2) {
    margin: 40px 0;
}

.mobile-menu-container li {
    position: relative;
}

.mobile-menu-container li:not(:first-child) {
    margin-top: 10px;
}

.mobile-menu-container a, .mobile-menu-container button > span {
    font-size: 27px;
    transition: .4s;
    font-weight: bold;
    width: 100%;
}

.mobile-menu-container a:hover,
.mobile-menu-container .active-lang,
.mobile-menu-container button > span:hover {
    color: var(--white);
}

.mobile-menu-box .langs {
    display: flex;
    align-items: center;
}

.mobile-menu-box .langs li {
    margin: 0;
}

.mobile-menu-box .langs li:nth-child(2) {
    margin: 0 10px;
}

.mobile-menu-box .badge {
    border: 0;
    right: auto;
    left: 138px;
    top: 0;
}

.mobile-menu-container button {
    display: flex;
    align-items: center;
}

.mobile-menu-container button > img {
    height: 10px;
    margin-left: 10px;
}

.mobile-menu-box .submenu {
    margin-left: 30px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: none;
}

.mobile-menu-box .submenu a {
    font-size: 18px;
}


/* SUBHEADER */
.subheader-page {
    width: 100%;
    height: 650px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-shadow: inset 0 -5px 12px -5px rgba(0, 0, 0, .2);
    background-color: var(--green);
    position: relative;
}

.subheader-page .subheader-page-content {
    max-width: 850px;
    width: 100%;
    position: relative;
}

.subheader-page .subheader-page-content h1 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.subheader-product-page h1 {
    font-size: 52px !important;
    font-weight: bold;
}

.subheader-page .subheader-form-search {
    max-width: 770px;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.subheader-page .subheader-page-search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    border-radius: 40px;
}

.subheader-page .subheader-page-search input {
    height: 100%;
    width: 100%;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
    background: var(--white);
    padding: 0 18px 0 30px;
    font-weight: bold;
    border: 2px solid var(--green);
    border-right: 0;
    font-size: 15px;
}

.subheader-page .subheader-page-search input + button {
    border: 2px solid var(--green);
    border-left: 0;
}

.subheader-page .subheader-page-search input::placeholder {
    color: var(--green);
    opacity: 1;
    font-weight: bold;
}

.subheader-page .subheader-page-search input:-ms-input-placeholder {
    color: var(--green);
    font-weight: bold;
}

.subheader-page .subheader-page-search input::-ms-input-placeholder {
    color: var(--green);
    font-weight: bold;
}

.subheader-page .subheader-tags {
    position: absolute;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.subheader-page .subheader-tags li:not(:first-child) {
    margin-left: 8px;
}

.subheader-page .subheader-tags li a {
    background: var(--green);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    transition: .4s;
    border: 2px solid var(--white);
}

.subheader-page .subheader-tags li a:hover {
    background: var(--black);
    color: var(--white);
}

.search-icon {
    height: 100%;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding-right: 30px;
    margin-left: -1px;
}

.subheader-page .search-results {
    position: absolute;
    background: var(--white);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 18px 30px;
    width: 100%;
    top: 30px;
    min-height: 100px;
    z-index: -1;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    display: none;
}

.subheader-page .search-results .search-results-wrapper {
    position: relative;
    margin-top: 35px;
    max-height: 150px;
    overflow: auto;
}

.subheader-page .search-results .search-results-wrapper a {
    display: flex;
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    transition: .4s;
}

.subheader-page .search-results .search-results-wrapper > a:not(:first-child) {
    margin-top: 4px;
}

.subheader-page .search-results .search-results-wrapper a:hover {
    color: var(--green);
}

.search-preloader {
    display: none;
}

.subheader-product-page {
    margin-top: 90px;
}

.subheader-product-page-cover:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
}

/* FOOTER */

/* - more faq section */
.footer-page-container .more-faq-section {
    padding: 100px 0 120px 0;
}

.footer-page-container .more-faq-section h2 {
    margin-bottom: 60px;
}

.footer-page-container .more-faq-section .faq-list li:not(:first-child) {
    margin-top: 20px;
}

.footer-page-container .more-faq-section .faq-list-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.footer-page-container .more-faq-section .faq-list-title h3 {
    transition: .4s;
    font-size: 20px;
}

.footer-page-container .more-faq-section .faq-list-title:hover h3,
.footer-page-container .more-faq-section .faq-list-title.accordion-opened h3 {
    color: var(--green);
}

.footer-page-container .more-faq-section .faq-list-title .arrow {
    transform: rotate(180deg);
}

.footer-page-container .more-faq-section .faq-list-title .arrow.arrow-rotate {
    transform: rotate(0deg) !important;
}

.footer-page-container .more-faq-section .faq-list-content {
    margin-top: 20px;
    display: none;
}

.footer-page-container .more-faq-section .faq-list-content p {
    font-size: 14px;
}

.footer-page-container .more-faq-section .faq-list-content .custom-button {
    margin-top: 15px;
}


/* - solutions section */
.footer-page-container .solutions-section {
    background-position: center;
    background-size: cover;
    height: 600px;
    box-shadow: inset 0 5px 12px -5px rgba(0, 0, 0, .25);
}

.footer-page-container .solutions-section .content > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 50px;
}

.footer-page-container .solutions-section .content > div a,
.footer-page-container .section-how-order .content > div:last-child a,
.footer-page-container .section-your-realizations .content > div:last-child a {
    width: 270px;
    height: 45px;
}

.footer-page-container .solutions-section .btn-write-us {
    margin-right: 30px;
}

.footer-page-container .solutions-section .btn-write-us > span {
    color: var(--white)
}

.footer-page-container .solutions-section .btn-write-us:hover {
    background: var(--white);
}

.footer-page-container .solutions-section .btn-write-us:hover > span {
    color: var(--black);
}

.footer-page-container .solutions-section .btn-config,
.footer-page-container .section-how-order .content > div:last-child a {
    background: var(--white);
}

.footer-page-container .solutions-section .btn-config:hover,
.footer-page-container .section-how-order .content > div:last-child a:hover {
    background: var(--green);
}

.footer-page-container .solutions-section .btn-config:hover > span,
.footer-page-container .section-how-order .content > div:last-child a:hover > span {
    color: var(--white);
}

/* - rent section */
.footer-page-container .section-rent {
    height: 640px;
    background: var(--white);
    box-shadow: 0 -5px 12px -5px rgba(0, 0, 0, .25);
}

.footer-page-container .section-rent .content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-page-container .section-rent .content > div {
    width: 50%;
    display: flex;
}

.footer-page-container .section-rent .content > div:first-child {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer-page-container .section-rent .content > div:last-child {
    align-items: flex-end;
}

.footer-page-container .section-rent .content > div p {
    margin: 20px 0 10px;
}

.footer-page-container .section-rent .content > div a {
    width: 270px;
    justify-content: space-between;
    padding: 0 25px;
    height: 45px;
    margin-top: 30px;
}

/* - how order section */
.footer-page-container .section-how-order {
    height: 640px;
    box-shadow: inset 0 5px 12px -5px rgba(0, 0, 0, .25);
}

.footer-page-container .section-how-order .content,
.footer-page-container .section-your-realizations .content {
    flex-direction: column;
    justify-content: center;
}

.footer-page-container .section-how-order .content,
.footer-page-container .section-how-order .content .top,
.footer-page-container .section-your-realizations .content,
.footer-page-container .section-your-realizations .content .top {
    display: flex;
    width: 100%;
}

.footer-page-container .section-how-order .content .top,
.footer-page-container .section-your-realizations .content .top {
    justify-content: space-between;
    align-items: center;
}

.list-how-to {
    margin-top: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list-how-to li {
    margin: 10px;
}

.list-how-to div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.list-how-to a:not(.custom-button), .list-how-to li > div > span {
    font-size: 20px;
    font-weight: bold;
    display: block;
    border-bottom: 3px solid var(--black);
    width: 270px;
    padding: 15px 0;
}

.list-how-to a:not(.custom-button):hover {
    text-decoration: underline;
}

.list-how-to img {
    margin-top: 20px;
    width: 34px;
}

.footer-page-container .section-how-order .content > div:last-child,
.footer-page-container .section-your-realizations .content > div:last-child {
    margin-top: 70px;
    display: flex;
    justify-content: flex-end;
}

/* - your realizations section */
.footer-page-container .section-your-realizations {
    height: 640px;
    box-shadow: 0 -5px 12px -5px rgba(0, 0, 0, .25);
}

.footer-page-container .section-your-realizations .fluid-container {
    height: auto;
}

.footer-page-container .section-your-realizations .slider-realizations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.footer-page-container .section-your-realizations .slider-realizations .slider-realizations-item {
    height: 270px;
    margin-right: 20px;
}

.footer-page-container .section-your-realizations .slider-realizations .slider-realizations-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
}

.footer-page-container .section-your-realizations .slider-realizations .slider-realizations-button.btn-direction-left {
    left: 20px;
}

.footer-page-container .section-your-realizations .slider-realizations .slider-realizations-button.btn-direction-right {
    right: 20px;
}

/* - newsletter section */
.footer-page-container .section-newsletter {
    height: 640px;
    box-shadow: inset 0 5px 12px -5px rgba(0, 0, 0, .25);
    background-size: cover;
    background-position: top;
}

.footer-page-container .section-newsletter .content,
.footer-page-container .section-contact .content {
    display: flex;
    align-items: center;
}

.footer-page-container .newsletter-input-form {
    margin: 40px 0 10px;
}

.footer-page-container .newsletter-input-form > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    background: var(--white);
    border-radius: 40px;
    padding: 0 18px;
    height: 40px;
    transition: .4s;
    border: 2px solid transparent;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--black);
}

.input-danger {
    border-color: var(--danger);
}

.form-control-checkboxes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form-control-checkboxes > *:not(:last-child) {
    margin-right: 10px;
}

.form-control-checkbox input {
    display: none !important;
}

.form-control-checkbox label {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.form-control-checkbox label:before {
    content: '';
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 3px solid #e5e5e5;
    transition: .4s;
}

.form-control-checkbox input:checked + label:before {
    content: '';
    background: var(--green);
}

.form-control-checkbox label > strong {
    margin-left: 5px;
}

.footer-page-container .newsletter-input-form .form-control {
    width: calc(100% - 300px);
}

/*.footer-page-container .newsletter-input-form a {*/
/*    width: 270px;*/
/*}*/

.footer-page-container .newsletter-input-form button {
    width: 270px;
}

/* - contact section */
.footer-page-container .section-contact {
    height: 740px;
    background: var(--white);
    position: relative;
}

.footer-page-container .section-contact .newsletter-contact-half-circle {
    position: absolute;
    right: 0;
    top: -10%;
}

.footer-page-container .contact-content-side {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* --- left side */
.footer-page-container .contact-content-side .left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: calc(100% - 300px);
    width: 100%;
}

.footer-page-container .contact-content-side .left-side > div:not(:first-child) {
    margin-top: 20px;
}

.footer-page-container .contact-content-side .left-side h6 {
    color: var(--green);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-page-container .contact-content-side .left-side li,
.footer-section .list-contact li {
    display: flex;
    align-items: center;
}

.footer-page-container .contact-content-side .left-side li a,
.footer-section .list-contact li a, .footer-section .list-contact li span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-left: 10px;
}

.footer-page-container .contact-content-side .left-side .bot-button a {
    background: var(--black);
    width: 270px;
    justify-content: space-between;
    padding: 0 25px;
    height: 45px;
}

.footer-page-container .contact-content-side .left-side .bot-button a:hover {
    background: var(--green);
}

.footer-page-container .contact-content-side .left-side .bot-button a span {
    color: var(--white);
}

/* --- right side */
.footer-page-container .contact-content-side .right-side {
    max-width: 670px;
}

.footer-page-container .contact-content-side .right-side form > * {
    margin-bottom: 15px;
}

.footer-page-container .contact-content-side .right-side select,
.footer-page-container .contact-content-side .right-side input,
.footer-page-container .contact-content-side .right-side textarea {
    background: var(--green-light);
    box-shadow: none;
}

.footer-page-container .contact-content-side .right-side select,
.footer-page-container .contact-content-side .right-side input {
    height: 40px;
}

.footer-page-container .contact-content-side .right-side textarea {
    min-height: 130px;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 0;
}

.footer-page-container .contact-content-side .right-side div:not(.preloader-button) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 25px;
}

.footer-page-container .contact-content-side .right-side button {
    width: 270px;
}


/* - # footer section */
.footer-page-container .footer-section {
    height: 540px;
    box-shadow: 0 -5px 12px -5px rgba(0, 0, 0, .25);
}

.footer-section .fluid-container {
    flex-direction: column;
    justify-content: center;
}

.footer-section .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-section .row .footer-col {
    width: 242px;
    height: 100%;
    margin: 10px;
}

.footer-section .title-col {
    margin-bottom: 30px;
}

.footer-section h4.title-col {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.footer-section li:not(:first-child) {
    margin-top: 10px;
}

.footer-section li a, .footer-section li span {
    color: var(--white);
    font-size: 14px !important;
    font-weight: 400;
}

.footer-section li.item-address {
    margin-top: 40px;
}

.footer-section li.item-address img {
    height: 16px;
}

.footer-section .list-socials {
    margin-top: 67px;
}

.footer-section .footer-col.footer-socials {
    width: 23px
}

.footer-section .footer-hide-desktop {
    display: none;
}

.footer-section .footer-copyright span {
    color: var(--white);
    font-size: 12px;
    display: block;
}

.footer-section .footer-copyright a:hover {
    color: var(--green) !important;
}

.footer-section .footer-copyright .footer-col.footer-to-up {
    width: 23px;
}

/* COOKIES BOX */
.cookies-box {
    background: var(--green);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    border-top: 2px solid var(--black);
    padding: 15px 20px;
}

.cookies-box .cookies-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
}

.cookies-box .cookies-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookies-box .cookies-box-content a {
    text-decoration: underline;
}

.cookies-box .cookies-box-content span.material-icons {
    font-size: 40px;
    display: block;
    margin-right: 20px;
}

.cookies-box .cookies-box-content span:not(.material-icons) {
    font-weight: 500;
    max-width: 700px;
}

.cookies-box .cookies-box-close span {
    font-size: 40px;
    cursor: pointer;
}

.consent-checkbox input {
    display: none !important;
}

.consent-checkbox label {
    cursor: pointer;
    display: flex;
}

.consent-checkbox label > span:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--black);
    display: flex;
    border-radius: 100%;
    transition: .4s;
}

.consent-checkbox.consent-checkbox-black label > span:before,
.auth-section:not(.bg-reverse) label > span:before {
    background: var(--white) !important;
}

.consent-checkbox input:checked + label > span:before {
    background: var(--green);
}

.consent-checkbox.consent-checkbox-black input:checked + label > span:before,
.auth-section:not(.bg-reverse) input:checked + label > span:before {
    background: var(--black) !important;
}

.consent-checkbox label > small {
    margin-left: 10px;
    font-weight: 500;
}

.consent-checkbox label.input-danger > span:before {
    border-color: var(--danger) !important;
}

.consent-checkbox a {
    font-weight: bold;
}

.consent-checkbox a:hover {
    color: var(--black) !important;
    text-decoration: underline !important;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1360px) {
    .footer-page-container .solutions-section {
        background-position: inherit !important;
        height: 350px !important;
    }
}

@media screen and (max-width: 1254px) {
    h1.xl-title {
        font-size: 60px;
    }

    h2.lg-title {
        font-size: 45px;
    }
}

@media screen and (max-width: 1230px) {
    .footer-page-container .section-how-order {
        height: auto !important;
        padding: 30px 0;
    }
}

@media screen and (max-width: 1100px) {
    .header-page .nav-page, .header-page .header-toolbar > *:not(button) {
        display: none !important;
    }

    .header-page .mobile-menu-toggle {
        display: block !important;
    }

    .subheader-page {
        height: 530px;
    }

    .subheader-page .subheader-page-content h1 {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 1024px) {
    h1.xl-title, h2.lg-title {
        font-size: 40px !important;
    }

    h6.subtitle {
        font-size: 24px;
    }

    .footer-page-container .section-rent {
        height: 450px !important;
    }

    .footer-page-container .section-your-realizations .content .top {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .footer-page-container .section-your-realizations,
    .footer-page-container .section-newsletter,
    .footer-page-container .section-contact,
    .footer-page-container .footer-section {
        height: auto !important;
        padding: 30px 0;
    }

    .footer-page-container .section-your-realizations .content > div:last-child {
        margin-top: 30px !important;
    }

    .footer-page-container .newsletter-input-form > div {
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-page-container .newsletter-input-form input {
        width: 100% !important;
    }

    .footer-page-container .newsletter-input-form button {
        margin-top: 15px;
    }

    /*.footer-page-container .newsletter-input-form a {*/
    /*    margin-top: 20px;*/
    /*}*/
}

@media screen and (max-width: 840px) {
    .footer-page-container .contact-content-side {
        flex-direction: column;
    }

    .footer-page-container .contact-content-side .left-side,
    .footer-page-container .contact-content-side .right-side {
        max-width: 100%;
    }

    .footer-page-container .contact-content-side .left-side {
        margin-bottom: 30px;
    }

    .footer-page-container .contact-content-side .left-side .bot-button {
        display: none;
    }
}

@media screen and (max-width: 680px) {
    .footer-page-container .solutions-section .content > div {
        flex-direction: column;
    }

    .footer-page-container .solutions-section .btn-write-us {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-page-container .solutions-section, .footer-page-container .more-faq-section, .asset-section {
        height: auto !important;
        padding: 30px 0 !important;
    }

    .footer-page-container .section-rent {
        height: auto !important;
        padding: 30px 0;
    }

    .footer-page-container .section-rent .content {
        flex-direction: column-reverse !important;
    }

    .footer-page-container .section-rent .content > div {
        width: 100% !important;
    }

    .footer-page-container .section-rent .content > div:first-child {
        margin-top: 20px;
    }

    .list-how-to li, .list-how-to li a, .list-how-to li > div > span {
        width: 100% !important;
    }

    .footer-page-container .section-how-order .content > div:last-child {
        margin-top: 30px !important;
    }

    .footer-page-container .more-faq-section h2 {
        margin-bottom: 40px;
    }

    .cookies-box .cookies-box-content span.material-icons {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .footer-section .footer-hide-desktop {
        display: block !important;
    }

    .footer-section .footer-col .footer-hide-desktop {
        margin-left: 90px !important;
    }

    .footer-section .row {
        flex-direction: column;
    }

    .footer-section .row .footer-col:first-child .list-contact {
        display: none;
    }

    .footer-section .footer-col.footer-socials {
        width: 100% !important;
    }

    .footer-section .row .footer-col {
        width: auto !important;
    }

    .footer-section .list-socials {
        display: flex;
        align-items: center;
    }

    .footer-section .list-socials li {
        margin: 0;
    }

    .footer-section .list-socials li:not(:first-child) {
        margin-left: 15px;
    }

    .footer-to-up {
        display: none;
    }

    .footer-section .list-socials {
        margin-top: 0;
    }

    .footer-section li.item-address {
        margin-top: 10px !important;
    }

    .footer-section .footer-hide-desktop .list-contact {
        margin: 15px 0 !important;
    }

    .footer-section .footer-copyright {
        margin-top: 10px !important;
        flex-direction: row !important;
    }

    .footer-page-container .more-faq-section .faq-list-title h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 1366px) {
    .global-container:not(.home-container) .subheader-page {
        height: 400px;
    }
}

@media screen and (max-width: 1100px) {
    .global-container:not(.home-container) .subheader-page {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .section-newsletter {
        background: #EAF2E2 none !important;
    }

    .subheader-page .subheader-page-search input {
        font-size: 13px;
    }

    h1.xl-title {
        font-size: 30px !important;
    }

    h2.lg-title {
        font-size: 32px !important;
    }
}
