@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #0F77FF;
    --dark-blue: #00449D;
    --text: #3A475E;
    --black: #262626;
    --dark-gray: #2A3F65;
    --light-gray: #777777;
}

* {
    font-family: "Poppins";
    outline: none;
}

.bg-primary {
    background-color: var(--primary);
}

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

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.banner {
    background: url('../image/banner.png') no-repeat;
    background-size: cover;

}

.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
}

.custom-option {
    padding: 10px;
    cursor: pointer;
}

.custom-select.open .custom-options {
    /* display: block; */
    opacity: 1;
    visibility: visible;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}

/* 
input[type='date']:after {
  content: attr(placeholder)
} */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    color: transparent;
    background: none;
    z-index: 2;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.custom_check div {
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.custom_check input:checked~div {
    border: 1px solid var(--primary);
    background: #fff;
}


.number[type="number"]::-webkit-inner-spin-button,
.number[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number:invalid {
    border: 1px solid #ea3943;
}

/* width */
.scroll::-webkit-scrollbar {
    width: 10px;
    height: 16px;
}

/* Track */
.scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* width */
.scroll-hide::-webkit-scrollbar {
    width: 10px;
    height: 16px;
}

/* Track */
.scroll-hide::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.scroll-hide::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Handle on hover */
.scroll-hide::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* .auth__banner {
    background: url(/assets/image/auth.png);
    background-position: 590px;
    background-size: 714px 570px;
    background-repeat: no-repeat;
} */