@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&display=swap');

body {
    font-family: 'Poppins', 'Tahoma', sans-serif;
    background-color: #fbfbfb;
    transition: all 0.2s;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.help-text-accordion {}

.help-text-accordion ul {
    padding: 0;
    margin: 10px;
}

.help-text-accordion button {
    font-size: 20px;
    color: #333;
    font-weight: lighter;
}

.help-text-accordion button:hover {
    color: #2d005d;
}

#inputHelpSearch {
    width: 300px;
    padding: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 0px 5px 5px 0px;
    outline: none;
}

.help-text-accordion ul li {
    list-style: none;
    padding: 0;
}

.table-itemslist {
    margin: 10px;
}

#itemslist {
    border-collapse: separate;
    border-spacing: 0 10px;
    width: 100%;
}

#itemslist td {
    background-color: #f4f4f4;
}

#itemslist td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#itemslist td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#itemslist td,
#itemslist th {
    padding: 15px;
}

#itemslist td a {
    padding: 10px;
    border: 1px solid #2d005d;
    color: #2d005d;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
}

#itemslist td a:hover {
    background-color: #2d005d;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

#itemslist td a:not(:hover) {
    transition: all 0.2s;
}

#itemslist tr:hover td {
    background-color: #ebebeb;
}

#itemslist thead tr:hover {
    background-color: unset;
}

#itemslist th {
    padding: 5px;
    text-align: left;
    color: #505050;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
}

.itemslist-badge {
    display: block;
    font-size: 11px;
    padding: 3px;
    background-color: #070707;
    width: 80px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}

.itemslist-badge i {
    display: block;
}

.blu {
    background-color: #0845a0;
}

.blue {
    background-color: #2d005d;
}

.blue-oil {
    background-color: #009688;
}

.cyan {
    background-color: #00bcd4;
}

.green {
    background-color: #8bc34a;
}

.orange {
    background-color: #ff9800;
}

.red {
    background-color: #f44336;
}

.grid-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box-item {
    display: flex;
    flex-direction: column;
    width: 413px;
    background-color: #f5f5f5;
    margin: 10px;
    border: 1px solid #eee;
    border-bottom: 5px solid #2d005d;
}

.box-item a {
    text-decoration: none;
}

.box-item-top {
    padding: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    background-color: #eee;
}

.box-item-title {
    display: flex;
    height: 65px;
    color: #070707;
    padding: 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
}

.box-item-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100px;
    font-size: 12px;
    color: #7d7d7d;
    padding: 10px;
}

.body-item {
    display: flex;
    justify-content: space-between;
}

.body-item-bold {
    font-size: 16px;
    font-weight: bold;
    color: #2d005d;
}

.box-item-footer {
    text-align: center;
    background-color: #fff;
    color: #070707;
    font-size: 18px;
    padding: 10px;
    font-weight: lighter;
}

.box-item-footer:hover {
    background-color: #e6e6e6;
}

.list-items {
    display: flex;
    flex-direction: column;
}

.band-item {
    display: flex;
    justify-content: space-between;
    margin: 5px;
    padding: 15px;
    border: 1px solid #eee;
}

.band-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.band-item-title {
    font-size: 24px;
    font-weight: lighter;
}

.band-item-subtitle {}

.bg-light {
    background-color: #fff !important;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 2px 2px 2px #00000049;
}

#count-notifications {
    width: 18px;
    height: 18px;
    font-size: 12px;
    background-color: #f44336;
    border: none;
    color: #fff;
    border-radius: 50%;
    line-height: 13px;
    padding: 2px;
}

.pulse-alert {
    box-shadow: 0 0 0 0 rgba(22, 88, 136, 1);
    animation: pulse-alert 2s infinite;
}

.pulse-alert-red {
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 1);
    animation: pulse-alert-red 2s infinite;
}

@keyframes pulse-alert {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 88, 136, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(22, 88, 136, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 88, 136, 0);
    }
}

@keyframes pulse-alert-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 1);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #2d005d;
    transition: all 0.2s;
}

.navbar-light .navbar-nav .nav-link:not(:hover) {
    transition: all 0.2s;
}

.std-top-avatar {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 25px;
    margin-right: 5px;
    background-size: cover;
    border: 2px solid #cacaca;
}

