
/* **************************
***** NEGATIVE MARGIN *******
*************************** */
.ms-n3{
  margin-left: -1rem;
}
/* **************************
******** TEXT-SIZE **********
*************************** */
.text-xs{
  font-size: 0.875rem;
}

.fw-middle{
  font-weight: 500;
}
/* **************************
******** TEXT-COLOR *********
*************************** */
.text-yellow {
  color: #ffda6a;
}
.text-green {
  color: #75b798;
}
.text-blue {
  color: #6ea8fe;
}
.text-pink {
  color: #e685b5;
}
.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: #75b798;
}
.bg-blue {
  background-color: #6ea8fe;
}
.bg-yellow {
  background-color: #ffda6a;
}
.bg-pink {
  background-color: #e685b5;
}
/* ************************
********* BORDER **********
*************************** */
.border-dashed{
  background-color: unset;
  border-top: dashed 1px rgba(0,0,0,.125);
  opacity: 1;
}
.border-dashed-left{
  background-color: unset;
  border-left: dashed 1px  rgba(0,0,0,.125);
  opacity: 1;
}

/* ************************
******* OVERRIDES *********
*************************** */
hr{
  opacity: .15;
}
.bg-light{
  background-color: #f8f9fa6e !important;
}
/* ************************
********* OPACITY ***********
*************************** */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: .25; }
.opacity-50 { opacity: .5; }
.opacity-75 { opacity: .75; }
.opacity-100 { opacity: 1; }


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