body,h1,h2,h3,h4,h5,h6,span,p,div {font-family: Poppins, serif;}
.w3-sidebar {
    z-index:5;
}
.w3-modal {
    z-index: 6;
}
.msg, .spremi, .hidden {
    display:none;
}
.display-block{
    display:block;
}
.fa-exclamation-circle {
    color: coral;
    font-size: 40px;
}
.classes2 {
    padding: 10px;display:flex;
}
.flex {
    display:flex;justify-content: space-around;align-items: center;
}
.w3-dropdown-content{
  min-width:220px;
}
#container {
  position: relative;
}
/* SWITCH */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    top: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:after {
    content: "";
}

input:checked + .slider {
  background-color: #1aeb9b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #1aeb9b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}
/* SWITCH END */
@media (max-width: 1024px){
    .main-container {
        margin-left:0;position: relative;
    }
    .w3-mobile {
        position: absolute;right:2px;top:2px;z-index:1;max-width: 62px;
    }
    .w3-menu-close {
        position: relative;
    }
    .w3-sidebar.w3-collapse {
        display: none !important;
    }
}
@media (min-width: 993px) and (max-width: 1023px){
.w3-mobile {
        position: absolute;right:2px;top:8px;z-index:1;max-width: 62px;
    }
    .w3-hide-large {
        display: block !important;
    }
}
@media (min-width: 1024px){
    .main-container {
        margin-left:200px;
    }
    .w3-menu-close {
        display:none!important;
    }
    
}
@media (max-width: 600px){
    .w3-bar .w3-bar-item {
        padding: 8px 8px;
    }
    .w3-bar > h1{
        min-width: 300px;
    }
    td.btn-td{
        padding: 8px 6px;
    }
    .fsize12{
        font-size:12px;
    }

}
/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* button */
::-webkit-scrollbar-button {
    background: #FDF5E6;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: khaki;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ffc107;
}

/* Track */
::-webkit-scrollbar-track {
    background: #FDF5E6;
}

/* The track NOT covered by the handle.
::-webkit-scrollbar-track-piece {
    background: #000;
}

/* Corner */
::-webkit-scrollbar-corner {
    background: #ffc107;
}

/* Resizer */
::-webkit-resizer {
    background: #FDF5E6;
}