:root {
    --special-color: rgba(220, 43, 27, 1);
    --gold-color: rgba(223, 157, 69, 1.00);
}
@font-face {
    font-weight: 400;
    font-family: Pobeda;
    src: url("../fonts/pobeda-regular.ttf");
}

@font-face {
    font-weight: 700;
    font-family: Pobeda;
    src: url("../fonts/pobeda-bold.ttf");
}

@font-face {
    font-weight: 400;
    font-family: Gulim;
    src: url("../fonts/gulim.ttf");
}

body {
    font-family: Pobeda, serif;
}

.head-category-list {
    position: sticky;
    top: 0;
    background-color: #fff;
    border-bottom: 0.5px solid;
}

.category-list {
    overflow-x: scroll;
    overflow-y:hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 -10px;
}
.category {
    margin: 0 10px;
    padding-top: 3px;
    font-size: 24px;
    text-decoration: none;
    color: #000;
    font-family: Pobeda, serif;
    white-space: nowrap;
}

.category:hover {
    /*color: var(--gold-color);*/
    color: var(--special-color);
}

.speciality {
    border: 1px solid;
    padding-left: 10px;
    padding-right: 8px;
    padding-top: 3px;
    color: var(--special-color);
}

.speciality:hover {
    color: rgb(176, 34, 21);
}


.category-title {
    display: flex;
    font-size: 40px;
    justify-content: center;
}
.dish-title {
    display: flex;
    justify-content: left;
    font-family: Gulim, serif;
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.15;
}
.dish-image {
    display: flex;
    justify-content: center;
}
.dish-image > img {
    pointer-events: none;
    max-width: 400px;
}
.dish-weight {
    font-family: Gulim, serif;
    font-size: 10px;
}
.dish-description {
    /*margin-top: -5px;*/
    font-family: Gulim, serif;
    font-size: 10px;
}
.dish-container {

    padding: 25px;
}
.dish-header {
    display: flex;
    justify-content: space-between;
}
.dish-price {
    padding-top: 5px;
    font-size: 24px;
    font-family: Pobeda, serif;
    color: var(--special-color);
}
.dish {
    margin-top: 20px;
}
.importMenu-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.import-button-success {
    margin-top: 10px;
    width: 200px;
}

@media (min-width: 1025px) {
    .category-list {
        justify-content: center;
    }
    .head-category-list {
        border-left: 0.5px solid;
        border-right: 0.5px solid;
        border-bottom: 0.5px solid;
    }
}