html, body{
    width: 100%;
    /* height: 100%; */
    height: 100vh;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: "sssM";
    background-color: #F5F5F5;
}
a{
    text-decoration: none;
}
ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
}
h2{
    padding: 0;
    margin: 0;
    font-size: 30px;
}
p,
figure{
    margin: 0;
    padding: 0;
}
.container-fluid{
    display: flex;
    flex-direction: row;
    padding: 0;
    min-height: 100%;
    /* height: 100%; */
}
.sidebar{
    display: none;
    flex-direction: column;
    width: 350px;
    /* height: 100%; */
    min-height: 100%;
    border-top-right-radius: 30px;
    background-color: #FFFFFF;

    box-shadow: 5px 0px 19px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 0px 19px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 0px 19px 0px rgba(0,0,0,0.1);
}
.sidebar .user_data{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
}
.sidebar .user_data .name{
    font-size: 18px;
    line-height: 22px;
    color: #2D3E98;
    margin-top: 12px;
}
.sidebar .user_data .bt_view_profile{
    margin-top: 12px;
}
.sidebar .user_data .bt_view_profile a{
    color: #6A6A6A;
    font-size: 18px;
    line-height: 18px;
}
.sidebar .user_data .avatar{
    width: 150px;
    height: 150px;
    margin-top: 20px;
    position: relative;
}
.sidebar .user_data .avatar .image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dee2e6;
}
.sidebar .user_data .avatar .image.vertical img,
.sidebar .user_data .avatar .image.square img{
    width: 100%;
    float: left;
}
.sidebar .user_data .avatar .image.horizontal img{
    height: 100%;
    float: left;
}
.sidebar .user_data .avatar .bt_edit_avatar{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    display: flex;
    font-size: 20px;
    top: 10px;
    right: 0;
    border-radius: 18px;
    z-index: 1;
    background-color: #FFFFFF;
    cursor: pointer;

    box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.25);
}
.sidebar .user_data .avatar .bt_edit_avatar:hover{
    background-color: #2D3E98;
    color: #FFFFFF;
}
.sidebar_menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: calc(100% - 260px);
    background-color: #2D3E98;
    background-image: url("../images/border_top.svg");
    background-repeat: no-repeat;
    padding-top: 50px;
    margin-top: 20px;
}
.sidebar_menu ul{
    width: 300px;
}
.sidebar_menu ul li{
    margin-bottom: 30px;
}
.sidebar_menu ul li:last-child{
    margin-bottom: 0;
}
.sidebar_menu ul li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-left: 5px solid #2D3E98;
    padding-left: 20px;
}
.sidebar_menu ul li a:hover{
    border-left: 5px solid #FFFFFF;
}
.sidebar_menu ul li a.selected{
    border-left: 5px solid #FFFFFF;
}
.sidebar_menu ul li a p{
    color: #FFFFFF;
    font-size: 16px;
    line-height: 16px;
    padding-top: 3px;
    
   
}
.sidebar_menu ul li a .icon{
    display: flex;
    justify-content: center;
    width: 30px;
    margin-right: 10px;
}