.max-box-op {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.max-box-op a {
    width: 100%;
}

.max-box-op:hover a {
    text-decoration: none;
    color: inherit;
}

.course-select {
    float: left;
    width: 20vw;
    min-width: 300px;
    height: 7rem;
    text-align: center;
    margin-right: 10px;
    padding: 10px;
    color: #333;
    border: 1px solid #ccc;
    background-color: #ececec;
    border-radius: 5px;
    margin: 2px;
}

.course-select:hover {
    background-color: #e6e6e6;
    border: 1px solid #2d005d;
    transition: all 0.2s;
}

.course-select:not(:hover) {
    transition: all 0.2s;
}

.course-select i {
    font-size: 36px;
    color: #2d005d;
}

.course-select span {
    font-size: 12px !important;
    color: #333;
}

.hometop {
    width: 100%;
    height: 15px;
    background-color: #2d005d;
    color: #f8f9fa;
    font-size: 12px;
}

.hometop-box {
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #f1f6f8;
    box-shadow: 0 19px 34px -15px #f1f6f8;
    -webkit-box-shadow: 0 19px 34px -15px #f1f6f8;
}

.hometop-box.fixed {
    position: fixed;
    top: 0;
    background-color: rgb(255 255 255 / 98%);
    z-index: 1000;
}

.card-info {
    display: inline-block;
    cursor: pointer;
    width: 250px;
    height: 110px;
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
}

.card-info:hover {
    background-color: #cecece;
}

.card-info-icon {
    display: inline-block;
    float: left;
    font-size: 60px;
    color: #d0d0d0;
    line-height: 70px;
    border-radius: 10px;
    background-color: #f2f2f2;
    padding: 10px;
}

.card-info-text {
    display: table;
    text-align: center;
    color: #7c7c7d;
    margin: auto;
    font-size: 12px;
    line-height: 20px;
}

.home-title {
    margin: 10px;
    font-weight: lighter;
    font-size: 24px;
}

.box-op {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #505050;
}

.box-op:hover {
    color: #2d005d;
    cursor: pointer;
    border-bottom: 2px solid #2d005d3f;
    transition: color 0.2s;
}

.box-op:not(:hover) {
    transition: color 0.2s;
}

.box-op:hover a {
    text-decoration: none;
}

.box-op-active {
    color: #2d005d;
    border-bottom: 2px solid #2d005d;
}

.support-container {
    color: #888888;
}

.close {
    color: #a1a1a1;
}

.box-op-active:hover {
    border-color: #2d005d;
}

.box-op i {
    font-size: 36px;
    margin-bottom: 5px;
}

.input-help-search {
    display: flex;
    margin-bottom: 10px;
    margin-right: 5px;
}

.min-hometop-box {
    width: 100%;
    height: 80px;
    padding-top: 10px;
    text-align: center;
    background-color: #00073a;
}

.min-box-op {
    width: 100px;
    padding: 10px;
    float: left;
    margin-left: 50px;
    font-size: 14px;
    font-weight: lighter;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}

.min-box-op:hover {
    background-color: #2d005d;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.min-box-op i {
    font-size: 16px;
}

.float-navbar {
    background-color: #2d005d;
    position: fixed;
    top: -100px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: top 0.3s;
    box-shadow: 0px 2px 15px #c3c3c3;
}

.float-navbar-opts {
    display: flex;
    justify-content: space-around;
}


.float-navbar a {
    float: left;
    display: flex;
    justify-content: center;
    height: 70px;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-size: 16px;
}


.float-navbar i {
    margin-right: 5px;
}

.float-navbar a:hover {
    background-color: #240149;
    color: #ffffff;
}

.scrollTop {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 1001;
    background: #bdbdbd;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border: none;
    height: 32px;
    border-radius: 3px;
    transition: background .5s ease-in-out;
}

.scrollTop:hover {
    background-color: #afafaf;
    cursor: pointer;
}

.scrollTop:focus {
    outline: none;
}

.content {
    padding: 10px;
    margin-bottom: 50px;
}

.content.margin-top {
    padding: 10px;
    margin-top: 105px;
}

.test-header {
    padding-left: 5px;
    font-weight: lighter;
}

.test-quests-colum {}

.test-quest {
    border: 2px solid #f0f0f0;
    border-radius: 10px 10px 0px 0px;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
}

.test-options {
    border: 2px solid #f0f0f0;
    padding: 10px;
    font-size: 14px;
}

.test-options .row:hover label {
    font-weight: bold !important;
}

.test-radio {
    height: 18px;
    width: 18px;
}

.test-info {
    margin-bottom: 10px;
    text-align: right;
    font-size: 12px;
    color: #777;
}

.table-content {
    background-color: #fff;
    border-radius: 5px;
    margin: 10px;
}

@media (max-width: 750px) {
    .table-content {
        display: block;
        overflow-x: auto;
    }
}

.test-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.btn-done {
    width: 100%;
    color: #fff;
    background-color: #2d005d;
    border: 1px solid #2d005d;
    border-bottom: 5px solid #14003a;
    border-radius: 5px;
    padding: 3px;
    font-size: 14px;
    cursor: pointer;
}

.btn-done:hover {
    background-color: #2d005d;
    transition: background-color 0.2s ease-in-out;
}

.btn-done[disabled] {
    color: #6694ad;
    background-color: #417fa1;
    border: 1px solid #417fa1;
    border-bottom: 5px solid #1d6790;
    cursor: unset;
}

.modal-content-table {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: auto;
    max-height: 150px;
    overflow: auto;
}

.modal-content-table-big {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.panel-confirm {}

.panel-confirm-text {
    font-size: 25px;
    font-weight: lighter;
    text-align: center;
}

.panel-confirm-icon {
    font-size: 50px;
    color: #8bc34a;
    text-align: center;
}

.panel-confirm-msg {
    width: 500px;
    text-align: center;
    margin: auto;
    font-size: 17px;
}

.panel-std-pass {
    width: 500px;
    margin: auto;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    background-color: #e7e7e7;
    margin-top: 25px;
    padding: 14px;
    border-radius: 10px;
}

.panel-std-pass input {
    width: 130px;
    margin-top: 10px;
    text-align: center;
    font-weight: lighter;
    font-size: 28px;
    color: #424242;
    border: none;
    background-color: #f2f2f2;
}

.btn-student-register {
    text-align: center;
}

.btn-student-register a {
    text-decoration: none;
    margin-top: 7px;
    margin-bottom: 7px;
}

.btn-student-register a:hover {}

.notice-success {
    border: 1px solid #8BC34A;
    color: #8BC34A;
    margin-bottom: 25px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    background-color: #fbfbfb;
}

.notice-success i {
    font-size: 20px;
    line-height: 22px;
    margin-right: 12px;
}

.notice-success h1 {
    font-size: 22px;
    font-weight: bold;
}

.notice-success p {
    margin-bottom: 0;
    font-size: 16px;
}

.notice-success button {
    font-size: 12px;
    color: #fff;
    background-color: #67a222;
    padding: 5px;
    border-radius: 3px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

.notice-success button:hover {
    background-color: #5a901b;
}

.notice-danger {
    background-color: #f44336;
    color: #fff;
    margin-bottom: 25px;
    padding: 20px;
}

.notice-danger i {
    float: left;
    font-size: 20px;
    line-height: 22px;
    margin-right: 12px;
}

.notice-danger h1 {
    font-size: 18px;
    font-weight: lighter;
}

.notice-danger p {
    margin-bottom: 0;
    font-size: 12px;
}

.notice-info {
    color: #7835c0;
    border: 1px solid #7835c0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.notice-info i {
    font-size: 28px;
    line-height: 22px;
    margin-right: 12px;
}

.notice-info h1 {
    font-size: 22px;
    font-weight: bold;
}

.notice-info p {
    margin-bottom: 0;
    font-size: 16px;
}

.notice-info button {
    font-size: 12px;
    color: #fff;
    background-color: #7835c0;
    padding: 5px;
    border-radius: 3px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

.notice-info button:hover {
    background-color: #7835c0;
}

.notice-light {
    color: #070707;
    margin-bottom: 25px;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

.notice-light i {
    font-size: 28px;
    line-height: 26px;
    margin-right: 12px;
}

.notice-light h1 {
    font-size: 22px;
    font-weight: bold;
}

.notice-light p {
    margin-bottom: 0;
    font-size: 16px;
}

.notice-light button {
    font-size: 14px;
    color: #2d005d;
    background-color: transparent;
    padding: 5px;
    border-radius: 3px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    border: 1px solid #2d005d;
}

.notice-light button:hover {
    background-color: #2d005d;
    color: #fff;
}

.painel-tab-top {
    background-color: #dcdcdc;
    color: #070707;
    margin-bottom: 25px;
    padding: 20px;
}

.painel-tab-top h1 {
    font-size: 18px;
    font-weight: lighter;
}

.painel-tab-top p {
    margin-bottom: 0;
    font-size: 12px;
}

.btn-ap-edit {
    display: none;
    color: #989898;
}

.btn-ap-edit:hover {
    color: #333;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
}

.detail-box {
    background-color: #e7e7e7;
    border: 1px solid #d0d0d0;
    padding: 10px;
    font-size: 12px;
}

.form-error {
    color: #f44336;
    font-size: 12px;
    margin-top: -12px;
}

.op-simple {
    border: none;
    font-size: 12px;
    background-color: transparent;
    color: #ccc;
    border-radius: 3px;
}

.op-simple:hover {
    background-color: #eee;
    cursor: pointer;
}

.op-simple:focus {
    outline: none;
}

.simple-box-info {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
}

.row-creditcard {
    font-size: 28px;
    margin-top: 5px;
}

.row-creditcard i {
    color: #8c8c8c;
    font-size: 28px;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 2px;
}

.ticket-op-box {
    background-color: #eee;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ticket-op-box h4 {
    font-weight: lighter;
    font-size: 24px;
}

.ticket-op-box i {
    font-size: 50px;
    color: #ccc;
}

.ticket-op-box span {
    font-size: 16px;
    color: #7d7d7d;
}

.ticket-op-box ul {
    margin: 0;
    padding: 0;
    margin-top: 5px;
    font-size: 13px;
    color: #7d7d7d;
}

.ticket-op-box li {
    list-style: none;
    font-size: 14px;
}

.ticket-op-box ul i {
    font-size: 12px;
}

.ticket-op-box:hover {
    border: 1px solid #000423;
    background-color: #e4e4e4;
    cursor: pointer;
}

.top-ticket-bar {
    background-color: #7835c0;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    margin-bottom: 10px;
    color: #fff;
}

.top-ticket-bar input {
    background-color: #591a9c;
    border: 1px solid #7835c0;
    border-radius: 3px;
    width: 300px;
    font-size: 16px;
    padding: 7px;
    color: #fff;
}

.top-ticket-bar input::placeholder {
    color: #7fc6ff;
}

.top-ticket-bar span {
    font-size: 18px;
    font-weight: lighter;
    margin-left: 50px;
}

.tkt-msg-usr {
    background-color: #fcffc9;
    border: 1px solid #FFC107;
    margin-right: 35%;
    margin-bottom: 5px;
    padding: 28px;
    border-radius: 25px 25px 25px 0px;
    font-size: 16px;
    color: #333;
}

.tkt-msg-usr h5 {
    font-weight: lighter;
}

.tkt-msg-usr span {
    font-size: 12px;
    font-weight: normal;
}

.tkt-msg-std {
    background-color: #ffffff;
    border: 1px solid #2d005d;
    margin-left: 35%;
    margin-bottom: 5px;
    padding: 28px;
    border-radius: 25px 0px 25px 25px;
    font-size: 16px;
    text-align: right;
    color: #333;
}

.tkt-msg-std h5 {
    font-weight: lighter;
}

.tkt-msg-std span {
    font-size: 12px;
    font-weight: normal;
}

.st-bar-opts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    padding: 5px;
}

.st-bar-opts button {
    margin-bottom: 10px;
}

.form-login {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    width: 350px;
    margin: auto;
    margin-top: 50px;
}

.form-login input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #623a8b;
    outline: none;
    font-size: 16px;
    padding-left: 3px;
}

.form-login input:focus {
    box-shadow: 0 3px #b084db44;
    transition: all 0.2s;
}

.form-login input:not(:focus) {
    transition: all 0.2s;
}

.form-login button {
    border: 1px solid #2d005d;
    background-color: #2d005d;
    color: #fff;
    border-radius: 5px;
    padding: 6px;
    width: 90px;
    font-size: 14px;
    cursor: pointer;
}

.form-login button:hover {
    background-color: #6834a0;
    border-color: #6834a0;
    cursor: pointer;
    transition: all 0.2s;
}

.form-login button:not(:hover) {
    transition: all 0.2s;
}

.form-login a {
    text-align: center;
    margin-left: 10px;
}

.form-login-inputs {
    margin: 20px;
}

.form-text {
    margin: auto;
    width: 320px;
    color: #fff !important;
    margin-top: 10px;
    text-align: center;
}

.form-login-alert {
    text-align: center;
    font-size: 12px;
    color: #FF5722;
    background-color: #eee;
    padding: 2px;
    border-radius: 4px;
}

.form-login-success {
    background-color: #cbffa2;
    font-size: 12px;
    color: #3baf40;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
}

.pg-login {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pg-login-form-mobile {
    display: none;
}

.pg-login-logo {
    display: flex;
    flex-flow: column;
    flex: 1;
    align-items: center;
    height: 100vh;
    background-color: #15002c;
    background-image: url(../images/fundo-sis-eaula-facu.png);
}

.pg-login-logo img {
    margin-top: 45px;
}

.pg-login-form {
    display: flex;
    flex-flow: column;
    flex: 2;
    justify-content: center;
    align-items: center;
}

.pg-login-alert-red {
    padding: 10px;
    color: #fff;
    background-color: #f44336;
    font-size: 16px;
}

.pg-login-alert-green {
    padding: 10px;
    color: #fff;
    background-color: #4CAF50;
    font-size: 16px;
}

.pg-login-input {
    display: flex;
    flex-direction: column;
    width: 450px;
    align-items: center;
    margin-top: 10px;
}

.pg-login-input input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #623a8b;
    outline: none;
    font-size: 18px;
    padding: 6px 0 7px;
    background-color: transparent;
}

.pg-login-input input:focus {
    box-shadow: 0 3px #b084db44;
    transition: all 0.2s;
}

.pg-login-input input:not(:focus) {
    transition: all 0.2s;
}

.pg-login-input button {
    width: 100%;
    height: 55px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
}

.pass-forgot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    font-size: 18px;
    text-transform: uppercase;
    color: #2d005d !important;
    border: 2px solid #2d005d;
}

.pass-forgot:hover {
    text-decoration: none;
    background-color: #2d005d;
    color: #fff !important;
    transition: all 0.2s;
}

.pass-forgot:not(:hover) {
    transition: all 0.2s;
}

.pg-login-input #btn-login {
    color: #fff;
    background-color: #2d005d;
}

.pg-login-input #btn-login:hover {
    background-color: #6834a0;
    border-color: #6834a0;
    cursor: pointer;
    transition: all 0.2s;
}

