body {
  font-family: "Viga", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-style: normal;
  direction: rtl;
  background-color: #edf5fc;
}

/* start in card all call */
.allCall .box {
  background-color: #fff;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s;
  overflow: hidden;
  transform: scale(0.9);
  text-align: center;
}

.allCall .box:hover {
  transform: scale(1);
  cursor: pointer;
}

.allCall .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #021278;
  width: 3px;
  height: 100%;
}

.allCall .box h6 {
  color: #021278;
  font-size: 25px;
  font-weight: 700;
}

.allCall .box h5 {
  color: #f3ae0c;
  font-size: 20px;
  font-weight: 500;
}

/* start in card */

.container .cardDetails .icon {
  position: absolute;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #2c73df;
}

.container .cardDetails .icon .fa {
  margin-top: 10px;

  font-size: 30px;

  color: #fff;
}

.content .cardDetails #noAnswered {
  margin: 15px 0;
}

.container .cardDetails .slide {
  width: 100px;

  height: 200px;

  transition: 0.5s;
}

.container .cardDetails .slide.slide1 {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 1;

  transition: 0.7s;

  width: 100%;
  height: 250px;

  transform: translateY(100px);
}

.container .cardDetails .hoverCard:hover {
  background-color: red;
}

.container .cardDetails:hover .slide.slide1 {
  transform: translateY(0px);
}

.container .cardDetails .slide.slide1 .export {
  background-color: #021278;
  color: white;
}

.container .cardDetails .slide.slide2 {
  position: relative;

  width: 100%;

  padding: 20px;

  box-sizing: border-box;

  transition: 0.8s;

  transform: translateY(-100px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

  overflow-y: scroll;
}

.container .cardDetails:hover .slide.slide2 {
  transform: translateY(0);
}

.container .cardDetails .slide.slide2::after {
  content: "";

  position: absolute;

  width: 30px;

  height: 4px;

  bottom: 15px;

  left: 50%;

  left: 50%;

  transform: translateX(-50%);

  background: #2c73df;
}

.container .cardDetails .slide.slide2 .content p {
  margin: 0;

  padding: 0;

  text-align: center;

  color: #414141;
}

.container .cardDetails .slide.slide2 .content h3 {
  margin: 0 0 10px 0;

  padding: 0;

  font-size: 24px;

  text-align: center;

  color: #414141;
}

/* start in time hour */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container h2 {
  text-transform: uppercase;
  color: #445dff;
}

.container section {
  background: #445dff;
  max-width: 560px;
  margin: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.container section .time-colon {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

section .time-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.time-text .time-num {
  font-size: 50px;
  font-weight: 600;
  text-shadow: 1px 0 10px #021278;
}

.time-text .text {
  font-weight: 500;
}

.time-colon .colon {
  position: relative;
  top: 9px;
  font-size: 35px;
  font-weight: 600;
  padding: 2px;
}

.time-colon .am-pm {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

#day {
  color: #f3ae0c;
  font-size: 28px;
  letter-spacing: 2px;
}
#date {
  /* color: #f3ae0c; */
  font-size: 22px;
  letter-spacing: 2px;
}

/* progress */
.progress {
  border-radius: 3px;
}

.progress-bar {
  width: 0;
  height: 100%;
  animation: progress 1.5s ease-in-out forwards;
  background-color: #2ed8b6;
}

.progress-bar .title {
  opacity: 0;
  animation: show 0.35s forwards ease-in-out 0.5s;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* start in footer  */
footer {
  background-color: #2c73df;
  color: white;
  width: 100%;
  text-transform: capitalize;
}

footer p {
  margin: 5px 0;
}

footer p span {
  color: #f3ae0c;
}
