@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
.faq-question {
    background-color: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    font-weight: 500;
}

.accordion-item {
    margin-bottom: 10px;
    border: 01px solid #dfdfdf !important;
    border-radius: 5px !important;
}

.section-hero-spacing {
    margin-top: 120px;
}

.nav-tabs {
    border: none !important;
}

.nav-tabs .nav-link.active {
    background-color: #FF5400;
    border-bottom: none !important;
    border-radius: 6px;
    color: #ffffff;
}

.section-secondary {
    background-color: #F9F9F9;
}

.btn-theme {
    background-color: #FF5400;
    color: #ffffff;
}

.icon-wrapper {
    display: inline-flex;
    padding-left: 8px;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #F2F2F2;
}

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

.tab-pane img {
    margin-right: 10px;
}

.footer-content a {
    transition: font 0.3s;
    color: #AFAFAF;
}

.footer-content a:hover {
    color: #000;
    font-weight: 700;
}

.theme-logo {
    width: 250px;
}

.modal {
    display: none;
    background: rgba(0, 0, 0, .6);
}

.modal-content {
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    color: #aaa;
    font-size: 34px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 5px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.status-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    padding: 10px 20px;
    max-width: 350px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: center;
}

.status-alert.success {
    background: #017020;
    color: #fff;
    text-align: start;
}

.status-alert.error {
    background: #B31E0D;
    color: #fff;
    text-align: start;
}

.guest-wrapper {
    height: 100vh;
    overflow: hidden;
    margin-right: 0;
    margin-left: 0;
}

.custom-scroll {
    overflow-y: scroll;
    height: 100%;
}

.custom-scroll::-webkit-scrollbar {
    width: 0px;
    background-color: #F8F8F8;
    border-radius: 50px;
}

.ninja-input {
    background: white;
}

button:disabled {
    background-color: #D3D3D3;
    color: #000;
    cursor: not-allowed;
}

body h1 {
    font-size: 40px;
    font-weight: bold;
}

body h2 {
    font-size: 32px;
    font-weight: 600;
}

body h3 {
    font-size: 24px;
    font-weight: 600;
}

body h4 {
    font-size: 20px;
    font-weight: 600;
}

.custom-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* TWOFA */

.twofa-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: auto;
}

.input-group {
    display: flex;
    gap: 10px;
}

.digit-input {
    width: 45px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s;
}

.digit-input:focus {
    border-color: #007bff;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background: #007bff;
    color: white;
    /* border-radius: 5px; */
    cursor: pointer;
}

/* button:hover {
    background: #0056b3;
} */

@media (max-width:768px) {
    .theme-logo {
        width: 200px;
    }
}

@media (max-width:992px) {
    .section-hero-spacing {
        margin-top: 55px;
    }
}