.pg-login-input #btn-login:not(:hover) {
    transition: all 0.2s;
}

.pg-login-form p {
    font-size: 25px;
    font-weight: lighter;
}

.pg-login-footer {
    display: flex;
    margin-top: 10px;
    width: 450px;
    justify-content: space-between;
    align-items: inherit;
    color: #2d005d;
}

.pg-login-footer a {
    font-size: 14px;
    padding: 10px;
    border: none;
    text-transform: none;
    color: #989898;
}

.pg-login-ads {
    font-size: 19px;
    text-align: center;
    margin-top: 20px;
    text-decoration: underline;
}

.pg-login-ads a {
    color: #2d005d;
}

#inputSelectOp {
    background-color: #fff !important;
    border-top: 1px solid #2d005d !important;
    border-left: 1px solid #2d005d !important;
    border-right: 1px solid #2d005d !important;
    border-bottom: 1px solid #2d005d !important;
}

#inputTextAr {
    background-color: #fff !important;
    border-top: 1px solid #2d005d !important;
    border-left: 1px solid #2d005d !important;
    border-right: 1px solid #2d005d !important;
    border-bottom: 1px solid #2d005d !important;
}

.top-fin-panel {
    margin: 10px;
    padding: 10px;
    background-color: #e5e5e5;
    border-radius: 17px;
}

