.search__container {
    background-color: var(--light-blue);
    border-radius: 14px;
    padding: 40px 27px;
    margin-bottom: 30px;
}

.search__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search__label {
    font-size: 42px;
    font-weight: bold;
    color: black;
    font-family: ff-meta-web-pro;
    margin-bottom: 24px;
}

.search__bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border-bottom: 3px solid black;
}

.search__input {
    width: 90%;
    border: none;
    outline: none;
    font-size: 22px;
    background: var(--light-blue);
    font-weight: bold;
    font-family: Roboto;
}

.bip {
    max-height: 40px;
    padding: 5px 14px;
    border-radius: 34px;
    border: 1px solid var(--gray-border);
    background: transparent;
    font-size: 16px;
    font-family: Roboto;
    font-weight: bold;
}

.oos-icon {
    margin: 0 3px 7px 3px !important;
}

.search__date,
.search__place {
    font-size: 16px;
    color: #7e7e7e;
}

.search__place::after {
    content: " | ";
}

.search__settings {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;

    & > span {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

.search__amount-text {
    width: 100%;
    margin-right: 5px;
}

.search__amount,
.search__sort {
    font-size: 16px;

    & > button {
        border-right: 1px solid black;
        padding-right: 5px;
        margin-right: 5px;
    }

    & > button:last-of-type {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .btn {
        font-size: 16px;
    }
}

.search__sort {
    .btn {
        text-decoration: underline !important;
    }
}

.search__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 23px;
    position: relative;
    /*z-index: -1;*/

    .search__title {
        font-size: 22px;
        font-weight: bold;
        line-height: 124%;
    }

    .search__title:hover {
        text-decoration: underline;
    }

    img {
        display: none;
    }

    p {
        margin: 10px 0;
    }

    .search__item-panel {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;

        div {
            /*max-width: 500px;*/

            & > div {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 5px;
                margin: 12px 0;
            }
        }
    }

    .search__item-panel > div > .bip {
        display: block;
        margin: 10px 0;
    }
}

.search__item-panel {
    .vertical-line {
        border-left: 1px solid #7e7e7e;
    }
}

.search__amount-active {
    font-weight: bold;
}

.oos-icon {
    display: inline !important;
}

@media (min-width: 720px) {
    .search__amount-text {
        width: unset;
    }
}

@media (min-width: 768px) {
    .search__settings {
        margin-bottom: 60px;
    }

    .search__item {
        margin-top: 60px;

        img {
            display: block;
            margin: 0;
        }
    }
}

@media (min-width: 992px) {
    .bip {
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }
}
