
.accordion 
{
  background-color: #DCDCDC;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 90%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.4s;
}

.active, .accordion:hover 
{
  background-color: #808080;
  color: #FFFFFF;
}

.accordion:after 
{
  content: '+'; /* Unicode character for "plus" sign (+) */
  font-size: 16px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after 
{
  content: "-"; /* Unicode character for "minus" sign (-) */
  color: white;
}

.panel 
{
  margin: 15px 0 15px 0;    
  padding: 0 18px;
  display: none;
  overflow: hidden;
}

div .panel 
{
	display: none;
}

div .panel.show
{
	display: block !important;
}

.credentials-table, .orders-table, .form-table, .daily-table, .weekly-table, .monthly-table, .yearly-table, .once-table, .developer-table 
{
	width: 90%;
}

.credentials-table th 
{
	margin-top: 20px;
	text-align: left;
	font-weight: 600;
}

.daily-table, .weekly-table, .monthly-table, .yearly-table, .once-table th 
{
	text-align: left;
}

.wrap>h2:first-child 
{
	margin: 20px;
}



#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
.alert_text {
  /*color:rgb(149, 214, 247);*/
  color:rgb(41, 170, 235);
}
.credential_success {text-align: center; color: green;}
.inventory_schedule_sync {text-align: center;}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.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;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%; 
}

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);
}

.slider.round {
  border-radius: 34px;
}

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

#notification {
  position: relative;
}

#notification p {
  font-size: 16px;
}

#notification .close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 20px;
  color: #e80c0c;
}

@media screen and (max-width: 600px) {
  #notification {
      width: 90%; /* Adjust width for smaller screens */
      max-width: none; /* Override max-width for smaller screens */
      margin: 10px; /* Adjust margin for smaller screens */
  }
}