.top-fin-panel select {
    padding: 2px;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
}

.top-fin-panel input {
    padding: 2px;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
}

#period_error {
    display: none;
    font-size: 12px;
    color: red;
    font-style: italic;
}

#att_menu_courses {
    margin: 10px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.card-info-fin-info {
    background-color: #fff9c0;
    padding: 10px;
    margin: 10px;
}

.card-info-fin-info h4 {
    padding: 8px;
    color: #f44336;
    font-size: 18px;
    text-align: center;
}

/* Bootstrap Mods */

a {
    color: #2d005d;
}

a:hover {
    color: #623a8b;
}


.badge-success {
    color: #fff;
    background-color: #8BC34A;
}

.badge-info {
    color: #fff;
    background-color: #2d005d;
}

.badge-warning {
    color: #ffffff;
    background-color: #FF9800;
}

.badge-silver {
    width: 110px;
    color: #070707;
    background-color: #e6e6e6;
    border: 1px solid #c1c1c1;
}

.modal-content {
    border-radius: 13px;
    background-color: #ffffff;
}

.modal-header {
    border-bottom: 1px solid #e0e0e0;
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
}

.progress-bar {
    font-size: 14px;
    background-color: #2d005d;
    color: #fff;
}

.progress {
    height: 1.4rem;
}

