.tour-details-button {
    padding: 12px 28px;
    color: #2d373c;
    background-color: white;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #54a15d;
    line-height: 20px;
    transition: .15s ease-in-out;
    border-radius: 10px;
}

.tour-details-button.active, .tour-details-button:hover {
    color: #fff;
    background-color: #54a15d;
}

.tour-details-button.btn-disabled {
    padding: 12px 28px;
    color: white;
    background-color: grey;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid grey;
    line-height: 20px;
    transition: .15s ease-in-out;
    border-radius: 10px;
}

.title-part {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.part {
    background: darkblue;
    color: white;
    width: 30px;
    height: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-sticky {
    position: sticky;
    z-index: 500;
    top: 100px;
}

.quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    margin-top: 12px;
}

.number-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-input .minus-qty,
.number-input .plus-qty {
    width: 40px;
    height: 40px;
    line-height: 21px;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid #54a15d;
    color: #54a15d;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-input input[type=number] {
    width: 70px;
    text-align: center;
    background-color: rgba(237, 237, 237, 0.237);
    font-size: 18px;
    font-weight: 600;
}

.number-input .minus-qty:hover, .number-input .plus-qty:hover {
    background-color: #54a15d;
    color: white;
}