﻿/* FONTS */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Regular.ttf");
}

/* DOM */
body {
    /*width: 100vw;*/
    height: 100vh;
    letter-spacing: normal !important;
    font-size: 12px !important;
    font-family: "Poppins";
    /*background-color: #001530;*/
    background-color: #f5f6f6;
    /*font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;*/
}
body > .wrapper {
    background-color: #f5f6f6 !important;
}
.main-panel {
    /*background-color: #001530 !important;*/
    background-color: #f5f6f6;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    margin-bottom: 10px;
}
label, span, p, div, input, select, textarea, b, button, li, ul, a, h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins" !important;
    letter-spacing: inherit !important;
    font-size: inherit;
}
.dNone {
    display: none !important;
}
#AppLoading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffcc;
    z-index: 5000;
}

    #AppLoading img {
        width: 50px;
    }

.CadmusBaseBg {
    background: #019ad5;
}
.CadmusBaseColor {
    color: #019ad5;
}

/* NAVBAR */
.nav li.nav-item {
  width: 100%;  
}
.main-header[data-background-color="purple"] .nav-top {
    /*background: white !important;*/
    background-color: #d5012e !important;
    height: 100px;
}
    .navbar-nav > li > .nav-link {
        color: white;
        background: #f5f6f6;
        font-size: 16px !important;
    }
.navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link:focus {
    color: white;
    background: #ffb4b4 !important;
}
.nav li.nav-item a {
    padding: 10px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
    cursor: unset;
    font-size: 22px;
    font-weight: 800;
    height: 50px;
}
.main-header .nav-bottom {
    /*background: #ffc800 !important;*/
    background-color: #3d719e !important;
}
.logo img:first-child {
    height: 50px;
    vertical-align: top;
}

.logo img:nth-child(2) {
    height: 60px;
}

/* CONTAINER */
#ManualFloat {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    height: 100%;
    display: flex;
    align-items: center;
}
    #ManualFloat > div {
        display: flex;
        align-items: center;
    }

.AnimationTop {
    animation: showTop 1.5s;
}
@keyframes showTop {
    0% {
        transform: translateY(-60px);
    }
    100% {
        transform: translateY(0);
    }
}
.CourseBox {
    width: 100%;
    border: none;
    padding: 3px;
    display: block;
    height: 275px;
    box-shadow: 2px 2px 8px #969696;
    border-radius: 5px;
    opacity: 0;
    transition: all 1.5s;
    background-color: white;
}
    .CourseBox > div:first-child {
        width: 100%;
        height: 75%;
        display: block;
        position: relative;
    }
        .CourseBox > div:first-child img {
            width: 100%;
            height: 100%;
        }
    .CourseBox .CourseBox_Description {
        width: 100%;
        position: absolute;
        display: flex;
        padding: 10px;
        background-color: rgb(213, 1, 46, 0.47);
        height: 100px;
        font-size: 12px;
        color: #f5f6f6;
        -webkit-transition: opacity 0.8s;
        -moz-transition: opacity 0.8s;
        opacity: 0;
    }
    .CourseBox:hover .CourseBox_Description {
        opacity: 1;
    }
        .CourseBox > div:first-child > div > label {
            font-weight: 600;
            color: white !important;
            font-size: 25px !important;
        }
        .CourseBox > div:nth-child(2) {
            display: flex;
            align-items: center;
            justify-content: center;
        }
.CourseBox_Block {
    width: auto;
    padding: 0px 8px 10px 8px;
}
    .CourseBox_Block i {
        color: silver;
        font-size: 21px;
    }
    .CourseBox_Block label {
        color: #909090 !important;
        font-weight: 800;
        margin-bottom: 10px;
        width: max-content;
    }
    .CourseBox_Block button {
        color: #d5012e;
        border: 2px solid #d5012e;
        background: #f5f6f6;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        padding: 10px;
        margin-top: 5px;
        border-radius: 5px;
        transition: all 0.5s;
    }

        .CourseBox_Block button span {
            cursor: pointer;
            display: inline-block;
            position: relative;
            transition: 0.5s;
        }

            .CourseBox_Block button span:after {
                content: '\00bb';
                position: absolute;
                opacity: 0;
                top: 0;
                right: -20px;
                transition: 0.5s;
            }

        .CourseBox_Block button i {
            font-size: inherit;
            color: #d5012e;
            margin-right: 5px;
        }

        .CourseBox_Block button:hover {
            box-shadow: 0px 0px 5px 1px silver;
            background: #d5012e;
            color: #f5f6f6;
        }

            .CourseBox_Block button:hover span {
                padding-right: 25px;
            }

                .CourseBox_Block button:hover span:after {
                    opacity: 1;
                    right: 0;
                }

            .CourseBox_Block button:hover i {
                color: #f5f6f6;
            }