.dropdown-menu {
    position: absolute;
    visibility: hidden;
    box-shadow: 0px 2px 4px -2px #333;
    border: unset;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.dropdown-menu.show {
    max-height: 600px;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    visibility: visible;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.dropdown-item {
    padding: 0.40rem 1.5rem;
    color: #080808;
    text-decoration: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #000000;
    text-decoration: none;
    background-color: #d0d0d0;
    transition: all 0.2s;
}

.dropdown-item:not(:hover) {
    transition: 0.2s;
}

.dropdown-menu i {
    width: 20px;
    height: 20px;
    margin: auto;
    padding: 5px;
    margin-left: -10px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #00073a;
    background-color: #e7e7e7;
    text-decoration: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .03);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.table thead th {
    border-top: none;
}

.breadcrumb {
    background-color: #f7f7f7;
    padding: 0.4rem 1rem;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    border-radius: .15rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    font-size: 12px;
}

.nav-pills .nav-link {
    color: #525252;
    font-size: 14px;
    background-color: #f7f7f7;
    border-left: 2px solid #2d005d;
    border-top: 1px solid #e0e0e0;
    font-weight: 500;
}

.nav-pills .nav-link:hover {
    background-color: #e6e6e6;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    font-size: 14px;
    background-color: #2d005d;
    border-bottom: 2px solid #060c31;
    border-left: none;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    color: #333;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    font-weight: bold !important;
}

.card-header i {
    color: #676767;
}

.btn {
    border-radius: 10px;
}

.btn-light {
    color: #868686;
}

.modal-body {
    font-size: 14px;
}

.form-control {
    border-radius: 20px;
}

.form-control:disabled,
.form-control[readonly] {
    color: #b5b5b5;
    background-color: #ffffff;
    border-bottom: 1px solid #e4e4e4;
}

.btn-secondary {
    color: #383838;
    background-color: #e8e8e8;
    border-color: #d4d4d4;
}

.btn-secondary:hover {
    color: #383838;
    background-color: #dcdcdc;
    border-color: #d4d4d4;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #383838;
    background-color: #dcdcdc;
    border-color: #d4d4d4;
}

.dropdown-toggle {
    white-space: nowrap;
}

.btn-primary:active {
    color: #fff;
    background-color: #2d005d;
    border-color: #2d005d;
}

.btn-success {
    color: #fff;
    background-color: #2d005d;
    border-color: #2d005d;
}

.btn-success:hover {
    color: #fff;
    background-color: #451579;
    border-color: #451579;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #170030;
    border-color: #2d005d;
}

.btn-success.focus,
.btn-success:focus {
    box-shadow: none !important;
}

.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: none !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #070707;
}

.navbar-icon {
    margin: 10px;
    font-size: 14px;
    padding: 14px;
    padding-top: 5px;
    border-radius: 4px;
    padding-bottom: 5px;
    color: #070707 !important;
    cursor: pointer;
    border: 1px solid #cacaca;
    background-color: #ffffff;
}

.navbar-icon:hover {
    background-color: #ffffff;
    text-decoration: none !important;
    color: #2d005d !important;
    border-color: #2d005d;
    transition: all 0.2s;
}

.navbar-icon:not(:hover) {
    transition: all 0.2s;
}

.page-link {
    color: #333;
    background-color: #e7e7e7;
    border: 1px solid #d6d6d6;
}

.page-item.active .page-link {
    z-index: 1;
    color: #000;
    background-color: #d4d4d4;
    border-color: #d0d0d0;
}

.page-link:hover {
    color: #5f5f5f;
}

.page-link:focus {
    box-shadow: none;
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #2d005d;
    border-color: #2d005d;
}

.input-search {
    float: left;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    background-color: #fff;
    width: 230px;
    height: 32px;
    font-size: 12px;
    padding: 8px;
    outline: none;
}

.input-search-button {
    float: left;
    border: 1px solid #ccc;
    background-color: #e8e8e8;
    color: #7d7d7d;
    height: 31px;
    margin-left: 2px;
    border-radius: 5px;
    font-size: 14px;
}

.input-search-button:hover {
    background-color: #dcdcdc;
    transition: all;
    cursor: pointer;
}

.input-search-button:focus {
    outline: none;
}

.load-search {
    border-radius: 3px;
    float: left;
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #bfbfbf;
    font-size: 14px;
}

.ipt-icon-search {
    float: left;
    height: 32px;
    width: 30px;
    line-height: 30px;
    background-color: #fff;
    text-align: center;
    margin-left: 10px;
    margin-right: -11px;
    border: 1px solid #ccc;
    border-radius: 3px;
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 14px;
    color: #6c757d;
}

.graph-number {
    width: 120px;
    background-color: #efefef;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    margin: 10px;
}

.graph-number p {
    font-size: 16px;
    font-weight: lighter;
}

.graph-number span {
    font-size: 29px;
    line-height: 2px;
    font-weight: normal;
}

.graph-view {
    background-color: #efefef;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    margin: 10px;
}

.graph-view p {
    font-weight: lighter;
    text-align: center;
    font-size: 16px;
}

.bar-welcome {
    margin: 10px;
    background-color: #e5e5e5;
    padding: 15px;
}

.bar-welcome h4 {
    font-weight: normal;
}

.bar-home-title {
    margin: 5px;
    background-color: #eee;
    padding: 15px;
}

.bar-home-title h4 {
    font-weight: lighter;
    font-size: 20px;
}

.act-icon {
    background-color: #dbdbdb;
    color: #343434;
    padding: 3px;
    border-radius: 2px;
    font-size: 14px;
    border: 1px solid transparent;
}

.act-icon:hover {
    background-color: #ccc;
    cursor: pointer;
    border: 1px solid #b3b3b3;
    transition: all 0.5s;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #383838;
    background-color: #dcdcdc;
    border-color: #d4d4d4;
}

.loading-transaction-panel {
    width: 100%;
    background-color: #f9f9f9;
    height: 447px;
    margin: auto;
    padding-top: 185px;
}

.home-progress-box {
    padding: 10px;
}

.home-progress-box-title {
    background-color: #f3f3f3;
    text-align: center;
    border-radius: 10px;
    padding: 42px;
}

.home-progress-box-title h1 {
    font-size: 28px;
    font-weight: bold;
}

.home-progress-box-title p {
    font-size: 14px;
    margin-bottom: 8px;
}

.home-progress-box-title i {
    color: #212529;
}

.home-progress-box-widgets {
    padding: 10px;
    text-align: center;
}

.home-progress-box-tile-red {
    color: #FF5722;
    margin-top: 35px
}

.home-progress-box-tile-red h1 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.home-progress-box-widget {
    background-color: #f3f3f3;
    padding: 15px;
    border-bottom: 2px solid #2d005d;
    border-radius: 12px;
}

.home-progress-box-widget h1 {
    font-size: 18px;
}

.home-progress-box-widget p {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 10px;
}

.home-progress-box-widget h1 i {
    color: #9e9e9e;
}

.widget-finished h1 i {
    display: none;
}

.widget-finished i {
    font-size: 50px;
    color: #8BC34A;
    margin-bottom: 12px;
    margin-top: 10px;
}

.widget-finished p {
    font-size: 12px;
    margin: 0;
    color: #070707;
}

.widget-blocked h1 i {
    display: none;
}

.widget-blocked i {
    font-size: 54px;
    color: #9e9e9e;
    line-height: 90px;
}

/* Course Deadline Widget */

.home-course-deadline {
    background-color: #f3f3f3;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 10px;
}

.home-course-deadline-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-course-deadline-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.home-course-deadline-info {
    flex: 1;
}

.home-course-deadline-info h2 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    color: #7a7a7a;
}