.content{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: calc(100% - 30px);
    margin-left: 15px;
    padding-top: 30px;
}
.content .header_actions{
    display: flex;
    flex-direction: row;
    position: absolute;
    right: 0;
}
.content .header_actions .bt_new_video,
.content .header_actions .bt_logout{

}
.content .header_actions .bt_new_video a,
.content .header_actions .bt_logout a{
    display: flex;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    box-sizing: border-box;
    padding: 10px;
}
.content .header_actions .bt_logout a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .header_actions .bt_logout a .fa-arrow-right-from-bracket{
    font-size: 25px;
    color: red;
}
.content .header_actions .bt_new_video a:hover{
    background-color: rgba(0,0,0,0.05);
}
.content .header_actions .bt_logout a:hover{
    background-color: red;
}
.content .header_actions .bt_logout a:hover .fa-arrow-right-from-bracket{
    color: #FFFFFF;
}
.content .header_actions .bt_new_video a img{
    width: 100%;
    float: left;
}
.content .header_actions .bt_new_video.selected a{
    background-color: rgba(0,0,0,0.05);
}
.content .header_actions .bt_bars{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
    margin-left: 10px;
}
.content .header_actions .bt_bars .fa-bars{
    font-size: 25px;
}
.content .header_actions .bt_bars:hover{
    background-color: rgba(0,0,0,0.05);
}
.content .inner{
    width: calc(100% - 30px);
}
.content .inner .hello{
    display: flex;
    flex-direction: column;
}
.content .inner .hello .name{
    font-size: 38px;
    line-height: 44px;
}
.content .inner .hello .salutation{
    font-size: 16px;
    line-height: 22px;
    color: #6A6A6A;
}
.content .inner .box_data{
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 50px;
}
.content .inner .box_data .left{
    /* margin-right: 25px; */
    margin-right: 0;
}
.content .inner .box_data .left .top{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.content .inner .box_data .left .top .gains{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 315px;
    background-color: #617DE5;
    border-radius: 20px;
    margin-right: 25px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
}
.content .inner .box_data .left .top .gains .icon{

}
.content .inner .box_data .left .top .gains .title{
    color: #FFFFFF;
    font-size: 25px;
    line-height: 25px;
    margin-top: 40px;
}
.content .inner .box_data .left .top .gains .value{
    color: #FFFFFF;
    font-size: 45px;
    line-height: 45px;
    margin-top: 15px;
    font-family: "sssM";
}
.content .inner .box_data .left .top .gains .this_month{
    background-color: #2D3E98;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 7px 20px;
    margin-top: 15px;
}
.content .inner .box_data .left .top .gains .this_month p{
    color: #FFFFFF;
    padding-top: 4px;
}
.content .inner .box_data .left .top .stats{
    width: 100%;
    height: 315px;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding-left: 40px;
    margin-top: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
}
.content .inner .box_data .left .top .stats .ranking{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}
.content .inner .box_data .left .top .stats .ranking .value{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #617DE5;
    width: 88px;
    height: 88px;
    border-radius: 15px;
}
.content .inner .box_data .left .top .stats .ranking .value p{
    color: #FFFFFF;
    font-size: 45px;
    line-height: 45px;
    padding-top: 8px;
}
.content .inner .box_data .left .top .stats .ranking .title{
    display: flex;
    align-items: center;
    width: 150px;
    margin-left: 10px;
}
.content .inner .box_data .left .top .stats .ranking .title p{
    font-size: 18px;
    line-height: 24px;
}
.content .inner .box_data .left .top .stats .videos_count{
    display: flex;
    flex-direction: row;
    margin-top: 40px;
}
.content .inner .box_data .left .top .stats .videos_count .value{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #617DE5;
    width: 88px;
    height: 88px;
    border-radius: 15px;
}
.content .inner .box_data .left .top .stats .videos_count .value p{
    color: #FFFFFF;
    font-size: 45px;
    line-height: 45px;
    padding-top: 8px;
}
.content .inner .box_data .left .top .stats .videos_count .title{
    display: flex;
    align-items: center;
    width: 150px;
    margin-left: 10px;
}
.content .inner .box_data .left .top .stats .videos_count .title p{
    font-size: 18px;
    line-height: 24px;
}




.content .inner .box_data .left .bottom{
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    /* height: 520px; */
}
.content .inner .box_data .left .bottom .box_products_sold{
    margin-top: 30px;
}
.content .inner .box_data .left .bottom .box_products_sold .title{
    margin-bottom: 7px;
}
.content .inner .box_data .left .bottom .box_products_sold .title p{
    font-size: 18px;
    line-height: 18px;
}
.content .inner .box_data .left .bottom .box_products_sold .products_sold{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #2D3E98;
    border-radius: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    margin-top: 5px;
    box-sizing: border-box;
    padding: 20px 15px;
}
.content .inner .box_data .left .bottom .box_products_sold .products_sold .product_sold{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 206px;
    height: 210px;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 10px;
    box-sizing: border-box;
    padding: 10px;
}
.content .inner .box_data .left .bottom .box_products_sold .products_sold .product_sold.vertical img{
    height: 100%;
    float: left;
}
.content .inner .box_data .left .bottom .box_products_sold .products_sold .product_sold.horizontal img,
.content .inner .box_data .left .bottom .box_products_sold .products_sold .product_sold.square img{
    width: 100%;
    float: left;
}
.content .inner .box_data .left .bottom .box_products_sold .products_sold .product_sold:last-child{
    margin-right: 0;
}



.content .inner .box_data .right{
    width: 100%;
    margin-top: 35px;
}
.content .inner .box_data .right .box_last_publication{
    height: 100%;
}
.content .inner .box_data .right .box_last_publication .video{
    border-radius: 12px;
    overflow: hidden;
}
.content .inner .box_data .right .box_last_publication .title{
    
}
.content .inner .box_data .right .box_last_publication .title p{
    font-size: 18px;
    line-height: 18px;
}
.content .inner .box_data .right .box_last_publication .last_publication{
    height: calc(100% - 28px);
    min-height: 285px;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-top: 10px;
    padding-top: 0;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
}
.content .inner .box_data .right .box_last_publication .last_publication .video{
    
}
.content .inner .box_data .right .box_last_publication .last_publication .data{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 15px 15px;
}
.content .inner .box_data .right .box_last_publication .last_publication .data .title{
    font-size: 25px;
    line-height: 30px;
}
.content .inner .box_data .right .box_last_publication .last_publication .data .date{
    color: #6A6A6A;
}
.content .inner .box_data .right .box_last_publication .last_publication .data .bt_view_all{

}
.content .inner .box_data .right .box_last_publication .last_publication .data .bt_view_all a{
    
}
.content .inner .box_data .right .box_last_publication .last_publication .data .bt_view_all a p{
    
}

#mis-finanzas .inner,
#mis-videos .inner,
#mis-cupones .inner,
#nuevo-video .inner,
#perfil .inner{
    width: 990px;
    padding-top: 50px;
}
#mis-finanzas .inner .title,
#mis-videos .inner .title,
#mis-cupones .inner .title,
#nuevo-video .inner .title,
#perfil .inner .title{
    font-size: 30px;
    line-height: 30px;
}
#mis-finanzas .inner .box_data{
    
}
#mis-finanzas .inner .box_data .left{
    width: 100%;
}
#mis-finanzas .inner .box_data .left .top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    height: auto;
}
#mis-finanzas .inner .box_data .left .top .coupons_total{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}
#mis-finanzas .inner .box_data .left .top .coupons_redeemed{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #2D3E98;
    border-bottom: 1px solid #2D3E98;
    height: 100%;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}
