﻿.withEvent{
    background-color:lightgrey;
    text-align:center;
}

.kalendardetail{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100px;
    left: 0;
    opacity: 0;
    transition: all .3s ease-out;
    pointer-events: none;
    visibility: hidden;
}

.kalendardetail.open{
    opacity: 1;
    top: 0;
    pointer-events: initial;
    visibility: visible;
}

.kalendardetail .obal{
    position: relative;
    display: table;
    margin: 30px auto;
    max-height: calc(100% - 60px);
    background: #fff;
    box-shadow: 1px 3px 12px rgba(30, 30, 30, 0.3);
    min-width: 300px;
    font-size: 12px;
    border: 1px solid #8BB6EF;
    padding: 0 10px 5px;
}

.kalendardetail .obal .nadpis{
    border-bottom: 1px solid #8BB6EF;
    padding: 0 10px;
}

.kalendardetail .obal .nadpis h2{
    font-weight: normal;
}

.kalendardetail .obal .obsah{
    padding: 5px;
}

.kalendardetail .obal .close{
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

.kalendardetail .obal .akce{
    padding: 5px;
    margin-top: 10px;
    border-top: 1px solid #8BB6EF;
}

.kalendardetail .obal .akce:first-child{
    border-top: none;
}

.kalendardetail .obal .akce .times{
    float: right;
}

.kalendardetail .obal .akce .title{
    float: left;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.kalendardetail .obal .akce h4{
    margin-bottom: 0;
    font-size: 13px;
}

.kalendardetail .obal .akce .description{
    clear: both;
    margin-bottom: 5px;
}
