/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  } */
/*   body{
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: center;
    min-height: 100vh;
    background: #9B59B6;
  } */
  .wrapper{
    width: 100%;
    background: #fff;
    border-radius: 0px;
    max-width: 450px;
    margin: 0 auto;
  }
  .wrapper header{
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 15px 15px 5px;
    justify-content: space-between;
    background-color: #F4F4F4;
    margin-bottom: 0px;
    flex-direction: column;
  }
  .wrapper header .titleMes {
    position: relative;
    width: 70%;
  }
  .wrapper header .current-date {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 24px !important;
    margin-top: 0px;
  }
  header .icons{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  header .icons span{
    height: 24px;
    width: 24px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    font-size: 1.9rem;
    user-select: none;
    border-radius: 50%;
  }
  .icons span:last-child{
    margin-right: -10px;
  }
  header .icons span:hover{
    background: #f2f2f2;
  }
  header .current-date{
    font-size: 1.45rem;
    font-weight: 500;
  }
  .calendar{
    padding: 0px;
  }
  .calendar ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .calendar .days{
    margin-bottom: 20px;
  }
  .calendar li{
    color: #333;
    width: calc(100% / 7);
    font-size: 1.07rem;
    transition: all .2s ease-in-out;
  }
  .calendar .weeks li{
    font-weight: 500;
    cursor: default;
    border-bottom: 1px solid #ebebeb;
    padding: 15px;
  }
  .calendar .days li{
    z-index: 1;
    cursor: pointer;
    position: relative;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
    transition: all .2s ease-in-out;
  }
  .days li.clickable{
    font-weight: 700;
  }
  .days li.inactive{
    color: #aaa;
    cursor: auto;
    transition: all .2s ease-in-out;
  }
  .days li.active{
    color: #fff !important;
  }
  .days li.clicked{
    color: #fff;
  }
  .days li::before{
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 55px;
    width: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: all .2s ease-in-out;
  }
  .days li.active::before{
    background: #c30000 !important;
    transition: all .2s ease-in-out;
  }
  .days li.clicked::before{
    background: #242424;
    transition: all .2s ease-in-out;
  }
  .days li.clicked:hover{
    color: #242424;
    transition: all .2s ease-in-out;
  }
  .days li:not(.active):hover::before{
    background: #f2f2f2;
    transition: all .2s ease-in-out;
  }

  span#next {
    transform: rotate(-90deg);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


span#prev {
    transform: rotate(90deg);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}