* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Google Sans', sans-serif;
}

:root {
    --purple: #292D60;
    --yellow: #e49b2c;
    --green: #06853C;
    --blue: #057dc2;
    --red: #CF1C1C;
    --dark: #000000e0;
    --white: #FFFFFF;
    --grey: #acacac;
    --grey: #acacac;
    --inputs: #F9F9F9;
}

/*Estilos para el Contain*/
.contain {
    min-height: calc(100vh - 40px);
    padding: calc(80px + 1vh) 50px 50px 50px;
    background-color: var(--white);
}

.navbar{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title_Cards {
    justify-content: left !important;
    margin: 5vh 0;
    top: 0;
}

/*Estilos para las cards de el menu*/
.cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px 0 0 0;
    gap: 20px;
}

.card {
    width: 25%;
    height: 250px;
    border-radius: 2vh;
    border: 2px dashed #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.title_Card {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple);
}

.card:hover {
    border: 3px dashed var(--yellow);
    cursor: pointer;
}

.card:active {
    transform: scale(.98);
}

.card > img {
    width: 100px;
    cursor: pointer;
}

/* Button styles */
.container_button {
    width: 100%;
    margin: 1rem auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.template_button {
    display: block;
    position: relative;
    width: 250px;
    max-width: 100%;
    background: var(--purple);
    color: #ffff;
    border: none;
    border-radius: 2vh;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    cursor: pointer;
    transition: .2s ease-in-out all;
}

.template_button:hover {
    background: var(--blue);
}

.template_button::after, .template_button::before{
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: .6s ease-in-out;
}

.template_button:hover::after {
    transform: rotate(360deg);
}

.template_button.next::after {
    background-image: url('../assets/Buttons/Arrow.svg');
}

.template_button.add::after {
    background-image: url('../assets/Buttons/add.svg');
}

.template_button::before {
    left: 20px;
}

/*Estilos para el Footer*/
.socialNetworks > img {
    width: 20px;
    margin: 1vh;
}

.links {
    margin: 1vh;
}

.links > a {
    color: #000;
    margin: 1vh;
    font-size: .8rem;
    font-weight: 600;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #000;
}

footer > span {
    margin: 1vh;
    font-weight: 400;
    color: #292D60;
}

/* Estilo del scrollbar */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--grey);
    transition: all .6s ease-in-out;
}

    *::-webkit-scrollbar-thumb:hover {
        background: var(--purple);
    }

/* Anular el estilo del scrollbar en los formularios y las secciones */
.section::-webkit-scrollbar, form::-webkit-scrollbar {
    display: none;
}


/*Responsive*/
@media screen and (max-width: 650px) {
    .contain {
        padding: calc(80px + 1vh) 1vh 1vh 1vh
    }
    .card {
        width: 160px;
    }

    .cards {
        width: 100%;
    }
}