.grafik-test {
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100% - 40px);
    justify-content: space-between;
    border-radius: 25px 25px 25px 25px;
}

.grafik-test div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(14% - 16px);
    background:  #0000;
    border-radius: 5px;
    margin: 4px !important;
    padding:  10px 4px;
    box-shadow: 0px 0px 6px var(--theme-color-4);
    border-radius: 25px 25px 25px 25px;
}

.grafik-test div.today {
    background: linear-gradient( 30deg, #7700cc66 0%, #AA22DDbb 100%);
    box-shadow: 0px 0px 10px var(--theme-color-4),0px 0px 6px var(--theme-color-4),0px 0px 2px var(--theme-color-4);
}


.grafik-test2 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: calc(100% - 40px);
    justify-content: space-between;
    border-radius: 25px 25px 25px 25px;
}

.grafik-test2 div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 28px);
    background:  #0000;
    border-radius: 5px;
    margin: 4px !important;
    padding:  10px 10px;
    box-shadow: 0px 0px 6px var(--theme-color-4);
    border-radius: 25px 25px 25px 25px;
}

.grafik-test2 div.today {
    background: linear-gradient( 30deg, #7700cc66 0%, #AA22DDbb 100%);
    box-shadow: 0px 0px 10px var(--theme-color-4),0px 0px 6px var(--theme-color-4),0px 0px 2px var(--theme-color-4);
}






.bookacket {
    height: 80px;
    width: 100%;
    position: relative;
}

.bookacket .uncomenkad {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    height: 100%;
    width: calc(100% - 40px);
    border-radius: 6px;
    text-align: center;
}

.uncomenkad div {
    line-height: 86px;
    color: #ccccff;
    font-size: 48px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ccccff,#ccccff, #c56ce6,#ccccff, #ccccff);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 3s ease infinite;
}

@keyframes animate {
    0% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}
