/* 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;
}

button {
    border: 0;
    outline: 0;
    background-color: transparent;
    display: inline-block;
}

.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-icn img {
    height: 10px;
    margin-left: 3px;
    position: relative;
    top: -1px;
}

.link:hover,
.link.active {
    background-color: #ebecf0;
    font-weight: 500;
}

.btn {
    position: relative;
    font-size: 14px;
    line-height: 36px;
    height: 38px;
    border-radius: 12px;
    padding: 0 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: 38px;
    line-height: 38px;
    text-align: center;
    display: inline-flex;
    padding: 0 10px;

    -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-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;
    position: relative;
    top: 1px;

    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-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: #F5474B;
    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;
}

.btn-green {
    color: #fff;
    background-color: #1EBB8C;
    border-color: transparent;
}

.btn-green:not(:disabled):not(.disabled).active,
.btn-green:not(:disabled):not(.disabled):active,
.show > .btn-green.dropdown-toggle,
.btn-green:active,
.btn-green:focus,
.btn-green:hover {
    color: #fff;
    background-color: #1AB083;
    border-color: transparent;
    outline: none;
    box-shadow: none !important;
}

.btn-inactive {
    opacity: .4;
    pointer-events: none;
}

.btn-submit {
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    text-align: left;
    height: 38px;
    padding: 0 15px;
    border-radius: 12px;
    background-color: #2C2B38;
    border-color: transparent;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-submit:not(:disabled):not(.disabled).active,
.btn-submit:not(:disabled):not(.disabled):active,
.show > .btn-submit.dropdown-toggle,
.btn-submit:active,
.btn-submit:focus,
.btn-submit:hover {
    color: #fff;
    background-color: #201F27;
    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;
    top: 0;
    left: 0;
    border: 1px solid #8d8f92;
    background-color: #fff;
    border-radius: 3px;
}

.checkbox label::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    line-height: 17px;
    left: 0;
    top: 0;
    text-align: center;
    font-size: 10px;
    color: #555555;
    border-radius: 3px;
}

.checkbox input[type="checkbox"]:checked + label::after {
    content: "\f00c";
    font-family: "FontAwesome";
    background-color: #6763B7;
    color: #fff;
}

.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);
}

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: 25px;
    cursor: pointer;
    display: inline-block;
    color: #2C2B38;
}

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: -11px;
}

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;
    z-index: 2;
}

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:hover {
    background: #fff;
}

.user-bar img {
    transition: transform 200ms ease-out;
}

.user-bar .leter {
    transition: transform 200ms ease-out;
}

.user-bar:hover img {
    transform: translate(-1px, -1px);
}

.user-bar:hover .leter {
    transform: translate(1px, -1px);
}

.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: 3px;
}


.general-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    padding: 20px 5px;
    background-color: #fff;
    z-index: 3;
}

.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: #f4f4f4;
    border-radius: 100%;
    margin-right: 5px;
    display: inline-block;
    text-align: center;
    width: 28px;
    height: 28px;
    line-height: 25px;
}

.general-nav nav ul li.active a .menu-icn {
    background-color: #2C2B38;
}

.general-nav nav ul li.active a .menu-icn svg path {
    fill: #FFFFFF;
}

.general-nav nav ul li a svg {

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}


.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-nav {
    text-align: right;
}

.page-nav a {
    margin-left: 10px;
}

.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
}

.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;
}

.view-all-trans:hover {
    color: #6763B7;
}

.page-holder {
    background-color: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 6px 8px 72px 0px #0000000F;
}

.cm-table {
    overflow: hidden;
    width: 100%
}

.cm-table thead {
    color: #9C9C9C;
}

.cm-table tbody {

}

.cm-table tbody {
    border-top: 1px solid #0000004D;
    border-bottom: 1px solid #0000004D;
}

.cm-table tbody tr:hover td {
    background-color: #f4f4f5;
}

.cm-table tr {

}

.cm-table tr th,
.cm-table tr td {
    padding: 14px 10px;
    vertical-align: middle;
}

.cm-table tbody tr td .icn-btn {
    margin-bottom: -5px;
}

.btn-settings:hover {
    padding-right: 84px;
}

.btn-freeze:hover {
    padding-right: 72px;
}

.btn-remove {
    border-color: #FE575B;
    color: #FE575B !important;
}

.btn-remove:hover {
    padding-right: 80px;
    border-color: #FE575B;
}

.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;
}

.carousel-cds .cd {
    min-width: 270px;
    margin: 0;
    max-width: none;
    padding: 20px 22px;
    width: 100%;
}

.carousel-cds .cd .card-item-decor {
    width: 22px;
}

.carousel-cds .carousel-cell {
    margin-right: 25px;
}


.status {
    font-size: 12px;
    border-radius: 12px;
    text-align: center;
    padding: 2px 10px;
}

.status.active {
    color: #1EBB8C;
    background-color: #bbebdd;
}

.status.inactive {
    color: #FE575B;
    background-color: #ffcdce;
}

.status.declined {
    color: #FE575B;
    background-color: #ffcdce;
}

.status.pending {
    color: #FFB129;
    background-color: #feefd3;
}

.status.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;
}

.cds {
    padding: 15px 0 30px 0;
}

.cd {
    background: url("../imgs/cd-bgr-01.svg") center center no-repeat;
    background-size: cover;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 30px auto;
    position: relative;
    overflow: hidden;
    /*min-width: 250px;*/
}

