/* Archivo: style.css */

form.kfp-form-mania {
    min-width: 290px;
    padding: 10px 0;
    margin: 0 auto 25px;
    /* background-color: #ffffff; */
    /* border-radius: 5px;
    box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07); */
    overflow: visible;
    min-height: 528px;
    position: relative;
}

form.kfp-form-mania .main_title span {
    position: relative;
}

form.kfp-form-mania .main_title span:before {
    position: absolute;
    content: "";
    left: -1%;
    top: 20px;
    background-color: rgba(6,150,66,.15);
    width: 102%;
    height: 18px;
}

form .form-container {
    position: relative;
    transition: opacity .2s ease;
}

form .form-container .select-provincia-deseada {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: -1;
    opacity: 0;
    display: block !important;
}

form .form-container.hidden {
    opacity: 0;
    z-index: -1;
}

form .thanks-container {
    position: absolute;
    z-index: -1;
    top: 20%;
    left: 5%;
    width: 90%;
    opacity: 0;
    transition: opacity .2s ease;
}

form .thanks-container.visible {
    z-index: 1;
    opacity: 1;
}

form .thanks-container .thanks-title {
    display: block;
    color:  rgb(18, 30, 54);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}

form .thanks-container .thanks-description {
    font-size: 15px;
    line-height: 1.5rem;
    color: rgb(18, 30, 54);
    width: 75%;
    margin: 1rem auto;
    text-align: center;
}

/* form.kfp-form-mania:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    background: rgb(18, 30, 54);
    left: 0;
    top: -3px;
} */

.overflow {
    max-height: 200px;
}

form.kfp-form-mania .form_title {
    display: block;
    color:  rgb(18, 30, 54);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1rem;
}

form.kfp-form-mania .form_title span {
    font-size: .7rem;
}

form.kfp-form-mania .privacy-policy {
    font-size: .9rem;
    margin-bottom: 0.5rem;
    color: rgba(18, 30, 54, .6);
}

form.kfp-form-mania .privacy-policy a {
    color: #069642;
    font-weight: 700;
    opacity: 1;
    transition: opacity .2s ease;
}

form.kfp-form-mania .privacy-policy a:hover {
    opacity: .5;
}


form.kfp-form-mania .my-tooltip .tooltip {
    position: absolute;
    z-index: -1;
    display: block;
    margin: 0;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .8rem;
    padding: .4rem 0;
    word-wrap: break-word;
    opacity: 0;
    width: 300px;
    left: 0;
    bottom: 140%;
}  

form.kfp-form-mania .my-tooltip:hover .tooltip {
    opacity: 0.9;    
    z-index: 1000;
}

form.kfp-form-mania .my-tooltip {
    position: relative;
}

