@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}
:root{
    /*===== Colores =====*/
    --first-color: #1A73E8;
    --input-color: #80868B;
    --border-color: #DADCE0;
    --green-color: #15ce5c;
    --red-error-color: #fa2020;
    --divider-secondary-color: #52586666;
    --button-hover-background: #5258661f;
    --primary-purple-color: #5f2eea;
    --primary-purple-color-hover: #4c1dcb;
    --secondary-purple-color-background: #c029f03d;
    --secondary-purple-color: #ac1de4;
    /*===== Fuente y tipografia =====*/
    --body-font: 'Roboto', sans-serif;
    --normal-font-size: 1rem;
    --small-font-size: .75rem;
}
#dialog {
    position: fixed;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}
.dialog_fixed {
    position: fixed;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}
#modalEditReminder {
    width: auto;
    height: auto;
    border-radius: 10px;
    border: 1px solid #52586633;
    padding: 0.375rem;
}
#notifPush {
    width: 385px;
    height: 60px;
    position: absolute;
    border-radius: 10px;
    left: 50%;
    top: 94%;
    transform: translate(-50%, -50%);
}
.toast.hide {
    animation: hide_toast 0.3s ease forwards;
}
@keyframes hide_toast {
    0% {
        transform: translateX(-10px);
    }
    40% {
        transform: translateX(0%);
    }
    80% {
        transform: translateX(-5%);
    }
    100% {
        transform: translateX(calc(100% + 20px));
    }
}

.toasts-top-right{
    top: 0;
    right: 0;
}
.toasts-top-left{
    left:0;
    top:0;
    border-radius: 10px;
}
.toasts-bottom-left{
    left: 0;
    bottom:0;
}
.toasts-bottom-right{
    bottom:0;
    right: 0;
}
.toasts-top-center{
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.toasts-bottom-center{
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
}
.pushNotfif {
    position: fixed;
    top: 60px;
    right: 20px;
    min-width: 340px;
    z-index: 999999;
    min-height: 65px;
    height: 65px;
    overflow: hidden;
    width: 340px;
}
.form__div{
    position: relative;
    height: 48px;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}
.form__div2{
    position: relative;
    height: 48px;
    margin-bottom: 0.10rem;
    margin-top: 0.10rem;
}
.form__input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: var(--normal-font-size);
    border: 1px solid var(--border-color);
    border-radius: .5rem;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
}
.form__label{
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 .25rem;
    background-color: #fff;
    color: var(--input-color);
    font-size: var(--normal-font-size);
    transition: .3s;
}
.form__input:focus + .form__label{
    top: -.5rem;
    left: .8rem;
    color: var(--first-color);
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
}

/*Input focus sticky top label*/
.form__input:not(:placeholder-shown).form__input:not(:focus)+ .form__label{
    top: -.5rem;
    left: .8rem;
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
}

/*Input focus*/
.form__input:focus {
    border: 1.5px solid var(--first-color);
}

.form__input:focus.is_invalid {
    border: 2px solid var(--red-error-color);
}

.form__input:focus.is_valid {
    border: 2px solid var(--green-color);
}
.is-invalid {
    border: 2px solid var(--red-error-color);
}
.is-valid {
    border: 2px solid var(--green-color);
}
/*===== HomePage =====*/
#homepageForm {
    box-shadow: 17px 18px 0px #AC1DE4;
}
/*===== Reminder =====*/
#listSelectLabel, #dateSelectLabel, #statusSelectLabel, #prioritySelectLabel {
    position: absolute;
    top: 0;
    background: #E0E4EC;
    left: 10px;
}
#listeFormSelect, #dateFormSelect, #statusFormSelect, #priorityFormSelect, #tagFormSelect, #status {
    background: transparent;
    border: 1px solid #52586633;
    border-radius: 10px;
    padding: 18px 10px;
}
#containerReminderList {
    overflow: scroll;
}
#modalAddList {
    border-radius: 10px;
    min-height: 600px;
    min-width: 400px;
    width: auto;
    border: 1px solid var(--divider-secondary-color);
}
#modalEditList {
    border-radius: 10px;
    min-height: 160px;
    min-width: 300px;
    width: auto;
    border: 1px solid var(--divider-secondary-color);
}

#modalAddReminder {
    border-radius: 10px;
    min-height: 680px;
    min-width: 400px;
    width: auto;
    border: 1px solid var(--divider-secondary-color);
}
#modalAddUserToReminder {
    border-radius: 10px;
    min-height: 160px;
    min-width: 300px;
    width: auto;
    border: 1px solid var(--divider-secondary-color);
}
#modalAddTags {
    border-radius: 10px;
    min-height: 160px;
    min-width: 280px;
    width: auto;
    border: 1px solid var(--divider-secondary-color);
}

/*===== Menu Burger =====*/
.menu_burger {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}