.tourist-dropdown {
    cursor: pointer;
    position: relative;
    user-select: none;
    font-size: 15px;
    z-index: 1;
    color: black;
    width: 100%;
}

.tourist-dropdown__label {
    height: 40px;
}

.tourist-dropdown__label {
    display: flex;
    align-items: center;
}

.tourist-dropdown__label .arrow {
    width: 14px;
    height: 9px;
    background: url(../../img/arrow-down.png);
    margin-left: auto;
}

.tourist-dropdown.open .tourist-dropdown__label .arrow {
    transform: rotate(-180deg);
}

.tourist-dropdown__content {
    display: none;
    position: absolute;
    border: 1px solid #cfcfcf;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    margin: 10px 0 0;
    width: 100%;
    padding: 10px;
}

.tourist-dropdown.open .tourist-dropdown__content {
    display: block;
    background: white;
}

.tourist-dropdown__persons {
    display: flex;
    width: 100%;
    align-items: center;
    height: 34px;
    margin-bottom: 10px;
}

.tourist-dropdown__persons button {
    width: 34px;
    height: 100%;
    display: block;
    background-position: center;
    border: 1px solid #ffc219;
    cursor: pointer;
}

.tourist-dropdown__persons button.minus {
    background: url(../../img/minus.svg);
}

.tourist-dropdown__persons button.plus {
    background: url(../../img/plus.svg);
}

.tourist-dropdown__persons .counter {
    height: 100%;
    width: calc(100% - 70px);
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tourist-dropdown__persons .counter span {
    margin-right: 5px;
}

.tourist-dropdown__tourists-count {
    display: flex;
}

.tourist-dropdown__tourists-count .counter {
    display: inline-flex;
}

.tourist-dropdown__tourists-count .counter > * {
    padding: 0 4px;
    line-height: 20px;
    min-width: 15px;
}

.tourist-dropdown__tourists-count .counter span {
    background-color: #ffc219;
    border-radius: 4px;
    color: white;
    text-align: center;
    margin-right: 1px;
}

.tourist-dropdown__tourists-count .counter i {
    margin-right: 5px;
}

.tourist-dropdown__tourists-count .adults i {
    background: url(../../img/hotel/marker-adults.svg) center no-repeat;
}

.tourist-dropdown__tourists-count .children i {
    background: url(../../img/hotel/marker-children.svg) center no-repeat;
}