#mis-finanzas .inner .box_data .left .top .commision{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}
/* #mis-finanzas .inner .box_data .left .top{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    height: 210px;
}
#mis-finanzas .inner .box_data .left .top .coupons_total{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: calc(100% / 3);
}
#mis-finanzas .inner .box_data .left .top .coupons_redeemed{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #2D3E98;
    border-right: 1px solid #2D3E98;
    height: 100%;
    width: calc(100% / 3);
}
#mis-finanzas .inner .box_data .left .top .commision{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: calc(100% / 3);
} */
#mis-finanzas .inner .box_data .left .top .coupons_total .value,
#mis-finanzas .inner .box_data .left .top .coupons_redeemed .value,
#mis-finanzas .inner .box_data .left .top .commision .value{
    font-size: 40px;
    line-height: 80px;
    color: #2D3E98;
}
#mis-finanzas .inner .box_data .left .top .commision .value{
    font-size: 40px;
}
#mis-finanzas .inner .box_data .left .top .coupons_total .description,
#mis-finanzas .inner .box_data .left .top .coupons_redeemed .description,
#mis-finanzas .inner .box_data .left .top .commision .description{
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
#mis-finanzas .inner .box_data .left .bottom{
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    height: 455px;
}
#mis-finanzas .inner .box_data .left .bottom .title{
    font-size: 18px;
    line-height: 22px;
    color: #2D3E98;
}
#mis-finanzas .inner .box_data .left .bottom ul li{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list{
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_left{
    width: calc(100% - 90px);
    margin-right: 10px;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_left .name{
    font-size: 16px;
    line-height: 20px;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_left .status{
    font-size: 12px;
    line-height: 15px;
    color: #000000;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_right{
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_right .price{
    color: #2D3E98;
    font-size: 16px;
    line-height: 20px;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_right .date{
    color: #000000;
    font-size: 12px;
    line-height: 15px;
}
#mis-finanzas .inner .box_data .right{
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    width: 100%;
}
#chartdiv {
    width: 310px;
    height: 340px;
    margin-left: 15px;
}
#legenddiv {
    /* width: 310px;
    height: 250px;
    margin-top: 45px;
    margin-left: 15px; */

    width: 340px;
    height: 220px;
    margin-top: 45px;
    margin-left: 15px;
    margin-right: 15px;
  }
  
#mis-finanzas .inner .box_data .right .sales{

}
#mis-finanzas .inner .box_data .right .commision_details{

}
#mis-finanzas .inner .box_data .right .commision_details .pie_chart{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
#mis-finanzas .inner .box_data .left .bottom .sales_list .product_right .date{
    
}




