ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.date-picker{
    margin: 0 auto;
    margin-top: 1rem;
    width: 340px;
    display: none;
    flex-direction: column;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
    border: 1px solid #ddd;
    padding: 10px;
}
.open-date-picker{
    display: flex;
}
.date-picker ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.date-picker-panel{
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0.5rem !important;
}
.date-picker-panel #data-picker-panel-prev{
    cursor: pointer;
}
.date-picker-panel #data-picker-panel-next{
    cursor: pointer;
}
.date-picker-panel #data-picker-panel-year{
   font-size: 16px;
   font-weight: 600;
}
.date-picker-day-names{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #000;
}
.date-picker-day-names li{
    width: calc(100% / 7);
    max-width: 300px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.date-picker-days{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #cfcfcf;
    border-left: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
}
.date-picker-days li{
    aspect-ratio: 1/1;
    width: calc(100% / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
}
.date-picker-days li:nth-child(n){
    border-right: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
}
.date-picker-days li:nth-child(7n){
    border-right: none;
}
.data-picker-hover-day{
    background-color: #E8EFF4 !important;
    color: #4465AD !important;
}
.data-picker-hover-day-first{
   background-color: #4465AD  !important;
   color: #fff !important;
}
.data-picker-hover-day-last{
   background-color: #4465AD  !important;
   color: #fff !important;
}  
.date-picker-days .seleted-day{
    background-color: #E8EFF4 !important;
    color: #4465AD !important;
    border-radius: 0;
}
.date-picker-days .seleted-day-first{
    background-color: #4465AD  !important;
    color: #fff !important;
}
.date-picker-days .seleted-day-last{
    background-color: #4465AD  !important;
    color: #fff !important;
}
 .disabled-date-day{
    color: #7f7f7f;
    background-color: #dfdfdf !important;
    pointer-events: none;
 }
 .date-before-month-day{
    color: #aaa;
 }
 .date-after-month-day{
    color: #aaa;
 }
 .heading-bordered{
    font-size: 2rem;
    font-weight: normal;
    position: relative;
    text-transform: capitalize;
 }
 .heading-border{
    border-bottom: 1px solid #000;
 }
@media screen and (min-width:550px) and (max-width:992px){
    .date-picker{
        width: 100%;
    }
}