@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch&family=Poppins:wght@100;200;300;500&display=swap');
/* Tanımlamalar */
:root{
    --master-color:#212121;
    --master-color-hover:#424242;
    --border-color:#424242;
    --slave-color:;
    --primary-color:#3949AB;
    --primary-hover-color:#283593;
    --success-color:#4CAF50;
    --success-hover-color:#43A047;
    --warning-color:#FFA000;
    --warning-hover-color:#FF6F00;
    --danger-color:#F44336;
    --danger-hover-color:#C62828;
    --info-color:#03A9F4;
    --info-hover-color:#0288D1;
    --link-color:;
    --orange-color:#FF3D00;
    --orange-dark-color:#DD2C00;
    --orange-light-color:#FBE9E7;
    --white-color:#ffffff;

    --logo-green:#8BC34A;
    --logo-light-green:#E7FFCC;

    --header-link-color:#ffffff;

    --background-color:#f1f2f7;
    --layer-background:#ffffff;
    
}
body{
    background: var(--background-color);
    font-size: 14px;
    font-family: var(--master-font);
    font-weight: 300;
}
#header{
    background-color: var(--master-color);
    border: 0;
}
#header .nav > li > a:hover, 
#header .nav > li > a:focus{
    background-color: var(--layer-background);
    color: var(--master-color);
}
.navbar-nav > li > .dropdown-menu{
    border-top: 0!important;
    box-shadow: 0 0 0;
}
.navbar-nav > li .dropdown-header{
    padding-left: 10px;
    padding-right: 10px;
}
.navbar-nav > li .dropdown-menu > li > a{
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.navbar-nav > li .dropdown-menu > li > a i{
    margin-right: 5px;
}
#menu{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 0;
    font-weight: 500;
}
#header .container-fluid{
    display: flex;
    justify-content: start;
    align-items: center;
}
#header .container-fluid::before,
#header .container-fluid::after{
    display: none;
}
#menu li li a:before,
#menu li a.parent:after,
#menu li a.collapsed:after{
    display: none;
}
#header .navbar-right{
    margin-left: auto;
}
#menu > li{
    margin-right: 5px;
}
#menu > li > a{
    border-radius: 6px;
    padding-left: 10px;
    color: var(--header-link-color);
    display: flex;
    justify-content: start;
    align-items: center;
    white-space: nowrap;
}
#menu > li > a:hover:hover{
    background-color: var(--master-color-hover);
}
#menu > li.active > a{
    background-color: rgba(0,0,0,.3);
    color: var(--header-link-color);
}
#menu > li > ul{
    position: absolute;
    left: 0;
    top: 50px;
    background-color: var(--layer-background);
    border-radius: 5px;
    box-shadow: 0px 2000px 0px 2000px rgba(0,0,0,0.4);
    min-width: 150px;
    border: 0;
}
#menu > li > ul::before{
    content: "";
    position: absolute;
    left: 15px;
    top: -14px;
    border-style: solid;
    border-width: 7px;
    border-color: transparent transparent var(--layer-background) transparent;
}
#menu li li.active > a,
#menu > li > ul li:hover > a{
    background-color: var(--logo-light-green);
    color: var(--logo-green);
}
#menu > li > ul > li:first-child > a{
    border-radius: 5px 5px 0 0;
}
#menu > li > ul > li:last-child > a{
    border-radius: 0 0 5px 5px;
}
#menu > li:first-child > a > i{
    margin-right: 0;
}
.modal-content{
    border: 0;
    border-radius: 8px;
    box-shadow: 0 0 0;
}
.tile-primary{
    background-color: var(--layer-background);
    border-radius: 8px;
    overflow: hidden;
}
.tile-footer{
    background-color: transparent;
    border-top: 1px solid rgba(0,0,0,.1);
    display: none;
}
.tile-heading{
    color: var(--master-color);
    text-shadow: 0 0 0;
    padding: 10px;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
}
.tile-body{
    color: var(--master-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tile .tile-body i{
    color: var(--orange-color);
    background-color: var(--orange-light-color);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 22px;
}
.tile .tile-body h2{
    font-family: var(--slave-font);
    margin-bottom: 0;
    font-size: 38px;
}
.tile a{
    color: var(--master-color);
}
.panel-default{
    border: 0;
    border-radius: 8px;
    box-shadow: 0 0 0;
    padding: inherit;
}
.panel-default .panel-heading{
    background-color: transparent;
    border-bottom: 0;
}
.panel-heading h3 i{
    color: var(--orange-color);
}
.row{
    margin-left: -7.5px!important;
    margin-right: -7.5px!important;
}
.row > *{
    padding-left:7.5px!important;
    padding-right:7.5px!important;
}
.page-header h1{
    margin-bottom: 0;
    display: none;
}
.breadcrumb{
    margin: 0;
}
.page-header .container-fluid{
    display: flex;
    justify-content: start;
    align-items: center;
    padding-bottom: 15px;
}
.page-header .container-fluid .pull-right{
    order: 2;
    margin-left: auto;
    display: flex;
    justify-content: end;
    align-items: center;
}
.page-header .container-fluid .pull-right a,
.page-header .container-fluid .pull-right button{
    margin-left: 5px;
}

.panel-heading h3{
    display: flex;
    justify-content: start;
    align-items: center;
}
.alert{
    background-color: var(--layer-background);
    border: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px!important;
}
.alert > i{
    margin-right: 10px;
    font-size: 22px;
    opacity: .5;
}
.alert-dismissable .close, 
.alert-dismissible .close{
    top: auto;
    right: auto;
    order: 3;
    margin-left: auto;
}
.dash__status{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 12px;
    padding: 5px;
}
.dash__status.stabil{
    color: #ff3d00;
    background: #fbe9e7;
}
.dash__status.stabil::before{
    content: "";
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #ff3d00;
    margin-right: 5px;
}

.dash__status.positive{
    color: #1B5E20;
    background: #E8F5E9;
}
.dash__status.positive::before{
    content: "\ea56";
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    color: #1B5E20;
    margin-right: 5px;
}
.dash__status.negative{
    color: #D50000;
    background: #FFEBEE;
}
.dash__status.negative::before{
    content: "\ea50";
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    color: #D50000;
    margin-right: 5px;
}
.top__header{
    background-color: var(--master-color);
    border-bottom: 1px solid var(--border-color);
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1016;
    padding-top: 10px;
}
.top__menu{
    display: flex;
    justify-content: end;
    align-items: center;
}
.top__menu a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--header-link-color);
    padding: 0 10px;
    height: 30px;
    font-size: 12px;
}
.top__menu a i{
    margin-right: 10px;
    font-size: 16px;
}
.top__menu a:hover{
    background-color: var(--master-color-hover);
}
#header .nav > li > a{
    color: var(--header-link-color);
}
#header{
    position: relative!important;
}
.shadow__icon{
    animation-name: shadow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes shadow{
    from{
        box-shadow:0 0 0 0 rgba(251,233,231,.7)
    }to{
        box-shadow:0 0 0 30px rgba(9,184,62,0)
    }
}
.oc3 .page{
    padding-top: 0!important;
    margin-top: -18px;
}
.position-selectors,
.oc3 .j-header{
    width: 100%!important;
    position: relative!important;
    top: 0!important;
    left: 0!important;
}
.j-logo{
    display: none!important;
}
.j-header > .j-button{
    left: 0px!important;
}
.oc3 .page-layout .positions{
    margin-top: 0!important;
}
.j-header{
    background-color: var(--master-color)!important;
    border-top: 1px solid var(--border-color);
}
.oc3 #header{
    box-shadow: 0 0 0!important;
}
.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg, .apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg, .apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg{
    fill: var(--orange-color)!important;
}
.status__bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.status__bar .status{
   /* background-color: var(--layer-background); 
    border-radius: 5px;*/
    display: flex;
    justify-content: start;
    align-items: center;
    height: 80px;
    /*padding: 0 0 0 20px;*/
}
.status__bar .developer{
    background: var(--layer-background);
    border-radius: 5px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.status__bar .status .icon{

    background-color: var(--layer-background);
    border-radius: 5px 0 0 5px;
    padding: 0 15px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.status__bar .status .by__progress{
    width: 88%;
    height: 5px;
    background-color: rgba(0,0,0,.1);
    border-radius: 99px;
    position: relative;
}
.status__bar .status .stat{
    width: 300px;
    padding: 15px;
    height: 80px;
    border-right: 1px solid var(--background-color);
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    margin-right: 15px;
    background-color: var(--layer-background);
    border-radius: 0 5px 5px 0;
    padding-right: 20px;
}
.status__bar .status .stat.last{
    border-right: 0;
}
.status__bar .status .stat span{
    font-size: 12px;
    display: block;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
}
.status__bar .status .by__progress .in{
    width: var(--value);
    position: relative;
    height: 5px;
    background: var(--logo-green);
    border-radius: 99px;
}
.status__bar .status .by__progress .in::before{
    content: attr(data-value);
    position: absolute;
    font-size: 11px;
    background-color: var(--logo-green);
    color: #fff;
    border-radius: 3px;
    right: -40px;
    bottom: -5px;
    width: 33px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0 5px;
}
.status__bar .status .by__progress .in::after{
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 3px;
    border-color: transparent var(--logo-green) transparent transparent ;
    right: -7px;
    bottom: 0px;
}

.status__bar .status .cancel .by__progress .in{
    background: var(--danger-color);
}
.status__bar .status .cancel .by__progress .in::before{
    background-color: var(--danger-color);
}
.status__bar .status .cancel .by__progress .in::after{
    border-color: transparent var(--danger-color) transparent transparent ;
}
.btn-developer,
.btn-developer:hover{
    background-color: transparent;
    font-size: 24px;
    color: var(--orange-color);
    border: 0;
    border-radius: 0;
}
.activity__list{
    height: 400px;
    overflow-y: scroll;
}
.activity__list .in{
    padding: 15px;
    position: relative;
    border-bottom: 1px solid var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.activity__list .in .date{
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--logo-light-green);
    color: var(--logo-green);
    border-radius: 3px;
    width: 95px;
    height: 50px;
    font-size: 12px;
    font-weight: bold;
}
.activity__list .in .info{
    width: calc(100% - 119px);
}
::-webkit-scrollbar-track
{
	background-color: transparent;
}

::-webkit-scrollbar
{
	width: 6px;
    height: 6px; 
	background-color: transparent;
}

::-webkit-scrollbar-thumb
{
	background-color: var(--orange-color);
    border-radius: 99px;
}
.overflow-y{
    height: 400px;
    overflow-y: scroll;
}
.popular__product .in{
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid var(--background-color);
}
.popular__product figure{
    margin: 0;
    padding: 15px;
    border-right: 1px solid var(--background-color);
    margin-right: 15px;
}
.popular__product h4{
    font-size: 14px;
    font-weight: bold;
}
.popular__product .prog{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    margin-left: auto;
    padding: 15px;
}
.popular__product .prog div{
    width: 100%;
    height: 5px;
    background-color: var(--background-color);
    border-radius: 5px;
}
.popular__product .prog div span{
    background-color: var(--logo-green);
    width: var(--value);
    height: 5px;
    border-radius: 5px;
    display: block;
}
.popular__product .edit{
    padding-right: 15px;
}
.popular__product .number{
    padding-left: 15px;
}
.popular__product .number span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--background-color);
    border-radius: 5px;
}
.popular__product .number i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--orange-color);
    color: var(--white-color);
    border-radius: 5px;
}
.gray-btn{
    font-size: 18px;
    background: var(--background-color);
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--master-color);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    margin-left: auto;
}
.gray-btn:hover{
    color: var(--orange-color);
}
.btn-info{
    background-color: var(--info-color);
    border-color: var(--info-color);
}
.btn-info:hover{
    background-color: var(--info-hover-color);
    border-color: var(--info-hover-color);
}
.btn-primary{
    background-color: var(--primary-color)!important;
    border-color: var(--primary-color)!important;
}
.btn-primary:hover{
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}
.btn-success{
    background-color: var(--success-color);
    border-color: var(--success-color);
}
.btn-success:hover{
    background-color: var(--success-hover-color);
    border-color: var(--success-hover-color);
}
.btn-danger{
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}
.btn-danger:hover{
    background-color: var(--danger-hover-color);
    border-color: var(--danger-hover-color);
}
.btn-warning{
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}
.btn-warning:hover{
    background-color: var(--warning-hover-color);
    border-color: var(--warning-hover-color);
}
.btn-default{
    background-color: var(--white-color);
    /*border-color: var(--white-color);*/
}
.qosu-label{
    font-weight: 400;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
    background-color: var(--orange-color);
    border-color: var(--orange-dark-color);
}
.btn i{
    line-height: 1.428571429;
}
.fa-filter{
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fa-filter::before{
    content: "\ed25";
}
.top__menu .pull-left{
    order: 2;
    margin-top: -7px;
}
.top__menu .nav > li{
    position: relative!important;
    margin-top: -11px!important;
}

/* Giriş Ekranı */
.login__page{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    position: relative;
    flex-direction: column;
}
.login__page .alert{
    position: relative;
    z-index: 8;
}
.login__page .bg{
    content: "";
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .5;
    position: absolute;
}
.login__page .login{
    width: 300px;
    background-color: var(--layer-background);
    border-radius: 5px;
    position: relative;
    z-index: 3;
}
.login__page .logo{
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login__page .form{
    padding: 0 15px;
}
.login__page .form input{
    height: 50px;
    background-color: var(--background-color);
    border: 0;
    border-radius: 3px;
    box-shadow: 0 0 0;
}
.login__page .form .in{
    margin-bottom: 15px;
}
.form-control:focus{
    box-shadow: 0 0 0;
}
.login__page .form button:focus,
.login__page .form button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 50px;
    background-color: var(--logo-green);
    border: 0;
}
.login__page .form button i{
    margin-right: 10px;
}
.login__page .forgotten{
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--background-color);
}
.login__page .forgotten a{
    color: var(--primary-color);
    font-size: 14px;
}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus{
    outline: 0;
}
.oc3 .tabs-vertical > ul{
    height: calc(100% - 137px);
}
.notification{
    list-style: none;
    margin-bottom: 0!important;
    padding-left: 0;
}
.notification >li>a{
    font-size: 16px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}
