/* Default styles for body */
body {
  transform: scale(0.9);
  transform-origin: top left;
  width: 111.11%; /* To fill the viewport horizontally (1 / 0.9) */
  height: 111.11%; /* To fill the viewport vertically (1 / 0.9) */
  overflow: hidden; /* Hide any content that overflows the viewport */
}

/* Media query for viewport widths bellow 991.98px */
/*@media (max-width: 991.98px) {
  body {
    transform: scale(1.0);
    transform-origin: top left;
    width: 100.00%;
    height: 100.00%;
    overflow: hidden;
  }
}*/

/* Animation keyframes for up and down movement */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Move up by 20px */
    }
}

/* Apply animation to the button */
.animated-button {
    animation: bounce 2s infinite; /* Adjust duration and repetition as needed */
}

::-webkit-scrollbar {
    display: none;
}

.modal-fullscreen {
    width: auto;
    max-width: none;
    height: 50%;
    margin: 0 auto;
    overflow: auto;
}

.modal-backdrop.show {
    width: 100%;
    height: 100%;
}

.sticky-bottom {
    bottom: -102px!important;
}

.splash-bg-2 {
    background-image: url(../../aps/img/splash.webp);
    background-size: contain;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #595959;
}

.top-header {
    width: auto;
    height: 60px;
    background-color: #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
}

.top-header .navbar .nav-button a {
    font-size: 25px;
    color: #212529;
}

a {
    text-decoration: none;
}

.forgot-link {
    color: #646464;
}

.separator {
    display: flex;
    align-items: center;
}

.separator .line {
    height: 1px;
    flex: 1;
    background-color: #dee2e6;
}

.social-login a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    background-color: #eaebeb;
    border-radius: 50%;
}

.bg-facebook {
    background-color: #3b5998 !important;
}

.bg-pinterest {
    background-color: #c8232c !important;
}

.bg-linkedin {
    background-color: #0072b1 !important;
}

.bg-theme {
    background: linear-gradient(to right, #fcc201, #eeb609);
}

.page-footer {
    width: auto;
    height: 60px;
    background-color: #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-ecomm {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    z-index: 6;
}

.mainpage a {
    text-decoration: none;
}

/* Add padding to the table rows */
#dataTable_filter {
    float: left;
    margin-bottom: 10px;
    padding-right: 10px;
}
#dataTable td {
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
}
#dataTable_info {
    float: left;
    margin-bottom: 5px;
}
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0;
}
#dataTable_length {
    float: left;
    margin-bottom: 10px;
}
#dataTable_paginate {
    float: left;
}
#dataTable_previous {
    padding-left: 0px;
}