:root {
    --primary: #0854A6;
    --white: #ffffff;
    --black: #333333;
    --gray: #cecece;
    --buttonborder: #E7E5E5;
    --light-gray: #f5f5f5;
}

@font-face {
    font-family: poppins;
    src: url('../font/Poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: poppins-bold;
    src: url('../font/Poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: poppins-medium;
    src: url('../font/Poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: poppins-black;
    src: url('../font/Poppins/Poppins-Black.ttf');
}

.primary-color {
    color: var(--primary);
}

body{
    width: 100%;
    height: 100vh;
    font-family: poppins;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-color: var(--light-gray);
    background-size: cover;
}

.uab-navbar{
    background-color: var(--primary) !important;
    z-index: 1;
}

.logo {
    width: 120px;
    height: auto;
}

/* body */

label {
    font-size: 12px;
}

input {
    font-size: 12px !important;
}

select{
    font-size: 12px !important;
}

table {
    font-size: 12px !important;
}

.img-uabpay{
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 10px;
}

.img-qr{
    width: 30%;
}

.img-manulife {
    width: 100%;
    height: auto;
}

btn-xs {
    font-size: 12px !important;
}

.btn-uab {
    background-color: var(--white);
    color: var(--primary);
    border-radius: 5px;
    border-bottom: 2px solid var(--buttonborder);
}

.btn-uab-primary {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
}

.btn-huge {
    padding: 1em;
    font-size: 1em;
}

.q-number {
    font-family: poppins-bold;
    font-size: 3em;
    color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 20px;
}

.text-bold {
    font-family: poppins-medium;
}


::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #999999; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

@media screen and (max-width: 768px) {
    .servicing {
        max-width: 100% !important;
    }

    .cust-scroll {
        max-height: 40vh !important; 
    }
}