html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    background: #0b0e11;
    font-family: "Poppins", sans-serif !important;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0;
    opacity: 0;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

.modal {
    background: rgba(0, 0, 0, 0.5);
}

.clear {
    clear: both;
}

.custom-loader {
    display: none;
}

.preload {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: unset;
    height: 100vh;
}

.pr-1 {
    padding-right: 0.15rem !important;
}

.pl-1 {
    padding-left: 0.15rem !important;
}

.blinking {
    -webkit-animation: 5s blink linear infinite;
    -moz-animation: 5s blink linear infinite;
    -ms-animation: 5s blink linear infinite;
    -o-animation: 5s blink linear infinite;
    animation: 5s blink linear infinite;
}

@keyframes blink {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
}

@-moz-keyframes blink {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
}

@-webkit-keyframes blink {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
}

@-o-keyframes blink {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
}

.btn {
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

/* ============================== */

/* =========== header =========== */

/* ============================== */

.header {
    background: #181a20;
    padding: 20px 0;
}

.header .logo-box {
    display: flex;
    align-items: center;
}

.header .logo-box .logo-info {
    display: flex;
    align-items: center;
}

.header .logo-box .logo-info img {
    height: 100px;
    margin-right: 10px;
}

.header .logo-box .logo-info h2 {
    font-size: 22px;
    margin-bottom: 0;
    color: #da9c24;
    font-weight: 600;
}

.header .account-box {
    display: flex;
    margin: auto;
    justify-content: flex-end;
    margin-bottom: 7px;
}

.header .account-info {
    border-radius: 8px;
    border: 1px solid #febf32;
    padding: 10px 5px;
    width: 200px;
}

.header .account-info a:hover {
    text-decoration: unset;
}

.header .account-info p {
    color: #febf32;
    text-align: center;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}

.header .account-info .account-num {
    background: -webkit-linear-gradient(45deg, #febf32, #febf32, #febf32, #000);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

/* ================================ */

/* =========== content 1 content-box ========== */

/* ================================ */

.bg {
    background-size: cover !important;
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(
            180.17deg,
            rgba(0, 0, 0, 0) 0.15%,
            #0b0e11 83.75%
        ),
        url("../img/web-bg.jpeg");
    background-repeat: no-repeat;
    /* height: 350px; */
}

.bg .content-box h1 {
    transform: rotate(-4.7deg);
    -webkit-transform: rotate(-4.7deg);
    -moz-transform: rotate(-4.7deg);
    -ms-transform: rotate(-4.7deg);
    -o-transform: rotate(-4.7deg);
    color: #f5f5f5;
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 0;
}

.bg .content-box .logo-title {
    width: 500px;
}

.bg .content-box .logo {
    width: 180px;
}

.bg .content-box .title {
    width: 120px;
    height: 100px;
    object-fit: contain;
}

.bg .content-box .title-2 {
    margin-top: -20px;
    margin-left: -10px;
    width: 100px;
}

.bg .content-box p {
    margin-bottom: 0;
    color: #f6f7fa;
    font-weight: normal;
    margin-top: -25px;
}

.bg .content-box h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
    color: #f6f7fa;
}

.bg .content-box p small {
    font-size: 100%;
}

/* ================================ */

/* =========== content 2 price-box ========== */

/* ================================ */

.content {
    text-align: center;
    margin-top: 0px;
}

.content .price-box {
    margin-top: 70px;
    margin-bottom: 100px;
    padding: 0 10px;
    text-align: left;
}

.content .price-box h3 {
    font-size: 26px;
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.content .graph {
    background: #23262d;
    border-radius: 15px;
    padding: 40px 50px 40px 100px;
}

.content .graph .row {
    align-items: center;
}

.content .graph .icon img {
    width: 60px;
    margin: 0;
    margin-bottom: 5px;
}

.content .graph img {
    width: 100%;
    margin: 0;
}

.content .price-box .graph .price {
    font-size: 40px;
    color: #f5f5f5;
    font-weight: 600;
}

.content .price-box .graph p {
    color: #f5f5f5;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.content .price-box .graph .round {
    padding: 5px;
    width: 100px;
    background: #bf2525;
    text-align: center;
    color: #f5f5f5;
    border-radius: 20px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 20px;
}

.content .price-box .graph .round i {
    color: #f5f5f5;
    font-size: 14px;
}

.content .price-box .btn {
    width: 220px;
    background: #f0b90b;
    color: #3b3f54;
    margin-top: -25px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.2s;
}

.content .price-box .btn:hover {
    transform: scale(1.05);
}

/* ================================ */

/* =========== content 3 intro-box ========== */

/* ================================ */

.content .intro {
    margin-bottom: 40px;
}

.content .intro iframe {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
}

.content .intro h2 {
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 36px;
}

.content .intro h3 {
    color: #f5f5f5;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.content .intro p {
    color: #f5f5f5;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
}

.content .intro .btn {
    width: 220px;
    background: #f0b90b;
    color: #3b3f54;
    border-radius: 15px;
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    transition: transform 0.2s;
}

.content .intro .btn:hover {
    transform: scale(1.05);
}

.content .intro a {
    color: #febf32;
}

.content .intro span {
    color: #febf32;
    text-decoration: underline;
}

.content .flex-cus {
    justify-content: end;
    display: flex;
    max-width: 100%;
    flex: 0 0 71%;
}

/* ================================ */

/* =========== why ========== */

/* ================================ */

.why {
    background: #da9c24;
    text-align: center;
    padding: 50px 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.why .why-box h2 {
    color: #3b3f54;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why .why-box .why-point {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-bottom: 10px;
    text-align: left;
}

.why .why-box .why-point img {
    margin-right: 20px;
}

.why .why-box .why-point p {
    margin-bottom: 0;
    color: #44485f;
    font-size: 20px;
    font-weight: 400;
}

/* ================================ */

/* =========== how ========== */

/* ================================ */

.how {
    text-align: center;
    padding: 25px 20px 0;
}

.how .how-box h2 {
    color: #f5f5f5;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.how .how-box .step {
    display: flex;
    align-items: center;
    text-align: left;
    background: #23262d;
    box-shadow: 0px 0px 10px 5px #0b0e11;
    border-radius: 10px;
    padding: 30px 10px 30px 20px;
    margin-bottom: 20px;
    height: 200px;
}

.how .how-box .step-last {
    box-shadow: 0px 0px 2px 0px #0b0e11;
}

.how .how-box .step img {
    margin-right: 20px;
}

.how .how-box .step h3 {
    color: #febf32;
    font-size: 18px;
    font-weight: 600;
}

.how .how-box .step p {
    color: #fffae1;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
}

.how .how-box .btn {
    width: 500px;
    background: #f0b90b;
    color: #f5f5f5;
    border-radius: 50px;
    font-weight: 700;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 10px;
    transition: transform 0.2s;
}

.how .how-box .btn:hover {
    transform: scale(1.05);
}

/* ================================ */

/* =========== start ========== */

/* ================================ */

.start {
    background: #da9c24;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 30px 0px 10px;
}

.start h2 {
    color: #3b3f54;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.start p {
    font-size: 16px;
    font-weight: 400;
    color: #3b3f54;
    margin-bottom: 0;
}

/* ================================ */

/* =========== wallet ========== */

/* ================================ */

.wallet {
    padding: 50px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100vh;
}

.wallet .wallet-box {
    margin-bottom: 40px;
}

.wallet .wallet-box .mask {
    width: 240px;
    margin-bottom: 30px;
}

.wallet .wallet-box h1 {
    font-size: 22px;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 45px;
}

.wallet .wallet-box h3 {
    font-size: 16px;
    font-weight: 500;
    color: #f6f7fa;
}

.wallet .wallet-desc {
    max-width: 600px;
    margin: 20px auto 30px;
}

.wallet .wallet-desc p {
    text-align: center;
    color: #abafc4;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
}

.wallet .wallet-desc p a:hover {
    text-decoration: unset;
}

.wallet .wallet-desc p span {
    color: #fee083;
}

.wallet .wallet-step {
    display: flex;
    width: 100%;
    overflow-x: auto;
    justify-content: center;
}

.wallet .wallet-step .wallet-step-box {
    display: flex;
    text-align: justify;
    background: #23262d;
    padding: 25px;
    margin-right: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px #0b0e11;
}

.wallet .wallet-step .wallet-step-box:last-child {
    margin-right: 0;
}

.wallet .wallet-step .wallet-step-box img {
    margin-right: 25px;
}

.wallet .wallet-step .wallet-step-box .w {
    width: 200px;
}

.wallet .wallet-step .wallet-step-box p {
    color: #fffae1;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
}

.wallet .wallet-step .wallet-step-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #febf32;
}

.wallet .btn {
    background: #febf32;
    color: #000;
    border-radius: 8px;
    font-size: 16px;
    width: 280px;
    font-weight: 600;
    padding: 12px 16px;
    box-shadow: none;
    margin-bottom: 15px;
}

.wallet .qrbtn {
    background: #2a2d3c;
    color: #4c516b;
}

.wallet .qrbtn:hover {
    background: #febf32;
    color: #000;
}

/* .wallet .qrbtn:focus {
        background: #FEBF32;
        color: #000;
    } */

.qrmodal .modal-content {
    background: #23262d;
    text-align: center;
    padding: 15px;
    border-radius: 37px;
}

.qrmodal .modal-content h3 {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.qrmodal .modal-content .modal-header {
    justify-content: center;
    border-bottom: 0;
}

.qrmodal .qr-box .qrimg {
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.qrmodal .qr-box .qrimg:hover {
    transform: scale(1.05);
}

.qrmodal .qr-box p {
    font-size: 18px;
    color: #f5f5f5;
    font-weight: 500;
}

.qrmodal .qr-box button {
    background: #2a2d3c;
    color: #abafc4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    width: 180px;
    padding: 10px 10px 10px 25px;
    box-shadow: none;
    border: none;
    text-align: left;
}

.qrmodal .qr-box button:hover {
    color: #f5f5f5;
}

.qrmodal .qr-box button:last-child {
    margin-bottom: 0px;
}

.qrmodal .qr-box button img {
    margin-right: 15px;
}

.qrmodal .modal-footer {
    border-top: 0;
    justify-content: center;
}

.qrmodal .modal-footer p {
    font-size: 14px;
    font-style: italic;
    color: #f5f5f5;
    margin-bottom: 0;
    font-weight: 400;
}

.statusmodal i {
    font-size: 70px;
    color: #febf32;
}

.statusmodal .modal-content .modal-header {
    padding: 0;
}

.statusmodal .modal-dialog {
    align-items: center;
}

.statusmodal p {
    color: #f5f5f5;
    font-size: 18px;
    margin-bottom: 0;
}

.statusmodal button {
    width: 100%;
    margin-top: 30px;
    background: #2a2d3c;
    color: #4c516b;
    border-radius: 8px;
    font-size: 16px;
    width: 260px;
    font-weight: 600;
    padding: 12px 16px;
    box-shadow: unset;
    border: unset;
}

.logout button {
    width: 200px;
}

.logout .d-flex {
    justify-content: space-between;
}

.logout .cancel {
    background: #febf32;
    color: #000;
}

.statusmodal button:hover {
    background: #febf32;
    color: #000;
}

/* .statusmodal button:focus {
        background: #FEBF32;
        color: #000;
    } */

.filtermodal ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.filtermodal .modal-content {
    padding: 10px !important;
}

.filtermodal ul li {
    color: #abafc4;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
}

.filtermodal ul li:last-child {
    margin-bottom: 0px;
}

.sortlist-box {
    padding-left: 0;
    list-style: none;
}

/* ================================ */

/* =========== block ========== */

/* ================================ */

.block {
    padding: 50px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100vh;
}

.block-box {
    max-width: 700px;
    margin: auto;
}

.block h1 {
    font-size: 22px;
    color: #f6f7fa;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.block .block-box #amount label {
    background: #23262d;
    color: #febf32;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 20px;
    width: 200px;
    text-align: center;
    border-radius: 8px;
    margin: 30px 25px;
    height: 150px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block .block-box .radio-button {
    display: none;
}

.block .block-box #opt1-radio:checked ~ #amount .opt1,
.block .block-box #opt2-radio:checked ~ #amount .opt2,
.block .block-box #opt3-radio:checked ~ #amount .opt3 {
    background-color: #febf32;
    color: #23262d;
}

.block .block-box #opt1-radio:checked ~ #amount .opt1,
.block .block-box #opt2-radio:checked ~ #amount .opt2,
.block .block-box #opt3-radio:checked ~ #amount .opt3 {
    background-color: #febf32;
    color: #23262d;
}

.block .block-box #amount {
    display: flex;
    justify-content: center;
    margin: auto;
}

.insurance-check {
    display: flex;
    /* width: 250px; */
    margin: auto;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.insurance-check p {
    color: #f5f5f5;
    margin-bottom: 0 !important;
    font-weight: 500;
    cursor: pointer;
}

.insurance-check .switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 32px;
    margin-bottom: 0;
}

.insurance-check .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.insurance-check .toogle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2a2d3c;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50px;
}

.insurance-check .toogle:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50px;
}

.insurance-check input:checked + .toogle {
    background-color: #febf32;
}

.insurance-check input:focus + .toogle {
    box-shadow: none;
}

.insurance-check input:checked + .toogle:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(36px);
}