.notification .dropdown-menu{
    min-width: 200px;
}
.notification >li.active>a::before{
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    left: 5px;
    top: 5px;
    animation-name: shadows;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    background-color: #F44336;
}
@keyframes shadows{
    from{
        box-shadow:0 0 0 0 #E57373
    }to{
        box-shadow:0 0 0 8px rgba(9,184,62,0)
    }
}
.color label{
    font-size: 12px!important;
}
.color .text-left{
    text-align: left!important;
}
.admin__languages{
    padding: 0;
    margin: 0;
    list-style: none;
}
.admin__languages .dropdown.open>a{
    background-color: var(--master-color-hover);
}
.admin__languages .dropdown-menu{
    margin-top: 0;
    padding: 0;
    min-width: 60px;
    border: 0;
    border-radius: 0;
    background-color: var(--master-color-hover);
}
.admin__languages .dropdown-menu li{
    padding: 0px;
}
.admin__languages .dropdown-menu > li > a{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 10px;
    height: 30px;
    color: var(--white-color);
}
.admin__languages .dropdown-menu > li > a img{
    margin-right: 8px;
}
.admin__languages .dropdown-menu > li > a:hover{
    background-color: rgba(0,0,0,.3);
}
.panel-body{
    padding-left: 0;
    padding-right: 0;
}
.panel-body .table-bordered{
    border: 0;
}
.panel-body .table-bordered td{
    border: 0!important;
    border-bottom: 1px solid var(--background-color)!important;
}
.panel-body .table-bordered thead td{
    border-bottom: 1px solid var(--background-color)!important;
}
.panel-body > .form-group{
    padding-left: 15px;
    padding-right: 15px;
}
.panel-body legend{
    padding-left: 15px;
}
#menu .dropdown-menu>li{
    position: relative;
}
#menu .dropdown-menu>li>ul{
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background-color: var(--layer-background);
    padding: 0;
    min-width: 160px;
    border-radius: 5px;
}
#menu .dropdown-menu>li:hover>ul{
    display: block;
}
#menu .dropdown-menu>li>ul a{
    padding-left: 15px;
}
#menu .dropdown-menu>li>ul li:first-child a{
    border-radius: 5px 5px 0 0;
}
#menu .dropdown-menu>li>ul li:last-child a{
    border-radius: 0 0 5px 5px;
}
#menu .dropdown-menu>li>ul>li{
    position: relative;
}
#menu .dropdown-menu>li>ul>li>ul{
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background-color: var(--layer-background);
    padding: 0;
    min-width: 160px;
    border-radius: 5px;
}
#menu .dropdown-menu>li>ul>li:hover>ul{
    display: block;
}
#menu .dropdown-menu>li>ul>li:hover>ul a{
    padding-left: 15px;
}
.no__desktop{
    display: none;
}
.fixle{
    position: fixed;
    width: 100%;
    height: 100vh;
}
.by__container{
    position: relative;
    display: flex;
    justify-content: start;
    align-items: flex-start;
}
.by__container>.in{
    width: calc(100% - 75px);
}
.quick__menu{
    background-color: var(--layer-background);
    border-radius: 5px;
    width: 60px;
    margin-right: 15px;
    position: relative;
    z-index: 999;
}
.quick__menu a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: var(--master-hover-color);
    border-bottom: 1px solid var(--background-color);
    position: relative;
}
.quick__menu a:first-child{
    border-radius: 5px 5px 0 0;
}
.quick__menu a:last-child{
    border: 0;
    border-radius: 0 0 5px 5px;
}
.quick__menu a:hover{
    color: var(--orange-color);
    background-color: var(--orange-light-color);
}
.quick__menu a:hover i{
    opacity: 1;
}
.quick__menu a small{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--orange-color);
    color: var(--white-color);
    font-size: 12px;
    left: -12px;
    top: 50%;
    margin-top: -12px;
    border: 3px solid var(--background-color);
}
.quick__menu a i{
    opacity: .6;
}
.quick__menu a span{
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background-color: var(--master-color);
    left: 70px;
    top: 5px;
    z-index: 9999;;
    height: 50px;
    white-space: nowrap;
    font-size: 12px;
    color: var(--white-color);
    border-radius: 5px;
}
.quick__menu a span::before{
    content: "";
    position: absolute;
    border-width: 6px;
    border-style: solid;
    border-color: transparent var(--master-color) transparent transparent;
    left: -12px;
    top: 50%;
    margin-top: -6px;
}
.quick__menu a:hover span{
    display: flex;
}
.form-horizontal .form-group{
    padding-left: 15px;
    padding-right: 15px;
}
.panel-body .tab-content{
    padding-left: 15px;
    padding-right: 15px;
}
.nav-tabs{
    padding-left: 15px;
    padding-right: 15px;
}
.well{
    box-shadow: 0 0 0;
    border-radius: 0;
    border: 0;
}
.input-group-addon{
    color: #000000;
}
.table thead td span[data-toggle="tooltip"]:after, label.control-label span:after{
    color: var(--orange-color);
}
@media screen and ( min-width:768px) and ( max-width: 1430px){
    .status__bar .status{
        width: calc( 100% - 105px);
    }
    .status__bar .status .stat{
        width: calc(25% - 13px);
    }
}
@media screen and ( min-width:768px) and ( max-width: 1330px){
    #menu{
        width: calc(100% - 285px);
        overflow-x: scroll;
        overflow-y: hidden;
    }
}
@media screen and ( max-width:768px){
    *{
        transition: all .2s ease-out;
        -webkit-transition: all .2s ease-out;
    }
    .no__mobile{
        display: none!important;
    }
    #header .navbar-header{
        display: block!important;
    }
    #header .container-fluid{
        height: 60px;
        padding: 0 15px;
    }
    .status__bar,
    .status__bar .status{
        flex-wrap: wrap;
        height: auto;
    }
    .status__bar .status{
        margin-bottom: 15px;
        padding: 10px 15px;
        width: 100%;
    }
    .status__bar .status .stat{
        padding: 0;
        height: 50px;
        border-right: 0;
        width: 100%;
    }
    .status__bar .developer{
        width: 100%;
        height: 40px;
    }
    .status__bar .status .icon{
        display: none;
    }
    .modal-dialog{
        margin-top: 100px;
    }
    .mobile__icon{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        height: 40px;
        width: 40px;
        border-radius: 3px;
        color: var(--white-color);
        font-size: 26px;
    }
    #menu{
        position: fixed;
        left: 0;
        top: 90px;
        background: #212121;
        width: 100%;
        height: calc(100vh - 90px);
        overflow-y: scroll;
        padding-left: 15px;
        padding-right: 15px;
    }
    #menu > li > ul{
        box-shadow: 0 0 0;
    }
    #menu > li{
        margin-right: 0;
    }
    #menu > li > ul{
        position: relative;
        width: 100%;
        top: 0;
    }
    #menu.active{
        display: block!important;
    }
    .mobile__icon{
        display: block;
        width: 30px;
        height: 40px;
        position: relative;
    }
    .mobile__icon span{
        position: absolute;
        width: 70%;
        height: 2px;
        background-color: var(--white-color);
        border-radius: 2px;
        right: 0;
        top: 50%;
        margin-top: -1px;
    }
    .mobile__icon span:first-child{
        margin-top: -10px;
        width: 100%;
    }
    .mobile__icon span:last-child{
        margin-top: 9px;
        width: 100%;
    }
    .mobile__icon.active span{
        width: 0%;
    }
    .mobile__icon.active span:first-child{
        margin-top: 0px;
        width: 100%;
        transform: rotate(45deg);
    }
    .mobile__icon.active span:last-child{
        margin-top: 0px;
        width: 100%;
        transform: rotate(-45deg);
    }
    .popular__product figure{
        display: none;
    }
    .popular__product .number{
        margin-right: 10px;
    }
    .popular__product h4{
        margin-bottom: 0;
    }
    .popular__product .in{
        padding: 10px 0;
    }
    .by__container{
        padding-left: 0;
        width: 100%;
    }
    .by__container>.in{
        width: 100%;
    }
    .quick__menu{
        display: none;
    }
    .popular__product .prog{
        width: 80px;
    }
    .popular__product h4{
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 150px;
    }
}
#footer{
    background-color: var(--master-color);
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    height: 70px!important;
    font-weight: 600;
}
#footer a{
    color: var(--white-color);
}