@charset "UTF-8";


body.find.shops .nav-station {
    margin-top: 24px;
    border-block: 1px dotted #999;
    padding: 8px;
    border-radius: 5px;
	display: flex;
    flex-direction: column;
	gap: 8px;
    h3 {
        font-size: 1.6rem;
        width: 100%;
    }
    > ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    > ul li {
        width: calc((100% - 16px) / 3);
        border: 1px dotted #999;
        border-radius: 5px;
        padding: 8px;
        line-height: 1;
        @media (min-width: 700px) {
            width: calc((100% - 32px) / 5);
        }
    }
    > ul a {
        font-size: 1.4rem;
        text-align: center;
    }
}


body.find.shops > :not(main):not(.modal.fix) {
	width: 100%;
	padding-inline: max(15px, calc((100% - 1000px) / 2));
}

body.find.shops > main {
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%;
}

body.find.shops > main > *:not(.headline):not(.info-txt):not(.section-shops):not(.modal) {
	padding: 16px max(15px, calc((100% - 1000px) / 2));
}

body.find.shops :is(.modal.fix.categories, .modal.fix.cities, .modal.fix.hotels) .inner {
    padding: 0;
    border-top: none;
    a.return-to {
        text-decoration: none;
        padding: 12px 8px;
        background: #000;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        border: none;
        *[class*=material-] {
            font-size: 2rem;
        }
    }
    section {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    section .label {
        align-items: center;
        line-height: 1;
        padding: 8px;
        display: flex;
        justify-content: space-between;
        background: var(--colgray-40);
        border-bottom: 1px dotted var(--colgray-90);
        color: #fff;
    }
    section .label *[class*=material-] {
        font-size: 2.5rem;
        width: 32px;
        height: 32px;
        align-content: center;
        text-align: center;
        border-radius: 50%;
        background: var(--colgray-80);
        color: var(--colgray-20);
        border: 1px solid var(--colgray-20);
    }
    section ul {
        padding-inline: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-block: 8px;
    }
    section ul.close {
        display: none;
    }
    section ul li {
        width: calc((100% - 8px) / 2);
    }
    section ul a {
        display: block;
        width: 100%;
        padding: 8px;
        color: var(--col-link);
        border-radius: 5px;
        border:1px dotted var(--col-link);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

body.find.shops .modal.fix.hotels .inner section {
    padding-inline: 0;
    ul {
        padding-inline: 0;
    }
    ul li {
        width: 100%;
    }
    ul li a {
        padding-inline: 8px;
        background: none;
        border-style: none none dotted none;
        border-bottom: 1px dotted var(--col1-50);
        border-radius: 0;
        color: var(--col-link);
    }
}
body.find.shops.hotels .hotel-search {
    form {
        width: 100%;
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    img {
        top: -15px;
        left: 0;
        position: absolute;
        width: 100px;
    }
    input[type=text] {
        border: 1px solid var(--colgray-60);
    }
    button {
        border: 1px solid var(--colgray-60);
        background: var(--colgray-30);
        border-radius: 5px;
        color: #fff;
    }
}