
.display_none{
    display: none !important;
}

.cursor_pointer{
    cursor: pointer !important;
}

.has-error{ border: 1px solid red !important; }
.has-error .select2-selection { border-color: #a94442 !important; }

.teacher_avatar{
    background-position: 50%;
}

/* loading spinner */
.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
    font-size:70px;
    color:#337ab7;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}
/* end loading spinner */

.dropdown-toggle::after {
    margin-bottom: -6px;
}

.transparent_background{
    background: transparent;
    border: none;
}

.alert-success{
    z-index: 99999999 !important;
}

.alert-danger{
    z-index: 99999999 !important;
}

.section-bg-shape-metodo{
    background-color: white !important;
}

.background_grey{
    background-color: var(--nova-academia-grey);
}

.column_gap_0{
    column-gap: 0px !important;
}

.margin_left_15{
    margin-left: 15px !important;
}

.text_right{
    text-align: right !important;
}

.btn-success-web {
    color: #FFF;
    background-color: var(--nova-academia-red-3);
    border-color: var(--nova-academia-red-3);
}
.btn-success-web:hover {
    color: #FFF;
    background-color: var(--nova-academia-red-3);
    border-color: var(--nova-academia-red-3);
}

.title_course{
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.3px;
}

.name_file_text{
    font-size: 13px;
    cursor: none;
    color: #333;
}

.course_full{
    font-size: .8rem;
}

.course_exams{
    font-size: .8rem;
}

.simple-button i{
    margin: 0px 8px 0px 4px !important;
}

.font-weight-400 {font-weight: 400 !important;}
.font-weight-600 {font-weight: 600 !important;}
.shadow {filter:drop-shadow(4px 4px 22px rgba(0, 0, 0, 0.122))}
.fs-11 {font-size:11px !important;}
.swal2-close {outline:none !important;}
.swal2-close:focus {outline: 0;box-shadow: none !important;}
.fc-grey {color:#555;}


/* custom checkboxes */
.p5_checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.p5_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.p5_checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #000;
    border-radius: 3px;
}

.p5_checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.p5_checkbox input:checked ~ .checkmark {
    background-color: #A32530;
}

.p5_checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.p5_checkbox input:checked ~ .checkmark:after {
    display: block;
}

.p5_checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.p5_checkbox span {
    line-height: 25px;
}
.p5_checkbox_labelhref{
    color:black;
    text-decoration:underline;
}

/* end custom checkboxes */

/* Course Rates */

.list-style{
	list-style: none;
}
.course-review-head{
    font-weight: bold;
}

.user-name{
    font-size: 1.1rem;
    font-weight: bold;
}

.review-title{
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

#course-reviews {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--nova-academia-red-3);
}

.review-content{
    text-align: justify;
}
.review-author{
    color: var(--nova-academia-red-3);
    filter: opacity(0.8);
}
.fa-user-alt{
    border: 1px solid var(--nova-academia-red-3);
    padding: 0.5rem;
    border-radius: 1rem;
}
#img-rate{
    width: 20px;
}