#mis-finanzas .inner .box_data .right .commision_details .pie_chart_detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-top: 15px;
}
#mis-finanzas .inner .box_data .right .commision_details .pie_chart_detail .title{
    font-size: 20px;
    line-height: 25px;
}
#mis-finanzas .inner .box_data .right .commision_details .pie_chart_detail .value{
    font-size: 30px;
    line-height: 35px;
    margin-top: 5px;
}
#mis-videos .inner .box_data{
    margin-bottom: 100px;
}
#mis-videos .inner .box_data .video_list{
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px; */
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    width: 100%;
}
#mis-videos .inner .box_data .video_list .video_element{
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
}
#mis-videos .inner .box_data .video_list .video_element .video{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 183px;
    position: relative;
}
#mis-videos .inner .box_data .video_list .video_element .video .bt_play{
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    font-size: 25px;
    line-height: 25px;
    border-radius: 30px;
    cursor: pointer;
}
#mis-videos .inner .box_data .video_list .video_element .video .bt_play:hover{
    background-color: #2D3E98;
}

#mis-videos .inner .box_data .video_list .video_element .video img{
    width: 100%;
    float: left;
}
#mis-videos .inner .box_data .video_list .video_element .data{
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
}
#mis-videos .inner .box_data .video_list .video_element .data .title{
    font-size: 18px;
    line-height: 22px;
}
#mis-videos .inner .box_data .video_list .video_element .data .description{
    font-size: 15px;
    line-height: 19px;
    font-family: "sssR";
    margin-top: 5px;
}
#mis-videos .inner .box_data .video_list .video_element .data .status{
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid gray;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-top: 5px;
    font-family: 'sssB';
}
#mis-videos .inner .box_data .video_list .video_element .data .status.accepted{
    color: green;
}
#mis-videos .inner .box_data .video_list .video_element .data .status.rejected{
    color: red;
}
#mis-cupones .inner .box_data{
    margin-bottom: 100px;
}
#mis-cupones .inner .box_data .coupon_list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    width: 100%;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element{
    display: grid;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2);
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_code{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #FFFFFF;
    height: 70px;
    box-sizing: border-box;
    /* border-top-left-radius: 12px;
    border-top-right-radius: 12px; */
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_code .type{
    position: absolute;
    top: 0;
    right: 0;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_code .code{
    font-size: 30px;
    line-height: 30px;
    font-family: "sssB";
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_code .code p{
    padding-top: 8px;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_type{
    display: flex;
    align-items: center;
    background-color: #2189ff;
    height: 40px;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_type p{
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    padding-top: 5px;
    font-size: 18px;
    line-height: 20px;
    font-family: "sssB";
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_data{
    background-color: #2D3E98;
    color: #FFFFFF;
    box-sizing: border-box;
    padding: 20px 20px;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_data .data_item{
    margin-bottom: 15px;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_data .data_item:last-child{
    margin-bottom: 0;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_data .data_item .label{
    font-size: 14px;
    line-height: 14px;
}
#mis-cupones .inner .box_data .coupon_list .coupon_element .coupon_data .data_item .value{
    font-size: 20px;
    line-height: 24px;
    margin-top: 5px;
    font-family: "sssB";
}
#nuevo-video .form_data,
#perfil .form_data{
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
#nuevo-video .form_data form,
#perfil .form_data form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
#nuevo-video .form_data form .field,
#perfil .form_data form .field{
    width: 100%!important;
    margin-bottom: 20px;
}
#perfil .form_data form .field.payment_data{
    width: 100%!important;
}
#perfil .form_data form .field.payment_data textarea{
    height: 130px;
}

#nuevo-video .form_data form .field.field_yt{
    width: 100%!important;
}
#nuevo-video .form_data form .field.field_yt .highlighted{
    font-family: 'sssb';
    color: #87BE3C;
}
.select2-container .select2-selection--multiple{
    display: flex;
    align-items: center;
    min-height: 48px!important;
    border: solid #dee2e6 1px;
    border-radius: 6px;
}
.container_files{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    text-align: center;
    font-family: 'sssB';
    color: #FFFFFF;
}
.container_files .file_element{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.container_files .file_element p{
    font-size: 20px;
    line-height: 20px;
    color: #2D3E98;
    margin-right: 15px;
    padding-top: 9px;
}
.container_files .file_element .progress_percent{
    font-size: 30px;
    line-height: 30px;
    padding-top: 6px;
    color: #2D3E98;
    margin-right: 15px;
}
.container_files .file_element .bt_delete{
    display: flex;
}
.container_files .file_element .bt_delete a{
    background-color: #EB1C24;
    border: 1px solid #EB1C24;
    border-radius: 6px;
    padding: 5px 10px;
}
.container_files .file_element .bt_delete a p{
    padding-top: 3px;
    font-family: 'sssB';
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    margin: 0;
}
.container_files .file_element .bt_delete a:hover{
    background-color: #FFFFFF;
}
.container_files .file_element .bt_delete a:hover p{
    color: #EB1C24;
}
#nuevo-video .form_data form .field.box_upload_image,
#perfil .form_data form .field.box_upload_image{
    width: 100%!important;
    /* background-color: #2D3E98; */
}
.box_upload_image .bt_seleccionar_archivo{
    width: 350px;
    margin-top: 15px;
}
.box_upload_image .bt_seleccionar_archivo a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #2D3E98;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 10px 0;
}
.box_upload_image .bt_seleccionar_archivo a p{
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    font-family: 'sssB';
    padding-top: 5px;
}
.box_upload_image .bt_seleccionar_archivo a:hover{
    background-color: #FFFFFF;
    border: 1px solid #2D3E98;
}
.box_upload_image .bt_seleccionar_archivo a:hover p{
    color: #2D3E98;
}
.box_upload_image .box_inner_upload_image{
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    align-items: center;
}
.box_inner_upload_image{
    display: block!important;
    width: 100%;
    margin-top: 0!important;
}
.box_inner_upload_image input{
    width: 100%;
}
.response_upload_avatar_image{
    margin-top: 10px;
}
/* input[type="file"]{
    position: fixed;
    left: -1000px;
    z-index: 0;
    width: 0;
    height: 0;
} */
input[type="file"]{
    font-size: 18px;
    padding-top: 5px;
    /* border: 1px solid #2D3E98;
    background-color: #2D3E98;
    color: #FFFFFF; */
}

#nuevo-video .form_data .actions,
#perfil .form_data .actions,
#login .actions{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
}
#nuevo-video .form_data .actions button,
#nuevo-video .form_data .success button,
#perfil .form_data .actions button,
#login .actions button{
    background-color: #000000;
    border: 1px solid #000000;
    width: 200px;
    height: 46px;
    border-radius: 10px;
}
#nuevo-video .form_data .success button{
    width: 270px;
    margin-top: 35px;
}
#nuevo-video .form_data .actions button p,
#nuevo-video .form_data .success button p,
#perfil .form_data .actions button p,
#login .actions button p{
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
    font-family: "sssB";
    padding-top: 5px;
}
#nuevo-video .form_data .actions button:hover,
#nuevo-video .form_data .success button:hover,
#perfil .form_data .actions button:hover,
#login .actions button:hover{
    background-color: #FFFFFF;
}
#nuevo-video .form_data .actions button:hover p,
#nuevo-video .form_data .success button:hover p,
#perfil .form_data .actions button:hover p,
#login .actions button:hover p{
    color: #000000;
}
#nuevo-video .form_data .response_upload_video_image{
    font-size: 18px;
    line-height: 22px;
    margin-top: 10px;
    color: #2D3E98;
}
#nuevo-video .form_data .response_upload_video_image .upload_error{
    color: #EB1C24;
}

