/* Creado para que los currency-fields tengan el aspecto de <inputs> */
.input-style {
    display: block;
    text-align: center;
    padding: 0.5rem 0;
}
.input-style--fs22 {
    font-size: 22px;
}

/* /////////////////////////// Breakpoints
    medium: 640px;
    large: 1024px;
    xlarge: 1200px;
    xxlarge: 1440px;
/* /////////////////////////// */

/* /////////////////////////// */
/* ///// Styled buttons ///// */
/* /////////////////////////// */
/* Estilos generales para los botones con la clase ae-button */
button.ae-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button.ae-button.ae-button--small {
    padding: .25rem .5rem;
}
button.ae-button:disabled {
    background-color: lightgray !important;
    cursor: not-allowed;
}
/* Estilos para diferentes colores de botones con la clase ae-button */
button.ae-button.ae-button--color1 {
    background-color: var(--color1);
    color: #fff;
}
button.ae-button.ae-button--color2 {
    background-color: var(--color2);
    color: #fff;
}
button.ae-button.ae-button--color3 {
    background-color: var(--color3);
    color: #fff;
}
button.ae-button.ae-button--color4 {
    background-color: var(--color4);
    color: #fff;
}
button.ae-button.ae-button--color5 {
    background-color: var(--color5);
    color: #000;
}
button.ae-button.ae-button--delete {
    background-color: #dd3333;
    color: white;
}
button.ae-button.ae-button--success {
    background-color: #2ecc71;
    color: white;
}
/* Estilos para los botones al pasar el ratón sobre ellos con la clase ae-button */
button.ae-button:not(:disabled):hover {
    opacity: 0.8;
}
/* Outline para diferenciar cuando esta en foco por tabulador */
button:focus {
    outline: 2px solid #000000;
}

/* /////////////////////////// */
/* ///// Styled checkbox ///// */
/* /////////////////////////// */
.ae-checkbox {
    position: absolute; /* take it out of document flow */
    opacity: 0; /* hide it */
}
.ae-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
/* Box. */
.ae-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid gray;
}
/* Box hover */
.ae-checkbox:hover + label:before {
    background: var(--color1);
}
/* Box focus */
.ae-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
/* Box checked */
.ae-checkbox:checked + label:before {
    background: var(--color1);
}
/* Disabled state label. */
.ae-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
/* Disabled box. */
.ae-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
/* Checkmark. Could be replaced with an image */
.ae-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow:
            2px 0 0 white,
            4px 0 0 white,
            4px -2px 0 white,
            4px -4px 0 white,
            4px -6px 0 white,
            4px -8px 0 white;
    transform: rotate(45deg);
}


/* /////////////////////////// */
/* ///// Styled checkbox ///// */
/* /////////////////////////// */
.separator { padding: 1rem 0; }
.separator--big { padding: 2rem 0; }
.separator--large { padding: 6rem 0; }
