:root {
    --form-control-color: rgb(34 197 94 / .8);
}
.d-none {
    display: none;
}
.progress-sticks {
    display: flex;
    width: 100%;

}
.progress-sticks .progress-stick {
    display: block;
    width: 100%;
    border: 1px solid #555;
    margin-right: 5px;
}
.progress-sticks .progress-stick:last-child {
    margin-right: 0;
}

.custom-alert {
    padding: 10px;
    border-radius: 10px;
}

.custom-alert-danger {
    border: 1px solid rgb(190, 34, 60);
    background: rgb(100, 34, 60);
    color: #eee;
    font-size: 10px;
}

.custom-alert-success {
    border: 1px solid rgb(34, 100, 94);
    background: rgb(34, 190, 94);
    color: #eee;
    font-size: 10px;
}

.disabled {
    pointer-events: none;
    cursor: not-allowed;
    background-color: rgba(200,200,200,.1);
}

.pin-inputs {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}
.pin-inputs input[type='text'] {
    height: 80px;
    width: 90%;
    text-align: center;
    border: 1px solid #555;
    outline: none;
    font-size: 2em;
}
.on-top {
    margin-top: -100px;
    z-index: 99999;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 5px;
}

.transfer-options-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.transfer-options-container ul .transfer-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #eee;
    border: 1px solid #555;
    margin-bottom: 18px;
    padding: 18px 15px 18px 10px;
    border-radius: 10px;
}
.transfer-options-container ul .transfer-option div {
    display: flex;
    align-items: center;
}
.transfer-options-container ul .transfer-option img {
    height: 30px;
    width: 30px;
    scale: 1.5;
}

.transfer-options-container ul .transfer-option input[type="radio"] {
    appearance: none;
    background-color: rgb(42 49 60 / var(--tw-border-opacity));
    margin-right: 10px;
    font: inherit;
    color: currentColor;
    width: 2em;
    height: 2em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
  }
  
  .transfer-options-container ul .transfer-option input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
  }
  
  .transfer-options-container ul .transfer-option input[type="radio"]:checked::before {
    transform: scale(1);
  }

.accounts-widget {
    background-image: url(/assets/images/bg/3059655-1140054430.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}
.accounts-widget .overlay-widget {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    padding: 150px 50px 10px 50px;

}
.accounts-widget .overlay-widget .user-name {
    margin-bottom: 20px;
    color: #eee;
    font-size: 16px;
}

.accounts-widget .overlay-widget .accounts-card-container {
    display: block;
    width: 100%;
}
.accounts-widget .overlay-widget .accounts-card-container .account {
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    box-sizing: border-box;
    width: 100%;
}
.accounts-widget .overlay-widget .accounts-card-container .account .amount-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accounts-widget .overlay-widget .accounts-card-container .account h1 {
    font-size: 2rem;
}

.accounts-widget .overlay-widget .nav-btn-container {
    display: flex;
    padding-top: 16px;
    overflow-x: auto;
}
.accounts-widget .overlay-widget .nav-btn-container .nav-btn {
    display: flex;
    color: #eee;
    background-color: rgba(0,0,0,.5);
    padding: 10px 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.accounts-widget .overlay-widget .nav-btn-container .nav-btn .feather {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
@media only screen and (max-width: 600px) {
    .pin-inputs input[type='text'] {
        height: 60px;
    }
    .accounts-widget .overlay-widget {
        padding: 150px 30px 10px 30px;
    
    }
}