* {
    font-family: 'Inter';
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #a8a8a8 #ffffff;
}

/* Chrome, Edge, and Safari */
.main-content::-webkit-scrollbar,
.form-list ul::-webkit-scrollbar,
.overlay::-webkit-scrollbar,
.board-column-content::-webkit-scrollbar,
#contactsDiv::-webkit-scrollbar,
.reduce-and-scroll-list::-webkit-scrollbar,
.todo-card-detailed::-webkit-scrollbar {
    width: 13px;
}

#contactsDiv::-webkit-scrollbar-track {
    background: #ffffff;
    /* box-shadow: inset 0 0 5px grey;
    border-radius: 10px; */
}

.main-content::-webkit-scrollbar-track,
.form-list ul::-webkit-scrollbar-track,
.overlay::-webkit-scrollbar-track,
.board-column-content::-webkit-scrollbar-track,
.reduce-and-scroll-list::-webkit-scrollbar-track,
.todo-card-detailed::-webkit-scrollbar-track {
    background: #F6F7F8 !important;
    /* box-shadow: inset 0 0 5px grey;
    border-radius: 10px; */
}

.main-content::-webkit-scrollbar-thumb,
.form-list ul::-webkit-scrollbar-thumb,
.overlay::-webkit-scrollbar-thumb,
.board-column-content::-webkit-scrollbar-thumb,
#contactsDiv::-webkit-scrollbar-thumb,
.reduce-and-scroll-list::-webkit-scrollbar-thumb,
.todo-card-detailed::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 8px;
    border: 3px solid #ffffff;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.todo-card-detailed::-webkit-scrollbar,
#addForm::-webkit-scrollbar,
.overlay::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.todo-card-detailed::-webkit-scrollbar,
#addForm::-webkit-scrollbar,
.overlay::-webkit-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.main-content h1 {
    font-size: 71px;
    margin-block-start: 0;
    margin-block-end: 0;
}

.btn {
    border-radius: 10px;
}

.btn:hover {
    cursor: pointer;
}

.btn-primary {
    background-color: #2A3647;
    color: white;
    border: 0;
    font-size: 21px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #29abe2;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    transition: ease-in-out 100ms;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2A3647;
    border: 0;
    font-size: 21px;
    border: 1px solid #2A3647;
}

.btn-secondary:hover {
    color: #29abe2;
    border: 1px solid #29abe2;
}

.btn-text-with-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 12px 16px;
}

.btn-text-with-icon img {
    width: 24px;
    height: 24px;
}

.btn-text-with-icon span {
    text-wrap: nowrap;
}

.width-100 {
    width: 100%;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.d-none {
    display: none;
}



.largerCheckbox {
    height: 16px;
    width: 16px;
}

.flex-end {
    justify-content: flex-end;
}

.flex-space {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.no-scroll {
    max-height: unset !important;
    overflow: auto !important;
}

/* Styling for success message popups */
.successmessage {
    position: fixed;
    height: 74px;
    width: 326px;
    display: none;
    justify-content: center;
    align-items: center;
    top: 270px;
    left: 50%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    background-color: #2A3647;
    color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 0px #00000026;
    transition: opacity 1s ease-in-out;
    z-index: 9999;
}

.desktop-hidden {
    display: none !important;
}

@media(max-width: 1360px) {

    .desktop-hidden {
        display: flex !important;
    }

    .mobile-hidden {
        display: none !important;
    }

}

/* MOBILE VERSION 600PX */

@media (max-width: 600px) {
    .main-content h1 {
        font-size: 47px;
    }
}

/* MOBILE VERSION 400PX */

@media (max-width: 400px) {
    .btn {
        width: 100%;
    }
}