.cd.cd-02 {
    background: url("../imgs/cd-bgr-02.svg") center center no-repeat;
    background-size: cover;
}

.cd.cd-03 {
    background: url("../imgs/cd-bgr-03.svg") center center no-repeat;
    background-size: cover;
}

.cd.cd-04 {
    background: url("../imgs/cd-bgr-04.svg") center center no-repeat;
    background-size: cover;
}

.cd-status {
    color: #fff;
    font-weight: bold;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 12px;
}

.cd-status:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #FFFFFF;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;

    transform: translate(0, -50%);
}

.cd-status.active:before {
    background-color: #1EBB8C;
}

.cd-status.inactive:before {
    background-color: #FE575B;
}

.cd-balance {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
}

.cd-number {
    color: #fff;
    opacity: .7;
    margin: 5px 0;
}

.cd-name {
    color: #fff;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.show {
    display: block;
}

.btn-back {
    font-size: 12px;
    line-height: 12px;
    margin: 0 0 10px 0;
    padding: 5px 10px 5px 5px;
    display: inline-block;
    border-radius: 12px;
    font-weight: 700;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-back:hover,
.btn-back.active {
    background-color: #ebecf0;
    font-weight: 500;
}

.btn-back img {
    margin-right: 3px;
    height: 14px;
    position: relative;
    top: -1px;
}

.icn-btn {
    height: 38px;
    line-height: 36px;
    text-align: center;
    padding: 0 13px;
    position: relative;
    display: inline-block;
    overflow: hidden;

    transition: all 0.3s ease-in-out;
}

.icn-btn img {
    position: relative;
    top: -1px;
    height: 16px;
    min-width: 16px;
}

.icn-btn span {
    opacity: 0;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(100%, -50%);
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.icn-btn:hover span {
    opacity: 1;
    right: calc(100% - 36px);
}

.icn-btn:hover {
    /*  personal class every btns, look below */
}

.btn-details:hover {
    padding-right: 70px;
}

.btn-export {
    float: right;
    color: #1EBB8C;
    border-color: #1EBB8C;
}

.btn-export:hover {
    color: #1EBB8C;
    border-color: #1EBB8C;
    padding-right: 70px;
}

.btn-chargeback:hover {
    padding-right: 108px;
}

.btn-dwnl-report:hover {
    padding-right: 154px;
}

.btn-dwnl-report {
    float: right;
}


.pick {
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
}

.pick.pick-arrow {
    padding-right: 40px;
}

.pick.pick-arrow:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    background: url("../imgs/icons/pick-arrow.svg") center center no-repeat;
    background-size: 8px;
    height: 8px;
    width: 8px;

    transform: translate(0, -50%);
}

.pick.active {
    color: #6763B7;
    border-color: #6763B7;
}

.pick img {
    margin-right: 5px;
    position: relative;
    top: -1px;
    height: 14px;
}

.pick:hover {
    border-color: #000000;
}

.pick:active,
.pick:focus {
    border-color: #6763B7;
    background-color: #fff;
    box-shadow: none;
    outline: none;
}


.form-control {
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    padding: 0 15px;
    height: 45px;
    font-size: 14px;
}

select.form-control {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    background: url("../imgs/icons/select-arrow.svg") no-repeat center white;
    background-position-x: 96%;
    background-size: 9px;
}

select.form-control:focus {
    background: url("../imgs/icons/select-arrow-active.svg") no-repeat center white;
    background-position-x: 96%;
    background-size: 9px;
}

.form-control:focus {
    border-color: #6763B7;
    background-color: #fff;
    box-shadow: none;
    outline: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #F1F1F1;
}

.form-control-icn {
    position: relative;
}

.form-control-icn .form-control {
    padding: 10px 15px 10px 35px;
    background-color: transparent;
}

.form-control-icn img {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
}

.upload-block .form-group{
    display: block;
    margin-bottom: 45px;
}
.fileUpload {
    position: relative;
    overflow: hidden;
}

.fileUpload input {
    cursor: pointer;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    max-width: 100%;
    opacity: 0;
    cursor: pointer;
}

.btn--browse{
    border: 1px solid #6763B7 !important;
    background-color: #fff;
    color: #6763B7 !important;
    padding: 4px 17px;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    display: table;
    width: auto;
    min-width: auto;
    height: auto;
    cursor: pointer;
}

.btn--browse:hover {
    background: #F2F3F7;
}
.btn--browse:after {
    display: none;
}

.btn--browse span {
    cursor: pointer;
}

.btn--browse span img {
    margin: 0 4px 0 0;
}

.f-input{
    background-color: white;
    border: none;
    width: 100%;
    float: left;
    max-height: 80px;
    padding: 4px 14px 0 14px;
    overflow: hidden;
    margin-bottom: 20px;
    font-size: 15px;
}


.modal-cd-freeze {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    width: 600px;
    box-shadow: 6px 8px 72px 0px rgba(0, 0, 0, 0.05);
}

.selector-close {
    float: right;
}

.modal-cd-freeze .cd {
    margin: 0 0 30px 0;
    position: relative;
    cursor: pointer;
}

.modal-cd-freeze .cd.inactive.selected {
    opacity: .6;
}

.block-cd .cd.inactive,
.modal-cd-freeze .cd.inactive {
    opacity: .2;
}

.modal-cd-freeze .selector-body {
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
}

.modal-selector {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    width: 600px;
    box-shadow: 6px 8px 72px 0px rgba(0, 0, 0, 0.05);
}

.modal-selector .selector-search .form-control {
    width: 50%;
}

.selector-body {
    margin: 20px 0 0 0;
    padding: 0 0 20px 0;
    position: relative;
}

.modal-selector .selector-body:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #D9D9D9;
}

