:root {
    --lp-body-fs: clamp(14px, 2.3333vw, 15px);
    --lp-primary-clr: #1F1D1D;
    --lp-secondary-clr: #E7421B;
    --lp-dark-clr: #000000;
    --lp-body-text-clr: #4D4D4D;
    --lp-hero-title-fs: clamp(38px, 2.85vw, 67px);
    --lp-hero-pretitle-fs: clamp(21px, 2.85vw, 25px);
    --lp-dark-clr: #000000;
    --lp-footer-text-clr: #ffffff;
    --lp-footer-link-clr: #ffffff;
    --lp-footer-link-hover-clr: var(--lp-secondary-clr);
    --lp-navbar-height: 90px;
    --lp-heading-clr: var(--lp-primary-clr);

    /** Form */
    --lp-form-bg: #ffffff;
    --lp-form-border: #cccccc;
    --lp-form-border-radius: 4px;
    --lp-form-spacing: 10px;
    --lp-form-label-color: #000;
    --lp-form-placeholder-color: #999999;
    --lp-form-input-bg: #f9f9f9;
    --lp-form-input-padding: 0.75rem 1rem;
    --lp-form-font-size: clamp(13px, 2.3333vw, 14px);
    --lp-form-accent: var(--lp-secondary-clr);
    --lp-form-accent-dark: var(--lp-primary-clr);
    --lp-form-checkbox-gap: 0.5rem;
    --lp-form-max-width: 900px;
}

body {
    font-family: sans-serif;
    font-size: var(--lp-body-fs);
    margin: 0;
    line-height: 1.5;
}

/*** Generic */

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fw-regular {
    font-weight: 400;
}

.small-text {
    font-size: clamp(13px, 2.3333vw, 14px);
}

.is-digitalyties-landingpage img {
    height: auto;
    width: 100%;
}

.primary-text-clr {
    color: var(--lp-primary-clr);
}

.secondary-text-clr {
    color: var(--lp-secondary-clr);
}

.text-uppercase {
    text-transform: uppercase;
}

.divider-line {
    margin: 1.5rem 0;
    height: 1px;
    background: #e4e4e4;
}

.fw-bold {
    font-weight: 700;
}

.shadow-box {
    background: #ffffff;
    box-shadow: 1px 2px 8px rgb(61 61 61 / 18%);
    padding: 2.188rem;
}

@media(max-width: 991px) {
    .shadow-box {
        padding: 1.563rem;
    } 
}

/** 
 ** 
 ** Landingpage Styles
 **
 **/

body p, 
body a, 
body {
    color: var(--lp-body-text-clr);
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    color: var(--lp-heading-clr);
    line-height: 1.2; /* default */
    margin-top: 0;
}

a {
    text-decoration: none;
}

/** Heading */

.heading-xl {
    font-size: clamp(36px, 4vw, 61px);
    line-height: 1.25;
}

.heading-lg {
    font-size: clamp(31px, 3.5vw, 49px);
    line-height: 1.25;
}

.heading-md {
    font-size: clamp(26px, 2.3333vw, 42px);
    line-height: 1.25;
}

.heading-sm {
    font-size: clamp(21px, 2.3333vw, 34px);
    line-height: 1.25;
}

.heading-xs {
    font-size: clamp(19px, 2.3333vw, 26px);
    line-height: 1.25;
}

.heading-xxs {
    font-size: clamp(16px, 2.3333vw, 21px);
    line-height: 1.25; 
}

.pretitle,
.subtitle {
    font-size: clamp(17px, 2.3333vw, 20px);
}

.content-section.lp-section {
    margin: 4.375rem 0;
}

/** Button */

button {
    appearance: none;
    -webkit-appearance: none;
}

.d-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid transparent;
    padding: 12px 25px;
    font-size: 1rem;
    line-height: 1;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.d-btn.small {
    max-width: 200px;
    padding: 8px 22px;
    font-size: 0.925rem;
}
.d-btn--primary {
    background: var(--lp-primary-clr);
    border-color: var(--lp-primary-clr);
    color: #ffffff;
}

