@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

:root {
    --secondary: #4772B1;
    --box-blur: blur(10px);
    --box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --box-bg: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --color-btn: #000;
    --bg-btn: rgb(197, 14, 14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

*>img {
    user-select: none;
    pointer-events: none;
}

html {
    font-size: 62.5%;
    overflow: hidden;
}

body {
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif ;
    height: 100vh;
}

.hidden {
    display: none;
}

h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin: 0;
}

p {
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
    font-weight: 600;
}

#task-form-dp span {
    font-size: 1.5rem;
    padding: .5rem 0;
}

label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    padding-top: 1rem;
}


select {
    width: 100%;
    font-size: 1.5rem;
    border: var(--border);
    border-radius: .5rem;
    padding: 1rem;
    text-transform: none;
    color: #000;
    border: 1px solid #aaa;
    overflow-x: auto;
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.btn-form {
    border-radius: 1.5rem;
    background: #abbaab;
    background: -webkit-linear-gradient(to left, #ffffff, #abbaab);
    background: linear-gradient(to left, #eee, rgb(172, 172, 172));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 12px 45px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin: 1.5rem 0;
}

.btn-form:active {
    transform: scale(0.95);
}

.btn-form:focus {
    outline: none;
}

.btn-form.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.btn-next-movile {
    display: none;
}

form {
    background: #D3CCE3;
    background: -webkit-linear-gradient(to left, #E9E4F0, #D3CCE3);
    background: linear-gradient(to left, #ecebec, rgb(245, 245, 245));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 50px;
    text-align: center;
    min-height: 100%;
}

input {
    background-color: #eee;
    border: 1px solid #aaa;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: .5rem;
    font-size: 1.3rem;
}

.container {
    background-color: rgba(255, 255, 255, 0.589);
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 95%;
    max-width: 100%;
    height: 100%;
    max-height: 95%;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.form-9,
#task-form-9-dp,
#task-form-1-dp-otro {
    display: none;
}


.multi_select_box,
.area-estudios,
.multi_select_box select,
.gran-area {
    width: 100%;
    margin-bottom: 1rem;
}

.bootstrap-select{
    margin-bottom: 2rem;
}

.filter-option-inner-inner,
.form-control,
.no-results {
    font-size: 1.5rem;
    color: #000;
    
}

.bootstrap-select>.dropdown-toggle {
    border: 1px solid #aaa;
    background-color: #fff;
    border-radius: .5rem;
}

.bootstrap-select .dropdown-menu {
    max-width: 100%;
    overflow-x: auto;
}

.filter-option-inner-inner {
    padding: 12px 15px;
}

.sign-up-container-movile {
    transition: all 1s ease;
    z-index: 9;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 3;
}

#signIn-movile {
    display: none;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 2;
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 9;
    animation: show 0.6s;
    overflow: auto;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #373B44;
    background: -webkit-linear-gradient(to left, #4286f4, #373B44);
    background: linear-gradient(to left, #4286f4, #373B44);
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.container.right-panel-active .overlay-left i {
    font-size: 2.5rem;
}

.swal2-success-ring {
    color: #4286f4 !important;
}

.swal2-container.swal2-center>.swal2-popup {
    width: 60% !important;
}

.swal2-title {
    font-size: 4rem !important;
}

.swal2-html-container {
    font-size: 2.5rem !important;
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 2px solid #aaa;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99999999;
    background-color: rgba(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container.active {
    display: none;
}

.loader-container img {
    height: 20%;
}



@media (max-width:425px) {

    .overlay-container {
        display: none;
    }

    .btn-next-movile {
        display: block;
    }

    .sign-in-container,
    .sign-up-container {
        width: 100%;
    }
    
    .container {
        width: 90%;
        height: 70%;
        margin: auto;
        overflow: auto;
    }

    #signIn-movile {
        display: block;
    }
   
}

.content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    line-height: 40px;
    color: #ecf0f1;
}
.content__container {
    font-weight: 600;
    overflow: hidden;
    height: 40px;
    padding: 0 40px;
}

.content__container:after, .content__container:before {
    position: absolute;
    top: 0;
    line-height: 40px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.content__container__list {
    margin-top: 0;
    text-align: center;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 25s;
    animation-iteration-count: infinite;
    width: max-content;
}
.content__container__list__item {
    line-height: 40px;
    margin: 0;
    font-size: 1.7rem;
}
@-webkit-keyframes opacity {
    0%, 100% {
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
}
@-webkit-keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
   }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
   }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
   }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
   }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
   }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
   }
}
@-o-keyframes opacity {
    0%, 100% {
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
}
@-o-keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
   }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
   }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
   }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
   }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
   }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
   }
}
@-moz-keyframes opacity {
    0%, 100% {
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
}
@-moz-keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
   }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
   }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
   }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
   }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
   }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
   }
}
@keyframes opacity {
    0%, 100% {
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
}
@keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
   }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
   }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
   }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
   }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
   }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
   }
}


@media (max-width:768px) {
    .content__container__list__item {
        line-height: 40px;
        margin: 0;
        font-size: 1.7rem;
    }
}