

/* *************************
******** SCROLLBAR *********
*************************** */

.container-main::-webkit-scrollbar {
  width: 0.3125em;
}

.container-main::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 6.25em;
}

.container-main::-webkit-scrollbar-thumb {
  border-radius: 6.25em;
  background-color: #198754;
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}
/* **************************
******** TEXT-COLOR *********
*************************** */
.text-yellow {
  color: #ffd700;
}
.text-green {
  color: #90ee90;
}
.text-blue {
  color: #87cefa;
}
.text-pink {
  color: #ff69b4;
}
/* ********************************
******** BACKGROUND-COLOR *********
********************************* */

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

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

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

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

.top-25{
  top: 25%;
}
.fw-middle{
  font-weight: 500;
}
/* ********************************
*********** 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;
}

/* ************************
***** DESCRIPTION *********
*************************** */
.desc-content {
  font-size: 14px;
  position: relative;
}
.desc-content::after {
  content: " ";
  background: url("../img/dot_hor.png");
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.125em;
  z-index: 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%);
}

/* ************************
********* 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;
}
/* ************************
********* ICONS ***********
*************************** */

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-icons > li .icon:first-child {
  color: #1b1b1b;
  width: 1.5em;
  height: 1.5em;
  left: -2.25em;
  border: 1px solid #1b1b1b;
  border-radius: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

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