
#scrollToTopBtn{
    position: fixed;
    bottom: 24px;
    right: 8px;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(180);
    transition: all 0.5s ease-in-out;
    background: url('/assets/images/toTop.svg') center center / cover no-repeat;
}

#scrollToTopBtn.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.someError{
    margin-top: 4px;
    font-size: 12px!important;
    line-height: 14px!important;
    color: var(--href-color-light)!important;
}

.someSuccess{
    font-size: 16px!important;
    line-height: 18px!important;
    font-weight: bold;
    color: var(--color-violet)!important;
}

.pagination .page-item button{
    color: #222;
}

.pagination .page-item.active  .page-link{
    background: #222;
    color: #fff;
    border-color: #222;
}

.highlight {
    color: var(--href-color-light);
}

.search-result td{
    cursor: pointer;
}
.search-result .category{
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.8em;
}
.search-result .title{
    font-size: 1.2em;
}
.search-result .solution{
    font-weight: normal;
    //font-style: italic;
    line-height: normal;
}

#calendar_area .cal-over{
    user-select: none;
}

.page-box img{
    max-width: 100%;
}

.next-month-btn, .prev-month-btn{
    cursor: pointer;
}

.h-32 {
    height: 32px;
}
.h-24 {
    height: 24px;
}
.h-16 {
    height: 16px;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background: var(--color-bg-default);
    overflow: hidden
}
