body{
  background-color: #f8f9fa;
}
.top-25{
  top: 25%;
}
.fw-middle{
  font-weight: 500;
}
/* **************************
******** BTN-ICON-PLUS ******
*************************** */
.accordion-button.accordion-button-icon:after {
 background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z"/> </svg>') !important;
}
.accordion-button.accordion-button-icon:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-dash-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z"/> </svg>') !important;
  transform: rotate(-180deg);
}

/* **************************
******** TEXT-SIZE **********
*************************** */
.text-xs{
  font-size: 0.875rem;
}
/* .text-sm{
  font-size: 1rem;
}
.text-md{
  font-size: 1.25rem;
} */
.fw-middle{
  font-weight: 500;
}
/* **************************
******** TEXT-COLOR *********
*************************** */
.text-yellow {
  color: #ffd700;
}
.text-green {
  color: #90ee90;
}
.text-blue {
  color: #87cefa;
}
.text-pink {
  color: #ff69b4;
}
.text-gray-light {
  color: rgb(0 0 0 / 50%);
}
.text-hover-primary:hover{
  transition: 0.6s;
  color: #0d6efd !important;
}
.text-hover-black:hover{
  transition: 0.6s;
  color: #000;
}
/* ********************************
******** BACKGROUND-COLOR *********
********************************* */

.bg-green {
  background-color: #90ee90;
}

.bg-blue {
  background-color: #87cefa;
}

.bg-yellow {
  background-color: #ffd700;
}

.bg-pink {
  background-color: #ff69b4;
}


/* ********************************
*********** LINE-HEIGHT ***********
********************************* */
.line-height-1{
  line-height: 1;
}
.line-height-2{
  line-height: 1.5;
}
.line-height-3{
  line-height: 1.75;
}
.line-height-4{
  line-height: 2;
}
.line-height-5{
  line-height: 2.5;
}
.line-height-6{
  line-height: 2.75;
}

/* ************************
********* BORDER **********
*************************** */
.border-dashed{
  background-color: unset;
  border-top: dashed 2px #cdcdcd;
  opacity: 1;
}
.border-dashed-left{
  background-color: unset;
  border-left: dashed 2px #cdcdcd;
  opacity: 1;
}
/* ************************
******* OVERRIDES *********
*************************** */
.btn-outline-primary {
  background-color: rgb(13 110 253 / 10%);
}
.btn-outline-danger {
  background-color: rgb(220 53 69 / 10%);
}
.btn-outline-success {
  background-color: rgb(25 135 84 / 10%);
}
/* ************************
********* ICONS ***********
*************************** */
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1b1b1b;
  width: 2em;
  height: 2em;
  left: -2.55em;
  border: 1px solid #1b1b1b;
  border-radius: 100%;
  text-decoration: none;
  cursor: pointer;
  z-index: 4;
  transition: 0.3s;
}
.icon:hover{
  color: #000;
}
.icon-small{
  width: 1.75em;
  height: 1.75em;
}
.icon-play.active{
  background-color: #90ee90;
}
.icon-stop.active{
  background-color: #ff69b4;
}
.icon-pause.active{
  background-color: #87cefa;
}
.icon-play:hover{
  background-color: #90ee90;
}
.icon-stop:hover{
  background-color: #ff69b4;
}
.icon-pause:hover{
  background-color: #87cefa;
}
/* ************************
********* 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;
}