.selector-body .selector-options {
    padding: 0 15px 0 0;
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
}

.selector-body .checkbox {
    margin: 10px 0;
}

.selector-body .checkbox.sub-checkbox {
    margin-left: 10px;
}

.selected-count {
    color: #474554;
    margin: 0 0 20px 0;
}

.selected-count span {
    opacity: .3;
    font-size: 12px;
}

.selected-options {
    padding: 0 0 0 15px;
}

.selected-options ul li {
    background-color: #2C2B380D;
    border-radius: 12px;
    padding: 10px 15px;
    margin: 0 0 10px 0;
    display: inline-block;
}

.selected-options ul li button {
    margin-left: 5px;
}

.selected-options ul li button img {
    height: 8px;
}

.selector-foot {
    text-align: right;
    padding: 15px 0;
    border-top: 1px solid #D9D9D9;
}


.filter-bar {
    padding: 20px 0 10px;
}

.filter-lab {
    color: #2C2B38;
    margin: 0 0 10px 0;
    display: block;
}

.filter-bar .form-control {
    max-width: 150px;
    background-color: transparent;
}

.filter-bar .dropdown {
    display: inline-block;
}

.filter-bar .dropdown .dropdown-menu,
.card-action-dropdown .dropdown-menu {
    padding: 5px 20px 25px 20px;
    border: none;
    border-radius: 12px;
    width: max-content;
    min-width: 300px;
    box-shadow: 6px 8px 72px 0 rgba(0, 0, 0, 0.16);
}