form.kfp-form-mania .my-tooltip .tooltip .arrow {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

form.kfp-form-mania .my-tooltip .tooltip .arrow:before {
    top: 0;
    border-top-color: #424e5b !important;
    border-width: .6rem .6rem 0;
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

form.kfp-form-mania .my-tooltip .tooltip .tooltip-inner {
    max-width: 300px;
    padding: 0.75rem;
    font-weight: 500;
    background-color: #424e5b;
    color: white;
    text-align: center;
    border-radius: 20px;
}

form.kfp-form-mania .marketing-group {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

form.kfp-form-mania .marketing-input {
    margin: 0 10px 0 0;
}

form.kfp-form-mania .select-provincia, 
form.kfp-form-mania .select-poblacion {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

form.kfp-form-mania .marketing-label,
form.kfp-form-mania .primer-trabajo-label {
    color: rgb(18, 30, 54);
    font-weight: 400;
    display: block;
    position: relative;
    padding-left: 25px;
    line-height: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* hide default checkbox */
form.kfp-form-mania .marketing-input,
form.kfp-form-mania .primer-trabajo-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
}
/* create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 2px;
    height: 15px;
    width: 15px;
    border-radius: 3px;
    background-color: rgba(6,150,66,.3);
    transition: all .2s ease;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: rgba(6,150,66,.3);
}
/* When the checkbox is checked, add a green background */
.container input:checked ~ .checkmark {
    background-color:  #069642;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

form.kfp-form-mania .marketing-label a,
form.kfp-form-mania .primer-trabajo-label a {
    color:  rgb(18, 30, 54);
    font-weight: 700;
    opacity: 1;
    transition: opacity .2s ease;
}
form.kfp-form-mania .marketing-label a:hover,
form.kfp-form-mania .primer-trabajo-label a:hover {
    opacity: .5;
}

form.kfp-form-mania .form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

form.kfp-form-mania .form-row .form-group {
    width: 100%;
}

@media (min-width: 768px) {
    form.kfp-form-mania .form-row .form-group {
        width: 49%;
    }
}

form.kfp-form-mania .form-group input:not(.marketing-input):focus,
form.kfp-form-mania .form-group .ui-selectmenu-button:focus {
    outline: none;
}

.form-group {
    position:relative;
    margin-bottom: 25px;
}

.label-upload,
.input-upload,
.label-textarea {
    color:  rgb(18, 30, 54);
    letter-spacing: .4px;
    font-weight: 300;
    font-size: .9rem;
}

.label-textarea {
    display: block;
}
input[type=file]::-webkit-file-upload-button {
    border: 1px solid rgb(18, 30, 54);
    padding: 5px 15px;
    background: none;
    font-family: Montserrat;
}
.textarea {
    width: 100%;
    background: none;
    color:  rgb(18, 30, 54);
    border-color: rgb(18, 30, 54);
    padding: 5px 10px;
}

.textarea::placeholder {
    color:  rgb(18, 30, 54);
}

.textarea:focus-visible {
    outline: none;
}

.form-label, 
.ui-selectmenu-text {
    position: absolute;
    left: 0;
    top: 10px;
    color:  rgb(18, 30, 54);
    letter-spacing: .4px;
    font-weight: 300;
    font-size: .9rem;
    background-color: transparent;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.form-label {
    cursor: text;
}

.focused .form-label {
    transform: translateY(-90%);
    font-size: .75em;
}

.form-input {
    position: relative;
    padding: 8px 0 3px 0;
    background: transparent !important;
    width: 100%;
    outline: 0;
    color: rgb(18, 30, 54);
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
    box-shadow: 0 1px 0 0 rgb(18, 30, 54);
    transition: box-shadow 150ms ease-out;
}

.form-input:focus {
     box-shadow: 0 2px 0 0 rgb(18, 30, 54);;
}

.form-input.filled {
    box-shadow: 0 2px 0 0 rgb(18, 30, 54);;
}

form.kfp-form-mania .form-group .ui-selectmenu-button {
    padding: 15px 0 8px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgb(18, 30, 54);
    color: rgb(18, 30, 54);
    width: 100%;
    border-radius: 0;
    opacity: 1;
    transition: opacity .2s ease;
}

form.kfp-form-mania .form-group .ui-selectmenu-button:hover {
    opacity: .6;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background-color: rgba(6,150,66,.15);
    border-color: rgba(6,150,66,.1);
    color: rgb(18, 30, 54);
}

.ui-button .ui-icon {
    filter: contrast(7);
}

.ui-button:active .ui-icon {
    background-image: initial !important;
}

/* button submit */
form.kfp-form-mania .button-submit-ctn {
    margin: 2.5rem 0 0;
    padding: 0;
    text-align: center;
}


@media (min-width: 768px) {
    form.kfp-form-mania .button-submit-ctn {
        text-align: left;
    }
}

form.kfp-form-mania .button-submit-ctn  .btn > span {
    padding: .7em 1.5em;
}

.ld_button_5dea34b4d4512 {
    border-radius: 50em !important;
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 16px !important;
    font-weight: 600 !important;
}

.ld_button_5dea34b4d4512 > span {    
    padding: .7em 2.5em !important;
}

.ld_button_5dea34b4d4512:hover {
    /* background-color: rgb(85, 4, 52);
    border-color: rgb(85, 4, 52); */
    background-color: rgb(8, 223, 126);
    border-color: rgb(8, 223, 126);
    color: rgb(0, 0, 0);
}

p.exito {
    font-size: 1.5em;
    padding: 1em;
    border: 2px solid green;
    background: lightgreen;
}

p.error {
    font-size: 1.5em;
    padding: 1em;
    border: 2px solid red;
    background: #ff8787;
}

.bouncer {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    min-width: 70px;
}

.bouncer div {
    width: 12px;
    height: 12px;
    background-color: #069642;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.bouncer div.bounce1 {
    animation-delay: -0.32s;
}

.bouncer div.bounce2 {
    animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

input[name="company"] {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}