.d-btn--primary:hover,
.d-btn--primary:focus,
.d-btn--primary:active {
    background: transparent;
    border-color: var(--lp-primary-clr);
    color: var(--lp-primary-clr);
}

.d-btn--secondary {
    background: var(--lp-secondary-clr);
    border-color: var(--lp-secondary-clr);
    color: #ffffff;
}

.d-btn--secondary:hover,
.d-btn--secondary:focus,
.d-btn--secondary:active {
    background: transparent;
    border-color: var(--lp-primary-clr);
    color: var(--lp-primary-clr);
}

.no--btn {
    background: 0 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0; 
}

/** Navbar */
.lp-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: var(--lp-navbar-height);
    display: flex;
    align-items: center;
    margin: auto;
}

.lp-navbar.transparent {
    background: transparent;
    box-shadow: unset;
}

.lp-navbar-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    align-items: center;
    width: 95vw;
}

.lp-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lp-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 8;
}

.lp-nav-open .lp-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.lp-menu .lp-menu-link {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    font-size: clamp(15px, 2.333vw, 17px);
    font-weight: 400;
}

.lp-menu .lp-menu-link:hover,
.lp-menu .lp-menu-link.active {
    color: var(--lp-secondary-clr);
}

.lp-nav-open .lp-navbar .lp-menu .lp-menu-link:hover,
.lp-nav-open .lp-navbar .lp-menu .lp-menu-link.active {
    color: var(--lp-secondary-clr);
}

.lp-navbar.is-transparent .lp-menu-link:hover,
.lp-navbar.is-transparent .lp-menu-link.active {
    color: var(--lp-secondary-clr);
}

.lp-nav-open .lp-navbar.is-transparent .lp-menu .lp-menu-link:hover,
.lp-nav-open .lp-navbar.is-transparent .lp-menu .lp-menu-link.active {
    color: var(--lp-secondary-clr);
}

.lp-navbar.is-transparent .lp-menu-link {
    color: #ffffff;
}

.lp-nav-open .lp-navbar.is-transparent .lp-menu-link {
    color: var(--lp-primary-clr);
}

.lp-menu-toggle {
    position: relative;
    width: 27px;
    height: 18px;
    cursor: pointer;
}

.lp-menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--lp-dark-clr);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-menu-toggle span:nth-child(1) {
    top: 0;
}

.lp-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.lp-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.lp-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.lp-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.lp-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.lp-menu-toggle {
    display: none;
}

@media (max-width: 1199px) {
    .lp-menu {
        flex-direction: column;
        display: none;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 2rem;
    }

    .lp-menu.open {
        display: flex;
    }

    .lp-menu-toggle {
        display: flex;
    }
}

.lp-logo-light {
    display: none;
}

.lp-logo-dark {
    display: inline-block;
}

.lp-navbar.is-transparent {
    background: transparent;
    box-shadow: unset;
}

.lp-navbar.is-transparent .lp-logo-light {
    display: inline-block;
}

.lp-navbar.is-transparent .lp-logo-dark {
    display: none;
}

.lp-menu.open~.lp-navbar-logo .lp-logo-light {
    display: inline-block;
}

.lp-menu.open~.lp-navbar-logo .lp-logo-dark {
    display: none;
}

.lp-nav-open .lp-navbar.is-transparent {
    background: #ffffff;
}

.lp-nav-open .lp-navbar.is-transparent .lp-navbar-logo .lp-logo-light {
    display: none;
}

.lp-nav-open .lp-navbar.is-transparent .lp-navbar-logo .lp-logo-dark {
    display: inline-block;
}

.lp-nav-open .lp-navbar-container {
    border-bottom: 1px solid #d6d6d6;
}

.lp-navbar.is-transparent .lp-menu-toggle span {
    background-color: #ffffff;
}

.lp-navbar .lp-menu-toggle span {
    background-color: var(--lp-dark-clr);
}

.lp-nav-open .lp-menu-toggle span {
    background: var(--lp-dark-clr);
}

.navbar-btn {
    background: var(--lp-secondary-clr);
    border-color: var(--lp-secondary-clr);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 15px;
}

