.event-block{
  position: relative;
  &::before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 28px;
    content: "";
    background-color: #72a6fd;
    border-radius: 0 4px 4px 0;
    transform: translateY(-50%);
  }
  &.mark-success{
    &::before{
      background-color: #62ceb5;
    }
  }
  &.mark-progress{
    &::before{
      background-color: #f88968;
    }
  }
  .btn-outline,
  .btn-outline-primary{
    background-color: transparent;
  }
}

.arrow-actions {
  display: flex;
  align-items: center;
  gap: .2rem;
  .btn-move {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--#{$variable-prefix}primary-color);
    background: var(--#{$variable-prefix}light-gray-background);
    border-radius: 10rem;
  }
}

.days-list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  .day{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 44px;
    // color: #6d6d71;
    color: var(--#{$variable-prefix}light-text-color);
    cursor: pointer;
    background: var(--#{$variable-prefix}background-white);
    border-radius: 6px;
    &.active{
      color: #fff;
      background: #6877c6;
    }
    span{
      font-size: 10px;
    }
    h1{
      margin: 0;
      font-size: 12px;
      font-weight: 700;
    }
  }
}

.event-date-picker{
  .form-control{
    width: 90px;
    height: 24px;
    &:focus{
      box-shadow: none;
    }
  }
}

.date-picker-field{
  position: relative;
  svg{
    position: absolute;
    top: 50%;
    right: 5px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
  }
  [type="date" i]::-webkit-calendar-picker-indicator,
  [type="time" i]::-webkit-calendar-picker-indicator{
    top: 5px;
    right: 0;
  }
}

// Month Calendar

.weekdays {
  margin: 0;
  padding: 0;
  li {
    position: relative;
    display: inline-block;
    width: 14.2%;
    height: 85px;
    padding: 10px;
    color: var(--#{$variable-prefix}light-text-color);
    text-align: center;
    border: 1px solid var(--#{$variable-prefix}bg-circle-gray);
    span{
      display: block;
      font-size: .75rem;
      font-weight: 700;
      color: var(--#{$variable-prefix}dark-text-color);
      &:first-child{
        display: block;
        font-size: .625rem;
        color: var(--#{$variable-prefix}calendar-gray);
      }
      &.prevnext-month-days{
        color: var(--#{$variable-prefix}calendar-gray);
      }
    }
  }
}

.days {
  padding: 0;
  margin: 0;
  li {
    position: relative;
    display: inline-block;
    width: 14.2%;
    height: 85px;
    padding: 10px;
    font-size: .75rem;
    font-weight: 700;
    color: #666;
    text-align: center;
    list-style-type: none;
    border: 1px solid var(--#{$variable-prefix}bg-circle-gray);
    span:first-child{
      display: flex;
      justify-content: center;
      color: var(--#{$variable-prefix}dark-text-color);
      &.prevnext-month-days{
        color: var(--#{$variable-prefix}calendar-gray);
      }
    }
  }
}

.event-dots-wrapper{
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;  
  gap: 3px;
  margin: 10px 0 0;
  transform: translateX(-50%);
  .event-dot{
    gap: 5px;
    width: 5px;
    height: 5px;
    margin: 0 auto;
    background: #ff5254;
    text-align: center;
    border-radius: 50px;
    &.count{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      font-size: .625rem;
      color: #ff5254;
      background-color: rgba(255, 82, 84, .1);
    }
  }
}
