
/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {


    .menu-box .backdrop {
        display: none;
    }
    
        .menu-box-header  {
        display: none
    }
    .notification-menu {
        width: 400px
    }
   
}
/* Smaller than tablet */
@media (max-width: 750px) {
    .targetting-container {
        display: unset !important;
    }
    .r-button {
        padding: 4px 8px !important;
        margin-top: 4px !important;
    }
    .r-card-list {
        border: 0 !important;
        margin-top: 0 !important;
    }
    .r-card-list .r-card-title {
        display: unset;
    }
    .r-card-list .r-card-badge-wrapper {
        max-height: 20px;
    }
    .r-card-list .r-card {
        background: none;
        border: 1px solid #ccc;
    }
    .noMobile {
        display: none !important
    }
    .setting {
        width: calc(100% - 60px) !important;
        right: unset !important;
        left: unset !important;
    }
    .nomobile {
        display: none !important;
    }

    .app-grid-container{
        flex:1;
        width:calc(100% - 48px) !important;
        overflow:hidden;
        box-sizing: border-box;
        display:flex;
        position: relative;
        left: unset !important;
        right: unset !important;
        margin: 24px;
    }
    .toolbar  .toolbar-item {
        border: 1px solid #E2E5F0;
        border-radius: 20px;
        color: #767676;
        min-width: 20px ;
        margin: 0 6px

    }
   
    .dropable-button-popup .back-drop {
        background: rgba(0,0,0,.7)
    }
    
    
    .dropable-button-popup .for-drop-date-picker .r-calendar {
        position:relative;
        right: 47px
       
    }
    .dropable-button-popup .for-drop-date-picker {
        background: none !important;
        border: 0 !important;
    }
    .dropable-button-popup {
        top: unset !important;
        right: unset !important;
        left: unset !important;
        display: flex;
        padding: 0;
        width:360px !important;;
        position: fixed !important; 
        top: 20% !important;;
        left: calc(50% - 180px) !important;
        
                
            
            
    }
    .dropable-button-popup .selective-item {
        padding: 16px 0
    }
    .dropable-button-popup .for-drop {
        width: 100%;
        border-radius: 12px !important;
    }
    .dropable-button-popup .for-drop .list-item {
        padding: 24px
    }
    .toolbar {
        padding: 0 12px !important;
    }
    .toolbar-add .text {
        display: none
    }
    .toolbar-add {
        padding: 0 !important;
    }
    .toolbar .toolbar-add .dropable-button{

            min-width: unset
    }

    .toolbar button {

    height:28px;
    min-width: 28px;

    }
  
    .pagetitle h2 {
        color: #fff;
        font-size: 14px
    }
    .topbar-right {
        padding: 0 16px

    }
    .topbar-left {
        padding: 0 16px
    }
    .score-icon{
        color: #fff
    }
    .profile-icon {
        background: #fff
    }
    .profile-icon i {
        color: var(--blue)
    }
    .notification-icon i{
        color: #fff
    }
    .notification-icon .new {
        border-color: var(--blue);
    }
    .menu-box {
        display: flex;
        padding: 0;
        width: calc(100% - 64px);
         position: fixed;
        top: 20%;
        left: 0;
        right: unset;
        margin: 32px
    }
    .menu-box ul {
        border-radius: 8px
    }

    .topbar-wrapper {
        position: unset;
        left: unset;
        right: unset;
        width: 100%;
        background: var(--blue)

    }
    .sidebar-toggle i{
        color: #fff ;
    }
    
}








/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
