/*.wcss-box {

    margin: 17px 0 0 0;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fafafa;
    font-size: 14px;
    line-height: 1.5;

}*/


.wcss-box {
    border-radius: 4px;
    padding: 14px 16px;
    margin: 18px 0 0 0;
}

.wcss-today {
    background: #edf9f0;
    border: 1px solid #2ea44f;
}

.wcss-future {
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

.wcss-override {
    background: #fff4f4;
    border: 1px solid #e84e1b;
}


.wcss-title {

    font-weight: 600;
    margin-bottom: 4px;

}


.wcss-message {

    color: #333;
    font-family: Roboto;
    font-size: 0.85em;

}


.wcss-hint {

    margin-top: 8px;
    position: relative;
    display: inline-block;
}


.wcss-hint-icon {

    cursor: pointer;
    font-size: 15px;
    color: #777;

}


.wcss-hint-content {

    display: none;
    position: absolute;
    z-index: 99;
    left: -8px;
    top: 25px;
    width: 280px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

}


.wcss-hint:hover .wcss-hint-content {

    display: block;

}


/* Animácia boxu */
.wcss-box {
	opacity: 1;
	transform: translateY(0);
	max-height: 300px;
	overflow: visible;
	transition:
		opacity 1.35s ease,
		transform 1.35s ease,
		max-height 1.35s ease;
}

.wcss-box.wcss-variable-hidden {
	opacity: 0;
	transform: translateY(-40px);
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

