
.events-library-calander .select-month{
    border: 1px solid var(--a-global-color-lightblue);
    border-radius: 100px;
    text-align: center;
}
.events-library-calander .border-calander{
    border: 0 solid #FFFFFF;
    box-shadow: 0 0 22px 7px rgba(0,0,0,.11);
    border-radius: 36px;
}
.events-library-calander .hover-month{
    height: 78px;
    color: var(--a-global-color-lightblue);
}

.events-library-calander .hover-month.flex-container{
    justify-content: center;
}
.div-month {
    word-spacing: 1rem;
    cursor: pointer;
    flex-basis: 33.333%;
    display: flex;
    justify-content: center;
    align-items: center;    
}
.current-month, .today{
    background-color: #F2F2F2;
    
}
.days-week{
}
.day-in-week{
    flex-basis: 14.28%;
    border-top: 1px solid var(--a-global-color-lightblue);
    border-bottom: 1px solid var(--a-global-color-lightblue);
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.day-in-week:not(:nth-child(7n)) {
  border-left: 1px solid var(--a-global-color-lightblue);
}

.grid-calander{
    grid-gap: 0;
    grid-template-columns: repeat(7, calc(100%/7));
}
.grid-calander div.square{
    color: var(--a-global-color-lightblue);
    height: 100px;
    padding: 7px;
    position: relative;
}

.grid-calander div.blur{
    color: #E8E8E8;
}

:root {
  --border: 1px solid var(--a-global-color-lightblue);
}

.square:not(:nth-child(7n)) {
  border-left: var(--border);
}

.square:not(:nth-last-child(-n + 7)) {
  border-bottom: var(--border);
}
.square .events-list{
    overflow-y: scroll;
    color: black;
    max-height:100%;
}

.events-list .event:not(:first-child){
    border-top: 1px solid var(--a-global-color-lightblue);
    margin-top: 2px;
}

.square a.date{
    position: absolute;
    top: 62px;
    left: 7px;
    
}

.events-list .event-name,.events-list  .event-time{
    margin: 0;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

/* width */
.events-list::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.events-list::-webkit-scrollbar-track{
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.events-list::-webkit-scrollbar-thumb {
  background: var(--a-global-color-lightblue);
  border-radius: 10px;
}

.agron-popup.event-details{
	width:80%;
	background-color: white;
    padding: 2% ;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(5%);
    -webkit-transform: translateY(15%);
    transition: all .3s;
}
/* width */
.events-list::-webkit-scrollbar, .event-details::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.events-list::-webkit-scrollbar-track, .event-details::-webkit-scrollbar-track{
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.events-list::-webkit-scrollbar-thumb, .event-details::-webkit-scrollbar-thumb{
  background: var(--a-global-color-lightblue);
  border-radius: 10px;
}
.registration-event{
    margin-bottom: 15px;
}
.registration-event * {
    margin-top: 0;
}
.registration-event-button img{
    vertical-align: inherit;
}
.lable-amount-tickets{
    display: flex;
    align-items: center;
    height: 45px;
}

