/* Card Carousel */
.cc-container{
    /*margin: 0 100px;*/

    transition: 1s;
}
.cc-stepButtons{
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(/Public/images/nyil-01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}
.cc-btnPrev{
    left: 0;
}
.cc-btnNext{
    right: 0;
    transform: rotate(180deg);
}
.cc-tape{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
}
.cc-item-transition{
    transition: 0.4s linear;
}

.cc-item img{
    border-radius: 30px;
}
.cc-shadowed{
    filter: brightness(0.6);
    bottom: 0;
    transform: scale(1.0);
    transition: 0.3s;
}

.cc-focus{
    transform: scale(1.2);
    bottom: 50px;
    z-index: 22;
    transition: 0.3s;
    transition-delay: 0.2s;
}

.cc-focus img {
    box-shadow: 0px 10px 10px #0000007d;
    transition: 0.4s linear;
}
.cc-currentDay{
    background-color: #c8cec1;
}
@media (max-width: 500px){
    .cc-item{
        max-width: 500px;
    }
}

.cfc-bottomRow{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 100;
 }
.cfc-listBox {
    display: flex;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    gap: 10px;
}
.cfc-dot{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #858585;
    cursor: pointer;
}
.cfc-selectedDot{
    background-color: white;
}

.versionWindow{
    min-height: 500px;
    background-color: white;
    color: black;
    padding: 8px;
}

