/* general */
/* general */
/* general */

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.text-grey {
    color: #b1b1b1;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

.edge-curve {
    border-radius: 10px;
}

.faint-white {
    background-color: #ffffff33;
}

.pry-color {
    background-color: #1074c6;
}

.pry-text {
    color: #1074c6;
}

/* index */
/* index */
/* index */

.bg-img {
    background-image: url("../images/new-york-skyline.jpg");
    background-size: cover;
    background-position: center;
    height: 30vh;
}

.brand {
    width: 360px;
    height: 80px;
    margin-top: 6%;
}

.log-input {
    border: none;
    border-bottom: 1px #c0c0c0 solid;
    width: 30vw;
}

.log-input::placeholder {
    color: #c0c0c0;
    font-size: 14.5px;
}

.eye {
    left: 63%;
    color: #b1b1b1;
}

.eye:hover {
    cursor: pointer;
    color: black;
}

.log-box {
    border-top-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
    z-index: 999;
}

.overlay-black {
    height: 30vh;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.25);
}

.footer-links {
    color: black;
    text-decoration: underline !important;
}

.forgotid_newuser {
    color: #1074c6 !important;
}

.forgotid_newuser:hover {
    text-decoration: underline !important;
}

.socials {
    color: #6c757d;
}

.socials:hover {
    color: black;
}

.sign-in-btn:hover {
    background-color: rgb(16, 116, 198, 0.9);
}

/* dashboard */
/* dashboard */
/* dashboard */

.dash-search:focus {
    outline: none;
    box-shadow: none;
}

.dash-search::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: small;
}


.dash-search {
    width: 280px;
}

.dash-parent {
    height: 270px;
}

.shadow-bottom {
    box-shadow: 0 4px 20px -2px rgba(150, 150, 150, 0.6);
}

.card-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.card-scroll {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.card-scroll::-webkit-scrollbar {
    display: none;
}

.card-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card-item {
    flex: 0 0 100px;
    overflow: hidden;
}

.scrollbar-thumb {
    position: absolute;
    bottom: 2px;
    left: 0;
    height: 3px;
    width: 0;
    background-color: rgba(218, 218, 218, 0.74);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s, width 0.1s, left 0.1s;
    display: none;
}

.chase-offers {
    height: 86px;
    width: 100px;
}

.cards-icon {
    width: 24px;
}

.cards {
    font-size: small;
}

.accts:hover {
    background-color: #e8edf38e;
}

/* notification */
/* notification */
/* notification */

.notification-body {
    margin: 0 25%;
}

.modal-trigger:hover {
    box-shadow: 0 4px 6px -2px rgba(150, 150, 150, 0.6);
}

/* profile */
/* profile */
/* profile */

.profile-body {
    height: 310px;
}

.upload-box {
    cursor: pointer;
}

.bg-input-trans {
    opacity: 0;
}

.bg-input-trans:hover {
    opacity: 1;
}

.camera-absolute {
    background-color: white;
}

.camera-absolute:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

.sign-out-btn {
    background-color: transparent;
}

.sign-out-text {
    color: #dc3545;
}

.sign-out-btn:hover {
    background-color: #dc3545;
    cursor: pointer;
}

.sign-out-btn:hover .sign-out-text {
    color: white;
}

/* transfer */
/* transfer */
/* transfer */

#arrowIcon {
    top: 16px;
    right: 43.5%;
}

.trans-inputs::placeholder {
    font-size: small;
}

.dropdown-wrapper {
    border-radius: 7px;
}

.dropdown-wrapper .dropdown {
    position: relative;
    background-color: #f9fafb;
    border: 1px solid #a5a7a8ab;
    outline: none;
    transition: all 0.25s ease;
    border-radius: 7px;
}

.dropdown-wrapper .dropdown:focus-within::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 7px;
    box-shadow: 0 0 0 2px #1074c6;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1;
}

.dropdown-item:hover {
    background-color: #e7f1f9 !important;
}

.dropdown-item:hover .drop-text {
    color: #1074c6;
}

.trans-inputs {
    outline: none;
    transition: all 0.25s ease;
    border-radius: 7px;
}

.input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 7px;
}

.input-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    box-shadow: 0 0 0 2px #1074c6;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.input-wrapper:focus-within::after {
    opacity: 1;
}

#transferBtn:disabled {
    opacity: 0.5;
}

#transferBtn:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.transferForm{
    cursor: default !important;
}

/* accounts */
/* accounts */
/* accounts */

.acct-cards {
    border: 1px solid #a5a7a8ab;
}

.acct-cards:hover {
    border: 1px solid #1074c6;
    box-shadow: 0 4px 6px -2px rgba(150, 150, 150, 0.6);
}

.acct-cards:hover .acct-text {
    color: #1074c6;
}

.current-bal .text-end {
    font-size: 1.875rem;
}

.card-click {
    cursor: pointer;
    transition: 0.2s;
}

.content-section {
    display: none;
}

