header {
    width: 100%;
    height: 65px;
    transition: all 0.3s ease-in-out;
}

.custom_nav {
    display: flex;
    gap: 30px;
}

.custom_nav a {
    font-size: 14px;
    font-weight: 400;
    position: relative;
    color: var(--white);
}

.custom_nav a::after {
    /* content: "";
    width: 100%;
    height: 2px;
    background-color: var(--off-white);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.2s ease-in; */
}

.custom_nav a:active::after,
.custom_nav a:hover::after {
    opacity: 1;
}

.custom_nav a:hover {
    /* color: var(--off-white) !important; */
}

.dropdown-toggle::after {
    display: none;
}

.profile::before {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #E9EBEE20;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* 
.profile {
    margin-left: 10px;
}
*/

.profile_about img {
    width: 100%;
}

.profile_space {
    margin-left: 38px;
}

.profile_image {
    width: 37px;
    height: 37px;
    margin-right: 10px;
    background-color: #EDEDED;
    border-radius: 50%;
}

.header_main {
    padding: 17px 25px;
    z-index: 99;
    border-bottom: 1px solid var(--border);
    height: 65px;
    left: 0;
    width: 100%;
}

.noti_icon {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E9EBEE55;
}

.profile_about {
    padding: 0px 30px;
}

.profile p {
    color: var(--off-white);
    font-size: 14px;
    font-weight: 400;
}

.profile span {
    display: block;
    color: var(--black-light);
    font-size: 14px;
    font-weight: 400;
}

.noti_icon::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--mint);
    position: absolute;
    top: -1px;
    right: -1px;
    border-radius: 50%;
}

.login_btn {
    border: none;
    outline: none;
    padding: 8px 0px;
    margin: 0px 30px;
    background-color: transparent;
    color: var(--off-white);
}

.btn_padd {
    padding: 0px 30px;
}

.dont_acc p {
    font-size: 14px;
    line-height: 20px;
    color: var(--dullfont);
    margin: 0;
}

p {
    margin: 0;
}

.dont_acc a {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration-line: underline;
}

.url_verify {
    background-color: #2DD15825;
    padding: 10px 25px;
    display: flex;
}

.url_verify p {
    font-size: 12px;
    line-height: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.url_verify p span {
    color: var(--green);
}

.menu_list.show {
    width: 370px;
    padding: 2px;
    top: 42px;
    margin-top: 0;
}

.private_nav {
    gap: 20px;
    margin-right: 20px;
}

.menu_list.down_app.show {
    width: 210px;
    padding: 15px;
    border-radius: 0px 0px 3px 3px;
}

.menu_list.profile_app.show {
    width: 360px;
    border-radius: 0px 0px 3px 3px;
}

.menu_list.menulist_private {
    right: 0;
    left: inherit;
}

.drope_nav {
    padding: 15px;
    transition: all 0.3s;
}

.drope_nav:hover {
    border-radius: 3px;
    background-color: var(--bg);
}

.drope_nav.active {
    border-radius: 3px;
    background-color: var(--bg);
}

.sgtx_nav.navbar-collapse.show,
.sgtx_nav.navbar-collapse.collapsing,
.sgtx_nav.collapsing.show,
.sgtx_nav.collapse.show {
    position: absolute !important;
    top: 65px;
    left: 0;
    height: calc(100vh - 65px);
    width: 100%;
    z-index: 9;
    background-color: var(--dark-bg) !important;
    overflow-y: auto;
    transition: all 0.3s ease-in;
    padding: 25px;
}

.sgtx_nav.navbar-collapse.show .custom_nav,
.sgtx_nav.navbar-collapse.collapsing .custom_nav {
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease-in;
}

.navbar-collapse.show .menu_list.show,
.navbar-collapse.collapsing .menu_list.show {
    position: static;
    border: none;
    width: 100%;
    max-width: 100% !important;
    transition: all 0.3s ease-in;
}

.profile_overview {
    padding: 20px;
    background-color: var(--bg);
    border-radius: 3px;
}

.profile_overview .profile_pic {
    width: 43px;
    height: 43px;
    gap: 15px;
}

.profile_overview .profile_detail {
    gap: 15px;
}

.market_top .live_price {
    flex-basis: calc(100% - 183px);
}

.nav_menu .arrow_men {
    transition: all 0.3s;
}

.nav_menu.show .arrow_men {
    transform: rotate(180deg);
    transition: all 0.3s;
}

@media screen and (max-width: 600px) {
    .header_main {
        padding: 18px 15px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing,
    .collapsing.show,
    .collapse.show {
        padding: 15px;
    }

    .menu_list.show {
        top: 39px;
    }

    .menu_list.menulist_private {
        right: -60px;
    }

    .url_verify {
        padding: 10px 15px;
    }

    .url_verify p {
        font-size: 11px;
    }
}