label {
    font-weight: 400;
}

body {
    overflow-y: scroll;
    font-family: 'unimed_sans';
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

option {
    font-weight: 300;
}

.outleftcontainerunderlogin {
    width: 35%;
    position: fixed;
    height: 100%;
    background-image: url("cap.jpg");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-image {
    width: 35%;
    position: fixed;
    height: 100%;
    background-color: #74747480;
    /* opacity: 0.5; */
    font-weight: 400;
    color: #ffffff;
}

.maincontainerlogin {
    width: calc(100% - 35%);
    left: 35%;
    height: 100%;
    float: left;
    position: relative;
}

@media (max-width: 960px) {
    .maincontainerlogin {
        width: 100%;
        left: 0px;
        height: auto;
        float: none;
        position: absolute;
        margin-top: 25%;
    }
}

.btn.btn-lg {
    min-width: 150px;
}

/* AJAX RESPONSE */
.ajax_response {
    position: fixed;
    padding: 20px 20px 0 0;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
}

.ajax_response .message {
    color: #000;
    font-size: 0.8em;
    font-weight: 400;
    overflow: hidden;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 15px 20px 15px;
    background: #333333;
    margin-bottom: 15px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.ajax_response .message:before {
    flex-basis: 0;
    margin: -5px 15px 0 0 !important;
    color: rgba(0, 0, 0, 0.5);
}

.ajax_response .message_time {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4%;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
}

.ajax_response .message.success {
    background: #7AC0A0;
}

.ajax_response .message.info {
    background: #C68DBE;
}

.ajax_response .message.warning {
    background: #FFE191;
}

.ajax_response .message.error {
    background: #F59695;
}

/* LOADING INTERMITATE PROGRESS */
.indeterminate-progress-bar {
    height: 2px;
    position: relative;
    overflow: hidden;
}

.indeterminate-progress-bar__progress {
    background-color: #3b82f6;
    position: absolute;
    bottom: 0;
    top: 0;
    width: 50%;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: indeterminate-progress-bar;
}

@keyframes indeterminate-progress-bar {
    from {
        left: -50%;
    }

    to {
        left: 100%;
    }
}

.horizontal-scroll> ::-webkit-scrollbar {
    height: 10px !important;
}

::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track> {
    box-shadow: inset 0 0 10px 10px rgba(0, 0, 0, 0.2);
    border: solid 3px transparent;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 10px 10px rgba(0, 0, 0, 0.2);
    border: solid 3px transparent;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 10px 10px rgba(0, 0, 0, 0.4);
    border: solid 3px transparent;
    border-radius: 15px;
}

.footer {
    position: absolute;
    padding-top: 2px;
    margin-left: 280px;
    width: calc(100% - 280px);
    height: 30px;
}

.footer a {
    font-weight: 400;
}

@media (max-width: 720px) {
    .footer {
        width: 100%;
        margin-left: 0px;
    }
}

/*DEFAULT PAGINATOR*/
.paginator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.paginator a, .paginator span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #cccccc;
    border-right: 0;
    color: #555555;
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition-duration: 0.2s;
}

.paginator a:first-of-type {
    -webkit-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    -moz-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    border-radius: var(--radius-normal) 0 0 var(--radius-normal);
}

.paginator a:last-of-type {
    border-right: 1px solid #cccccc;
    -webkit-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    -moz-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
}

.paginator a:hover {
    background: #BADDCC;
    background-size: 200%;
}

.paginator span {
    background: #00995D;
    color: #ffffff;
}