.column-1 {
    width: 100%;
}

.challenge__img {
    border-radius: 24px;
    background-color: var(--Black);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    backdrop-filter: blur(15px);
    height: 240px;
    position: relative;
}
@media all and (min-width: 768px) {
    .challenge__img {
        background-size: cover;
        background-position: center;
    }
}

.challenge .challenge__img .chip {
    display: none;
}

.challenge.active .challenge__img .chip {
    display: flex;
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--Green);
    border: none;
}

.challenge.active .price,
.challenge.active .primary-btn {
    display: none;
}

.challenge {
    border-radius: 24px;
    border: 1px solid var(--Light-Grey);
}

.challenge__content {
    padding: 20px;
}

.challenge__title,
.tab-title {
    color: var(--Black);
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    visibility: hidden;
}

.days {
    border-radius: 24px;
    border: 1px solid #DFDFDF;
    padding: 24px 20px;
    height: fit-content;
}
@media all and (max-width: 991px) {
    .days {
        padding: 14px;
    }
}

.day {
    border-radius: 12px;
    border: 1px solid var(--Green);
    background: var(--White);
    padding: 20px 16px;
    /*width: 115px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.day.active {
    border: 1px solid var(--Black);
}

.day.disabled {
    border: 1px solid var(--Light-Grey);
    cursor: default;
}
@media all and (max-width: 991px) {
    .day {
        padding: 10px;
    }
}

.container-grid{
    display: grid;
    grid-template-columns: 280px 1fr;
    column-gap: 24px;
}

.tab-label {
    color: var(--Black);
    border: 1px solid var(--Light-Grey);
    font-weight: 400;
}

.exercise, .rest {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #DFDFDF;
}

.exercise p {
    font-size: 14px;
}

.exercise__video .video-preview {
    border-radius: 16px;
}

.exercise__video {
    position: relative;
}

.time-box {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 10px;
    background: var(--Black);
    padding: 6px 10px;
    color: var(--White);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.time-box .time-box__icon {
    margin-right: 4px;
}

.input-with-icon .input-btn {
    position: absolute;
    right: 16px;
    top: 12px;
    cursor: pointer;
}

.challenge-price {
    font-weight: 600;
}

.owl-carousel .owl-item img {
    width: auto;
    margin-left: 5px;
}

.column-2 {
    overflow: hidden;
}

.owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0;
    position: absolute;
    width: 100%;
    top: 25px;
}
@media all and (max-width: 991px) {
    .owl-nav {
        top: 13px;
    }
}

.owl-custom-prev,
.owl-custom-next {
    outline: none;
    background: transparent;
    border: none;
    width: 0;
}

.owl-custom-prev *,
.owl-custom-next * {
    display: none;
}

.owl-custom-prev {
    left: 0;
}

.owl-custom-prev:after,
.owl-custom-next:after {
    content: "";
    background: var(--White) url(../../icons/arrow-left-green.svg) no-repeat center;
    position: absolute;
    display: block;
    font-size: 14px;
    background-color: var(--White);
}

.owl-custom-prev:after {
    transform: translateX(-10px);
    width: 20px;
    height: 20px;
}

.owl-custom-next:after {
    transform: rotate(-180deg) translateY(27px) translateX(10px);
    width: 30px;
    height: 70px;
}

.owl-dots {
    padding: 0;
}

.owl-stage-outer {
    padding: 0 25px;
}

@media screen and (max-width: 767px) {
    .container-grid{
        grid-template-columns: 1fr;
    }

    .column-1 {
        margin-right: 0;
        margin-bottom: 32px;
    }
}


@media screen and (max-width: 768px) {
    .exercise__video,
    .exercise__video img {
        width: 100%;
    }
}

@media (max-width: 679px) {
    .challenge-card {
        max-width: none;
    }
}

.challenge-card__img {
    margin: auto;
}