.card-action-dropdown.export .dropdown-menu .dropdown-item {
    padding: 7px 14px 7px 14px;
}

.card-action-dropdown.export .dropdown-menu .dropdown-item img{
    border: none;
    width: 15px;
    border-radius: 0;
    margin: -3px 4px 0 0;
}

.filter-bar .dropdown .dropdown-menu .menu-body {
    padding: 15px 0 8px 0;
    border-bottom: 1px solid #2C2B38;
}

.filter-bar .dropdown .dropdown-menu .form-group {
    margin-bottom: 14px;
}

.filter-bar .dropdown .dropdown-menu .form-group .checkbox {
    border-radius: 10px;
    padding: 0 0 0 34px;

}

.filter-bar .dropdown .dropdown-menu .form-group .checkbox:hover {
    background: #f4f4f5;
}

.filter-bar .dropdown .dropdown-menu .form-group label {
    display: block;
    padding: 5px 5px 5px 0;
    cursor: pointer;
}


.filter-bar .dropdown .checkbox label::after,
.filter-bar .dropdown .checkbox label::before{
    left: 7px;
    top: 9px;
}

.filter-bar .dropdown .dropdown-menu .menu-footer {
    text-align: right;
    padding: 12px 0 0 0;
}


.transaction-details .transaction-val {
    color: #2C2B38;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
}

.transaction-details .transaction-date {
    color: #9C9C9C;
    text-align: center;
    margin: 10px 0;
}

.transaction-details .transaction-date span {
    color: #474554;
    opacity: .3;
}

.transaction-details .transaction-type img {
    height: 26px;
    position: relative;
    top: -1px;
    margin-right: 3px;
}

.transaction-details .transaction-info .btn {
    margin-left: auto;
    display: table;
}

.transaction-details .transaction-info ul {
    padding: 10px 0;
    margin: 25px 0;
    border-top: 1px solid #0000004D;
    border-bottom: 1px solid #0000004D
}

.transaction-details .transaction-info li {
    padding: 10px 0;
    display: flex;
}

hr {
    border-top: 1px solid #0000004D;
    opacity: 1;
}

.transaction-details .transaction-info li hr {
    width: 100%;
}

.transaction-details .transaction-info li .lab {
    color: #9C9C9C;
    text-align: left;
    flex: 50%;
}

.transaction-details .transaction-info li .val {
    text-align: right;
    flex: 50%;
}

.val-bold {
    font-weight: bold;
}


.transaction-chargeback .transaction-id {
    color: #2C2B38;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
}

.transaction-chargeback .transaction-date {
    color: #9C9C9C;
    text-align: center;
    margin: 5px 0 20px 0;
}

.transaction-chargeback .transaction-date span {
    color: #474554;
    opacity: .3;
}

label {
    color: #9C9C9C;
    margin: 0 0 7px 0;
}

/* success */
.success .page-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 180px);
    text-align: center;
}

.success .page-holder img {
    height: 60px;
}

.success .page-holder h2 {
    margin: 20px 0;
}

.success .page-holder a {
    text-decoration: underline;
    margin: 0 3px;
}


.notifications {
    position: fixed;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    padding: 30px 40px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;

    transform: translate(100%, 0);
}

.notifications .notifications-nav {
    margin: 0 0 50px 0;
    text-align: center;
}

.notifications .notification-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0 0 5px 0;
    display: block;
}

.notifications .notification-link {
    color: #6763B7;
    text-decoration: underline;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    display: inline-block;
}

.notifications .notification-link:hover {
    text-decoration: none;
}

.notifications ul li {
    margin: 0 0 30px 0;
    padding: 0 0 0 45px;
    position: relative;
}

