.options__content {
    position: relative;
    width: 100%;
}

.options__content.active .item-options {
    display: none;
}

.options__content.active .item-options.active {
    display: -webkit-flex;
    display: flex;
}

.options__items {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    z-index: 10;
}

.item-options {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    text-align: center;
    color: inherit;
    padding: 13rem 0;
    background: #eee;
    border-radius: 12rem;
    cursor: pointer;
    z-index: 10;
}

.item-options:nth-child(1) {
    border-top-right-radius: 0;
}

.item-options:nth-child(2) {
    border-bottom-left-radius: 0;
}

.item-options:nth-child(3) {
    border-bottom-right-radius: 0;
}

.item-options.active {
    z-index: 20;
    left: 0;
    width: 33%;
    min-width: 33%;
    cursor: auto;
}

.item-options__body {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 3rem;
}

.item-options__title {
    font-size: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item-options__text {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 75%;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item-options:not(.active):hover .item-options__title {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.item-options:not(.active):hover .item-options__text {
    opacity: 0.5;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.item-options__button {
    display: -webkit-inline-flex;
    display: inline-flex;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: currentColor;
    padding: 0.5rem 1rem;
    background: transparent;
    border-radius: 1.11rem;
    border: 1px solid currentColor;
    opacity: 0.5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item-options__button:hover {
    opacity: 1;
}

.item-options.active .item-options__button {
    display: none;
}

.options__content.active .options__button {
    opacity: 1;
    visibility: visible;
}

.options__button {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    text-align: center;
    background: #fff;
    border: 1px solid var(--theme-skit-color);
    border-radius: 50%;
    padding: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

.options__button::before,
.options__button::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    top: calc(50% - 1px);
    left: 10%;
    background: var(--theme-skit-color);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.options__button::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.options__button::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.options__button:hover {
    background: var(--theme-skit-color);
}

.options__button:hover::before,
.options__button:hover::after {
    background: #fff;
}

.info-options {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 60%;
    min-width: 60%;
    padding-top: 8rem;
    z-index: 15;
}

.options__content:not(.active) .info-options {
    display: none;
}

.info-options__body {
    display: none;
    position: relative;
    width: 100%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.info-options__body.active {
    display: block;
}

.info-options__header {
    display: block;
}

.info-options__title {
    font-size: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.info-options__title span {
    font-size: 2rem;
    font-weight: 700;
}

.info-options__content {
    display: block;
    margin-top: 1rem;
}

.info-options__text {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.info-options__text:last-child {
    margin-bottom: 0;
}

.info-options__text span {
    font-weight: 600;
}

.info-options__navigation {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 0.5rem;
}

.info-options__navigation .nav-link {
    display: -webkit-inline-flex;
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--theme-skit-color);
    padding: 0.5rem;
    border-radius: 1.11rem;
    border: 1px solid var(--theme-skit-color);
}

.info-options__navigation .nav-link.active {
    color: #fff;
    background: var(--theme-skit-color);
}

.item-options__button_popup {
    display: -webkit-inline-flex;
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: currentColor;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    background: transparent;
    border-radius: 1.11rem;
    border: 1px solid currentColor;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.item-options__button_popup:hover {
    opacity: 1;
}

.modal_options .modal-dialog {
    max-width: 1320px;
}

.modal_options .modal-header {
    border: none;
}

.modal_options .modal-body {
    padding-top: 0;
}

.option-popup__title {
    font-size: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.option-popup__body {
    margin-top: 1rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--theme-skit-color);
}

.option-popup__subtitle {
    font-size: 1.5rem;
    line-height: 1.2;
}

.option-popup__text {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 1rem;
}

.option-popup__list {
    padding: 0;
    margin: 1rem 0 0;
}

.option-popup__item {
    font-size: 1rem;
    line-height: 1.2;
    list-style-position: inside;
    list-style-type: disc;
}

.option-popup__item::marker {
   color: var(--theme-skit-color);
}

.option-popup__info {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 1rem;
}

.option-popup__info p {
    font-size: inherit;
}

.option-popup__info a {
    color: var(--theme-skit-color);
}

@media all and (max-width: 1199px){
    .item-options {
        padding: 10rem 0;
    }

    .item-options__body {
        padding: 0 1rem;
    }
}

@media all and (max-width: 767px){
    .options__items {
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .item-options {
        border-radius: 6rem;
    }

    .item-options.active {
        width: 100%;
    }

    .options__button {
        position: relative;
        width: 34px;
        height: 34px;
        margin-left: auto;
    }

    .info-options {
        width: 100%;
        padding-top: 0;
    }

    .option-popup__title {
        font-size: 1.5rem;
    }

    .option-popup__subtitle {
        font-size: 1.2rem;
    }
}





