#tourists-selection-container .adults-selection {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

#tourists-selection-container .adults-selection > span:last-child {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px;
}

#tourists-selection-container .adults-selection .counter-btn[disabled] {
    cursor: default;
    color: rgb(186, 186, 192);
    background: rgb(245, 245, 245);
    box-shadow: none;
}

#tourists-selection-container .adults-selection .counter-btn {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    color: rgb(60, 60, 60);
    padding: 2px;
    margin: 0;
    background: transparent;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 8px, rgba(0, 0, 0, 0.06) 0px 0px 2px, rgba(0, 0, 0, 0.04) 0px 0px 1px;
}

#tourists-selection-container .adults-selection .counter-btn > svg,
#tourists-selection-container .children-selection > button > svg {
    width: 20px;
    height: 20px;
}

#tourists-selection-container .children-selection > button {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 52px;
    margin-top: 25px;
    border: 0;
    outline: 0;
    border-radius: 8px;
    background: rgb(245, 245, 245);
    cursor: pointer;
    padding: 0 15px;
}

#tourists-selection-container .children-selection > button > span {
    display: block;
    color: rgb(60, 60, 60);
    font-size: 16px;
    font-weight: 400;
}

#tourists-selection-container .children-selection .children-age-list-container {
    overflow: hidden;
    width: 100%;
    left: 0;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 20px, rgba(0, 0, 0, 0.04) 0px 2px 10px, rgba(0, 0, 0, 0.02) 0px 0px 4px;
    z-index: 3;
    position: relative;
    margin-top: -52px;
}

#tourists-selection-container .children-selection .children-age-list {
    display: block;
    overflow: auto;
    min-height: 52px;
    max-height: 320px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    scrollbar-width: thin;
    scrollbar-color: rgb(130, 130, 137) rgb(255, 255, 255);
}

#tourists-selection-container .children-selection .add-child {
    display: block;
    padding: 10px 16px;
    line-height: 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: rgb(60, 60, 60);
    cursor: pointer;
    transition: color 0.2s;
}

#tourists-selection-container .added-children-list {margin-top: 10px}
#tourists-selection-container .added-children-list .added-children-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding: 10px 0;
    color: #212529;
}

#tourists-selection-container .added-children-list .added-children-list-item svg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

#tourists-selection-container .added-children-list .child-age {color: #6b6b6b;}

#tourists-selection-container .added-children-list .child-age:before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 3px 5px;
    border-radius: 50%;
    background-color: #6b6b6b;
}