#nuevo-video .actions .loader,
#perfil .actions .loader,
#login .actions .loader{
    width: 46px;
    display: none;
}
#nuevo-video .actions .loader img,
#perfil .actions .loader img,
#login .actions .loader img{
    float: left;
    width: 100%;
}
#nuevo-video .form_data .success{
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
#nuevo-video .form_data .success .text{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#nuevo-video .form_data .success .text p.description{
    width: 640px;
    margin-top: 10px;
}
#nuevo-video .form_data .success .text h2{
    color: #2D3E98;
}
.offcanvas{
    width: 315px!important;
    background-color: transparent;
    box-shadow: none!important;
    border: 0!important;
}
.offcanvas-body{
    padding: 0;
}
.offcanvas-body .sidebar{
    display: flex;
    height: 100%;
    width: 300px;
}
.offcanvas-body .sidebar .sidebar_menu ul {
    width: 250px;
}
.field.facebook,
.field.twitter,
.field.youtube,
.field.tiktok,
.field.twitch{
    display: none;
}

#mis-videos .modal-dialog{
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 0!important;
    max-width: unset!important;
}
#mis-videos .modal-content{
    width: 90%;
    height: 90%;
    max-width: 90%;
    max-height: 90%;
}
#mis-videos .modal-content .modal_video{
    height: calc(100% - 34px);
    box-sizing: border-box;
    padding: 15px;
}
#mis-videos .modal-content{
    position: relative;
}
#mis-videos .modal-content .modal_video .modal_video_header{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
#mis-videos .modal-content .modal_video .modal_video_header .type{
    margin-bottom: 10px;
    font-family: 'sssB';
}
#mis-videos .modal-content .modal_video .modal_video_header .bt_close a{
    font-size: 25px;
    line-height: 25px;
    color: #000000;
}
#mis-videos .modal-content .modal_video .modal_video_header .bt_close a:hover{
    color: #CCCCCC;
}

