.tbody_row {
    width: 100%;
    display: table-row;
}

.th_width {
    width: 100%;
}

.bg {
    background-color: #000;
    color: #fff;
}

html {
    font-size: 0.9rem;
}

.form-label-group input:placeholder-shown:not(:-webkit-autofill){
    /* padding:0!important; */
    padding-left: .75rem!important;
    padding-right: .75rem!important;
}

.select2-selection--multiple {
    padding-left: .5rem!important;
}

.ml-left{
    margin-left:1.2rem;
}

table thead .sorting:after,
table thead .sorting_asc:after,
table thead .sorting_asc_disabled:after,
table thead .sorting_desc:after,
table thead .sorting_desc_disabled:after {
    content: "\f0dd";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    right: 16px;
    font-size: 1rem;
}

table thead .sorting,
table thead .sorting_asc,
table thead .sorting_asc_disabled,
table thead .sorting_desc,
table thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

table thead>tr>td.sorting,
table thead>tr>td.sorting_asc,
table thead>tr>td.sorting_desc,
table thead>tr>th.sorting,
table thead>tr>th.sorting_asc,
table thead>tr>th.sorting_desc {
    padding-right: 30px;
}

table thead .sorting:before,
table thead .sorting_asc:before,
table thead .sorting_asc_disabled:before,
table thead .sorting_desc:before,
table thead .sorting_desc_disabled:before {
    right: 1.1em;
    content: "\f0de";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 1rem;
}

table thead .sorting:after,
table thead .sorting:before,
table thead .sorting_asc:after,
table thead .sorting_asc:before,
table thead .sorting_asc_disabled:after,
table thead .sorting_asc_disabled:before,
table thead .sorting_desc:after,
table thead .sorting_desc:before,
table thead .sorting_desc_disabled:after,
table thead .sorting_desc_disabled:before {
    position: absolute;
    bottom: .7em;
    display: block;
    opacity: .3;
}

table thead .sorting_asc:before,
table thead .sorting_desc:after {
    opacity: 1;
}

.w-40{
    width:40%!important;
}

table{
    /*table-layout: fixed;*/
    display: table;
    overflow-x: scroll;
}

.datatable_data {
    overflow-x: scroll;
    /* display: block; */
}

thead tr, tbody tr{
    display:table-row;
}

table td {
    white-space: nowrap;
    height: auto;
}

thead {
    display: table-header-group;
}

tbody {
    display: table-row-group;
}

.tbody {
    overflow-y: scroll!important;
    overflow-x: hidden!important;
    height: 420px!important;
}

td {
    text-overflow: unset;
}

.overview_table td, .overview_table th{
    min-width: 205px;
}

th {
    overflow: initial;
    text-overflow: unset;
}

.show_password{
    right: 18px;
    position: absolute;
    top: 9px;
}

/* --Media Qeries Start-- */

@media only screen and (max-width: 368px) {
    .apps {
        padding: 0 2rem;
    }
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
    .dataTables_wrapper {
        margin: 0 auto;
        /* display: table; */
    }
    .justify-content-end {
        flex: 100%!important;
        justify-content: center!important;
        display: inline-block!important;
    }
    .action_icons {
        display: none;
    }
    /* .page-inner {
        padding: 0!important;
    } */
}


/* 600 to 768 */

@media only screen and (min-width: 600px) and (max-width: 768px) {
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
        width: 55%;
        float: left;
        overflow: auto;
    }
    .mr-0,
    .mx-0 {
        margin-right: 0px !important;
        float: right;
        width: 40%;
        margin-top: 10px;
        padding-left: 5% !important;
    }
    .justify-content-end {
        flex: 100%!important;
        justify-content: center!important;
    }
    .apps {
        margin: 0 auto;
        display: table;
        text-align: center;
    }
}


/* Maximum 768 */

@media only screen and (max-width: 768px) {
    td {
        /*min-width: 205px;*/
        height: 25px;
        text-overflow: unset;
    }
    th {
        /*min-width: 205px;*/
        overflow: initial;
        height: 25px;
        text-overflow: unset;
    }
    body{
        font-size: .75rem!important;
    }
}


/* 768 to 992*/

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .app-main .wrapper .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%!important;
    }
    .media-width {
        max-width: 100%!important;
        flex: 100%!important;
        overflow: auto;
    }
    .justify-content-end {
        flex: 100%!important;
    }
    body{
        font-size: .75rem!important;
    }
}


/* --Media Qeries End-- */

.container_check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .container_check_all {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .container_check_all input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border:1px solid #ccc;
  }
  
  .checkmark_table {
    position: absolute;
    top: 4px;;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border:1px solid #ccc;
  }
  
  /* On mouse-over, add a grey background color */
  .container_check:hover input ~ .checkmark, .container_check_all:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container_check input:checked ~ .checkmark, .container_check_all input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container_check input:checked ~ .checkmark:after, .container_check_all input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container_check .checkmark:after,.container_check_all .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #version-switcher {
    position: fixed;
    right: 15px;
    bottom: 15px;
    margin: 0;
    padding: 0;
    z-index: 1;
    pointer-events: none;
    list-style: none;
}

#doc-languages li {
    display: none;
    margin: 0 3px;
    font-family: "Roboto", Corbel, Avenir, "Lucida Grande", "Lucida Sans", sans-serif;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    pointer-events: auto;
}

.vibrate-1{-webkit-animation:vibrate-1 .3s linear infinite both;animation:vibrate-1 .3s linear infinite both}

@-webkit-keyframes vibrate-1{0%{-webkit-transform:translate(0);transform:translate(0)}
                            20%{-webkit-transform:translate(-2px,2px);transform:translate(-2px,2px)}
                            40%{-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}
                            60%{-webkit-transform:translate(2px,2px);transform:translate(2px,2px)}
                            80%{-webkit-transform:translate(2px,-2px);transform:translate(2px,-2px)}
                            100%{-webkit-transform:translate(0);transform:translate(0)}}
@keyframes vibrate-1{0%{-webkit-transform:translate(0);transform:translate(0)}
                            20%{-webkit-transform:translate(-2px,2px);transform:translate(-2px,2px)}
                            40%{-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}
                            60%{-webkit-transform:translate(2px,2px);transform:translate(2px,2px)}
                            80%{-webkit-transform:translate(2px,-2px);transform:translate(2px,-2px)}
                            100%{-webkit-transform:translate(0);transform:translate(0)}}
#doc-languages li a {
    display: inline-block;
    background-color: #0179E3;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 15px;
    border: 1px solid #CFE3DC;
    border-radius: 4px;
}

#doc-languages li a:hover {
    color: #fff;
    border: 1px solid #93D7B7;
}

#version-switcher ul {
    text-align: right;
}

#doc-languages:hover {
    pointer-events: auto;
}

#doc-languages:hover li {
    display: inline-block;
}

#doc-languages li.current {
    display: inline-block;
    background-color: #0179E3;
    padding: 8px 15px;
    border: 1px solid #CFE3DC;
    border-radius: 4px;
}

.popover-body{
    background: #F6F7F9;
}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
  from {-webkit-transform:rotate(0deg);}
  to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
  from {transform:rotate(0deg);}
  to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}