body {
    font-family: "Inter", sans-serif;
}

:root {
    --Dark-color: #111928;
    --Dark-6-color: #9CA3AF;
    --Stroke-color: #DFE4EA;
    --Primary-color: #6AC1B4;
    --Blue-color: #2D68F8;
    --Gray-color: #F3F4F6;
    --Gray-3-color: #E5E7EB;
    --Gray-2-color: #F3F4F6;
    --Teal-light-3-color: #DDFFF7;
    --Primary-text-color: #637381;
    --Teal-dark-color: #06A09B;
    --Red-color: #F23030;
    --green-100-color: #DCFCE7;
    --green-500-color: #22C55E;
    --yellow-100-color: #FEF9C3;
    --yellow-400-color: #FACC15;
    --red-100-color: #FEE2E2;
    --red-500-color: #EF4444;
    --grey-modal-color: rgba(255, 255, 255, 0.25);
}

.radio-container {
    display: inline-block;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.radio-icon {
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--Primary-color);
}

.radio-container input:checked~.radio-icon {
    border: 5px solid var(--Primary-color);
}

.valid {
    border: 2px solid var(--Primary-color);

    &:focus {
        outline: none;
    }
}

.invalid {
    border: 2px solid var(--Red-color);


    &:focus {
        outline: none;
    }
}

.loader {
    margin: auto;
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--Primary-color);
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.myBtnPrimary {
    /* Add height: ; width: ; whit tailwind */
    border-radius: 6px;
    border: 1px solid var(--Primary-color);
    background-color: var(--Primary-color);
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    &:hover {
        background-color: var(--Teal-dark-color);
    }

    &:disabled {
        background-color: var(--Gray-3-color);
        color: var(--Dark-6-color);
        cursor: not-allowed;
    }
}

.myBtnSecundary {
    /* Add height: ; width: ; whit tailwind */
    border-radius: 6px;
    border: 1px solid var(--Primary-color);
    background-color: white;
    color: var(--Primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    &:hover {
        background-color: var(--Teal-light-3-color);
        color: var(--Primary-text-color);
    }

    &:disabled {
        background-color: var(--Gray-3-color);
        color: var(--Dark-6-color);
        cursor: not-allowed;
    }
}

.myBtnTertiary {
    /* Add height: ; width: ; whit tailwind */
    border-radius: 6px;
    background-color: white;
    color: var(--Primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 3px 0px rgba(166, 175, 195, 0.40);

    &:hover {
        background-color: var(--Gray-2-color);
        color: var(--Primary-color);
    }

    &:disabled {
        background-color: var(--Gray-3-color);
        color: var(--Dark-6-color);
        cursor: not-allowed;
    }
}

.myBtnApprove {
    /* Add height: ; width: ; whit tailwind */
    border-radius: 6px;
    background-color: #1a2542;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 3px 0px rgba(166, 175, 195, 0.40);

    &:hover {
        background-color: #304379;
        color: white
    }

    &:disabled {
        background-color: var(--Gray-3-color);
        color: var(--Dark-6-color);
        cursor: not-allowed;
    }
}

.myLoading {
    width: 314px;
    height: 225px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    lottie-player {
        background: transparent;
        height: 197px;
        width: 151px;
    }
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-content {
    visibility: hidden;
    width: 120px;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltip-content::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-60%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.tooltip:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}