/* INICIAR SESION */
#ProfileList {
    text-align: center;
}

    #ProfileList button {
        padding: 4px 0;
        width: 250px;
        white-space: nowrap;
        overflow: hidden;
        background-color: #ffc800;
        color: white;
        margin-top: 5px;
        border: none;
        font-size: 12px;
        border-radius: 5px 0;
        cursor: pointer;
    }

        #ProfileList button:hover {
            background-color: #3d719e;
        }

#ErrorMessage {
    text-align: center;
    display: block;
    width: 100%;
    color: red;
    padding: 5px 20px;
    font-size: 11px;
}

.main-header[data-background-color] .navbar-nav .nav-item .nav-link {
    color: #d5012e !important;
}

/* REGISTRATE */
.CadmusBtnLogin {
    background: #d5012e;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
}
    .CadmusBtnLogin:hover {
        background: #3d719ee0;
    }
.CadmusModal > div {
    width: 991px;
}
    .CadmusGroup2 label {
        width: 100%;
    }
.CadmusGroup2 small {
    font-size: 11px !important;
}
.CadmusGroup2 .bootstrap-select {
    border: 1px solid silver;
}
    .CadmusGroup2 .bootstrap-select .dropdown-toggle {
        font-size: 13px;
        height: 37px;
    }
.CadmusModal_Header {
    padding: 10px;
    background: #d5012e;
    margin: 10px;
    position: relative;
    border-radius: 5px;
}
    .CadmusModal_Header label {
        font-size: 18px !important;
        color: white !important;
    }
    .CadmusModal_Header button {
        position: absolute;
        right: 0;
        background-color: transparent !important;
        border: none !important;
        color: white !important;
        margin-top: -4px !important;
    }
.CadmusModal_Body {
    padding: 15px 30px;
}
.CadmusModal_Footer {
    padding: 10px 30px;
    text-align: right;
}

.ms-footbar-block {
    color: #f5f6f6;
}

.ms-footbar-title {
    font-size: 18px;
}
.footer-block-social {
}
.footer-block-social img{
    height: 20px;
    vertical-align: middle;
    margin: 10px;
}
/**Slider*/
.container-slider {
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
    margin: auto;
}
    .container-slider .slider {
        display: flex;
        width: 300%;
        height: calc(100vh - 100px);
        margin-left: -100%;
    }
        .container-slider .slider .slider-section {
            width: 100%;
        }
        .container-slider .slider .slider-section img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
            .container-slider .slider .slider-section label {
                position: absolute;
                max-width: 550px;
                bottom: 30px;
                margin-left: 30px;
                font-size: 20px !important;
                color: #fff !important;
                font-weight: bold;
                background-color: rgb(51 51 51 / 56%);
                padding: 10px;
                border-radius: 5px;
            }

    .container-slider .slider-btn {
        position: absolute;
        top: 50%;
        width: 60px;
        height: 60px;
        border-radius: 20px;
        transform: translateY(-50%);
        font-size: 50px;
        font-weight: bold;
        background-color: transparent;
        text-align: center;
        vertical-align: middle;
        color: rgb(255 255 255 / 50%);
        cursor: pointer;
    }

        .container-slider .slider-btn:hover {
            color: rgb(32 32 32 / 90%);
        }

        .container-slider .slider-btn.left {
            left:10px;
        }
        .container-slider .slider-btn.right {
            right: 10px;
        }
.cls-20211121159 {
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    margin: auto;
}
.cls-20211121159:hover {
    color: #d5012e !important;
}
.cls-202111171318 input {
    vertical-align: middle;
    margin-left: 15px;
    margin-right: 10px;
}
.dropdown-menu {
    min-width:100px !important;
}

    .dropdown-menu .dropdown-item {
        white-space: break-spaces !important;
    }
    /* ------------------------------------------------- RESPONSIVE ------------------------------------------------------------- */
    @media (min-width: 1200px) {
    }

@media (min-width: 992px) {
    .nav-top > .container {
        height: 100px;
    }
}
@media screen and (max-width: 991px) {
    .CadmusModal > div {
        width: 720px;
        height: 600px;
        line-height: 1em;
        overflow-x: hidden;
        overflow-y: scroll;
        border: 1px solid;
    }
    .logo div {
        text-align:center;
    }
    .logo img:first-child {
        height: 28px !important;
    }
    .logo img:nth-child(2) {
        height: 35px !important;
    }
}
