@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("media.css");

:root {
    --bodyWidth: 420px;
    --primary_color: #4e90d0;
    --secondary_color: #4e90d0;
    --hover: #b8b8b8;
    --description_p_color: #4a4a4a;
    --white: #fafafa;
    --black: #202020;
    --backgroundColor: #202020;
}

html {
    font-family: "Poppins", sans-serif;
    background: var(--backgroundColor);
    transition: all 0.3s linear;
}

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 14px;
    background: var(--white);
    max-width: var(--bodyWidth);
    color: var(--black);
    transition: all 0.3s linear;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-height: 100vh;
    position: relative;
    margin: 0px auto;
}

.modal-open {
    padding-right: 0px !important;
}

.loading-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #fff;
    text-align: center;
    z-index: 999;
}

.loading-container img {
    width: 50px;
    position: absolute;
    margin: 20px 5px 0px 0px;
}

.loading-spinner {
    border: 8px solid var(--primary_color);
    border-top: 8px solid var(--hover);
    border-bottom: 8px solid var(--hover);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a {
    text-decoration: none;
    transition: all 0.3s linear;
    font-family: "Poppins", sans-serif;
}

a:hover {
    text-decoration: none;
    color: var(--hover);
}

a:focus {
    text-decoration: none;
    color: var(--hover) !important;
}

.dropup a.show {
    text-decoration: none;
    color: #fff !important;
}

.dropup a:hover {
    text-decoration: none;
    color: #fff !important;
}

.clear {
    clear: both;
}

main {
    width: 100%;
    padding: 10px;
}