#mis-videos .modal-content .modal_video .video{
    height: 100%;
}
#toast-container.toast-top-center > div, #toast-container.toast-bottom-center > div{
    width: 370px!important;
}

.box_login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.box_login .box_login_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
    box-sizing: border-box;
    padding: 30px 30px;
    background-color: #FFFFFF;

    box-shadow: 5px 0px 19px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 0px 19px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 0px 19px 0px rgba(0,0,0,0.1);
}
.box_login .box_login_inner #form_login{
    width: 100%;
}
.box_login .box_login_inner #form_login .field{
    width: 100%;
}
.box_login .box_login_inner #form_login .field.password{
    margin-top: 15px;
}
#login .toast-message {
    padding-top: 5px!important;
}
.sidebar_menu .logo_sidebar{
    width: 150px;
    padding-bottom: 30px;
}
.sidebar_menu .logo_sidebar img{
    float: left;
    width: 100%;
}

#perfil .form_data form#change_password .field{
    width: 100%!important;
}
.no_data_graph{
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
.no_data_most_saled{
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.no_data_last_video{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 25px;
}
.content .inner .box_data .left .bottom .box_banner{
    width: 100%;
}
.content .inner .box_data .left .bottom .box_banner img{
    float: left;
    width: 100%;
}
.noavatar .fa-solid{
    font-size: 50px;
    color: #ebebeb;
}


@media (min-width: 576px) {
    /* #mis-finanzas .inner .box_data .right .commision_details .pie_chart{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    } */
    
    #mis-finanzas .inner .box_data .left .top{
        flex-direction: row;
        height: 170px;
    }
    #mis-finanzas .inner .box_data .left .top .coupons_total{
        height: 100%;
        width: calc(100% / 3);
    }
    #mis-finanzas .inner .box_data .left .top .coupons_redeemed{
        height: 100%;
        width: calc(100% / 3);
        border-top: none;
        border-bottom: none;
        border-left: 1px solid #2D3E98;
        border-right: 1px solid #2D3E98;
    }
    #mis-finanzas .inner .box_data .left .top .commision{
        height: 100%;
        width: calc(100% / 3);
    }

}

