@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
    background-color: #ffffff !important;
    font-family: 'Roboto', sans-serif;
}
.text-smanel-sm{
    font-size: 11px;
}

.border-radius {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.btn-smanel-primary {
     color: #ffffff;
     background-color: #64A7FA;
     border-color: #64A7FA;
 }

 .btn-smanel-primary-outline {
    color: #000000;
    background-color:white;
    border-color: #64A7FA;
}
.btn-smanel-primary-outline:hover {
    color: #fff;
    background-color:#64A7FA;
    border-color: #64A7FA;
}

.btn-smanel-primary:hover {
    color: #000;
    background-color: #ffffff;
    border-color: #64A7FA;
}
.btn-outline-smanel-primary {
    color: #0BA9E0;
    border-color: #0BA9E0;
}
.btn-smanel-purple {
    color: #fff;
    background-color: #143A62;
    border-color: #143A62;
}
.btn-outline-smanel-purple {
    color: #143A62;
    border-color: #143A62;
}
.btn-smanel-dark-purple {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}
.btn-smanel-dark-purple:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #000000;
}
.btn-outline-smanel-dark-purple {
    color: #0B2353;
    border-color: #0B2353;
}
.btn-smanel-dark {
    color: #fff;
    background-color: #212429;
    border-color: #212429;
}
.btn-outline-smanel-dark {
    color: #212429;
    border-color: #212429;
}
.btn-outline-smanel-gray {
    color: #828282;
    border-color: #828282;
}
.btn-smanel-gray {
    color: #fff;
    background-color: #828282;
    border-color: #828282;
}


.bg-smanel-gray-lvl1
{
    background-color: #f0f4f7 !important;
}
.bg-smanel-gray-lvl2
{
    background-color: #e0e0e0 !important;
}
.bg-smanel-gray-lvl3
{
    background-color: #BDBDBD !important;
}
.bg-smanel-gray-lvl4
{
    background-color: #828282 !important;
}
.bg-smanel-gray-lvl5
{
    background-color: #4F4F4F !important;
}
.bg-smanel-black
{
    background-color: #212429 !important;
}
.bg-smanel-white{
    background-color: #ffffff !important;
}
.bg-smanel-dark-purple
{
    background: #0B2353 !important;
}
.bg-1to1-main
{
    background: #64A7FA !important;
}
.bg-smanel-purple
{
    background: #143A62 !important;
}
.bg-smanel-main
{
    background: #64A7FA !important;

}
.bg-smanel-blue
{
    background: #0BA9E0 !important;
}

.text-smanel-white{
    color: #ffffff !important;
}
.text-smanel-gray
{
    color: #f0f4f7 !important;
}
.text-smanel-dark-purple
{
    color: #000000 !important;
}
.text-smanel-black
{
    color: #000000 !important;
}
.text-smanel-white
{
    color: #ffffff !important;
}
.text-smanel-yellow
{
    color: #64A7FA !important;
}
.text-smanel-purple
{
    color: #143A62 !important;
}
.text-smanel-blue
{
    color: #0BA9E0 !important;
}
.text-smanel-gray-lvl1
{
    color: #f0f4f7 !important;
}
.text-smanel-gray-lvl2
{
    color: #e0e0e0 !important;
}
.text-smanel-gray-lvl3
{
    color: #BDBDBD !important;
}
.text-smanel-gray-lvl4
{
    color: #828282 !important;
}
.text-smanel-gray-lvl5
{
    color: #4F4F4F !important;
}
.text-smanel-black
{
    color: #212429 !important;
}
.font-weight-300{
    font-weight: 300 !important;
}
.font-weight-400{
    font-weight: 400 !important;
}
.font-weight-500{
    font-weight: 500 !important;
}
.font-weight-600{
    font-weight: 600 !important;
}
.font-weight-700{
    font-weight: 700 !important;
}
.font-weight-800{
    font-weight: 800 !important;
}
.font-weight-900{
    font-weight: 900 !important;
}
.loader {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #4f4f4f;
    border-bottom: 2px solid #4f4f4f;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;

}
.center-spinnerdiv{
    margin: auto;
    width: 50px;
    /*padding: 10px;*/
}


/**
*
 *
 *start of mpesa check

 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4caf50;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 10.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: #ffffff;
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4caf50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 1.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 1.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #ffffff;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}
@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/*
*End of mpesa check animation
 */

.text-smanel-125
{
    font-size: 125px;
}
.text-smanel-50
{
    font-size: 50px;
}
.text-smanel-75
{
    font-size: 75px;
}

.btn-primary {
    color: #fff;
    background-color: #64A7FA;
    border-color: #64A7FA;
}
.btn-primary:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #64A7FA;
}
.btn-primary:focus {
    color: #000000;
    background-color: #64A7FA;
    border-color: #64A7FA;
}
.btn-primary:active {
    color: #000000;
    background-color: #64A7FA;
    border-color: #64A7FA;
}
.base-amount {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
}
.base-amount a{
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    border-radius: .5rem;
    --text-opacity: 1;
    color: #545958;
    color: rgba(84,89,88,var(--text-opacity));
    box-shadow: 0 1px 3px 0 rgba(47,51,50,.08),0 1px 0 0 rgba(47,51,50,.08),0 0 0 1px rgba(47,51,50,.06),0 5px 15px 0 rgba(47,51,50,.04) !important;
    line-height: 1.57;
    letter-spacing: .2px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 2rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    -webkit-transition: all .15s;
    transition: all .15s;
}
.table-smanel tbody tr td{
    font-size: 15px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #64A7FA;
    border-color: #64A7FA;
  }
  .form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
  }
  .form-signin .checkbox {
    font-weight: 400;
  }
  .form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
  }
  .form-signin .form-control:focus {
    z-index: 2;
  }
  .form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