.notifications ul li.noti-type-01:before {
    background: url("../imgs/icons/noti-type-01.svg");
    background-size: 35px;
}

.notifications ul li.noti-type-02:before {
    background: url("../imgs/icons/noti-type-02.svg");
    background-size: 35px;
}

.notifications ul li:before {
    content: "";
    height: 35px;
    width: 35px;
    position: absolute;
    top: 5px;
    left: 0;
}

.notifications ul li p {
    color: #9C9C9C;
    margin: 0 0 10px 0;
}

.overlay {
    background-color: #000000;
    opacity: 0;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.notification-show .overlay {
    opacity: .3;
    z-index: 4;
}

.notification-show .notifications {
    transform: translate(0, 0);
}

.cm-dropdown {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    width: 300px;
    box-shadow: 6px 8px 72px 0px rgba(0, 0, 0, 0.05);
}

.cm-dropdown.lang-dropdown {
    width: fit-content;
}

.cm-dropdown .dropdown-list li {
    margin: 5px 0;
    display: block;
}

.cm-dropdown .dropdown-list li a {
    padding: 5px;
    border-radius: 5px;
    display: block;
}

.cm-dropdown .dropdown-list li:hover a {
    background-color: #f4f4f5;
}

.cm-dropdown .link-icn {
    background-color: #f4f4f4;
    border-radius: 100%;
    margin-right: 5px;
    display: inline-block;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.cm-dropdown .link-icn img {
    height: 12px;
    position: relative;
    top: -1px;
}

.cm-dropdown-foot {
    text-align: right;
    margin: 15px 0 0 0;
    padding: 15px 0;
    border-top: 1px solid #D9D9D9;
}

.cm-dropdown-foot .btn {
    min-width: auto;
}

.cd-management .cd-holder {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 6px 8px 72px 0 #0000000F;
    margin: 0 0 30px 0;
}

.cd-management .cd-holder.inactive .cd {
    opacity: .2;
}

.cd-management .cd-holder.inactive .cd-info li .val.cd-status {
    color: #FE575B;
}

.cd-management .cd {
    text-align: center;
    padding: 25px;
    margin: 0 0 30px 0;
}

.cd-management .cd .cd-number {
    padding: 15px 0;
    letter-spacing: 2px;
}

.cd-management .cd .cd-balance {
    font-size: 20px;
    line-height: 30px;
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
}

.cd-management .cd-info {
    margin: 0 0 20px 0;
}

.cd-management .cd-info li {
    display: flex;
    margin: 10px 0;
}

.cd-management .cd-info li .lab {
    color: #9C9C9C;
    width: 50%;
}

.cd-management .cd-info li .val {
    color: #2C2B38;
    font-weight: 400;
    width: 50%;
    text-align: right;
}

.cd-management .cd-info li .val.cd-name {
    color: #5B57AF;
    font-weight: bold;
}

.cd-management .cd-info li .val.cd-status {
    color: #1EBB8C;
    font-weight: bold;
}

.cd-management .cd-info li .val.cd-status:before {
    display: none;
}

.card-action {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #F2F3F7;
    display: table;
    margin: 0 auto;
    border-radius: 100%;
}

.card-action img {
    margin: -3px 0 0 0;
}

.card-action:hover, .card-action.show {
    background-color: #474554;
}

.card-action:hover img, .card-action.show img{
    filter: invert(135%) sepia(100%) saturate(0%) hue-rotate(12deg) brightness(147%) contrast(129%);
}

.card-action-dropdown .dropdown-menu {
    padding: 20px 20px 20px 20px;
}

.card-action-dropdown .dropdown-menu .dropdown-item {
    border-radius: 12px;
    padding: 6px 14px 6px 14px;
}

.card-action-dropdown .dropdown-menu .dropdown-item:hover {
    background: #EBEBEC;
}

.card-action-dropdown .dropdown-menu .dropdown-item .img-block {
    display: inline-block;
    border: 7px solid #f6f6f6;
    border-radius: 100px;
    background: #f6f6f6;
    width: 32px;
    height: 32px;
    line-height: 18px;
    margin-right: 4px;
    text-align: center;
}

.card-action-dropdown .dropdown-menu .dropdown-item img {
    margin: -2px 0 0 0;
    width: 14px;
}

.cd-management .card-action-dropdown .dropdown-menu .dropdown-item img {
    margin: -2px 4px 0 0;
}

.grid-options div {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
}

.grid-options div img {
    height: 20px;
}

.grid-options div.active {
    background-color: #F2F3F7;
}

.cd-rows .cd-number {
    color: #2C2B38;
    font-weight: bold;
}

.cd-rows .cd-name {
    color: #5B57AF;
    font-weight: bold;
}

.cd-rows .cd-balance {
    color: #2C2B38;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
}

.block {
    background-color: #fff;
    padding: 25px 25px;
    border-radius: 12px;
    box-shadow: 6px 8px 72px 0px #0000000F;
    margin: 0 0 30px 0;
}

.block-heading {
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #0000004D;
}

.block-list ul li {
    display: flex;
    margin: 15px 0;
}

.block-list ul li .lab {
    color: #2C2B38;
    width: 70%;
}

.block-list ul li .lab span {
    color: #9C9C9C;
    font-size: 12px;
    line-height: 12px;
    display: block;
}

.block-list ul li .func {
    color: #2C2B38;
    font-weight: 400;
    width: 30%;
    text-align: right;
}

.block-cd-details .cd-name {
    color: #5B57AF;
    font-weight: bold;
}

.block-cd .cd {
    margin: 0;
    position: relative;
}

.block-cd .cd-type-logo {
    position: absolute;
    top: 15px;
    right: 20px;
}

.block-cd .cd-type-logo img {
    height: 20px;
}

.block-cd .status {
    margin: 15px auto 20px;
    display: table;
}

.block-nav button {
    display: block;
    text-align: center;
    width: 100%;
}

.block-nav .nav-icn {
    margin: 0 auto 5px;
    display: table;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #2C2B380D;
    border-radius: 100%;
}

.block-nav .nav-icn.red {
    background-color: #ffebeb;
}

.block-nav .nav-link {
    text-align: center;
    font-size: 12px;
    line-height: 14px;
}

.block-nav .nav-link.red {
    color: #FE575B;
}

.block-cd .cd-type {
    color: #9C9C9C;
}

.block-cd .cd-number-lab {
    color: #9C9C9C;
    font-size: 12px;
    line-height: 12px;
    margin: 25px 0 5px 0;
}

.block-cd .cd-number {
    color: #fff;
    margin: 0 0 25px 0;
    letter-spacing: 2px;
}

.block-cd .cd-expire-lab {
    font-size: 12px;
    line-height: 12px;
    color: #9C9C9C;
    margin: 0 0 5px 0;
}

.block-cd .cd-expire {
    color: #fff;
}

.block-cd-balance {
    text-align: center;
}

.block-cd-balance .lab {
    color: #2C2B38;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

.block-cd-balance .val {
    color: #2C2B38;
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.block-cd-balance .to-time {
    color: #9C9C9C;
}


.slide-btn {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 15px;
    background-color: #ffffff;
    cursor: pointer;
    border: 1px solid #9C9C9C;
}

.slide-btn input {
    display: none;
}

.slide-indicator {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #9C9C9C;
    transition: 0.3s;
    transform: translate(0, -50%);
}

.slide-btn:has(input:checked) {
    background-color: #1EBB8C;
    border: 1px solid #1EBB8C;
}

input:checked + .slide-indicator {
    left: calc(100% - 28px);
    background-color: #fff;
    width: 24px;
    height: 23px;
}

.slide-label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

/* form-block */
.form-block {
    margin: 30px 0;
}

.form-heading {
    color: #9C9C9C;
    margin: 0 0 7px 0;
}

.form-phone {
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    height: 45px;
    position: relative;
}

.form-phone input[type=text] {
    height: 43px;
    background-color: #fff;
    width: 100%;
    padding: 0 10px 0 70px;
    border-radius: 12px;
    border: 0;
}

.form-phone .pick-phone-code {
    position: absolute;
    top: 0;
    left: 0;
    height: 43px;
    width: 70px;
    line-height: 43px;
    cursor: pointer;
}

.form-phone .selected-code {
    padding: 0 0 0 15px;
}

.form-phone .pick-phone-code:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    background: url("../imgs/icons/pick-arrow.svg") center center no-repeat;
    background-size: 8px;
    height: 8px;
    width: 8px;

    transform: translate(0, -50%);
}

.form-hint {
    color: #9C9C9C;
    margin: 0 0 7px 0;
}

.form-hint span {
    color: #FE575B;
}

.form-action .btn-submit {
    display: table;
    margin-left: auto;
}

/* form-review */
.form-review {
    margin: 20px 0 30px 0;
}

.form-review li {
    padding: 10px 0;
    display: flex;
}

.form-review li .lab {
    color: #9C9C9C;
    text-align: left;
    flex: 50%;
}

.form-review li .val {
    text-align: right;
    flex: 50%;
}

.form-review li .val span {
    display: block;
}

.form-review li hr {
    width: 100%;
}

.add-more-cards {
    margin: 10px 0 0 0;
    float: right;
}

.new-card-review .btn {
    min-width: auto;
    float: right;
}

.new-card-review .btn:after {
    display: none;
}

textarea.form-control {
    height: auto;
    padding: 10px 15px;
}

.font-weight-bold {
    font-weight: bold;
}

.card-deactivated .cd {
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
    display: table;
    opacity: .4;
}

.browse-cds {
    margin: 50px 0 0 0;
}

.browse-cds .selector-search {
    margin-bottom: 10px;
}

.browse-cds ul {
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
}

.linked-cds ul li .func a {
    width: 32px;
    height: 32px;
    line-height: 30px;
    border-radius: 100%;
    display: block;
    text-align: center;
    float: right;
}

.linked-cds ul li .func a:hover {
    background-color: #2C2B380D;
}

.user .company-logo {
    display: table;
    margin: 7px auto 0 auto;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    border: 1px dashed transparent;
}

.company-logo .change-logo {
    position: absolute;
    height: 34px;
    left: 50%;
    margin-left: -17px;
    top: 50%;
    margin-top: -17px;
    opacity: 0;
    z-index: -1;
}

.company-logo:hover .change-logo {
    opacity: 1 !important;
    z-index: 1;
}

.user .company-logo:hover {
    background: rgba(54, 53, 67, 0.05);
    border: 1px dashed rgba(54, 53, 67, 1);
}

.user .company-logo:focus, .user .company-logo:active {
    background: rgba(54, 53, 67, 0.1);
    border: 1px dashed rgba(54, 53, 67, 1);
}

.user .company-logo:hover img {
    opacity: 0.2;
}

.block-user .user-info {
    text-align: center;
}

.block-user .user-icon {
    color: #fff;
    font-size: 70px;
    line-height: 110px;
    width: 120px;
    height: 120px;
    background-color: #474554;
    border-radius: 100%;
    margin: 10px auto 20px;
    display: table;
}

.block-user .user-name {
    color: #2C2B38;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    display: block;
}

.block-user .status {
    display: table;
    margin: 10px auto 25px;
}


/* Users */
.users .user-name {
    color: #2C2B38;
    font-weight: bold;
}

.users .user-email {
    text-decoration: underline;
}

.users .last-login .last-login-time {
    opacity: .4;
}

.users .last-login .last-login-ip {
    display: block;
}


.label-link a {
    color: #6763B7;
    text-decoration: underline;
}

.label-link a:hover {
    text-decoration: none;
}


.company-empl {
    text-align: center;
}

.company-logo {
    margin: 20px 0 0 0;
}

.company-logo img {
    height: 30px;
}

.company-name {
    color: #2C2B38;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    display: block;
    margin: 10px 0 30px;
}

.company-empl {
    position: relative;
}

.company-empl:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    display: block;
    background-color: #0000004D;
}

.company-empl .val {
    color: #2C2B38;
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
}


.company-colors li {
    margin: 15px 0;
}

.company-colors li span {
    height: 20px;
    width: 20px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 4px;
}

.company-colors li span.bg-light {
    border: 1px solid #6D6D6D;
}


.bg-primary {
    background-color: #6763B7;
}

.bg-secondary {
    background-color: #FE575B;
}

.bg-secondary-v2 {
    background-color: #1EBB8C;
}

.total-debits-tc {
    color: #009675;
}

.total-credits-tc {
    color: #F51616;
}

.starter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("../imgs/login-bgr.png") center no-repeat;
    background-size: 96% 94%;
}

.starter .circle-decor {
    position: absolute;
    bottom: 0;
    z-index: 10;
    margin: 0 0 0 190px;
    pointer-events: none;
}

.card-item-decor {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 19px;
    margin-top: 15px;
    width: 25px;
}

.info-side,
.form-side {
    height: 540px;
}

.info-side {
    background-color: #2C2B38;
    padding: 124px 30px;
    border-radius: 12px 0 0 12px;
}

.info-side img {
    margin: 0 auto 25px;
    display: block;
}

.info-side h1 {
    color: #fff;
    text-align: center;
    font-size: 40px;
    line-height: 46px;
    margin: 0 0 30px 0;
    font-weight: normal;
}

.info-side h1 span {
    font-weight: bold;
    display: block;
}

.info-side p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}

