#gri-date-selector-view
.view-body {
    padding-bottom: 50px;
}



#gri-date-selector-view
.view-body
.pic {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 60px;
}





#gri-date-selector-view
.view-body
.calendar-wrapper {
    height: 430px;
}



#gri-date-selector-view
.view-body
.calendar-container {
    background: #484747;     
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}



#gri-date-selector-view
.view-body
.calendar-container
header {
    display: flex;
    align-items: center;
    padding: 15px 20px 8px;     
    justify-content: space-between;
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation {
    display: flex;
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
span {
    height: 30px;              
    width: 30px;
    margin: 0 2px;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    user-select: none;
    color: #aeabab;
    font-size: 1.4rem;          
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
span:last-child {
    margin-right: -8px;
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
span:hover {
    //background: #f2f2f2;
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
span.calendar-prev.off {
    visibility: hidden;
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
span.calendar-next.off {
    visibility: hidden;
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
span
img {
    position: relative;
    width: auto;
    height: 20px;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-navigation
.calendar-prev
img {
    left: -1px;
    transform: scaleX(-1) translateY(-50%);
}



#gri-date-selector-view
.view-body
.calendar-container
header
.calendar-current-date {
    color: #fff;
    font-weight: 500;
    font-size: 17px;        
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-body {
    padding: 10px;     
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-body
ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-body
.calendar-dates {
    margin-bottom: 10px;    
    width: 100%;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-body
li {
    width: calc(100% / 7);
    height: 30px;               
    line-height: 30px;          
    font-size: 15px;          
    color: #fff;
    margin-top: 20px;           
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-body
.calendar-weekdays
li {
    margin-top: 0; 
    cursor: default;
    font-weight: 800;
    font-size: 15px;         
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-dates
li.inactive {
    color: #aaa;
    cursor: default;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-dates
li.active {
    //color: #fff;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-dates
li::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 30px;             
    height: 30px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-dates
li.active::before {
    background: #6964ff;
    background: #25c662;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-dates
li:not(.active):not(.highlight):hover::before {
    //background: #858484;
}



#gri-date-selector-view
.view-body
.calendar-container
.calendar-dates
li.highlight {
    background: transparent !important;          
    border: 2px dotted #38f3b1 !important;       
    border-radius: 50%;                           
    position: relative;
    z-index: 10;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: calc(100% / 7);
}



@media all and (max-height: 480px) {
    #gri-date-selector-view
    .view-body {
        padding-bottom: 10px;
    }
    
    
    
    #gri-date-selector-view
    .view-body
    .calendar-wrapper {
        height: 350px;
    }
    
    
    
    #gri-date-selector-view
    .view-body
    .calendar-container
    .calendar-body
    li {
        height: 20px;               
        line-height: 20px;  
    }
}


















