html, body {
    height: 100%;
}
.container-main {
    width: 100%;
    max-width: 330px;
    padding: 1em;
    margin: auto;
    border: 1px solid #ced4da;
    background-color: white;
    overflow: auto;

}
.according-box {
    height: 37vh;
    margin-bottom: -15px;
}

.form-check-input:checked {
    background-color: rgb(4, 128, 4) !important;
    
}
.switch-pos{
  top: 1em;
  right: 1em;
  cursor: pointer;
}
.top-25 {
  top: 25%;
  
}

.bg-green{
  background-color:#90EE90;
}
.txt-green{
  color:#90EE90;
}
.bg-blue{
  background-color:#87CEFA;
}
.txt-blue{
  color:#87CEFA;
}
.bg-yellow{
  background-color:#FFD700;
}
.txt-yellow{
  color:#FFD700;
}
.bg-pink{
  background-color:#FF69B4;
}
.according-box .accordion-button::after{
  content: none;
}
.according-box .accordion-button span{
  font-size: 14px;
}
/* ************************
********* CLOCK ***********
*************************** */

.clock {
    display: inline-block;
    border-radius: 100%;
    background: #ffffff;
    font-family: "Montserrat";
    border: 5px solid white;
    box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);

  }
  
  .wrap {
    overflow: hidden;
    position: relative;
    width: 175px;
    height: 175px;
    border-radius: 100%;
  }
  
  .minute,
  .hour {
    position: absolute;
    height: 50px;
    width: 6px;
    margin: auto;
    top: -27%;
    left: 0;
    bottom: 0;
    right: 0;
    background: black;
    transform-origin: bottom center;
    transform: rotate(0deg);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .minute {
    position: absolute;
    height: 65px;
    width: 4px;
    top: -38%;
    left: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
  }
  
  .second {
    position: absolute;
    height: 45px;
    width: 2px;
    margin: auto;
    top: -26%;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background: #FF4B3E;
    transform-origin: bottom center;
    transform: rotate(180deg);
    z-index: 1;
  }
  
  .dot {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: white;
    border: 2px solid #1b1b1b;
    border-radius: 100px;
    margin: auto;
    z-index: 1;
  }

  ul.time-status {
    list-style-type: none;
    position: relative;
    padding: 0;
}
ul.time-status:before {
    content: ' ';
    background: url('../img/dot.png');
    display: inline-block;
    position: absolute;
    left: 0;
    width: 0.125em;
    height: 100%;
    z-index: 1;
}
ul.time-status > li {
  font-size: 0.875em;
    margin: 1.5em 0;
    padding-left: 1.25em;
    display: flex;
    flex-direction: column;
    position: relative;
}
ul.time-status > li span:first-child {
  color: #1b1b1b;
  width: 1.5em;
  height: 1.5em;
  left: -.75em;
  border: 1px solid #1b1b1b;
  border-radius: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
/* 
body.swal2-height-auto{
  height: 100%!important;
}   */