@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/* large screen */
@media only screen and (min-width: 768px) {
    
    .hide-on-large {
        display: none;
    }
}

/* small screen */
@media only screen and (max-width: 768px) {
    
    .hide-on-small {
        display: none;
    }

    #img-logo {
        width: 75% !important;
    }
}

[v-cloak]{
    display: none;
}

footer {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    padding-bottom: 1px;
    color: #7b532f;
}

#logo-container {
    top: 0;
    left: 0;
    padding: 20px 0 20px 20px;
}

#img-logo {
    width: 500px;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.5); /* Black background with opacity */
    z-index: 10000; /* Specify a stack order in case you're using a different order for other elements */
}

#overlay-content {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10001;
}

.sp-link {
    cursor: pointer;
}

.sp-link:hover {
    text-decoration: underline;
}

/* pagination style */
.page-item:not(.disabled) {
    cursor: pointer;
}

.page-item:not(.active) .page-link {
    color: #0097e6 !important;
}

.page-item.active .page-link {
    background-color: #0097e6 !important;
    border-color: #0097e6 !important;
    color: #fff !important;
}

.page-item.disabled .page-link {
    color: #000 !important;
}

.table-header-bottom {
    border-bottom: 2px solid #d3b697 !important;
}

/* for buttons on small screen */
.fixed-bottom-right {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
