body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
.screen_width {
    max-width: 480px;
    margin: 0 auto;
    height: 100vh;
    position: relative;
    background-color: #121318;
    display: flex;
    flex-direction: column;
}
p {
    margin: 0;
}

/* header css */
.header {
    background-color: #121318;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 15px;
}
.header .logo {
    max-width: 130px;
}
button.search_btn {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid #373741;
    background-color: transparent;
    color: #fff;
    padding: 0;
    font-size: 20px;
    margin: 0 0 0 auto;
    cursor: pointer;
}
img.user_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* notification bar css */
.notification_bar {
    background-color: #1b1e2d;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 20px;
}
.notification_bar p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}
.notification_bar .fa {
    font-size: 30px;
}

/* content box css */
.body_content {
    height: 100%;
    overflow: auto;
}
.content_box {
    padding: 0 20px;
}

/* horizontal scroll css  */
.horizontal-scroll {
    display: flex;
    gap: 10px;
    overflow: auto;
    margin-bottom: 20px;
    white-space: nowrap;
}
.scroll_list {
    background-color: #1b1e2d;
    padding: 5px 15px;
    border-radius: 15px;
}
.scroll_list p {
    color: #fff;
}
.scroll_list p.list-name {
    color: #a4a7b0;
}
.scroll_list p span {
    color: #b32f52;
}

/* search bar css */
.search_bar {
    background-color: #1b1e2d;
    margin-bottom: 30px;
    position: relative;
    border-radius: 15px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}
.search_bar input {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    padding: 16px 0;
    color: #a4a7b0;
    width: 100%;
    outline: none;
}
.search_bar input::placeholder {
    color: #a4a7b0;
}
.search_bar .fa {
    color: #a4a7b0;
    font-size: 18px;
    margin-right: 5px;
}   

/* Account balance css */
.balance_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1b1e2d;
    padding: 13px 15px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.balance_list p {
    color: #a4a7b0;
    font-size: 16px;
}
.balance_list p span {
    color: #fff;
    font-size: 18px;
    margin-left: 10px;
}
.balance_list button {
    font-size: 28px;
    background-color: transparent;
    padding: 0;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Banner box css */
.banner_box {
    margin-bottom: 20px;
}
.banner_box img {
    width: 100%;
}

/* badge filter css */
.badge-filter {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge-filter .badge {
    font-size: 18px;
    padding: 6px 20px;
    color: #6e85c9;
    background-color: #1b1e2d;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
button.filter {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #4A4C59;
    color: #6e85c9;
    font-size: 26px;
}


/* tabs css */
.tab-menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
}
.tab-menu a {
    font-size: 20px;
    padding: 15px 20px;
    white-space: nowrap;
    box-sizing: border-box;
    display: block;
    color: #a4a7b0;
    text-decoration: none;
    border-bottom: 3px solid #1d1e29;
    font-weight: 500;
}
.tab-menu a.active {
    color: #6e85c9;
    border-color: #6e85c9;
}
.tab-box {
    display: none;
}
.trade_list {
    background-color: #1b1e2d;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.trade_list .list_left {
    display: flex;
    gap: 15px;
    align-items: center;
}
.trade_list .list_left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.trade_list p {
    font-size: 18px;
    color: #fff;
}
p.tande-bank-text {
    color: #a4a7b0;
}
p.trade-price {
    font-size: 22px;
}
.trade_list .list_right p {
    text-align: right;
}
p.trade-parsent {
    color: #b32f52;
}


/* footer css */
.footer {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
}
.footer ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #fff;
}
.footer li {
    width: 20%;
    text-align: center;
    background-color: #000;
}
.footer li a {
    display: block;
    text-decoration: none;
    padding: 20px 20px;
    font-size: 14px;
    color: #4A4C59;
    font-weight: 600;
}
.footer li.active a {
    color: #bddf55;
}
.footer li:nth-child(2) {
    border-radius: 0 18px 0 0;
}
.footer li:nth-child(4) {
    border-radius: 18px 0 0 0;
}
.footer svg {
    display: block;
    fill: #4A4C59;
    width: auto;
    margin: 0 auto 2px auto;
    height: 35px;
}
.footer li.active svg {
    fill: #bddf55;
}
.footer li.active .svg {
    border-color: #bddf55;
}
.footer .center_icon {
        background-color: #121318;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.footer .center_icon .svg {
    background-color: #000;
    border: 2px solid #373741;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-sizing: border-box;
}
.footer .center_icon svg {
    fill: #4A4C59;
    width: 40px;
}