.insurance-check img {
    margin-bottom: 0 !important;
}

.insuranceModal .modal-content {
    background: #181a20;
    padding: 30px 5px;
    border-radius: 37px;
}

.insuranceModal .modal-dialog {
    align-items: center;
}

.insuranceModal .modal-content h3 {
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.insuranceModal .modal-content .modal-header {
    border-bottom: 0;
    justify-content: center !important;
}

.insuranceModal .modal-content .modal-body p {
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.insuranceModal .modal-content .modal-footer {
    border-top: 0;
    justify-content: center;
}

.insuranceModal .modal-content .modal-footer .btn-insurance {
    color: #febf32;
    background: #2a2d3c;
    width: 100%;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
}

.insuranceModal .modal-content .modal-footer .btn-insurance:hover {
    background: #febf32;
    color: #000;
}

.block .block-box .desc {
    margin-bottom: 50px;
}

.block .block-box .desc p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #f6f7fa;
    margin-bottom: 5px;
}

ol {
    padding-left: 20px;
    text-align: left;
}

ol li {
    color: #abafc4;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.block .block-box .btn {
    width: 280px;
    background: #222531;
    color: #4c516b;
    padding: 12px 15px;
    border-radius: 8px;
    margin: auto;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.block .block-box .btn:hover {
    background: #febf32;
    color: #000;
}

.block .block-box .btn:focus {
    background: #febf32;
    color: #000;
}

.block .block-box .btn2 {
    background: #febf32;
    color: #000;
}

.block .block-box .tncCheckBox {
    margin-bottom: 50px;
    padding-left: 25px;
    text-align: left;
}

.block .block-box .tnc {
    font-size: 14px;
    color: #f5f5f5;
    padding-left: 10px;
    font-weight: 400;
    text-align: left;
}

.tncCheckBox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #2a2d3c;
    border-radius: 2px;
}

.tncCheckBox input[type="checkbox"]:checked {
    background-color: #febf32;
    background: #febf32
        url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==")
        5px 5px no-repeat;
}

.tncCheckBox #tncCheck {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* ================================ */

/* =========== dashboard ========== */

/* ================================ */

.dashboard {
    padding: 15px 0px 0;
}

.dashboard .swiper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.dashboard .swiper-pagination {
    position: unset;
}

.dashboard .swiper-pagination-bullet {
    background: #53545b;
    opacity: 1;
    border-radius: 0;
    transform: rotate(45deg);
    margin: 10px !important;
    width: 8px;
    height: 8px;
}

.dashboard .swiper-pagination-bullet-active {
    background: #f5f5f5 !important;
}

.dashboard .dashboard-item {
    text-align: center;
    background: #181a20;
    border-radius: 25px 25px 0px 0px;
    padding: 30px;
    margin-top: -6px;
}

.dashboard .dashboard-item .item-box .item-img {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard .dashboard-item .item-box p {
    cursor: pointer;
}

/* .dashboard .dashboard-item .item-box .icon-1 {
    width: 50px;
    height: 50px;
    padding-bottom: 5px;
}

.dashboard .dashboard-item .item-box .icon-2 {
    width: 50px;
    height: 55px;
} */

.dashboard .dashboard-item .item-box img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.dashboard .dashboard-item p {
    color: #f5f5f5;
    font-size: 14px;
    margin-bottom: 30px;
}

.dashboard .dashboard-item .market {
    background: #23262d;
    padding: 25px 0;
    margin: 20px 0;
}

.dashboard .dashboard-item .market p {
    margin-bottom: 0;
}

.dashboard .dashboard-item .market .title {
    font-size: 18px;
    color: #f5f5f5;
    font-weight: 600;
}

.dashboard .dashboard-item .market .amount {
    font-size: 24px;
    color: #febf32;
    font-weight: 500;
}

.dashboard .dashboard-item .market .total {
    font-size: 15px;
    color: #abafc4;
    font-weight: 400;
}

.dashboard .dashboard-item .market-box {
    padding: 0px 0 25px;
    border-bottom: 1px solid #6d6f7c;
}

.dashboard .dashboard-item .market-2 p {
    margin-bottom: 0;
}

.dashboard .dashboard-item .market-2 .title {
    font-size: 19px;
    color: #febf32;
    font-weight: 600;
}

.dashboard .dashboard-item .market-2 .rate {
    font-size: 14px;
    color: #abafc4;
    font-weight: 500;
}

.dashboard .dashboard-item .market-2 .date {
    font-size: 14px;
    color: #febf32;
    font-weight: 400;
}

.dashboard .dashboard-item .market-2 .amount {
    font-size: 30px;
    color: #f5f5f5;
    font-weight: 500;
}

.dashboard .dashboard-item .market-2 .desc {
    font-size: 13px;
    color: #febf32;
    font-weight: 400;
}

.dashboard .dashboard-item .market-2 .blocks {
    font-size: 13px;
    color: #febf32;
    font-weight: 400;
}

.dashboard .dashboard-item .market-2 .blocks span {
    font-size: 15px;
    color: #f5f5f5;
    font-weight: 500;
}

.dashboard .dashboard-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.dashboard .dashboard-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f6f7fa;
    margin-bottom: 0;
    margin-left: 5px;
}

.pool .modal-content {
    padding: 10px 0 !important;
}

.pool .dashboard-info {
    background: #23262d;
    border-radius: 8px;
    padding: 10px 15px 15px;
    margin-bottom: 20px;
    margin-top: -10px;
}

.pool .dashboard-info .token {
    color: #abafc4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.pool .dashboard-info .info-flex {
    display: flex;
    align-items: center;
}

.pool .dashboard-info .info-flex img {
    margin-right: 10px;
    width: 60px;
}

.pool .dashboard-info .info-flex .name {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.pool .dashboard-info .info-flex .details {
    color: #abafc4;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}

.pool .dashboard-info .info-flex .value {
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.pool .table thead {
    margin-bottom: 5px;
}

.pool .table thead tr th {
    font-size: 16px;
    color: #f5f5f5;
    font-weight: 400;
    padding: 0 5px 10px;
    text-align: center;
}

.pool .table thead tr th span {
    font-size: 14px;
    font-weight: 200;
}

.pool .table tbody {
    border: 1px solid #2d3036;
}

.pool .table tbody tr td {
    font-size: 15px;
    color: #f5f5f5;
    font-weight: 200;
    padding: 6px;
    text-align: center;
}

.pool .modal-body {
    max-height: unset !important;
}

.dashboard .profile {
    text-align: center;
    display: flex;
}

.dashboard .profile .profile-box {
    background: #181a20;
    border-radius: 8px;
    padding: 8px 12px;
    width: 200px;
    margin-right: 10px;
    margin-bottom: 30px;
}

.dashboard .profile .profile-box-1 {
    width: 130px;
}

.dashboard .profile .profile-box:last-child {
    margin-right: 0;
}

.dashboard .profile .profile-box p {
    color: #febf32;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.dashboard .dashboard-block {
    display: flex;
    overflow: auto;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.dashboard .dashboard-block .dashboard-block-box {
    background: #23262d;
    border-radius: 23px;
    margin-right: 20px;
    padding: 30px 10px;
    min-width: 31.5%;
    min-height: 350px;
    text-align: center;
    display: inline-block;
}

.dashboard .dashboard-block .dashboard-block-box:last-child {
    margin-right: 0;
}

.dashboard .dashboard-block .dashboard-block-box img {
    margin-bottom: 30px;
}

.dashboard .dashboard-block .dashboard-block-box .block-value {
    color: #febf32;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard .dashboard-block .dashboard-block-box .block-name {
    color: #febf32;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard .dashboard-block .dashboard-block-box .protect img {
    margin-bottom: 0;
    width: 18px;
    vertical-align: -3px;
    margin-left: 2px;
}

.dashboard .dashboard-block .dashboard-block-box .btn {
    width: 200px;
    background: #222531;
    color: #febf32;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.dashboard .dashboard-block .dashboard-block-box .btn2 {
    background: #febf32;
    color: #000;
    font-size: 16px;
    box-shadow: unset;
}

.dashboard-block-details {
    border: 1px solid #2d3036;
    padding: 15px 10px 0px;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dashboard-block-details-2 {
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.dashboard-block-details .dashboard-block-details-flex {
    display: flex;
    justify-content: space-between;
}

.dashboard-block-details .dashboard-block-details-flex p {
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 10px;
}

.dashboard-block-details .dashboard-block-details-flex .small {
    color: #abafc4;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}

.dashboard-block-details .dashboard-block-details-flex .total-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard-block-details .dashboard-block-details-flex .total-value {
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard .dashboard-block .dashboard-block-box .btn3 {
    background: unset;
    color: #febf32;
    font-size: 16px;
    font-weight: 600;
    border: unset;
}

.dashboard .moreItem {
    display: none;
}

.dashboard .viewBlock {
    display: none;
}

.dashboard .moreItem .col-3 {
    float: left;
}

.dashboard .infoBlock {
    padding: 30px 10px;
}

.dashboard .insurance-check {
    margin: 6px 0 15px;
    justify-content: center;
}

.dashboard .insurance-check p {
    font-size: 12px !important;
    font-weight: 400;
    margin-left: 15px;
}

.dashboard .insurance-check img {
    margin-left: 5px;
}

/* ================================ */

/* =========== dashboard modal ========== */

/* ================================ */

.globe .modal-dialog {
    align-items: center;
}

.globe .modal-content {
    background: #181a20;
    padding: 10px 0 30px;
    border-radius: 37px;
    max-height: 650px;
}

.globe .modal-content p {
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 400;
}

.globe .modal-content .modal-header {
    justify-content: start;
    border-bottom: 0;
}

.globe .modal-content .modal-header p {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #f5f5f5;
}

.globe .nav-tabs {
    border-bottom: unset;
}

.globe .nav-tabs .nav-link {
    background: unset;
    border: unset;
    color: #f5f5f5;
    padding: 0;
    padding-bottom: 5px;
    margin-right: 15px;
}

.globe .nav-tabs .nav-link.active {
    color: #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
}

.globe .globe-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 15px;
}

.globe .globe-flex p {
    margin-bottom: 0px;
}

.globe .globe-flex .name {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
}

.globe .globe-flex .name-set {
    background: -webkit-linear-gradient(45deg, #fff, #333);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.globe .globe-flex .name2 {
    color: #76e268;
}

.globe .globe-flex .date {
    color: #abafc4;
    font-size: 13px;
    font-weight: 400;
}

.globe .globe-flex .datename {
    color: #abafc4;
    font-size: 13px;
    font-weight: 400;
}

.globe .datetime p {
    color: #abafc4;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0px;
}

.globe .globe-flex .amount {
    color: #abafc4;
    font-size: 13px;
    font-weight: 400;
}

.globe .copylink {
    background: #2a2d3c;
    border-radius: 8px;
    color: #abafc4;
    font-size: 18px;
    font-weight: 600;
    width: 180px;
    text-align: center;
    margin: 20px auto;
    padding: 12px 0px;
    cursor: pointer;
}

.globe .copylink:hover {
    color: #f5f5f5;
}

.globe .modal-body {
    max-height: 450px;
    overflow-y: auto;
}

/* ================================ */

/* =========== dashboard insurance modal ========== */

/* ================================ */

.insuranceDash .globe-flex {
    align-items: flex-start;
}

.insuranceDash .globe-flex .status {
    color: #3f7dd9;
    font-size: 18px;
    font-weight: 600;
}

.insuranceDash .globe-flex .status-2 {
    color: #d9803f;
}

.insuranceDash .btn-insurance {
    background: #febf32;
    border-radius: 0px 0px 35px 35px;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 15px;
    border: none;
}

.insuranceDash .modal-content {
    padding-bottom: 0 !important;
}

.insuranceDash .claim-box {
    background: #2a2d3c;
    text-align: center;
    padding: 10px 0;
    margin-top: 15px;
}

.insuranceDash .claim-box .claim-box-title {
    color: #abafc4;
    font-size: 9px;
    font-weight: 500;
    margin-bottom: 5px;
}

.insuranceDash .claim-box .claim-box-amount {
    color: #febf32;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

/* ================================ */

/* =========== new add  ========== */

/* ================================ */

.info {
    display: none;
    width: 100%;
    margin-top: 10px;
}

.info p {
    margin-bottom: 0 !important;
    color: #febf32 !important;
    font-size: 12px !important;
    border: none !important;
    text-align: left !important;
}

#dashBlockInfo {
    cursor: pointer;
}

#mydashBlockInfo p {
    margin-bottom: 20px !important;
}

.showBlock {
    display: none;
    margin-top: -25px;
    margin-bottom: 30px;
}

/* ================================ */

/* =========== filter ========== */

/* ================================ */

.filter {
    background: #2a2d3c;
    border-radius: 8px;
    color: #abafc4;
    font-size: 15px;
    padding: 5px 10px;
    width: 120px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

.filter img {
    margin-left: 5px;
}

.filter-nav .nav-tabs {
    justify-content: space-between;
}

.filter-nav nav {
    width: 100%;
}

.filtermodal .animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

/* ================================ */

/* =========== odometer ========== */

/* ================================ */

.odometer {
    background: unset !important;
    font-family: unset !important;
    border-radius: unset !important;
    padding: unset !important;
}

.odometer-digit {
    background: unset !important;
    box-shadow: unset !important;
    border-radius: unset !important;
    padding: 0 !important;
}

.odometer-ribbon-inner {
    color: #fff !important;
    /* -webkit-transition-duration: 10s !important;
    -moz-transition-duration: 10s !important;
    -ms-transition-duration: 10s !important;
    -o-transition-duration: 10s !important;
    transition-duration: 10s !important */
}

.odometer-digit-inner {
    left: 0 !important;
    text-align: center !important;
}

.total .odometer-ribbon-inner {
    color: #fff !important;
}

.dropdown {
    display: flex;
}

.dropdown button {
    color: #febf32;
    background: none;
    border: none;
    box-shadow: none;
}

.dropdown button i {
    margin-right: 5px;
}

.dropdown-toggle::after {
    vertical-align: 3px;
}

.dropdown-menu {
    padding: 0;
    background: #181a20;
    transform: translate3d(0px, 42px, 0px) !important;
    min-width: 140px;
    text-align: center;
}

.dropdown-item {
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
}

.dropdown-item img {
    width: 25px;
    margin-right: 5px;
}

.loading-spinner {
    text-align: center;
    margin-bottom: 30px;
}

.loading-spinner i {
    color: #febf32;
}

.terms-content {
    font-weight: 600 !important;
    margin-bottom: 0px !important;
    color: #febf32 !important;
    font-size: 16px !important;
}
