.vs-header-row > div:first-child,
.vs-row > div:first-child {
    flex: 0 0 120px;
    width: 120px;
}

.vs-header-row > div:not(:first-child),
.vs-row > div:not(:first-child) {
    flex: 1;
}

.vs-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    font-family: "Nunito Sans", Sans-serif;
    overflow: visible;
}

/* Заголовок с месяцами */
.vs-header-row, .vs-row {
    display: flex;
    position: relative;
}

.vs-header-row > div,
.vs-row > div {
    flex: 1;
    border-bottom: 1px solid #8594c4;
    position: relative;
    box-sizing: border-box;
}

.vs-header-row > div:not(:first-child)::after,
.vs-row > div:not(:first-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
}

.vs-label {
    margin-top: 20px;
    width: 80px;
    font-weight: bold;
    flex: none;
    font-family: "Russo One", Sans-serif;
    font-size: 1.3em;
    font-weight: 500;
    text-transform: uppercase;
    color: #2B469D;
}

.vs-month {
    text-align: center;
    font-weight: bold;
    border-left: 1px solid #8594c4;
}

.vs-cell {
    height: 70px;
    border-left: 1px solid #8594c4;
    box-sizing: border-box;
}

a:hover small {
    color: #fff;
}

/* События */
.vs-event {
    position: absolute;
    height: 24px;
    background: linear-gradient(90deg, #CC2E22, #2B469D);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    min-width: 70px;
    margin-top: 8px;
}

/* Tooltip */
.vs-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 6px;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 999;
}

.vs-event:hover .vs-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Цвета */
.vs-PROF { background: #ffd700; }
.vs-BIZ { background: #90ee90; }
.vs-SOCIAL { background: #87ceeb; }
.vs-ART { background: #ffb6c1; }
.vs-ITECH { background: #dda0dd; }