.deadline-text-main {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 2px 0;
    color: #212529;
}

.deadline-text-sub {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.deadline-progress-container {
    margin-top: 15px;
}

.deadline-progress-container .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.deadline-progress-bar {
    border-radius: 4px;
    transition: width 0.6s ease;
}

.deadline-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #a1a1a1;
}

/* Deadline States */

.deadline-safe {
    border-bottom: 3px solid #8BC34A;
}

.deadline-safe .home-course-deadline-icon {
    background-color: #e8f5e9;
    color: #4CAF50;
}

.deadline-safe-bar {
    background-color: #8BC34A;
}

.deadline-warning {
    border-bottom: 3px solid #FF9800;
}

.deadline-warning .home-course-deadline-icon {
    background-color: #fff3e0;
    color: #FF9800;
}

.deadline-warning-bar {
    background-color: #FF9800;
}

.deadline-danger {
    border-bottom: 3px solid #F44336;
}

.deadline-danger .home-course-deadline-icon {
    background-color: #ffebee;
    color: #F44336;
}

.deadline-danger-bar {
    background-color: #F44336;
}

.home-section-title {
    margin: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #929292;
}

.navbar-light .navbar-toggler {
    color: #929292;
    border-color: #9e9e9e;
}

.logo-image {
    background-image: url('../images/logo-principal.png');
    width: 130px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
}

