/************** ajax loader **********************/
.ajax-layer {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    opacity: .8;
    z-index: 100;
}
.ajax-layer_visible{
    display: block;
}
.ajax-layer__icon{
    display: block;
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
}
/************** list item **********************/
.preview-item{
    border-radius: 5px;
    overflow: hidden;
    margin-top: 25px;
    position:relative;
    min-height: 384px;
}
.preview-item .image-wrapper {
    position: relative;
    height: 190px;
    background-color: #f1f1f1;
}
.preview-item .text{
    padding: 1px 17px 13px 17px;
    position: relative;
    background: #fff;
    z-index: 3;
    margin-top: 0;
}
.header-title .option-calendar{
    position: relative;
    z-index: 1;
}
.not-padding{
    padding: 0px!important;
}
.preview-item .image {
    width: 100%;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    position: absolute;
    min-height: 190px;
}
.image-wrapper .empty {
    height: 100%;
}
.preview-item{
    box-shadow: 0px 0px 12px rgba(102,102,102,6);
}
.preview-item h3{
    font-size: 18px;
    font-weight: bold;
    height: 58px;
}
.preview-item p{
    font-size: 19px;
}
#ui-datepicker-div{
    z-index: 10!important;
}
.section-news .data{
    padding-left: 35px;
    position: relative;
    color: #95989A;
}
.section-news .data:before{
    content: url(../images/icon-calendar.png);
    height: 25px;
    width: 25px;
    position: absolute;
    top: -3px;
    left: 0px;
}
.preview-item .hover{
    position: absolute;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.6s;
    z-index: 5;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.preview-item:hover .hover{
    opacity: 1;
    display: flex;
}
.preview-item:hover .image, .preview-item:hover .text, .preview-item:hover .data{
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
}
.preview-item a:focus{
    text-decoration: none;
}
.preview-item .hover .wrap-button a{
    background: #fff;
    color:#32394D;
    text-decoration: none;
    padding: 10pt;
    border-radius: 5px;
    float: left;
    text-align: center;
    width:100%;
    margin-bottom: 18px;
    font-size: 16px;
    font-family: 'Play', sans-serif;
}
.preview-item .hover .wrap-button a:hover{
    background: #f1f1f1;
    color: #00AEEF;
}
.wrap-button{
    width: 155px;
    margin: 0 auto;
}
.preview-item .data{
    color: #FF0D0D;
    font-size: 15px;
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    padding: 31px 17px 13px 17px;
}
.preview-item .data:before{
    content: none;
}
#map{
    height: 400px;
    margin-bottom: -30px;
}
.events-wrapper {
    margin-top: 40px;
}
.loader{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
margin: 0 auto;
}
#loader{
    top: 40px;
    left: -2.5px;
}

#loader span{
    display: inline-block;
    width: 5px;
    height: 20px;
}

#loader span:nth-child(1){
    animation: grow .4s ease-in-out infinite;
}

#loader span:nth-child(2){
    animation: grow .4s ease-in-out 0.15s infinite;
}

#loader span:nth-child(3){
    animation: grow .4s ease-in-out 0.30s infinite;
}

#loader span:nth-child(4){
    animation: grow .4s ease-in-out 0.45s infinite;
}

@keyframes grow{
    0%, 100%{
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }

    50%{
        -webkit-transform: scaleY(1.8);
        -ms-transform: scaleY(1.8);
        -o-transform: scaleY(1.8);
        transform: scaleY(1.8);
    }
}


