/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #2C2B38;
    background-color: #F6F7FB;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border: none;
    vertical-align: middle;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {
    padding: 70px 0;
}

.form-group {
    margin: 0 0 10px 0;
}

.apply-form {
    background-color: #F6F7F8;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

h1 {
    font-size: 24px;
    line-height: 30px;
}

h2 {
    font-size: 24px;
    line-height: 30px;
}

h3 {
    font-size: 18px;
    line-height: 24px;
}

h4 {
    font-size: 16px;
    line-height: 22px;
}

h5 {
    font-size: 16px;
    line-height: 22px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
}

strong {
    font-weight: 700;
}

a {
    color: #2C2B38;
    text-decoration: none;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #2C2B38;
    outline: 0;
    text-decoration: none;
}

p {
    color: #231F20;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 12px;
    padding: 10px 25px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.link.link-active {
    background-color: #ebecf0;
    font-weight: 500;
}

.btn {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
    padding: 6px 15px;
    min-width: 200px;
    text-align: left;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    background: url("../imgs/icons/btn-hover-arrow.svg") center center no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    opacity: 0;
    
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn:hover:after {
    opacity: 1;
}

.btn-outline-primary {
    color: #6763B7;
    border: 1px solid #6763B7;
    border-radius: 12px;
}

.btn-outline-primary:hover {
    color: #6763B7;
    border-color: #6763B7;
    background-color: transparent;
}


.btn-hidden {
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-flex;
    padding: 0 15px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-hidden .btn-hidden-icn {
    display: inline-flex;
    align-items: center;
    text-align: center;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-hidden .btn-hidden-icn img {

}

.btn-hidden .btn-hidden-label {
    margin-left: 5px;
    display: none;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-hidden:hover .btn-hidden-label {
    display: inline-flex;
    align-items: center;
    text-align: center;
}


.btn-icn span {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin-right: 3px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, .15);
    border-radius: 100%;
}

.btn-icn span img {
    height: 14px;
}

.btn-sm {
    padding: 3px 35px;
}

.btn-primary {
    color: #fff;
    background-color: #6763B7;
    border-color: transparent;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: #5B57AF;
    border-color: transparent;
    outline: none;
    box-shadow: none !important;
}

.btn-secondary {
    color: #fff;
    background-color: #FE575B;
    border-color: transparent;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: #1AB083;
    border-color: transparent;
    outline: none;
    box-shadow: none !important;
}

.btn-dark {
    color: #fff;
    background-color: #474554;
    border-color: transparent;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover {
    color: #fff;
    background-color: #363543;
    border-color: transparent;
    outline: none;
    box-shadow: none !important;
}


.container {
    position: relative;
    z-index: 1;
}


/*form components*/
.radio {
    position: relative;
}

.checkbox {
    padding: 0 0 0 26px;
    position: relative;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    position: absolute;
}

.form-group {
    margin-bottom: 15px;
}

.checkbox label {
    color: #40414E;
    font-weight: 400;
}

.checkbox label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #8d8f92;
    background-color: #fff;
    margin-top: 2px;
}

.checkbox label::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 4px;
    top: 2px;
    font-size: 12px;
    color: #555555;
}

.checkbox input[type="checkbox"]:checked + label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}

.radio label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;

    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background-color: #555555;

    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);

    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.form-control:disabled, .form-control[readonly] {
    background-color: #F1F1F1;
}

input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    margin-top: 1px;
    outline: none;
    box-shadow: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

input[type=radio]:checked {
    border: 6px solid #CB333B;
    background: #fff;
    outline: none;
    box-shadow: none;
}

input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
}

input[type="radio"]:checked + label:before,
.delivery-method label:hover:before {
    border: 6px solid #009444 !important;
}

input[type="radio"]:not(:checked) + label:before {
    border: 1px solid #8d8f92;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    width: 19px;
    height: 19px;
    border-radius: 100%;
    background: #fff;
    top: 50%;
    margin-top: -9px;
}

input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 100%;
    transition: all 0.2s ease;
    margin-top: -3px;
    margin-left: 6px;
}

input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0 20px 320px;
    background-color: #F6F7FB;
}

header .top-nav ul li a {
    position: relative;
}