.navbar-btn:hover {
    background: var(--lp-primary-clr);
    border-color: var(--lp-primary-clr);
    color: #ffffff;
}

/** Sticky Nav */

.nav--is-sticky .navbar-btn,
.lp-nav-open .navbar-btn {
    background: var(--lp-secondary-clr);
    border-color: var(--lp-secondary-clr);
    color: #ffffff;
}

.nav--is-sticky .navbar-btn:hover,
.lp-nav-open .navbar-btn:hover {
    background: transparent;
    border-color: var(--lp-primary-clr);
    color: var(--lp-primary-clr);
}

.nav--is-sticky .lp-navbar {
    background: #ffffff;
}

.nav--is-sticky .lp-menu-toggle span {
    background-color: #000000;
}

.nav--is-sticky .lp-navbar .lp-logo-light {
    display: none;
}

.nav--is-sticky .lp-navbar .lp-logo-dark {
    display: inline-block;
}

.nav--is-sticky .lp-navbar .lp-menu-link {
    color: #000000;
}

.nav--is-sticky .lp-nav-open .lp-navbar.is-transparent .lp-menu-link {
    color: #000000;
}

.lp-menu .lp-navbar .lp-menu-link:hover,
.lp-menu .lp-navbar .lp-menu-link.active {
    color: var(--lp-primary-clr);
}

.nav--is-sticky .lp-menu .lp-navbar .lp-menu-link:hover,
.nav--is-sticky .lp-menu .lp-navbar .lp-menu-link.active {
    color: var(--lp-primary-clr);
}

.nav--is-sticky .lp-nav-open .lp-navbar .lp-menu .lp-menu-link:hover,
.nav--is-sticky .lp-nav-open .lp-navbar .lp-menu .lp-menu-link.active {
    color: var(--lp-primary-clr);
}

.highlighted-word {
    color: var(--lp-primary-clr);
}

.lp-navbar-logo img {
    max-width: 240px;
}

/** Hero Header */

.lp-hero-header.hero-header {
    position: relative;
}

.lp-navbar-type--normal .hero-header {
    margin-top: var(--lp-navbar-height);
}

.lp-hero-title {
    font-size: var(--lp-hero-title-fs);
    font-weight: 700;
    margin: 0;
}

.lp-hero-pretitle {
    font-size: var(--lp-hero-pretitle-fs);
    font-weight: 500;
    color: var(--lp-secondary-clr);
    margin: 0;
}

.lp-hero-overlay {
    background: linear-gradient(to bottom, rgb(0 0 0 / 54%), rgb(0 0 0 / 45%), rgb(0 0 0 / 53%), rgba(0, 0, 0, 1));
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.lp-hero-header.hero-header .hero--content-wrapper {
    background: #ffffff;
    position: absolute;
    bottom: 10%;
    left: 20%;
    /** Custom */
    padding: 2.5rem 2rem;
    color: #000000;
    margin: 0.938rem;
    max-width: 615px; 
}

@media(max-width: 991px) {
    .lp-hero-header.hero-header.hero-image .hero--image-wrapper img {
        height: 300px;
        object-fit: cover;
        object-position: top;
    }
    .lp-hero-header.hero-header .hero--content-wrapper {
        padding: 0.938rem;
        margin: 0;
        max-width: 100%;
        position: relative;
        bottom: unset;
        left: unset;
        /** Custom */
        border-bottom: 1px solid #dcdcdc;
        padding-bottom: 1.875rem;
    }
}

/** Footer */

.footer.lp-footer {
    background: var(--lp-primary-clr);
    padding: 5.313rem 0;
    margin-top: 6.875rem;
}

.footer.lp-footer .lp-footer-logo-wrapper img {
    max-width: 250px;
    margin: auto;
}

.footer.lp-footer .legal-links li {
    list-style: none;
}

.footer.lp-footer p,
.footer.lp-footer span,
.footer.lp-footer {
    color: var(--lp-footer-text-clr);
}

.footer.lp-footer a {
    color: var(--lp-footer-link-clr);
}

.footer.lp-footer a:hover {
    color: var(--lp-footer-link-hover-clr);
}

.lp-footer .social-media-wrapper .social-icon-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.25rem 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.footer-contact-item {
    font-size: clamp(29px, 2.33333vw, 44px);
    font-weight: 700;
}

.footer-mail-wrapper {
    margin-top: 1.563rem;
}

.lp-footer-logo-wrapper {
    margin-bottom: 0.938rem;
}

.phone-contact-hours ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-contact-hours ul .list-item {
    display: flex;
    gap: 20px;
}

.phone-contact-hours ul .list-item .day {
    width: 85px;
}

@media(max-width: 576px) {
    .footer-contact-infos {
        margin-top: 1.875rem;
    }
}

/** List */

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist .list-item {
    display: flex;
    align-items: center;
    line-height: 1;
}

.checklist .list-item::before {
    content: "\ea41";
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 2rem;
    color: var(--lp-secondary-clr);
    margin-right: 0.35rem;
    display: inline-block;
}

/** Advantages */ 
.card-item.advantage-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgb(0 0 0 / 15%);
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 40px;
}

