@import url(../../root.css);
.owl-carousel {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 100px;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.owl-theme .owl-nav {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -350px !important;
    z-index: 0 !important;
}

.owl-carousel .owl-stage-outer {
    width: 100%;/*joseránál kitakarják a boxok a nav linkeket*/
    height: auto;
    /*height: 600px;*//*vagy a képet&szöveget is fix méretűre kell tenni, vagy nem szabad megkötnia teljes magasságot */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.owl-carousel .item {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.owl-carousel .item .box__item {
    display: flex;
    height: 270px;
    width: 740px;
    background-color: var(--card-bg-color);
    border: 1px solid var(--card-bg-color);
    margin-bottom: 20px;
    cursor: pointer;
    padding: 30px;
    transition: all .3s;
}
.owl-carousel .item .box__item:hover {
    border: 1px solid var(--josi-red-color);
}
.owl-carousel .item .box__img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel .item .box__img img {
    width: 65%;
}

.owl-carousel .item .box__item .box__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-color);
}
.owl-carousel .item .box__item .box__subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--black-color);
}
.owl-carousel .item .box__item .features {
    padding-left: 30px;
}
.owl-carousel .item .box__item .features li {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--josi-red-color);
}
.owl-carousel .item .box__item .box__icon {
    display: flex;
    justify-content: flex-end;
}
.owl-carousel .item .box__item .box__icon i {
    background-color: var(--icon-bg-color);
    color: var(--white-color);
    padding: 10px;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all .3s;
}
.owl-carousel .item .box__item:hover .box__icon i {
    background-color: var(--josi-red-color);
}

.owl-theme .owl-prev,
.owl-theme .owl-next {
    width: 50px;
    height: 50px;
    background-color: var(--white-color) !important;
    border: 1px solid var(--dark-grey-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
}
.owl-theme .owl-prev i,
.owl-theme .owl-next i {
    font-size: 2.3rem !important;
    color: var(--black-color) !important;
}