.navbar-toggler {
    padding: 8px;
    font-size: 16px;
    line-height: 1;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: .25rem;
}

.courses-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.courses-card-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

.btn-ava-dark-mode {
    padding: 2px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #cacaca;
    margin: 10px;
    border-radius: 10px;
    color: #070707;
}

.btn-ava-dark-mode:hover {
    border: 1px solid #cacaca;
    color: #2d005d;
    background-color: #cacaca;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ava-dark-mode:not(:hover) {
    transition: all 0.2s;
}

.warn {
    background-color: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #c0392b;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.warn p {
    margin: 0;
}

.wcolor {
    color: #2d005d;
    background-color: transparent;
    border: 1px solid #2d005d;
}

.menu-mobile-std {
    color: #f8f9fa;
    background-color: #2d005d;
    border-color: transparent;
    width: 100%;
    border-radius: 5px;
}

.menu-mobile-std:hover {
    background-color: #8352b8;
    border-color: transparent;
    color: #fff;
}

.page-botton {
    position: fixed;
    width: 100%;
    bottom: 0;
    color: #9f9f9f;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #efefef;
    background-color: rgb(255 255 255 / 95%);
}

.contract-terms-view-tools {
    padding: 3px;
    margin-bottom: -5px;
    border-radius: 5px;
    padding-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    background-color: #dcdcdc;
}

