:root {
    --lets-purple : #651E5A;
    --lets-green : #2BB3A2;
    --lets-yellow : #FEC500;
    --lets-gray : #fcf7fc;
    --lets-shadow : #c9c9c9;
    --lets-text-required : #777777;
    --lets-danger : red;
}
body {
    width : 100%;
    height : 100%;
    margin : 0;
    padding : 0;
    background-color: var(--lets-green);
}
.d-none {
    display : none !important;
}
#LetsNav {
    display : flex;
    font-family: lets-plumpfull;
    justify-content: space-around;
    align-items: center;
    width : 100%;
    height : 75px;
    background-color : var(--lets-gray);
    /*border : 1px solid #651E5A;*/
}
#LetsNavContainer {
    position: sticky;
    top : 0;
}
#LetsForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 75px);
    width: 100%;
    margin: 0;
    padding: 0;
}
#Introduction {
    border-top: 10px solid var(--lets-purple);
    
}
#Recomendado {
    width : 100%;
}
#OtraRazon {
    width : 100%;
}
a {
    text-decoration: none;
    color: white;
}
.lets-plump {
    font-family: lets-plumpfull;
}
.lets-text-purple {
    color: var(--lets-purple) !important;
}
.lets-logo {
    height : 60px;
    /*width : 50px;*/
    margin : 5px 0px 5px 5px;
}
.lets-form-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width : 50%;
    margin-top: 10px;
    box-shadow: 0 0 2px 1px var(--lets-shadow);
}

.lets-title {
    text-align: center;
    font-size: 2em;
    color: var(--lets-green);
    margin: 10px;
}
.lets-p-text {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0 15px 0 15px;
    padding: 0;
}
.lets-p-title {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 15px 25px 15px;
    padding: 0;
    font-size: 2em;
    text-align: center;
}
.lets-back-btn {
    cursor: pointer;
    border: 1px var(--lets-purple) solid;
    border-radius: 10px;
    padding : 10px;
    background-color: var(--lets-purple);
    color: white;
    text-align: center;
    transition: background-color 0.5s ease, border 0.5s ease, color 0.5s;
}
.lets-back-btn:hover {
    border: 1px var(--lets-green) solid;
    background-color: var(--lets-green);
    color: var(--lets-purple) !important;
}
.lets-required {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--lets-danger);
}
.lets-question {
    margin : 0;
    padding : 0;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}
.lets-input {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    width : 40%;
    margin : 20px 0 5px 0;
    border-bottom: 1px solid;
    border-style: none none solid none;
    transition: border-bottom 0.5s ease, width 0.5s ease;
    
}
.lets-input:focus {
    outline: none;
    border-bottom: 1px solid var(--lets-green);
    width : 100%;
}
.lets-radio {
    margin : 10px 0 10px 0;
    cursor: pointer;
}
.lets-radio-label {
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
}
.lets-no-display {
    display: none !important;
}
.lets-flex-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.lets-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.lets-flex-column-left {
    display: flex;
    flex-direction: column;
}
.lets-p-top-1 {
    padding-top: 10px;
}
.lets-m-top-1 {
    margin-top: 10px;
}
.lets-m-top-2 {
    margin-top: 20px;
}
.lets-w-fit {
    width : fit-content;
}
.lets-f-center-this {
    justify-self: center;
}
.lets-empty-required {
    border : 2px solid var(--lets-danger);
}
.lets-empty-input-required{
    border-bottom: 1px solid var(--lets-danger) !important;
}
.lets-required-message {
    width : 100%;
}
.lets-loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--lets-green);
    border-right: 16px solid var(--lets-purple);
    border-bottom: 16px solid var(--lets-yellow);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@font-face {
    font-family: lets-plumpfull;
    src: url(../font/Plumpfull.ttf);
}
@keyframes activate-input {
    from {
        width : 50%;
    }
    to {
        width : 100%;
    }
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}