/* your styles go here */
span.error {
    color: #cc3300;
}
.card-footer .pull-right {
    margin-left: 10px;
}
.card {
    position: relative;
}
.card .overlay {
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.card .overlay .fa {
     font-size: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #33b35a;
}
body.file_manager-index #files .card {
    height: calc(100% - 30px);
}
body.file_manager-index #files .card .card-body {
    display: flex;
    flex-direction: column;
}
.file-program {
    flex-grow: 1;
}
.file-title {
    margin-top: 8px;
    display: block;
    min-height: 57px;
}
nav.navbar .dropdown-menu {
    max-height: 300px;
    overflow-x: auto;
}
.notification .dropdown-item {
    background: #fff;
    padding: 10px 20px;
       font-size: 10px;
    color: #777;
    width: 100%;
}
.notification li {
    margin-bottom: 3px;
}
.notification  i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #33b35a;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}
.notification .notification-content {
    font-weight: bold;
    white-space: normal;
}
.notification small, .notification .notification-description {
    margin-left: 40px;
    white-space: normal;
}
.notification .notification-description {
    margin-top: -5px;
}
#files .card {
    text-align: center;
}
#files .fa {
      font-size: 10px;
}
ul.messenger-theme-flat {
    background: #ffffff;
}
ul.messenger-theme-flat .message-success {
    color: #33b35a;
}
.view-more {
       font-size: 10px;
    text-align: center;
    display: block;
    background-color: #f6f6f6;
    border-radius: 2px;
}
.right_ans {
    font-weight: bold;
}
.selected_right_ans {
    color: #28a745 !important;
    font-weight: bold;
}
.selected_wrong_ans {
    color: #dc3545 !important;
    font-weight: bold;
}
.ul-questions {
    list-style: none;
    padding-left: 15px;
}
.ul-questions li:before {
    font-family: FontAwesome;
    content: '\f096';
    margin-right: 15px;
}
.ul-questions li.selected_ans:before {
    font-family: FontAwesome;
    content: '\f046';
    margin-right: 15px;
}
.bg-blue-gray {
    background-color: #ced6dc !important;
}
.media-body {
    word-break: break-word;
}
.typeahead.dropdown-menu li.active {
    background-color: #f4f4f4;
}
.skills .badge {
      font-size: 10px;
    margin-right: 10px;
    padding: 4px 8px;
    line-height: 1;
}
.table-skill td {
    padding: .4rem .75rem;
    border: 0;
}
.input-group .bootstrap-select.form-control .dropdown-toggle {
    border: 1px solid #dee2e6;
    background-color: #fff;
}
.input-group .bootstrap-select.form-control .dropdown-toggle:hover {
    color: inherit;
}
table.table-condensed td {
    padding: 5px;
}
@keyframes scaleAnimation {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: $circle-length;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: $check-length;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#successAnimationCircle {
    stroke-dasharray: $circle-length $circle-length;
    stroke: #FFF;
}

#successAnimationCheck {
    stroke-dasharray: $check-length $check-length;
    stroke: #FFF;
}

#successAnimationResult {
    fill: #FFF;
    opacity: 0;
}

#successAnimation.animated {
    animation: 1s ease-out 0s 1 both scaleAnimation;

#successAnimationCircle {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle,
    0.3s linear 0.9s 1 both fadeOut;
}

#successAnimationCheck {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck,
    0.3s linear 0.9s 1 both fadeOut;
}

#successAnimationResult {
    animation: 0.3s linear 0.9s both fadeIn;
}
}