

/*.tour-detail__extra-info {
    margin-top: 60px;
}*/

.tour-detail__extra-info_section-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 0;
    color: #333;
}

.tour-detail__extra-info_section-title:first-of-type {
    margin-top: 30px;
}

.tour-detail__extra-info_list {
    margin-top: 20px;
}

.tour-detail__extra-info_item {
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 4px 20px rgba(51, 51, 51, 0.12), 0px 0px 3px rgba(51, 51, 51, 0.08);
}

.tour-detail__extra-info_item:not(:first-child) {
    margin-top: 8px;
}

.tour-detail__extra-info_question {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tour-detail__extra-info_question-title {
    width: calc(100% - 100px);
}

.tour-detail__extra-info_question svg {
    transition: .3s transform;
}

.tour-detail__extra-info_question svg path {
    transition: .3s fill;
}

.tour-detail__extra-info_item.expanded .tour-detail__extra-info_question svg path,
.tour-detail__extra-info_item:hover svg path {
    fill: #0FC4AC;
}

.tour-detail__extra-info_item.expanded .tour-detail__extra-info_question svg {
    transform: rotate(180deg);
}

.tour-detail__extra-info_question svg {
    width: 20px;
    height: 20px;
}

.tour-detail__extra-info_answer {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    width: calc(100% - 150px);
    margin-top: 8px;
    line-height: 21px;
}

.tour-detail__extra-info_answer > ol  {
    margin-left: 0!important;
}

.tour-detail__extra-info_answer > ol > li {
    margin-left: 16px;
}

.tour-detail__extra-info_answer > ul > li {
    margin-left: 21px;
}

.tour-detail__extra-info_separator {
    width: 100%;
    height: 1px;
    background-color: #E9ECEF;
    margin: 16px auto 16px auto;
}

.tour-detail__extra-info_useful-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-detail__extra-info_useful-title {
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.tour-detail__extra-info_useful-value {
    font-size: 12px;
    color: #7B8997;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.tour-detail__extra-info_useful-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.tour-detail__extra-info_useful-button_item {
    cursor: pointer;
}

.tour-detail__extra-info_useful-button_item:not(.active):hover svg rect {
    fill: #DBF6F3;
}

.tour-detail__extra-info_useful-button_item:not(.active):hover svg path {
    fill: #0DC4AC;
}

.tour-detail__extra-info_useful-button_item.active svg rect {
    fill: #0DC4AC;
}

.tour-detail__extra-info_useful-button_item.active svg path {
    fill: white;
}