.active-section {
    display: block;
    animation: fadeIn 1ms ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.trans-card:hover {
    background-color: #e8edf38e;
    cursor: pointer;
}

.trans-icon {
    width: 55px;
    height: 40px;
}

.cutoff {
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

@media print {
    body * {
        visibility: hidden;
    }

    #receipt-modal,
    #receipt-modal * {
        visibility: visible;
    }

    #receipt-modal {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .modal-backdrop {
        display: none !important;
    }
}

.x-close {
    background: transparent;
}

.x-close:hover {
    background-color: #e7f1f9;
    color: #1074c6 !important;
}

.x-close:hover .fa-times {
    color: #1074c6 !important;
}

/* cards */
/* cards */
/* cards */

.pending-cards:hover {
    box-shadow: 0 4px 6px -2px rgba(150, 150, 150, 0.6);
}

/* ===== HEADER ===== */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header h5 {
    font-weight: 600;
}

/* ===== STEPS ===== */
.step-track {
    display: flex;
    justify-content: center;
    padding: 15px;
}

.step-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.step-bubble.active {
    background: #1074c6;
    color: white;
}

.step-bubble.completed {
    background: #1074c6;
    color: white;
}

.step-line {
    height: 2px;
    width: 30px;
    background: #ddd;
    transition: 0.3s;
    margin-top: 15px;
}

.step-line.active {
    background: #1074c6;
}

/* ===== CARD OPTIONS ===== */
.card-option {
    border: 2px solid #ddd;
    user-select: none;
    cursor: pointer;
    display: flex;
}

.card-option:hover {
    border-color: lightblue;
    background-color: #e8edf38e;
}

.card-option.selected {
    border-color: #1074c6;
    background-color: #e8edf38e;
}

/* ===== BUTTONS ===== */
.btn-continue {
    width: 100%;
    background: linear-gradient(135deg, #1074c6, darkblue);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
}

#step1Continue {
    opacity: 0.5;
}

#step2Continue {
    background: linear-gradient(135deg, #1074c6, darkblue);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    opacity: 0.5;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

#step2Continue:disabled {
    opacity: 0.5;
}

#step2Continue:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.submit {
    background: linear-gradient(135deg, #1074c6, darkblue);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
}

.btn-back {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: transparent;
}

.btn-back:hover {
    background-color: #e7f1f9;
    color: #1074c6 !important;
}

/* ===== HIDE STEPS ===== */
.step-pane {
    display: none;
}

.step-pane.active {
    display: block;
}

.app-body {
    height: 275px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 10px;
}

.step2input::placeholder {
    font-size: small;
}

/* Remove modal padding for step 3 */
#exampleModal.step3-active {
    padding: 0 !important;
    /* removes Bootstrap top/bottom padding */
}

/* Make modal dialog fill full height for step 3 */
#exampleModal.step3-active .modal-dialog {
    height: 100vh;
    /* full viewport */
    margin: 0;
    /* remove default centering margin */
    display: flex;
    align-items: flex-start;
    /* top align */
    justify-content: center;
    /* horizontal center */
}

/* Make modal content fill dialog */
#exampleModal.step3-active .modal-content {
    height: 100vh;
    /* full height */
    border-radius: 0;
    /* optional: remove rounding for full screen */
}

/* media query */
/* media query */
/* media query */

/* phone */
@media (max-width: 711px) {
    .bg-img {
        height: 40vh;
    }

    .brand {
        width: 260px;
        height: 60px;
        margin-top: 32%;
        margin-bottom: 10%;
    }

    .log-input {
        width: 90vw;
    }

    .log-input::placeholder {
        font-size: 17px;
    }

    .eye {
        left: 89%;
    }

    .dash-search {
        width: 180px;
    }

    .dash-parent {
        height: 295px;
    }

    .scrollbar-thumb {
        display: block;
    }

    .chase-offers {
        height: 65px;
        width: 82px;
    }

    .card-item {
        flex: 0 0 auto;
    }

    .cards-icon {
        width: 19px;
        margin-bottom: 5px;
    }

    .cards {
        font-size: xx-small;
        font-weight: 600;
    }

    .notification-body {
        margin: 0 5%;
    }

    .chase-box {
        flex-wrap: wrap;
    }

    .current-bal {
        text-align: end;
        width: 100%;
    }

    .transactions {
        width: 20%;
    }

    .trans-icon {
        padding: 20px;
        width: 0px;
        height: 0px;
    }

    #arrowIcon {
        right: 34.5%;
    }

    #apply4Card{
        margin-top: 20px;
        width: 100%;
    }

}

/* tablets */
@media (min-width: 712px) and (max-width: 1023px) {
    .bg-img {
        height: 50vh;
    }

    .brand {
        width: 280px;
        height: 60px;
        margin-top: 30%;
        margin-bottom: 20%;
    }

    .log-input {
        width: 60vw;
    }

    .eye {
        left: 75%;
    }

    .log-input::placeholder {
        font-size: 17px;
    }

    .notification-body {
        margin: 0 5%;
    }

    #arrowIcon {
        right: 44.5%;
    }

}