main {
  margin-left: 250px;
  background-color: #eeecec;
  padding: 10px;
  /* height: calc(100vh - 96px); */
  height: 100vh;
  overflow: auto;
  /* position: relative; */
}

body, html {
  background-color: #eeecec;
}

/* .dataTables_wrapper {
  overflow-x: auto;
} */

.app-content{
  transition: .3s ease-in-out;
}

table thead th {
  border:  none !important;
}

.iconify {
  width: 20px;
  height: 20px;
}

*:focus {
  box-shadow: none !important;
  outline: none !important;
}

form .error {
  color: #ff0000;
}

.card {
  padding: 10px;
}

a {
  text-decoration: none !important;
}

.table-title {
  max-width: fit-content;
}

/* loader */

#loader {
  background-color: #414141d7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#loader .disp-message {
  display: block;
  text-align: center;
  margin-top: 15px;
}

#loader .disp-message .title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

#loader .disp-message .message {
  font-size: 16px;
  color: #fff;
}

/* loader */

/* amazon product */
.more-opt-container {
  display: flex;
  align-items: center;
  height: 38px;
  flex-wrap: wrap;
}

.more-opt-container .custom-checkbox {
  margin-right: 10px;
  user-select: none;
}

.more-opt-container .custom-checkbox label {
  cursor: pointer;
}
/* amazon product */

/* toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.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: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

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

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

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

.slider.round:before {
  border-radius: 50%;
}

.prod-img-display {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
/* toggle switch */
