@charset "UTF-8";
@import url("../fonts/poppins/poppins.css?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*Variables*/
body {
    font-family: poppins;
    padding: 0;
    margin: 0;
    font-size: 16px;
    height: 100vh;
}

    body .body_wrapper {
        display: flex;
        flex: 2;
        flex-direction: row;
        width: 100%;
    }

        body .body_wrapper .log_controls_container {
            width: 35%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url("../images/svg/bg.svg"), url("../images/svg/bg2.svg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

            body .body_wrapper .log_controls_container .goBackBtn {
                position: absolute;
                width: 225px;
                height: 45px;
                overflow: hidden;
                top: 0;
                right: 0;
            }

                body .body_wrapper .log_controls_container .goBackBtn .goBack {
                    position: absolute;
                    top: 0;
                    right: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 45px;
                    width: 45px;
                    background-color: #0d3168;
                    color: white;
                    text-decoration: none;
                    z-index: 0;
                    order: 2;
                }

                    body .body_wrapper .log_controls_container .goBackBtn .goBack:hover {
                        background-color: #2E6FD1;
                    }

                    body .body_wrapper .log_controls_container .goBackBtn .goBack::before {
                        content: "Ir a versión anterior";
                        position: absolute;
                        left: -180px;
                        height: 45px;
                        width: 180px;
                        padding: 8px 12px;
                        font-size: 14px;
                        box-sizing: border-box;
                        background-color: #2e6fd1;
                        color: white;
                        top: 0;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        animation: slideBtn 0.5s forwards ease-in-out;
                        animation-delay: 2.5s;
                        z-index: -1;
                        transform: translateX(225px) translateZ(-1px);
                        order: 1;
                        border-radius: 1px 1px 1px 15px;
                    }

@media (min-width: 320px) {
    body .body_wrapper .log_controls_container {
        display: block;
        width: 100%;
        background-image: url("../images/svg/bg-mb.svg");
    }
}

@media (min-width: 576px) {
    body .body_wrapper .log_controls_container {
        display: block;
        width: 100%;
        background-image: url("../images/svg/bg-mb.svg");
    }
}

@media (min-width: 768px) {
    body .body_wrapper .log_controls_container {
        display: flex;
        width: 100%;
        background-image: url("../images/svg/bg.svg"), url("../images/svg/bg2.svg");
    }
}

@media (min-width: 1024px) {
    body .body_wrapper .log_controls_container {
        display: flex;
        width: 35%;
        background-image: url("../images/svg/bg.svg"), url("../images/svg/bg2.svg");
    }
}

body .body_wrapper .log_controls_container .vertical_align {
    width: 100%;
    max-width: 590px;
    padding: 45px;
}

@media (min-width: 320px) {
    body .body_wrapper .log_controls_container .vertical_align {
        width: initial;
    }
}

@media (min-width: 576px) {
    body .body_wrapper .log_controls_container .vertical_align {
        width: initial;
    }
}

@media (min-width: 768px) {
    body .body_wrapper .log_controls_container .vertical_align {
        width: 100%;
    }
}

body .body_wrapper .log_controls_container .vertical_align .language {
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
}

    body .body_wrapper .log_controls_container .vertical_align .language .divide {
        width: 2px;
        height: 40px;
        background-color: #0066cc;
    }

    body .body_wrapper .log_controls_container .vertical_align .language .btnFlag {
        width: 30px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    body .body_wrapper .log_controls_container .vertical_align .language .sp-flag {
        filter: saturate(0);
        opacity: 0.5;
    }

    body .body_wrapper .log_controls_container .vertical_align .language .en-flag {
        filter: saturate(0);
        opacity: 0.5;
    }

body .body_wrapper .log_controls_container .vertical_align .OfficeLogText {
    text-decoration: none;
}

    body .body_wrapper .log_controls_container .vertical_align .OfficeLogText .officeLogin {
        width: 100%;
        box-sizing: border-box;
        min-height: 55px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        border: 1px solid #0066cc;
    }

        body .body_wrapper .log_controls_container .vertical_align .OfficeLogText .officeLogin .logoOffice {
            width: 55px;
            padding: 15px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            background-color: white;
            border-radius: 10px 0px 0px 10px;
        }

        body .body_wrapper .log_controls_container .vertical_align .OfficeLogText .officeLogin .officeLogText {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            color: white;
            text-align: center;
            background-color: #2e6fd1;
            border-radius: 0px 9px 9px 0px;
        }

body .body_wrapper .log_controls_container .vertical_align .controls_box {
    margin: 0 auto;
    width: 90%;
}

    body .body_wrapper .log_controls_container .vertical_align .controls_box .logoUAcademy {
        width: 100%;
        text-align: center;
    }

        body .body_wrapper .log_controls_container .vertical_align .controls_box .logoUAcademy img {
            width: 100%;
            max-width: 350px;
        }

    body .body_wrapper .log_controls_container .vertical_align .controls_box h3 {
        text-align: center;
        color: #2E6FD1;
        font-weight: 500;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    body .body_wrapper .log_controls_container .vertical_align .controls_box h5 {
        text-align: center;
        color: #2E6FD1;
        font-weight: 500;
        margin-bottom: 20px;
        font-size: 16px;
    }

    body .body_wrapper .log_controls_container .vertical_align .controls_box h4 {
        text-align: center;
        color: #2E6FD1;
        font-weight: 800;
        margin-bottom: 10px;
        font-size: 15px;
    }

    body .body_wrapper .log_controls_container .vertical_align .controls_box .form_control {
        display: flex;
        flex-direction: column;
        margin-top: 36px;
    }

        body .body_wrapper .log_controls_container .vertical_align .controls_box .form_control label {
            font-size: 14px;
            color: #2E6FD1;
        }

        body .body_wrapper .log_controls_container .vertical_align .controls_box .form_control input {
            background-color: #EEFEFF;
            border: 1px solid #137AA1;
            padding: 18px 16px;
            border-radius: 11px;
            font-size: 16px;
        }

    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 24px;
    }

        body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin: 32px 0px;
        }

@media (min-width: 320px) {
    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer {
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer {
        flex-direction: row;
    }
}

body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass {
    font-size: 14px;
    text-decoration: none;
    color: #2E6FD1;
    box-sizing: border-box;
    text-align: center;
}

    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass a {
        font-size: 13px;
        padding: 18px 8px;
        text-decoration: none;
        color: #2E6FD1;
    }

@media (min-width: 320px) {
    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass a {
        display: block;
    }
}

@media (min-width: 576px) {
    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass a {
        display: block;
    }
}

@media (min-width: 768px) {
    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass a {
        display: inline;
    }
}

body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass a:hover {
    color: #6314ca;
    text-decoration: underline;
}

body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .forgetContainer .forgot_pass a:focus {
    outline: none;
}

body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .btn_submit {
    margin-top: 14px;
    padding: 18px 0px;
    width: 100%;
    font-size: 14px;
    border-radius: 11px;
    background-color: #2E6FD1;
    color: white;
    border: none;
    transition: background-color 0.2s;
}

    body .body_wrapper .log_controls_container .vertical_align .controls_box .submit .btn_submit:hover {
        background-color: #0d3168;
    }

body .body_wrapper .log_controls_container .vertical_align .copyrights {
    font-size: 14px;
    text-align: center;
}

    body .body_wrapper .log_controls_container .vertical_align .copyrights .copy {
        position: relative;
        color: #2E6FD1;
    }

body .body_wrapper .side_img_login {
    display: block;
    height: 100vh;
    width: 65%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/svg/background.svg");
}

@media (min-width: 576px) {
    body .body_wrapper .side_img_login {
        display: none;
    }
}

@media (min-width: 320px) {
    body .body_wrapper .side_img_login {
        display: none;
    }
}

@media (min-width: 768px) {
    body .body_wrapper .side_img_login {
        display: none;
    }
}

@media (min-width: 1024px) {
    body .body_wrapper .side_img_login {
        display: block;
    }
}

body .body_wrapper .side_img_login .logo {
    height: 720px;
    position: absolute;
    right: 0;
    bottom: 0;
}

body .modal {
    background-color: rgba(0, 0, 0, 0.637);
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: all 0.8s;
    z-index: 9999;
}

    body .modal .bannerModal {
        display: none;
        align-items: stretch;
        width: 100%;
        max-width: 750px;
        flex-wrap: nowrap;
        box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.15);
        position: relative;
        top: -20px;
        opacity: 0;
        z-index: 9999;
    }




@media (min-width: 320px) {
    body .modal .bannerModal {
        max-width: 500px;
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    body .modal .bannerModal {
        max-width: 500px;
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    body .modal .bannerModal {
        max-width: 750px;
        flex-direction: row;
    }
}





body .modal .bannerModal .modalImg {
    width: 100%;
    max-width: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/jpg/logoTic@2x-100.jpg");
    border-radius: 6px 0px 0px 6px;
}

@media (min-width: 320px) {
    body .modal .bannerModal .modalImg {
        max-width: 500px;
        height: 250px;
    }
}

@media (min-width: 576px) {
    body .modal .bannerModal .modalImg {
        max-width: 500px;
        height: 250px;
    }
}

body .modal .bannerModal .modalContainer {
    background-color: white;
    width: 100%;
    max-width: 600px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 0px 6px 6px 0px;
}

@media (min-width: 576px) {
    body .modal .bannerModal .modalContainer {
        max-width: 600px;
    }
}

body .modal .bannerModal .modalContainer .modalHeader {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    padding: 15px 15px;
    box-sizing: border-box;
}

    body .modal .bannerModal .modalContainer .modalHeader .modalTitle {
        margin: 0;
        padding: 0;
        font-size: 22px;
        text-align: center;
        width: 100%;
    }

    body .modal .bannerModal .modalContainer .modalHeader #close,
    body .modal .bannerModal .modalContainer .modalHeader #close-forgot-password,
    body .modal .bannerModal .modalContainer .modalHeader #close-sso {
        padding: 0;
        margin: 0;
        display: block;
        width: 38px;
        height: 38px;
        border: none;
        position: absolute;
        right: 20px;
        color: #0066cc;
        transition: background-color 0.2s;
        border-radius: 50%;
    }

        body .modal .bannerModal .modalContainer .modalHeader #close:hover,
        body .modal .bannerModal .modalContainer .modalHeader #close-forgot-password:hover,
        body .modal .bannerModal .modalContainer .modalHeader #close-sso:hover {
            background-color: #0066cc;
            color: white;
            cursor: pointer;
        }

body .modal .bannerModal .modalContainer .modalBody,
body .modal .bannerModal .modalContainer .modalBody-sso {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 15px 15px;
    box-sizing: border-box;
    align-items: center;
}

    body .modal .bannerModal .modalContainer .modalBody .tic {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }

    body .modal .bannerModal .modalContainer .modalBody-sso .contacts-sso {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 25px;
        align-items: flex-start;
        text-align: justify;
    }

    body .modal .bannerModal .modalContainer .modalBody .contacts {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 25px;
        width: 80%;
        align-items: flex-start;
    }

        body .modal .bannerModal .modalContainer .modalBody .contacts .tel,
        body .modal .bannerModal .modalContainer .modalBody-sso .contacts-sso .tel {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

            body .modal .bannerModal .modalContainer .modalBody .contacts .tel a {
                color: #0d3168;
                text-decoration: none;
                margin-left: 12px;
            }

                body .modal .bannerModal .modalContainer .modalBody .contacts .tel a:hover {
                    color: #2E6FD1;
                    text-decoration: underline;
                }

            body .modal .bannerModal .modalContainer .modalBody .contacts .tel .icon {
                display: block;
                width: 35px;
                height: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #0066cc;
                color: white;
                border-radius: 50%;
            }

                body .modal .bannerModal .modalContainer .modalBody .contacts .tel .icon i {
                    margin: 0;
                    padding: 0;
                }

.show {
    display: flex !important;
}

#cn {
    transform: translate(10px 50px);
}

.mainImage {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/svg/fondo.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.imageSvg {
    width: 70%;
    margin: 0 auto;
}

#cc {
    animation: floaty 3s alternate infinite;
}

#goma {
    animation: goma 6s infinite alternate;
    transform-origin: center;
    transform-box: fill-box;
}

#laptop {
    animation: moveIn 0.4s forwards ease-out;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes floaty {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}

@keyframes goma {
    0% {
        transform: translate(0px, 0px) rotateZ(0deg);
    }

    25% {
        transform: translate(0px, 0px) rotateZ(0deg);
    }

    45% {
        transform: translate(102px, -84px) rotateZ(0deg);
    }

    50% {
        transform: translate(102px, -84px) rotateZ(8deg);
    }

    60% {
        transform: translate(102px, -84px) rotateZ(-8deg);
    }

    70% {
        transform: translate(102px, -82px) rotateZ(7deg);
    }

    100% {
        transform: translate(102px, -86px) rotateZ(-7deg);
    }
}

@keyframes moveIn {
    0% {
        transform: scale(0);
    }

    95% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideBtn {
    0% {
        transform: translateX(225px);
    }

    100% {
        transform: translateX(0);
    }
}

.img-news {
    width: 100%;
    max-width: 850px;
}

.modal-news {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dontShow {
    position: absolute;
    bottom: 30px;
    left: 35px;
}

.messageNews {
    position: relative;
    width: fit-content;
}

.frmNews {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content:end;
}

.newsClose {
    padding: 5px 12px;
    border: none;
    border-radius: 2px;
    background-color: white;
    color: #456EC2;
    font-family: inherit;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

    .newsClose:hover {
        background-color: #f7a210;
        color: white;
    }

.img-news {
    width: 100%;
    max-width: 1000px;
}

.modal-news {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dontShow {
    position: absolute;
    top: 30px !important;
    right: 35px !important;
}

.messageNews {
    position: relative;
    width: fit-content;
}

.frmNews {
    display: flex;
    gap: 32px;
    align-items: center;
}

.newsClose {
    padding: 5px 12px;
    border: none;
    border-radius: 2px;
    background-color: white;
    color: #456EC2;
    font-family: inherit;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

    .newsClose:hover {
        background-color: #f7a210;
        color: white;
    }
/**/
/*invalid credentials - forgot my password*/
* {
    font-family: poppins;
}

body {
    padding: 0;
    margin: 0;
}

.modalForget {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
}

.modalError {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
}

.modalContent {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.modalContentError {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.infoError {
    box-sizing: border-box;
    font-size: 15px;
    margin: 0;
}

.infoAdd {
    box-sizing: border-box;
    font-size: 15px;
    margin: 0;
}

.bannerFondo {
    width: 100%;
    max-width: 850px;
}

.formForgot {
    width: 70%;
    position: absolute;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

    .formForgot h3 {
        font-size: 28px;
        padding: 0;
        margin: 0;
        margin-bottom: 8px;
    }

    .formForgot h5 {
        font-size: 18px;
        padding: 0;
        margin: 0;
    }

.groupControl {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forgotPassword {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: end;
}

.groupControl input[type=text] {
    width: 100%;
    min-width: 280px;
    max-width: 280px;
    padding: 10px 15px;
    border: none;
    border-radius: 30px;
}

.forgotPassword button {
    max-width: 150px;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    background-color: #3498db;
    color: white;
    min-width: 115px;
}

    .forgotPassword button:hover {
        background-color: white;
        color: #3498db;
    }

.instructions {
    box-sizing: border-box;
    background-color: white;
    border-radius: 8px;
    color: #004899;
    font-size: 13.5px;
}

.instructionsError {
    box-sizing: border-box;
    background-color: white;
    border-radius: 8px;
    color: #004899;
    font-size: 13.5px;
    padding: 12px;
}

.close {
    background-color: #ffffff;
    color: #3498db;
    position: absolute;
    right: 15px;
    top: 15px;
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 6px, rgba(0, 0, 0, 0.23) 0px 1px 6px;
    transition: all .3s;
    cursor: pointer;
}

.closeRecovery {
    max-width: 150px;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    background-color: #004899;
    color: white;
    min-width: 115px;
    cursor: pointer;
}

    .closeRecovery:hover {
        background-color: #3498db;
        color: white;
        transform: scale(1.01);
    }

.recoveryError {
    width: 500px;
    background-color: #ffffff;    
    position: absolute;
    transform: translateY(50px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 8px;
    padding: 25px 15px;
    display: none;
    opacity: 0%;
    animation: recovery 0.3s forwards ease-in;
}

.UserSendMail {
    width: 500px;
    background-color: #ffffff;
    height: 300px;
    position: absolute;
    transform: translateY(50px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 8px;
    padding: 25px 15px;
    display: none;
    opacity: 0%;
    animation: recovery 0.3s forwards ease-in;
}

@keyframes recovery {
    0% {
        transform: translateY(50px);
        opacity: 0%;
    }

    0.1% {
        transform: translateY(50px);
        opacity: 0%;
    }

    100% {
        transform: translateY(0px);
        opacity: 100%;
    }
}

@keyframes recovery-reverse {
    0% {
        transform: translateY(0px);
        opacity: 100%;
    }

    0.1% {
        transform: translateY(0px);
        opacity: 100%;
    }

    100% {
        transform: translateY(50px);
        opacity: 0%;
    }
}

.infoRecovery {
    font-size: 14px;
    padding-left: 10px;
    box-sizing: border-box;
}

.recoveryContent {
    display: flex;
    flex-direction: column;
    gap: 5px;    
    align-items: center;
    justify-content: center;
}

.logIn {
    max-width: 150px;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    background-color: #004899;
    color: white;
    min-width: 115px;
}

    .logIn:hover {
        background-color: #3498db;
        color: white;
        transform: scale(1.01);
    }

.send {
    cursor: pointer;
}

/*loading*/
.LoadingBox {
    display: block;
    position: relative;
    margin: 0 auto !important;
    text-align: center;
    padding: 2em;
}

#loading {
    display: none;
    position: fixed;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.637);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}


.fancy-spinner {
    display: -webkit-box;
    display: flex;
    height: 100% !important;
    width: 100% !important;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
}

.fancy-spinner {
    display: -webkit-box;
    display: flex;
    height: 100% !important;
    width: 100% !important;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
}

    .fancy-spinner div {
        position: absolute;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
    }

        .fancy-spinner div.ring {
            border-width: 0.5rem;
            border-style: solid;
            border-color: transparent;
            -webkit-animation: 2s fancy infinite alternate;
            animation: 2s fancy infinite alternate;
        }

            .fancy-spinner div.ring:nth-child(1) {
                border-left-color: #3988d7;
                border-right-color: #3988d7;
            }

            .fancy-spinner div.ring:nth-child(2) {
                border-top-color: #3988d7;
                border-bottom-color: #3988d7;
                -webkit-animation-delay: 1s;
                animation-delay: 1s;
            }

        .fancy-spinner div.dot {
            width: 1rem;
            height: 1rem;
            background: #3988d7;
        }

@-webkit-keyframes fancy {
    to {
        -webkit-transform: rotate(360deg) scale(0.5);
        transform: rotate(360deg) scale(0.5);
    }
}

@keyframes fancy {
    to {
        -webkit-transform: rotate(360deg) scale(0.5);
        transform: rotate(360deg) scale(0.5);
    }
}

.speech-bubble-primary {
    position: relative;
    background: #1574d2;
    border-radius: .4em;
}

.speech-bubble-success {
    position: relative;
    background: #34bfa3;
    border-radius: .4em;
}

.speech-bubble-primary:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border: 22px solid #1574d2;
    border-bottom-color: transparent;
    border-left: 0;
    margin-left: -7.5px;
    margin-bottom: -12px;
}

.speech-bubble-success:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 22px solid #34bfa3;
    border-bottom-color: transparent;
    border-right: 0;
    margin-right: -7.5px;
    margin-bottom: -12px;
}

.m-widget3 .m-widget3__item {
    border-bottom: unset !important;
    margin-bottom: 2.5em;
}

    .m-widget3 .m-widget3__item .m-widget3__header .m-widget3__status {
        padding-top: 0 !important;
    }
/*loading*/


/*# sourceMappingURL=login.css.map */