.checkbox {
    --size: 18px;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}

.checkbox *,
.checkbox *:before,
.checkbox *:after {
    box-sizing: border-box;
}

.checkbox .promoted-input-checkbox {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.checkbox input:checked~svg {
    height: calc(var(--size) * 0.6);
    -webkit-animation: draw-checkbox-28 ease-in-out 0.2s forwards;
    animation: draw-checkbox-28 ease-in-out 0.2s forwards;
}

.checkbox label:active::after {
    background-color: #e6e6e6;
}

.checkbox label {
    color: #6c6b6b;
    line-height: var(--size);
    cursor: pointer;
    position: relative;
    font-size: 12px;
}

.checkbox label a {
    color: #6c6b6b !important;
    font-weight: 600;
}

.checkbox label:after {
    content: "";
    height: var(--size);
    width: var(--size);
    margin-right: 8px;
    float: left;
    border: 2px solid #b5b5b5;
    border-radius: 0px;
    transition: 0.15s all ease-out;
}

.checkbox svg {
    stroke: var(--themecolor1);
    stroke-width: 3px;
    height: 0;
    width: calc(var(--size) * 0.6);
    position: absolute;
    left: calc(var(--size) * 0.23);
    top: calc(var(--size) * 0.4);
    stroke-dasharray: 33;
}

@-webkit-keyframes draw-checkbox-28 {
    0% {
        stroke-dashoffset: 33;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-checkbox-28 {
    0% {
        stroke-dashoffset: 33;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.tyc-title{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.tyc-content{
    padding: 2% 0;
}

.tyc-content,
.tyc-content h5{
    font-size: 13px;
}

.tyc-content h5{
    text-transform: uppercase;
    margin-bottom: 3px;
}

.form-field-msj{
    display: none;
    line-height: 1.2;
}

.form-field-msj span {
    font-size: 11px;
    margin-left: 12px;
    color: var(--danger);
    font-weight: 600;
}

/* ///////////////// ALERTIFY MODIFICATIONS ////////////////// */
.alertify .ajs-dialog {
    position: relative;
    margin: 5% auto;
    min-height: 110px;
    max-width: 500px;
    padding: 24px 24px 0 24px;
    outline: 0;
    background-color: #fff;
}

.alertify .ajs-header {
    margin: -24px;
    margin-bottom: 0;
    padding: 16px 24px;
    background-color: #fff;
}

.alertify .ajs-body {
    min-height: 56px;
}

.alertify .ajs-footer {
    padding: 4px;
    margin-left: -24px;
    margin-right: -24px;
    min-height: 43px;
    background-color: #fff;
}

.alertify .ajs-body .ajs-content {
    font-size: 14px;
}

.alertify .ajs-footer .ajs-buttons .ajs-button {
    background-color: transparent;
    color: #000;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    background: #000;
    color: #fff;
}

.alertify-notifier .ajs-message {
    position: relative;
    width: 265px;
    max-height: 0;
    padding: 0;
    opacity: 0;
    margin: 0;
    text-align: center;
    font-size: 13px;
}

.alertify-notifier .ajs-message.ajs-visible {
    opacity: 1;
    max-height: 100%;
    padding: 10px 10px;
    margin-top: 10px;
}

.alertify-notifier .ajs-message.ajs-success {
    /* border: 1px solid #000; */
    /* background: white;
    color: black; */
    background: var(--themecolor1);
    color: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.alertify-notifier .ajs-message.ajs-error {
    /* border: 1px solid #000; */
    /* background: white;
    color: black; */
    background: #000;
    color: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.text-red{
    color: var(--danger)!important;
}

@media screen and (max-width: 575px) {
    .checkbox label {
        font-size: 10px;
    }
}

@font-face {
    font-family: Comfortaa-Bold;
    src: url(../../../assets/fonts/Comfortaa/static/Comfortaa-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: Comfortaa-SemiBold;
    src: url(../../../assets/fonts/Comfortaa/static/Comfortaa-SemiBold.ttf);
    font-display: swap;
}

@font-face {
    font-family: Comfortaa-Medium;
    src: url(../../../assets/fonts/Comfortaa/static/Comfortaa-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: Comfortaa-Regular;
    src: url(../../../assets/fonts/Comfortaa/static/Comfortaa-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: Comfortaa-Light;
    src: url(../../../assets/fonts/Comfortaa/static/Comfortaa-Light.ttf);
    font-display: swap;
}

:root {
    --themecolor1: #3DB4AD;
    --themecolor1hvr: #2f938c;
    --themecolor2: #ff689b;
    --themecolor2hvr: #FF5599;
    --inputBorderColor: transparent; 
}

body {
    font-family: 'Comfortaa-Regular';
}

.section-bnr {
    background: url(img/bnr-bg.jpg);
    background-size: cover;
}

.bnr-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10px;
    position: relative;
}

.suscribe-title {
    display: flex!important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.suscribe-title div:first-child{
    color: #fff;
    font-family: 'Comfortaa-Bold';
    font-size: 60px;
    line-height: 1;
}

.suscribe-title div:last-child{
    color: #fff;
    font-family: 'Comfortaa-SemiBold';
    font-size: 28px;
    line-height: 1;
    padding: 10px 3%;
    margin-top: 20px;
    background: var(--themecolor2);
    max-width: 340px;
    border-radius: 25px;
    text-align: center;
}

.bnr-text{
    max-width: 30%;
}

.bnr-img{
    margin: 10px 2% 0;
    max-width: 43%;
}

.bnr-brand{
    max-width: 15%;
}

.section-form {
    background: var(--themecolor2);
    background: url(img/form-bgl.jpg);
    background-size: cover;
}

.section-form .container-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.section-form picture {
    margin-top: auto;
    min-width: 35%;
}

.section-form .form-img {
    padding-top: 4.5%;
    width: 100%;
    /* max-width: 440px; */
    margin: auto;
}

.form-content {
    padding: 3% 3%;
    max-width: 650px;
    width: 100%;
}

.form-box .form-control {
    border-radius: 25px !important;
    border: none;
    color: #050505;
    padding: 1.4rem 1.2rem .1rem 1.2rem;
    box-shadow: none !important;
    font-size: 14px;
    border: 1px solid var(--inputBorderColor);
    transition: border .4s ease-in-out;
    height: calc(2.2em + 1.25rem + 2px);
    /* height: auto; */
}

::-webkit-calendar-picker-indicator {
    margin-top: -20px;
}

.form-box .form-control::placeholder {
    color: #8f8f8f;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #ffffff;
    opacity: .8;
}

.form-box.row {
    padding-left: 10px;
    padding-right: 10px;
}

.form-box.row .col-12,
.form-box.row .col-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.form-box .form-check-label {
    cursor: pointer;
    color: #6c6b6b;
    font-size: 13px;
    display: flex;
}

.form-box .form-check-label a {
    color: #6c6b6b;
    font-weight: 600;
    font-family: 'Comfortaa-Bold';
}

.form-box select.form-control {
    padding: 1.4rem 1.2rem .1rem 1rem;
}

.form-box select option {
    color: #050505;
}

.form-box select.form-control:invalid {
    color: #8f8f8f !important;
}

.btn-theme {
    font-size: 20px;
    border: none;
    padding: 10px 4% 10px;
    font-weight: 600;
    font-family: 'Comfortaa-Bold';
    border-radius: 25px;
    min-width: 250px;
    background: var(--themecolor2);
    color: white;
    margin: auto;
    box-shadow: none !important;
    outline: none !important;
}

.btn-theme:hover,
.btn-theme:active {
    background: var(--themecolor2hvr);
}

.btn-theme:disabled{
    opacity: 0.6;
}

/* .form-box .my-1 {
    margin-top: 0.35rem !important;
    margin-bottom: 0.35rem !important;
} */

.checkbox label,
.checkbox label a{
    color: #fff !important;
}

.checkbox svg{
    stroke: #fff;
}

.checkbox label:after{
    border-radius: 5px;
    border-color: #fff;
}

.section-benefits {
    background: #ffffff;
    padding: 3% 3% 4%;
    text-align: center;
}

.benefits-title {
    font-size: 40px;
    color: var(--themecolor2);
    font-weight: 800;
    margin-bottom: 2%;
    line-height: 1.1;
    font-family: 'Comfortaa-Bold';
}

.benefits-grid {
    align-items: flex-start;
    justify-content: center;
    padding-left: 3%;
    padding-right: 3%;
}

.benefit-item {
    max-width: 330px;
    text-align: center;
    padding: 5px 10px;
}

.benefit-item .icon {
    height: 90px;
}

.benefit-item .title {
    width: 80%;
    margin: 8px auto;
    font-size: 22px;
    font-family: 'Comfortaa-Bold';
    line-height: 1.1;
    min-height: 40px;
    color: var(--themecolor2);
}

.benefit-item .descrip {
    font-size: 14px;
    line-height: 1.1;
    font-family: 'Comfortaa-SemiBold';
    max-width: 280px;
    margin: auto;
}

#msj-container {
    display: none;
}

.success-msj {
    width: 100%;
    max-width: 480px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.success-msj .title {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Comfortaa-Bold';
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    margin-top: 25px;
}

.success-msj .descrip p {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.1;
    color: #fff;
}

.success-msj .descrip ul li {
    font-weight: 700;
    font-family: 'Comfortaa-Bold';
    color: #fff;
}

.success-msj .descrip ul li a{
    color: #fff;
}

.success-msj .descrip ul li a:hover{
    color: var(--themecolor1)!important;
    text-decoration: none;
}

.form-field-msj span {
    font-family: 'Comfortaa-Bold';
    color: #fff;
}

.dkt {
    display: initial;
}

.mb {
    display: none;
}

@media screen and (max-width: 920px) {
    .dkt {
        display: none !important;
    }

    .mb {
        display: initial !important;
    }

    .bnr-brand {
        position: absolute;
        top: 6%;
        right: 6%;
    }

    .section-form .container-form {
        flex-direction: column;
    }

    .section-form .form-img {
        max-width: 75%;
        padding-top: 30px;
    }

    .form-content {
        padding: 25px 4% 35px;
    }

    .section-benefits {
        padding: 8% 3% 6%;
    }

    .benefits-title {
        font-size: 34px;
        margin-bottom: 3%;
    }

    .benefit-item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 25px;
    }

    .benefit-item .icon {
        height: 70px;
    }

    .benefit-item .title {
        width: 90%;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-theme{
        padding: 5px 4% 5px;
    }

    .success-msj .title {
        text-align: center;
    }

    .success-msj .descrip p {
        font-size: 15px;
    }
}

@media screen and (max-width: 575px) {
    .bnr-img {
        max-width: 75%;
    }

    .benefits-title {
        font-size: 25px;
    }

    .benefit-item .icon {
        height: 65px;
    }

    .benefit-item .title {
        width: 95%;
        font-size: 15px;
        min-height: 30px;
    }

    .benefit-item .descrip {
        font-size: 12px;
    }

    .form-box .form-control {
        font-size: 13px;
    }
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-control-placeholder {
    position: absolute;
    top: 15px;
    margin: 0 1.2rem;
    transition: all 300ms;
    z-index: 1;
    font-size: 80%;
    transform: translate3d(0, -50%, 0);
    opacity: 1;
    background: #fff;
    font-family: 'Comfortaa-Bold';
    line-height: .5;
}