#report .calendar.flatpickr-input {
    display: none;
}
#report_analitics .calendar.flatpickr-input{
    display: none;
}
#report_notifications .calendar.flatpickr-input{
    display: none;
}
#report .flatpickr-calendar {
    box-shadow: none;
}
#report_analitics .flatpickr-calendar{
    box-shadow: none;
}

#event_edit .calendar_hall {
    position: relative;
    width: 100%;
    /*! background: aquamarine; */
}

#event_edit .calendar_hall input {
    /*! background: red; */
    /*! display: none; */
    width: 0;
    /*! height: 0; */
    position: absolute;
}

#event_edit .calendar_hall a {
    /*! background: yellowgreen; */
    width: 100%;
    display: flex;
    align-items: center;
}

/**/
.calendar_static {
    width: 100%;
    background: white;
    margin: 0.5rem;
    border-radius: var(--radius-small);
    border: solid 1px var(--grey_04);
    display: flex;
    justify-content: center;
    padding: 0.5rem;
}

/**/
.nav_top .calendar_button input {
    /*! display: none; */
    /*! position: relative; */
    /*! width: 0; */
    margin-left: 1rem;
    width: 5rem;
    font-size: 0.75rem;
    /*! background: antiquewhite; */
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--text_light);
    font-weight: 500;
}

.nav_top .calendar_button input:hover {
    color: white;
}

.nav_top .calendar_button {
    display: flex;
    font-family: inherit;
    text-align: center;
    align-items: center;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    justify-content: center;
    background: white;
    border: solid 1px var(--grey_04);
    color: var(--primary);
    border-radius: var(--radius-big);
    margin: 0.5rem;
}

.nav_top .calendar_button:hover {
    background: var(--primary);
    color: white;
}

.nav_top .calendar_button:hover>input {
    color: white;
}

.nav_top .calendar_button a {
    display: flex;
    padding: 0.5rem;
}

/**/
.calendar_company .button {
    cursor: pointer;
    padding: 0;
}

.pop_up .pop_up_body .group .item .calendar_company .button:hover {
    background: var(--primary);
    color: white;
    transition: none;
}

.calendar_company .button:hover>input {
    color: white;

    background: var(--primary);
}



.calendar_company .button:hover .material-icons {
    color: white;
}

.calendar_company input {
    width: 100%;
    /*! background: aquamarine; */
    padding: 0.5rem;
    text-align: right;
    height: 2.5rem;
}

.calendar_company a {
    display: flex;
    margin-right: 0.5rem;
}

.calendar_range {
    display: flex;
    font-family: inherit;
    text-align: center;
    align-items: center;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    justify-content: center;
    background: white;
    border: solid 1px var(--grey_04);
    /*! color: var(--primary); */
    border-radius: var(--radius-big);
    margin: 0.5rem;
}

.calendar_range input {
    margin-left: 1rem;
    width: 100%;
    font-size: 0.875rem;
    /*! background: antiquewhite; */
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--text_light);
}

.calendar_range a {
    display: flex;
    padding: 0.5rem;
}

/* dev add*/
.hidden {
    display: none;
}

.popup {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    text-align: center;
    z-index: 99999;
}

.popup_bg {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    cursor: zoom-out;
}

.popup_img {
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    pointer-events: none;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.3);
}

/*Preloader*/
#loader_wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(2px) invert(16%);
    display: none;
}

#loader{
    position: fixed;
    z-index: 1001;
    left: 50%;
    top: 50%;
    width: 6rem;
    height: 6rem;
    background: url(/images/loader-02.svg) no-repeat center;
}