header .top-nav ul li a .num {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    background-color: #FE575B;
    color: #fff;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    text-align: center;
}

.user-bar {
    padding: 5px 5px 5px 10px;
    border-radius: 12px;
    border: 1px solid #6763B7;
}

.user-bar .leter img {
    display: inline-table;
}

.user-bar .leter {
    color: #fff;
    display: inline-table;
    height: 32px;
    width: 32px;
    line-height: 30px;
    background-color: #474554;
    text-align: center;
    border-radius: 100%;
    margin-left: 10px;
}


.general-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    padding: 20px 5px;
    background-color: #fff;
}

.general-nav .logo {
    margin: 0 0 25px 15px;
    display: block;
}

.general-nav .logo img {
    height: 45px;
}

.general-nav nav ul li {
    margin: 5px 0;
}

.general-nav nav ul li a {
    position: relative;
    padding: 6px 12px;
    border-radius: 12px;
    display: block;
    color: #2C2B38;
}

.general-nav nav ul li:hover a,
.general-nav nav ul li.active a {
    background-color: #f4f4f5;
}

.general-nav nav ul li a .menu-icn {
    background-color: #f4f4f5;
    border-radius: 100%;
    margin-right: 5px;
    display: inline-block;
    text-align: center;
    width: 25px;
    height: 25px;
}

.num-notifications {
    padding: 0 7px;
    color: #2C2B38;
    background-color: #fcc86d;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 10px;
    transform: translate(0, -50%);
    font-weight: bold;
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page {
    margin-left: 260px;
}

.page-content {
    padding: 70px 15px 15px 25px;
}

.page-info {
    padding: 20px 0 15px;
}

.balance {
    padding: 15px 0 30px 0;
}

.available-funds {
    border-radius: 12px;
    background-color: #fff;
    padding: 15px 50px 10px 50px;
    text-align: center;
    box-shadow: 0 0 72px -30px #4B498296;
}

.available-funds .val {
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;
}

.available-funds .lab {
    color: #9C9C9C;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.hyz {
    background-color: #fff;
    border-radius: 12px;
    padding: 19px 20px;
    height: 100%;
    border: 1px solid #EBECF1
}

.btn-dwnl-report {
    float: right;
}

.hyz .hyz-item {
    padding: 0 25px 0 10px;
    border-left: 1px solid #0000004D
}

.hyz h6 {
    margin: 0 0 10px 0;
}

.hyz .hyz-item .lab {
    color: #9C9C9C;
}

.view-all-trans {
    color: #6763B7;
    display: table;
    margin: 0 0 0 auto;
}

.transactions {
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 6px 8px 72px 0px #0000000F;
}

.transactions table {
    overflow: hidden;
}

.transactions thead {
    color: #9C9C9C;
}

.transactions thead th {
    padding: 5px 10px;
}

.transactions tbody {
    border-top: 1px solid #0000004D;
    border-bottom: 1px solid #0000004D;
}

.transactions tr:hover td {
    background-color: #f4f4f5;
}

.transactions tr td {
    padding: 15px 5px;
}

.transactions .table-btn-details {
    width: 145px;
}

.transactions .table-btn-report {
    width: 145px;
}

.transactions .transaction-icn {
    background-color: #e9e9ea;
    border-radius: 100%;
    margin-right: 5px;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 8px 0 0 0;
}

.transactions .transaction-card {
    font-weight: bold;
}

.transactions .transaction-date {
    font-weight: 500;
}

.transactions .transaction-date span {
    color: #9C9C9C;
    font-weight: 400;
    margin-left: 5px;
}

.transactions .transaction-amount {
    font-weight: bold;
}

.status {
    font-size: 12px;
    border-radius: 12px;
    text-align: center;
    padding: 2px 2px;
}

.declined {
    color: #FE575B;
    background-color: #ffcdce;
}

.pending {
    color: #FFB129;
    background-color: #feefd3;
}

.approved {
    color: #1EBB8C;
    background-color: #bbebdd;
}

.total-credits .val {
    color: #009675;
    font-weight: 400;
}

.total-debits .val {
    color: #F51616;
    font-weight: 400;
}

.opening-balance .val,
.closing-balance .val {
    font-weight: bold;
}

.text-right {
    text-align: right;
}