html {
    width: 100%;
}

body {
    overflow-x: hidden !important;
}

body.show-spinner > main {
    overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > * {
    opacity: 0;
}

/* Spinner */
body.show-spinner::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0.3);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    position: fixed;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

small,
.small {
    font-size: 14px;
}

.select2-container--bootstrap .select2-results__option[aria-selected="true"] {
    background: #c7c7c7;
    color: #000000;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

.badge {
    font-size: 14px;
}
.listing-card-container .listing-desc,
.listing-card-container .listing-heading {
    height: auto;
}

.bg-grey {
    background-color: #d2d2d2;
}

.error {
    color: #c43d4b;
}
.logo {
    width: 150px;
    height: 70px;
    background-size: contain;
}
.logo-single {
    width: 215px;
    height: 107px;
    margin-bottom: 15px;
    background-size: contain;
}

.menu .main-menu ul li span.badge {
    padding-top: 2px;
    padding-bottom: 2px;
}

.auth-card .form-side {
    width: 100%;
    padding: 20px 55px 100px;
}

.logo-single {
    width: 100%;
    height: 30%;
    margin-bottom: 15px;
    background-size: contain;
}

.img-custom{
    width: 60% !important;
    height: 40% !important;
}

.badge.badge-pill {
    padding-right: 1em;
    padding-left: 1em;
    font-size: 12px;
}

.btn {
    padding: 0.3rem 1rem 0.3rem 1rem;
}

.error-page__title {
    font-size: 60px;
    line-height: 0.6333333333;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 37px;
    
  }

  .custom-image{
    width: 150px !important;
    height: 100px !important;
  }
  .client-image{
    width: 150px !important;
    height: 70px !important;
  }