.card-item .card-title {
    font-size: clamp( 15px, 2.3333vw, 16px);
}

.card-item.advantage-card .card-icon-wrapper .card-icon {
    width: auto;
    height: auto;
}

.card-item.advantage-card .card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.938rem;
}

.card-item.advantage-card .card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.938rem;
}

.card-item.advantage-card .card-description-wrapper p {
    font-size: clamp(13px, 2.33333vw, 14px);
    margin: 0;
}

/** Accordion */

.accordion-wrapper .accordion-item .accordion-header {
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 2px solid #575757;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.accordion-wrapper .accordion-item .accordion-header .accordion-title {
    font-size: clamp(14px, 2.3333vw, 16px);
    font-weight: 600;
    color: var(--lp-dark-clr);
}
  
.accordion-wrapper .accordion-item .accordion-toggle {
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
}

.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon::before {
    color: #ffffff;
    font-size: 30px;
    content: "\ea50";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

.accordion-wrapper .accordion-item .accordion-body {
    padding: 10px 0;
    color: var(--lp-dark-clr);
    font-size: clamp(14px, 2.3333vw, 16px);
}

.accordion-wrapper .accordion-item.active .accordion-header .accordion-title {
    color: var(--lp-secondary-clr);
}

.accordion-wrapper .accordion-item.active .accordion-toggle .accordion-icon::before
.accordion-wrapper .accordion-item.active .accordion-icon::before {
    color: var(--lp-secondary-clr);
    transform: rotate(90deg);
}

.accordion-wrapper {
    width: 100%;
}

.accordion-wrapper .accordion-item {
    margin: 5px auto;
    margin-bottom: 10px;
}

.accordion-wrapper .accordion-item .accordion-toggle {
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
}

.accordion-wrapper .accordion-item.active .accordion-toggle .accordion-icon:before {
    color: var(--lp-secondary-clr);
}

.accordion-wrapper .accordion-item.active .accordion-toggle .accordion-icon {
    transform: rotate(90deg);
}

.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon::before {
    color: var(--lp-dark-clr);
    font-size: 30px;
    content: "\ea50";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/** Tabs */
.tab-nav-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 0.938rem;
}

.tab-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tab-button {
    background: #eee;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button.active {
    background: #e64511;
    color: #fff;
}


@media(max-width: 576px) {
    .tab-contents {
        padding: 0.938rem;   
    }
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.product-box {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

@media(max-width: 767px) {
    .product-box {
        flex-direction: column-reverse;
    }
}

.product-box .product-box-content {
    flex: 1 1 50%;
}

.product-box .product-box-image {
    flex: 1 1 40%;
    text-align: center;
}

.tab-image img {
    max-width: 100%;
    height: auto;
}

/** Products */
.product-tabs .mounting-type {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-tabs .mounting-type .mounting-text {
    display: flex;
    flex-direction: column;
}

.product-tabs .mounting-type .mounting-text .title {
    font-weight: 700;
}

/** Splide */

#gallery .splide__arrow {
    width: 2.75rem;
    height: 2.75rem;
    background: #ffffff;
}

#gallery .splide__pagination {
    bottom: -2.25rem;
}

#gallery .splide__pagination__page {
    height: 12px;
    width: 12px;
    margin: 6px;
}

#gallery .splide__pagination__page.is-active {
    background: var(--lp-secondary-clr);
    transform: scale(1.1);
    opacity: 100%;
}

