@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --blue: #000ff0;
    --primary: linear-gradient(45deg, #0050ff, #00ff50);
    /* --primary: linear-gradient(45deg, #ff6600, #ff9500); */
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style-type: none;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    background: #e7e7f7;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
}

#Footer {
    text-align: center;
    margin-top: auto;
}

.copiright p {
    color: rgb(0, 0, 0);
    text-align: center;
    background: #ffffff;
    padding: 2px;
}

.copiright p {
    font-size: 12px;
}

.copiright p a {
    color: #0000ff;
    transition: 0.3s;
}

.copiright p a:hover {
    color: rgb(255, 0, 0);
}

::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.0);
}

#loading {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 1;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.loading_dot {
    height: 1rem;
    width: 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin: 0.5rem;
    animation: loading 6s infinite cubic-bezier(0.76, 0, 0.24, 1);
    vertical-align: middle;
}

@keyframes loading {
    0% {
        height: 1rem;
        background-color: #50ffff;
    }
    25% {
        height: 5rem;
        background-color: #0050ff;
    }
    50% {
        height: 1rem;
    }
    75% {
        height: 5rem;
        background-color: #00ff50;
    }
    100% {
        background-color: #50ffff;
        height: 1rem;
    }
}

.loading_dot:nth-child(1) {
    animation-delay: 0.2s;
}

.loading_dot:nth-child(2) {
    animation-delay: 0.4s;
}

.loading_dot:nth-child(3) {
    animation-delay: 0.6s;
}

.loading_dot:nth-child(4) {
    animation-delay: 0.8s;
}

.loading_dot:nth-child(5) {
    animation-delay: 1s;
}


/* text color */

.text-green {
    color: #00cc70;
}

.text-green-balance {
    color: #15db5a;
    font-weight: 600;
}

.text-aqua {
    color: #00eeff;
}

.text-lite-green {
    color: #15db5a;
}

.text-lite-blue {
    color: #0070ff;
}

.text-blue {
    color: #0000ff;
}

.text-red {
    color: #ff0000;
}

.dropdown {
    padding-right: 8px;
}


/* button */

button.button {
    border: none;
    outline: none;
    background: transparent;
    /* box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); */
    transition: 0.2s;
}

button.button:active {
    scale: 0.9;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); */
}

button.btn-danger {
    background: #ff0000;
}

button.btn-danger:hover {
    background: #ee0000;
}

button.btn-success {
    background: #15db5a;
}

button.btn-success:hover {
    background: #15ca5a;
}

button.btn-disabled {
    background: #a0a0a0;
}

button.btn-secondery {
    background: #5c777f;
}

button.btn-secondery:hover {
    background: #4b777f;
}

button.btn-pending {
    background: #0000ff;
}

button.btn-pending:hover {
    background: #0000ee;
}

button.btn-light-blue {
    background: #4070f4;
}

button.btn-light-blue:hover {
    background: #4070e0;
}


/* popup */

#popupContainer,
#alertContainer,
#confirmContainer,
#twoFAContainer {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.5s ease;
}

#popupContainer.active,
#alertContainer.active,
#confirmContainer.active,
#twoFAContainer.active {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition: 0.5s;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

#overlay.active {
    pointer-events: auto;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.alert-box {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    width: 400px;
    padding: 25px;
    border-radius: 7px;
    background: #fff;
    margin: 20px;
}

.closePopupIcon {
    color: #ff0000;
}

.closePopupIcon:hover {
    color: #ee0000;
}

.popup-buttons button {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    padding: 12px 30px;
}

.status-icon {
    display: flex;
    justify-content: center;
    font-size: 70px;
}

.alert-box h2 {
    margin: 10px 0px;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.alert-box h3,
.confirm-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
    line-height: 27px;
}

.alert-box .popup-buttons {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}