:root {
    --primary: #015aff;
    /* --primary: rgb(30, 135, 240); */
    --dark-blue: #015aff;
    --light-blue: rgba(2, 125, 240, .1);
    --dark: rgb(0,0,0);
    /* --dark: rgb(64, 54, 48); */
    /* --dark: rgb(25,25,25); */
    --light-dark: rgb(94, 94, 94);
    --light-grey: rgb(250, 250, 250);
    --animate-delay: 0.1s;
    --animate-duration: 1.5s;
}

.clip {
    overflow-y: clip;
}

.bg-grey {
    background-color: var(--light-grey);
}
.bg-blue {
    background-color: var(--light-blue);
}

.primary {
    color: var(--dark-blue)
}

.btn {
    border-radius: 5px;
    color: var(--dark);
    border-width: 2px;
    font-weight: 700;
}
.dt-buttons button {
    border-width: 1px !important;
}

.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    color: white;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .12);
    font-weight: 700;
}
.btn-outline-dark {
    --bs-btn-border-color: var(--dark);
}
.btn-outline-dark:hover {
    background-color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark)
}

h1 {
    font-size: 58px;
    margin-bottom: 1.5rem !important;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
}

.modal-open header {
    padding-right: 15px;
}
.modal-open #couriers-toggle-floating {
    right: 35px !important;
}

h2 {
    font-size: 40px;
    margin-bottom: 1.25rem !important;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    font-size: 20px;
    font-weight: 300;
}

header {
    height: 85px;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255,255,255,.95);
    backdrop-filter: blur(4px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

main {
    padding-top: 80px;
}

header .container-lg {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

header .btn {
    padding: 10px 24px;
    font-size: 18px;
}

header .btn-primary {
    margin-left: 1.5rem;
}

header .btn-white, .menu .btn-white {
    border: none;
    font-weight: 500;
    transition: .1s ease-in-out;
}

section {
    padding-top: 90px;
    padding-bottom: 90px;
    /* background-color: white; */
    /* scroll-margin-top: 85px; */
}

#hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

#hero-section .btn {
    padding: 8px 24px;
    font-size: 18px;
    font-weight: 700;
}
#hero-bg {
    position: absolute;
    width: -webkit-fill-available;
    top: 15%;
    left: 62%;
    z-index: -1;
}
#benefits-section .card-header {
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
}

/* #form-section .btn-primary, #reporting-section .btn-primary {
    font-weight: 700;
} */

.circle-count {
    color: #015aff;
    border: 5px solid #015aff;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    font-size: 38px;
    display: flex;
    padding-bottom: 2px;
    margin-bottom: 1rem;
}

/* .logo-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 25%;
    grid-auto-flow: row;
    width: 100%;
    display: grid;
} */

#integration-section .card {
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0 20px 30px -15px rgba(29, 1, 80, .1); */
    border: none;
}

#integration-section .card-wrapper {
    padding-right: 10px;
}
.logo-mobile-section {
    overflow: hidden;
    width: 100%;
}
.logo-mobile-container {
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    width: calc(36 * 130px); /* Assuming each logo is 100px wide; adjust as needed */
    animation: scroll 20s linear infinite;
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




.image-wrapper {
    position: relative;
    padding: 100px; /* Adjust padding as needed */
    margin: -100px; /* Adjust margin to ensure the background extends beyond the column */
}

.image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://cdn.prod.website-files.com/6646302330566e5ba50e4cc1/665784520a312744b4aa7592_Frame%2052%20(3).png');
    background-size: cover;
    background-position: center;
    z-index: -1; /* Ensure it’s behind the image */
}

.image-wrapper img {
    width: 100%; /* Ensure the image fills the available width of the column */
    display: block;
}

.accordion-button {
    font-size: 19px;
    font-weight: 700;
}
.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: inherit;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
}


.menu {
    position: fixed;
    top: 70px;
    right: -250px; /* Off-screen initially */
    width: 250px;
    height: 100vh;
    background-color: rgba(255,255,255,.95);
    backdrop-filter: blur(4px);
    transition: right 0.3s ease;
    z-index: 1000;
    border-bottom-left-radius: 10px;
}
.menu.open {
    right: 0;
}
.overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 900;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.calendly-inline-widget {
    height: calc(100vh - 85px - 2rem) !important;
}

.modal-backdrop {
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.2;
    /* backdrop-filter: blur(4px); */
}

header, main, footer, #couriers-toggle-floating, #formula-toggle-floating {
    transition: filter 0.25s ease;
}
.blur {
    filter: blur(5px);
}

.modal-content {
    border: none;
    /* background-image: url('../media/register-bg.jpeg'); */
    /* color: white; */
    /* border-radius: 40px; */
}
/* .modal-dialog-centered {
    padding-bottom: 20%;
} */

.pointer {
    cursor: pointer;
}


.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625 or 56.25%) */
    height: 0;
    overflow: hidden;
  }
  
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fw-boldd {
    font-weight: 800 !important;
}

.dt-search label {
    display: none;
}

#couriers-toggle-floating {
    position: fixed; 
    right: 20px; 
    bottom: 20px; 
    z-index: 1001;
}

.table-hover tbody tr:hover {
    cursor: pointer;
}

.dt-column-title {
    text-wrap: nowrap;
}

td:first-child,
th:first-child {
    width: 50%;
}

/* .left-scrollbar {
    direction: rtl;
    box-sizing: border-box;
}
.left-scrollbar > * {
    direction: ltr;
    text-align: left;
} */

#sheets-clone-top {
    background-color: #F9FBFD; 
    border-top-left-radius: 6px; 
    border-top-right-radius: 6px;
    border: 2px solid #D2DAE7;
}
#sheets-clone-formular {
    background-color: #FFFFFF; 
    border: 2px solid #D2DAE7;
    border-top: none;
    border-bottom: none;
}
#example-formula {
    background-color: #FFFFFF; 
    border: none;
    /* border-left: 2px solid #D2DAE7; */
    border-radius: 0;
}
#sheets-clone-formular img {
    border-right: 2px solid #D2DAE7;
}
#example-formula:focus {
    box-shadow: none;
}
#sheets-clone-table {
    background-color: #FFFFFF;
    border: 2px solid #D2DAE7;
    border-collapse: collapse;
    border-top: none;
}
#sheets-clone-table th {
    background-color: #FFFFFF;
}
#sheets-clone-table th, #sheets-clone-table td {
    border: 2px solid #D2DAE7;
    border-collapse: collapse;

}
#sheets-clone-table tr>th:nth-child(1) {
    width: 39px !important;
}

.text-link {
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;

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


.card-overlay {
    position: relative;
    cursor: not-allowed;
}

.card-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.375rem !important;
    border-width: 1px !important;
    border-color: rgba(0, 0, 0, 0.175) !important;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: auto;
}