@media (min-width: 768px) { 
    .content .inner .box_data .left .top{
        display: flex;
        flex-direction: row;
    }
    .content .inner .box_data .left .top .stats{
        margin-top: 0;
    }
    #mis-finanzas .inner, #mis-videos .inner, #mis-cupones .inner, #nuevo-video .inner, #perfil .inner {
        width: 100%;
        padding-top: 50px;
    }
    .content .inner{
        width: 100%;
    }
    #mis-finanzas .inner .box_data .right .commision_details .pie_chart{
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    
    #nuevo-video .form_data form,
    #perfil .form_data form{
        flex-direction: row;
        justify-content: space-between;
    }
    #nuevo-video .form_data form .field,
    #perfil .form_data form .field{
        width: calc(50% - 10px)!important;
    }
    .content .header_actions .bt_bars{
        display: none;
    }
    .content .header_actions{
        right: 40px;
    }
    .sidebar{
        display: flex;
    }
    .offcanvas-body .sidebar{
        display: none;
    }
    
    .content{
        margin-left: 0;
        width: calc(100% - 350px);
    }
    #home-section .inner, #mis-finanzas .inner, #mis-videos .inner, #mis-cupones .inner, #nuevo-video .inner, #perfil .inner {
        width: 600px;
        padding-top: 50px;
    }
    .content .inner{
        width: 600px;
    }
    .content .inner .box_data .left .top{
        flex-direction: column;
    }
    .content .inner .box_data .left .top .gains {
        width: 100%;
        height: 315px;
        margin-right: 25px;
    }
    .content .inner .box_data .left .top .stats{
        width: 100%;
        border-radius: 20px;
        padding-left: 40px;
        margin-top: 20px;
    }
    
}

@media (min-width: 1200px) {
    #mis-finanzas .inner, #mis-videos .inner, #mis-cupones .inner, #nuevo-video .inner, #perfil .inner {
        width: 780px;
        padding-top: 50px;
    }
    .content .inner{
        width: 780px;
    }
    .content .inner .box_data .left .top{
        flex-direction: row;
    }
    .content .inner .box_data .left .top .gains {
        width: 50%;
        margin-right: 25px;
    }
    .content .inner .box_data .left .top .stats{
        width: 50%;
        border-radius: 20px;
        padding-left: 40px;
        margin-top: 0;
    }
}

@media (min-width: 1400px) {
    #mis-finanzas .inner, #mis-videos .inner, #mis-cupones .inner, #nuevo-video .inner, #perfil .inner {
        width: 990px;
        padding-top: 50px;
    }
    .content .inner{
        width: 990px;
    }
    .content .inner .box_data{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
    .content .inner .box_data .left {
        margin-right: 25px;
        width: 685px;
    }
    .content .inner .box_data .left .top .gains {
        width: 330px;
        margin-right: 25px;
    }
    .content .inner .box_data .left .top .stats{
        width: 330px;
        border-radius: 20px;
        padding-left: 40px;
    }
    .content .inner .box_data .left .bottom{
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .content .inner .box_data .left .bottom .box_products_sold {
        margin-top: 25px;
    }
    
    .content .inner .box_data .right {
        margin-top: 0;
        width: 281px;
    }
    #mis-finanzas .inner .box_data .left{
        width: calc(100% - 365px);
    }
    #mis-finanzas .inner .box_data .right{
        width: 340px;
        min-height: 170px;
    }
    #mis-finanzas .inner .box_data .right .commision_details .pie_chart{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        
    }
    #legenddiv {
        width: 310px;
        height: 200px;
        margin-top: 20px;
        margin-left: 15px;
    }
}

small{
    margin-top: 10px;
    display: block;
}