.contract-terms-view {
    font-family: Time News Roman;
    padding: 10px;
    overflow-y: auto;
    max-height: 500px;
    border: 1px solid #c1c1c1;
    border-radius: 5px;
    background-color: #fff;
    text-transform: uppercase;
    text-align: justify;
}

.contract-terms-view h1 {
    font-weight: 600;
    font-size: 22px;
    text-decoration: underline;
}

.contract-terms-view h2 {
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
}

.video-lesson-player {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
}

.video-lesson-player iframe {
    width: 100%;
    height: 100%;
    border: unset;
}

.avatab {
    margin-top: 10px;
    overflow: hidden;
    display: flex;
}

.avatab button {
    background-color: inherit;
    flex: 1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    color: #a1a1a1;
    border-bottom: 1px solid #e3e3e3;
}

.avatab button.active {
    border-top: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-bottom: unset;
    color: #2d005d;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.avatab button.active:first-child {
    border-top: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-left: unset;
    border-bottom: unset;
    border-top-right-radius: 10px;
    border-top-left-radius: unset;
}

.avatab button.active:last-child {
    border-top: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-right: unset;
    border-bottom: unset;
    border-top-left-radius: 10px;
    border-top-right-radius: unset;
}

.avatab button:hover {
    color: #2d005d;
    transition: all 0.2s;
}

.avatab button:not(:hover) {
    transition: all 0.2s;
}

.avatabcontent {
    display: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1350px;
    }
}

@media (max-width: 1245px) {

    #itemslist td a {
        display: block;
        padding: 3px;
        margin-bottom: 3px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1150px;
    }

    #itemslist td a {
        display: block;
        padding: 3px;
        margin-bottom: 3px;
    }

    .home-progress-box-widget h1 {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .min-box-op {
        margin-left: -2px;
    }

    .max-box-op {
        margin-left: -2px;
    }

    .box-op {
        margin-left: 30px;
    }

    .dropdown,
    .dropup {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .menu-home-dropdown-2 {
        display: none;
    }
}

@media (max-width: 992px) {
    .max-box-op {
        display: none;
    }

    .float-navbar {
        display: none;
    }

    .hometop-box {
        height: 75px;
        padding-top: 17px;
    }

    .navbar-nav {
        justify-content: center;
        flex-direction: row;
        margin-top: 20px;
        text-align: center;
    }

    .home-progress-box-title {
        margin: 3px;
    }

    .home-progress-box-widget {
        margin-bottom: 5px;
    }
}

@media (max-width: 690px) {
    .course-select {
        display: flex;
        flex-direction: column;
        width: 90vw;
    }

    .pg-login-logo {
        display: none;
    }

    .pg-login-form-mobile {
        display: block;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .pg-login-form p {
        display: none;
    }

    .pg-login-footer p {
        display: block;
        font-size: 16px;
    }
}

@media (max-width: 620px) {
    #itemslist td:first-child {
        border-radius: unset;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    #itemslist td:last-child {
        border-radius: unset;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .table-itemslist tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .table-itemslist thead {
        display: none;
    }

    .table-itemslist td {
        border: 1px solid #ddd !important;
    }

    .st-bar-opts {
        flex-direction: column;
        text-align: center;
    }

    .itemslist-badge {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .btn {
        width: 100%;
    }

    .st-bar-opts {
        display: block;
    }

    .pg-login-input {
        width: 380px;
    }

    .pg-login-footer {
        width: 380px;
    }

    .page-botton {
        display: none;
    }
}

@media (max-width: 440px) {
    #inputHelpSearch {
        width: 220px;
    }

    .pg-login-input {
        width: 320px;
    }

    .pg-login-footer {
        width: 320px;
    }

    .pg-login-input button {
        font-size: 14px;
    }

    .pg-login-ads {
        font-size: 16px;
    }
}

@media (max-width: 357px) {
    #inputHelpSearch {
        width: 170px;
    }

    .pg-login-input {
        width: 280px;
    }

    .pg-login-footer p {
        width: 280px;
        font-size: 12px;
        font-weight: normal;
    }

    .pg-login-footer a {
        font-size: 12px;
    }

    .pg-login-ads {
        font-size: 14px;
    }
}