@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
      font-family: "Inter Tight", sans-serif;
}
body{
    background-color: rgba(210, 255, 242, 1);
}
a,a:hover{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0px;
    margin-bottom: 0px;
}
:root{
    --light_sky: #D2FFF2;
    --sky: #8EF4DC;
    --dark_green : #01261B;
    --dark_sky: #00D094;
    --ultra_dark_green:#1B2D29;
    
}

.ct_dark_green_text{
    color: var(--dark_green);
}
.ct_dark_sky_text{
    color: var(--dark_sky);
}
/* all font weight css S */
.ct_fw_300{
    font-weight: 300;
}
.ct_fw_400{
    font-weight: 400;
}
.ct_fw_500{
    font-weight: 500;
}
.ct_fw_600{
    font-weight: 600;
}
.ct_fw_700{
    font-weight: 700;
}
.ct_mobile_width{
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
    background-color: var(--light_sky);
    min-height: 100vh;
    
}

.ct_img_30{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 100px;
    cursor: pointer;
}

.ct_fs_24{
    font-size: 24px;
}
.ct_fs_16{
    font-size: 16px;
}

.ct_fs_18{
    font-size: 18px;
}
.ct_fs_20{
    font-size: 20px;
}
.ct_fs_22{
    font-size: 22px;
}
.ct_fs_23{
    font-size: 23px;
}
.ct_fs_14{
    font-size: 14px;
}
.ct_img_h_200{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ct_mb_20{
    margin-bottom: 20px;
}
.ct_mt_20{
    margin-top: 20px;
}
.ct_mt_10{
    margin-top: 10px;
}

.ct_mb_15{
    margin-bottom: 15px;
}
.ct_mt_15{
    margin-top: 15px;
}

.ct_total_balance_card{
    background-color: var(--sky);
    border-radius: 15px;
    overflow: hidden;
}
.ct_px_25{
    padding-inline: 25px;
}
.ct_py_20{
    padding-block: 20px;
}
.ct_mt_30{
    margin-top: 30px;
}

.ct_custom_badge{
    background-color: var(--dark_sky);
    border-radius: 100px;
    padding: 6px 12px;
    color: #fff;
}

.ct_profit_ultra_green{
    background-color: var(--ultra_dark_green);
    padding: 20px;
    position: relative;
}
.ct_profit_ultra_green img {
    position: absolute;
    right: 0;
    top: 0px;
}

.ct_mt_40{
    margin-top: 40px;
}
.ct_mb_40{
    margin-bottom: 40px;
}
.ct_mb_30{
    margin-bottom: 30px;
}

.ct_market_news_card figure{
    margin-bottom: 0px;
    background-color: #BAFFEE;
    border-radius: 20px;
    overflow: hidden;
}
.ct_market_news_card figcaption{
    padding: 14px;
}

.ct_quick_action_card{
    background: linear-gradient(180deg, #BAFFEE 0%, #70998F 100%);

    border-radius: 20px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct_search{
    position: relative;
}
.ct_search input{
    height: 50px;
    background-color: rgba(186, 255, 238, 1);
    border-radius: 100px;
    box-shadow: 0px 3px 4px 0px rgba(1, 38, 27, 0.25);

    padding-left: 40px;
    border: 1px solid transparent;
}
.ct_search i{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.form-control:focus{
    background-color: transparent;
    border-color: var(--dark_sky);
    box-shadow: unset;
}

.ct_watchlist_card{
    padding: 10px 22px;
    background-color: rgba(0, 208, 148, 1);

    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ct_watchlist_card i{
    color: #fff;
    opacity: 0.7
}
.ct_bottom_menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(93, 255, 208, 1);
    padding: 8px 24px;
    border-radius: 40px 40px 0px 0px;
    margin-top: 30px;

}
.ct_bottom_menu li svg{
    display: block;
    margin-inline: auto;
}
.ct_bottom_menu li p{
    color: rgba(0, 188, 135, 0.6);
}
.ct_bottom_menu li.active svg path{
    stroke: var(--dark_green);
}
.ct_bottom_menu li.active p{
    color: var(--dark_green);
}
.ct_green_btn{
    border: 1px solid rgba(0, 200, 83, 1);
    background-color: transparent;
}
.ct_green_btn.active{
    background-color: rgba(0, 200, 83, 1);
    color: #fff;

}
.ct_red_btn{
    border: 1px solid rgba(255, 59, 48, 1);
    background-color: transparent;
}
.ct_red_btn.active{
    background-color: rgba(255, 59, 48, 1);
    color: #fff;

}

.ct_red_btn,.ct_green_btn{
    padding: 10px 15px;
    width: 100%;
    border-radius: 10px;
    outline: none;
    transition: 0.4s ease all;
    font-weight: 600;
    color: rgba(1, 38, 27, 1);
    
}

.ct_input{
    height: 60px;
    border-radius: 10px;
    border: 1px solid rgba(0, 27, 19, 0.2);
    background-color: transparent;
}
.form-control{
    appearance: auto;
}
.ct_custom_tab button {
    width: 100%;
    padding: 12px;
    border-radius: 100px !important;
    color: #fff !important;
}
.ct_custom_tab{
    flex-wrap: nowrap;
    background-color: rgba(27, 45, 41, 1);
    border-radius: 100px;
    padding: 10px;
}

.ct_custom_tab li{
    width: 100%;
}

.ct_custom_tab .nav-link.active, .ct_custom_tab .show>.nav-link{
    background-color: rgba(0, 208, 148, 1)
}

.ct_right_icon{
    position: absolute;
    top: 50%;
    right: 15px;
    font-weight: 600;
    color: rgba(1, 38, 27, 1);
    transform: translateY(-50%);

}
.ct_icon_40{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(0, 69, 49, 1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .ct_slider-container {
      width: 100%;
      margin-top: 20px;
      position: relative;
      text-align: center;
    }

    .ct_slider-container input[type="range"] {
      /* -webkit-appearance: none; */
      width: 100%;
      height: 8px;
      border-radius: 5px;
      accent-color: #00cc99;
      outline: none;
      margin: 0;
      padding: 0;
    }
    
    .ct_text_op_07{
        opacity: 0.7;
    }

    /* .ct_slider-container input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #00cc99;
      cursor: pointer;
      margin-top: -0px;
    } */

    .ct_range_labels {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      margin-top: 4px;
      color: #9be2d2;
    }

    .ct_range_value {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      color: #00cc99;
      font-weight: bold;
    }

    .ct_light_sky_bg{
        background-color: rgba(0, 208, 148, 0.3);
        padding: 12px 10px;
        border-radius: 10px;
    }

    .ct_light_sky_btn{
          background-color: rgba(0, 208, 148, 0.3);
        padding: 12px 20px;
        border-radius: 100px; 
        transition:s ease all;
        display: inline-block;
    }
.ct_fs_8{
    font-size: 8px;
}
.ct_mt_54{
    margin-top: 54px;
}
    .ct_sky_btn{
        background-color: rgba(0, 208, 148, 1);
        height: 60px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        outline: none;
        border: 1px solid   rgba(0, 208, 148, 1);
        transition: 0.4s ease all;
        color: var(--dark_green);
        border-radius: 100px;
        font-weight: 700;
    }

    .ct_sky_outline_btn{
        background-color: transparent;
        color: rgba(0, 208, 148, 1) !important;
        height: 60px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        outline: none;
        border: 1px solid   rgba(0, 208, 148, 1);
        transition: 0.4s ease all;
        color: var(--dark_green);
        border-radius: 100px;
        font-weight: 700;
    }

    .ct_border_radius_10{
        border-radius: 10px;
    }



    .ct_green_text{
        color: rgba(0, 200, 83, 1);
    }
    .ct_red_text{
     color:   rgba(255, 59, 48, 1)
    }
    .ct_gradient_bg{
      background: linear-gradient(180deg, #1B2D29 0%, #009D7A 100%);

        border-radius: 10px;
        padding: 18px;
        display: flex;
        justify-content: space-between;
    }

    .ct_border_top_1{
        border-top:1px solid  rgba(204, 204, 204, 1);
        margin-top: 20px;
    }

    .ct_medium_sky_bg{
        background-color: rgba(0, 208, 148, 0.5);
        padding: 5px 20px;
        border-radius: 10px;
        display: block;
    }

    .ct_badge_slider ul{
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .ct_badge_slider button{
        outline: none;
        background-color: rgba(186, 255, 238, 1);
        padding: 10px 30px;
        border-radius: 100px;
        color: var(--dark_green);
        /* width: 100px; */
        border:1px solid  rgba(186, 255, 238, 1);
        outline: none;
    }
    .ct_badge_slider button.active{
        background-color: rgba(1, 38, 27, 1);
        color: #fff;
    }

    .ct_img_w_110{
        width: 110px;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .ct_splash_logo {
   
    height: 100vh;
    background-color: rgba(0, 21, 15, 1);
}

.ct_pt_140{
    padding-top: 140px;

}

.ct_fs_35{
    font-size: 35px;
}

.ct_onboarding_bg{
    display: grid;
    place-content: center;
    height: 100vh;
    padding-inline: 15px;
}

.ct_login_bg {
    background-color: rgba(210, 255, 242, 1);
    width: 100%;
    height: calc(100% - 153px);
    border-radius: 70px 70px 0px 0px;
}

.ct_pt_20{
    padding-top: 20px;
}

.ct_px_30{
    padding-inline: 30px;
}

.ct_pt_60{
    padding-top: 60px;
}

.ct_Show_eye{
    position: absolute;
    top: 50%;
    right:15px;
    transform: translateY(-50%);
}

.ct_grid_2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 15px;
}

.ct_img_25{
    width: 30px;
    height: 30px;
    border-radius: 100px;
    object-fit: cover;
}

.ct_img_h_210{
    height: 210px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.ct_flex_1{
    flex: 1;
}

.ct_dark_sky_border_btm_1{
    border-bottom: 1px solid var(--dark_sky);
}

.form-check-input:checked{
    background-color: var(--dark_sky);
    border-color: var(--dark_sky);
}

.ct_scaner_bg{
    background-color: rgba(255, 255, 255, 0.35);
    padding: 30px;
    text-align: center;
}

.ct_profile_img{
    position: relative;
    text-align: center;
    width: 80px;
    height: 80px;
    margin-inline: auto;

}

.ct_profile_img > img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100px;
}

.ct_edit_profile {
    position: absolute;
    right: 0px;
    bottom: -10px;
}

.ct_select_input_bg {
    background-color: var(--ultra_dark_green) !important;
    border-radius: 100px !important;
    padding-inline: 20px;
    color: #fff;
}

.ct_dark_green_btn{
    background-color: var(--dark_green);
    color: #fff;
    border-radius: 100px;
    padding: 6px 14px;
}

.ct_img_w_74{
    width:74px;
    height: 74px;
    object-fit: cover;
    border-radius: 13px;
}

.ct_upload_file_box {
    border: 1px dashed rgba(38, 38, 38, 1);
    padding: 35px;
    border-radius: 10px;
}
.ct_upload_img_here{
position: relative;
    background-color: #ffffff7a;
    margin-top: 15px;
    border-radius: 10px
}
.ct_delete_icon{
    width: 20px;
    height:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #fff;
    background-color: #ff0000;
    position: absolute;
    top: 10px;
    right: 10px;
}
.ct_upload_img_here img{
    width: 100%;
    height: 150px;
    object-fit: contain;

}

#ct_logout_modal .modal-content {
    background-color: rgba(210, 255, 242, 1);
}

.ct_increase_btn{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px !important;
    background-color: var(--dark_sky);
    border: 1px solid var(--dark_sky);
}

ul.ct_custom_drop {
    background-color: #fff;
    position: absolute;
    padding: 14px;
    margin-top: 10px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.09);
}
ul.ct_custom_drop li{
    padding-block: 10px;
}
ul.ct_custom_drop li  + li{
    border-top: 1px solid #f2f2f2;
}