@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




body {
    background: var(--secondary);
}

* {
    font-family: 'Montserrat', sans-serif;
    color: var(--font-1);
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: rgb(164, 164, 164);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(129, 129, 129);
}

/* Editing Bootstrap values*/

.no-gutters {
    margin-right: 0;
    margin-left: 0 !important;
}

.no-gutters .col,
.no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}


@media (min-width: 1450px) {
    .container-xxl {
        max-width: 1500px !important;
    }
}

@media (min-width: 1750px) {
    .container-xxl {
        max-width: 1750px !important;
    }
}


.statusBar {
    background: black;
    font-size: 0.6vw;
    font-weight: 500;
    align-items: center;
    padding: 7px 0;
}

.statusBar * {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
}

.latencyContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.latencyContainer>* {
    margin-left: 55px;
}

/* Navbar */
nav {
    height: 75px;
    background: var(--third);
    display: flex;
    align-items: center;
}

nav .container-xxl {
    align-items: center;
    height: 100% !important;
    display: flex;
    align-items: center;
}

nav .row {
    height: 100% !important;
    width: 100%;
}

/* Logo */
.logo {
    font-weight: bolder;
    margin-right: 25px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.logoImage {
    margin-right: 15px;
	height:35px;
    color: var(--logo);
}

.navElementsContainer {
    display: flex;
    height: 100%;
}

.navElementsContainer>* {
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-right: 30px;
    cursor: pointer;
    transition: color 0.15s ease;
    color: var(--font-1) !important;
    text-decoration: none;
}

.navElementsContainer>*:hover *,
.navElementsContainer>*:hover {
    color: #30D196 !important;
}

.navElementsContainer>*:hover .dropdown-icon {
    transform: rotate(180deg);
    top: 5px;
}

.navElementsContainer i {
    margin-right: 8px;
    position: relative;
    bottom: 1px;
}

.dropdown-icon {
    position: relative;
    bottom: 2px;
    left: 6px;
}

/* Currency Container */
.leftContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100% !important;
}

.rightContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.rightContainer>* {
    margin-right: 15px;
}

.currency {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: var(--bc-secondary);
    padding: 5px 10px;
    border-radius: 6px;
    width: 179px;
    height: 38px;
}

.currencyLetter {
    background: #000000;
    color: #23E5A2;
    border-radius: 100%;
    aspect-ratio: 1/1;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    font-size: 13px;
}

.currencyText {
    font-weight: bold;
    margin-right: 10px;
    font-size: 13px;
}

.currencyValue {
    font-weight: 500;
    font-size: 13px;
}

.signUpBtn,
.greenBtn {
    min-width: 80px;
    width: 110.69px;
    height: 46px;
    background: var(--btn1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-radius: 6px;
    font-weight: bolder;
    font-size: 13px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
}

.signUpBtn:hover {
    background: var(--hover-fff);
}

.greenBtn {
    color: #FFF;
    background: rgb(48, 209, 150);
    background: linear-gradient(90deg, rgba(48, 209, 150, 1) 32%, rgba(35, 231, 68, 1) 100%);
}

.greenBtn:hover {
    background: linear-gradient(90deg, rgb(41, 196, 139) 32%, rgb(28, 212, 59) 100%);
}

.themeContainer {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.themeContainer>* {
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.themeContainer>*:hover {
    border-bottom: 2px solid #23E5A2;

}

.light {
    margin-right: 5px;
}

.themeActive {
    border-bottom: 2px solid #23E5A2;
}

main {
    margin-top: 30px;
}

.dropdown-icon {
    display: flex !important;
}

.dropdownContainer {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: var(--primary);
    top: 75px;
    border-top: var(--secondary) 1px solid;
    padding: 5px 0;
    border-radius: 6px;
    min-width: 200px;
    left: 0;
    box-shadow: 0px 3px 21px 0px var(--boxshadow);
    flex-direction: column;
}

.dropdownElement {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--font-1) !important;
}

.dropdownElement * {
    color: var(--font-1) !important;

}

.dropdownContainer:hover .dropdownElement {
    color: var(--font-1) !important;

}

.dropdownElement:hover {
    background: var(--hover-fff);
    color: #23E5A2 !important;
}

.dropdownContainer:hover .dropdownContent {
    display: flex;
}

@media (max-width: 1400px) {
    .logo {
        display: none;
    }
}


@media (max-width: 1200px) {
    .statusBar {
        font-size: 9px;
    }

    .navElementsContainer i {
        display: none;
    }

    .currency {
        width: 120px;
    }

    .currency * {
        font-size: 12px;
    }

    .currencyLetter {
        display: none;
    }

    /* Signup Buttons in Low Width Devices*/
    .signUpBtn,
    .signInBtn {
        width: 110.69px;
        padding: 0 10px;
        font-size: 12px;
    }
}

@media (max-width: 1030px) {
    .navElementsContainer * {
        display: none;
    }

    .logo {
        display: flex
    }
}

@media (max-width: 940px) {
    .statusBar {
        padding: 3px 14px;
        font-size: 11px;
    }

    .statusBar .row {
        flex-direction: column;
    }

    .statusBar .row>* {
        width: 100%;
        justify-content: flex-start;
    }

    .statusBar p {
        margin-left: 0;
        margin-right: 25px;
    }
}

@media (max-width: 670px) {
    .themeContainer {
        display: none;
    }

    .statusBar {
        font-size: 9px;
    }

    .currency {
        display: none;
    }
    
    .rowviewad {
        display:grid;
    }

}

@media (max-width: 550px) {
    .logoImage {
        display: none;
    }

    .statusBar * {
        text-align: center;
        padding: 0;
        margin: 0;
        flex-direction: column;
    }


}