.form-side {
    background-color: #fff;
    padding: 124px 30px;
    border-radius: 0 12px 12px 0;
}

.form-side h2 {
    text-align: center;
    font-size: 40px;
    line-height: 46px;
    margin: 0 0 30px 0;
}

.form-side .forgot-password {
    color: #6763B7;
    display: table;
    margin-left: auto;
}

.form-side .forgot-password:hover {
    text-decoration: underline;
}

.form-side .form-hint {
    color: #9C9C9C;
    text-align: center;
}

.form-side .btn-submit {
    height: 48px;
    padding: 0 15px;
    margin: 30px 0 0 0;
    display: block;
    width: 100%;
    text-align: center;
}

.verify-inputs .form-control {
    color: #6763B7;
    text-align: center;
    font-size: 18px;
}

.verify-inputs input:not(:placeholder-shown) {
    border-color: #6763B7;
}

.cm-dropdown-activate {
    color: #1EBB8C;
}

.cm-dropdown-close-card {
    color: #F5474B;
}

.cm-dropdown-export-csv {
    color: #1EBB8C;
}

.cm-dropdown-export-pdf {
    color: #C95555;
}

.success-animation {
    margin:30px auto;
}

.success-animation .checkmark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: block;
    stroke-width: 5px;
    stroke: #29c66f;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #29c66f;
    animation: fill .6s ease-in-out .6s forwards, scale .5s ease-in-out .5s both;
    position:relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}
.success-animation .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 9px;
    stroke-miterlimit: 10;
    stroke: #29c66f;
    fill: #fff;
    animation: stroke 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;

}

.success-animation .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 30px #29c66f;
    }
}

/*custom select*/


.select-dropdown {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}
.select-dropdown__button {
    background-color: #fff;
    cursor: pointer;
    text-align: left;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    padding: 0 15px;
    height: 45px;
    font-size: 14px;
    width: 100%;
    color: #9C9C9C;
    font-weight: 500;
}
.select-dropdown__button:focus {
    outline: none;
}
.select-dropdown__button img {
    position: absolute;
    right: 10px;
    top: 20px;
    transition: all .3s;
}

.select-dropdown__button img.rotate {
    transform: rotate(180deg);
}
.select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out 0.3s;
    z-index: 2;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    border-top: 0;
    box-shadow: 6px 8px 72px 0 rgba(0, 0, 0, 0.05);
}
.select-dropdown__list.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1, 1);
}
.select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 15px;
    background: #fff;
    border-top: 1px solid #D9D9D9;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    color: #616161;
    transition: all ease-in-out 0.3s;
}

.select-dropdown__list-item:first-child {
    border: none;
}

.select-dropdown__list-item:hover {
    background: #f4f4f5;
}