@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');


img {
    backface-visibility: visible;
    filter: none;
    mix-blend-mode: normal;
    will-change: auto;
    /* mask-image: none;
    -webkit-mask-image: none; */
    transform: scale(1);
}

::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-button {
    background-color: #38ad4683;
}

::-webkit-scrollbar-thumb {
    background-color: #1f6427;
    border: 2px solid transparent;
    box-sizing: border-box;
    border-radius: 4px;
}

.dark-green {
    background-color: #294936;
}

.light-green {
    background-color: #277D31;
}

body,
html {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    min-height: 100vh;
}

body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

input {
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgb(148, 148, 148);
    color: black;
    padding-left: 10px;
}

input:disabled {
    border: none;
    background-color: #D9D9D9 !important;
    color: #999999 !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #999999 !important;
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid #277D31;
}

input[type="checkbox"] {
    appearance: none;
    border: 1px solid rgb(44, 44, 44);
    width: 20px;
    height: 20px;
    padding: 0;
    background-color: white;
    cursor: pointer;
}

input[type="checkbox"]:checked::after,
input[type="checkbox"]:checked::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 10px;
    left: 11px;
    transform-origin: center;
    border-radius: 10px;
}

input[type="checkbox"]:checked::before {
    width: 13px;
    rotate: 50deg;
    left: 0;
    transform: translateY(-1px);
}

input[type="checkbox"]:checked::after {
    rotate: -45deg;
    transform: translateY(-7px) translateX(1px);
}

input::file-selector-button {
    height: 100%;
    font-family: "Poppins", sans-serif;
    border: 1px solid rgb(198, 198, 198);
    border-radius: 5px;
    background: linear-gradient(to right, #277D31 30%, #294936 100%);
    color: white;
    cursor: pointer;
}

input[type="file"] {
    border: none;
    display: flex;
    align-items: center;
    justify-content: start;
}

.editing~.save-options {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding-bottom: 20px;
}

.save-options {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding-bottom: 20px;
}

.save,
.cancel {
    font-size: 18px;
    height: 40px;
    border: 1px solid #277D31;
    border-radius: 12px;
    width: max-content;
    cursor: pointer;
}

.save {
    color: white;
    background-color: #277D31;
}

.cancel {
    color: black;
    background-color: white;
}

.save:hover,
.cancel:hover {
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.25);
}

.save:disabled {
    background-color: #243f28;
    cursor: no-drop;
}

/* button.delete{
    background-color: ;
} */

input[type="date"]:invalid {
    color: gray;
}

.tooltip .tip {
    display: none;
}

textarea {
    border-radius: 10px;
}

.tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    background-color: white;
    border: 1px solid black;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    vertical-align: center;
    margin-left: 10px;
    z-index: 500;
    cursor: pointer;
}

.tooltip>span {
    line-height: 15px;
    height: 15px;
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tooltip:hover .tip {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 500;
    width: max-content;
    font-size: 14px;
    background-color: black;
    color: white;
    transform: translateY(120%);
    padding: 2px;
    line-height: unset;
    height: unset;
}