/** Form */

.digitalyties-form-wrapper .wp-form-column p {
    margin: 0;
}

.digitalyties-form-wrapper .wp-form-column {
    padding-bottom: 0.75rem;
}

.digitalyties-form-wrapper .wp-form .wp-form-column label {
    font-size: clamp(15px, 2.3333vw, 16px);
    display: block;
    padding-bottom: 5px;
}

.digitalyties-form-wrapper .wp-form br {
    display: none;
}

.digitalyties-form-wrapper .wp-form .wp-form-column {
    padding-bottom: 0.75rem;
}

 .digitalyties-form-wrapper .wp-form-section-title {
    font-weight: bold;
    color: var(--lp-secondary-clr);
    font-size: clamp(16px, 2.3333vw, 17px);
    margin: 1rem 0 1rem;
}

.digitalyties-form-wrapper .wp-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--lp-form-spacing);
    gap: var(--lp-form-spacing);
}

.digitalyties-form-wrapper .wp-form-column {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 240px;
}

.digitalyties-form-wrapper .wp-form .checkbox-column {
    flex: 1 1 100%;
}

/* Form elements */
.digitalyties-form-wrapper .wp-form input[type="text"],
.digitalyties-form-wrapper .wp-form input[type="email"],
.digitalyties-form-wrapper .wp-form input[type="tel"],
.digitalyties-form-wrapper .wp-form select,
.digitalyties-form-wrapper .wp-form textarea {
    width: 100%;
    padding: var(--lp-form-input-padding);
    border: 1px solid var(--lp-form-border);
    background-color: var(--lp-form-input-bg);
    border-radius: var(--lp-form-border-radius);
    font-size: var(--lp-form-font-size);
    color: var(--lp-form-label-color);
}

.digitalyties-form-wrapper .wp-form input::placeholder,
.digitalyties-form-wrapper .wp-form select,
.digitalyties-form-wrapper .wp-form textarea::placeholder {
    color: var(--lp-form-placeholder-color);
}

.digitalyties-form-wrapper .wp-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='70,100 20,40 120,40' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

/* Checkbox */
.digitalyties-form-wrapper .wp-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #666;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: border-color 0.2s ease;
}

.digitalyties-form-wrapper .wp-form input[type="checkbox"]:checked::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--lp-secondary-clr);
    position: absolute;
    top: 3px;
    left: 3px;
}

.digitalyties-form-wrapper .wp-form input[type="checkbox"]:checked {
    border-color: var(--lp-secondary-clr);
}

.digitalyties-form-wrapper .wp-form .checkbox-description {
    display: inline-block;
    font-size: 0.95rem;
    vertical-align: middle;
}

.digitalyties-form-wrapper .wp-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item,
.digitalyties-form-wrapper .wp-form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.digitalyties-form-wrapper .wp-form p {
    margin: 0;
    margin-bottom: 0.35rem;
}

/* Submit button */
.digitalyties-form-wrapper .wp-form .form-submit {
    background-color: var(--lp-form-accent);
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    color: #fff;
    border-radius: var(--lp-form-border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.digitalyties-form-wrapper .wp-form .form-submit:hover {
    background-color: var(--lp-form-accent-dark);
}

@media(max-width: 991px) {
    .digitalyties-form-wrapper {
        padding: 0;
        box-shadow: none;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .digitalyties-form-wrapper .wp-form-column {
        flex: 1 1 100%;
    }
}


.footer-contact-infos p {
    margin: 0 0 0.75rem;
}

.footer-contact-infos .contact-phone,
.footer-contact-infos .contact-email {
    font-size: clamp(13px, 2.3333vw, 14px);
    font-weight: 700;
}