a {
    cursor: pointer;
}

.mb-13 {
    margin-bottom: 13px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-130 {
    margin-bottom: 130px;
}

.fs-14 {
    font-size: 14px;
}

.bold {
    font-weight: bold;
}

.link-blue:hover {
    text-decoration: none;
    color: white;
}

.link-blue {
    background-color: #398FF2;
    text-align: center;
    color: white;
    padding: 15px 25px;
    border-radius: 24px;
    box-shadow: 1px 4px 0px rgba(105, 114, 148, 0.5);
    font-size: 16px;
    font-family: Helvetica Neue;
}

.link-blue img {
    margin-left: 17px;
}

input:focus {
    outline: none;
}

.pagination {
    font-size: 16px;
    line-height: 18px;
    justify-content: center;
    margin-bottom: 35px;
}

.pagination li {
    border: 1px solid #B8E0FF;
    border-radius: 3px;
    margin-right: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a {
    color: #4E4E4E;
    display: flex;
}

.active {
    background-color: #CAE6FC;
}


/* 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;
}

.error {
    width: 100%;
    color: red;
    margin-bottom: 20px;
}

.success {
    width: 100%;
    color: #398FF2;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 20px;
}

.text-error {
    color: red;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1051;
    display: none;
    width: 100%;
    height: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

.btn-load-more-news {
    background-color: #398ff2;
    border-radius: 18px;
    width: 141px;
    height: 36px;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    line-height: 32px;
    outline: none;
    user-select: none;
    margin-top: 10px;
}

.btn-load-more-news:focus {
    outline: 0;
}

.load-news {
    /* max-height: 344px; */
    overflow-y: scroll;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

input.error {
    color: black;
}

label.error {
    font-size: 13px;
    color: #CA151B;
    margin-bottom: 0px;
}

.btn-show-password-1,
.btn-show-password-3 {
    display: none;
}

@media screen and (max-width: 767px) {
    #news {
        height: 350px;
        overflow-y: scroll;
    }
    .main-content {
        order: 1;
        min-height: 0px !important;
    }
    .sidebar {
        order: 2;
    }
    .block-noti {
        min-height: 4px;
    }
}