body {
    margin: 0;
    cursor: default;
}

button {
    background-color: transparent;
    border: 0px;
    cursor: pointer;
}

p {
    margin: 0;
}

.main-header {
    width: 100%;
    height: 150px;
    border-radius: 0 0 50px 50px;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 20;
}

.logo-beauty {
    background: #EFEFEF;
    border: 4px solid #F4B33C;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin-top: 100px;
}

.main-page {
    display: flex;
    flex-direction: row;
}

.menu-box {
    width: 65px;
    height: calc(100vh - 150px);
    background: #F4B33C;
    box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.14);
    position: fixed;
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 100px;
    padding-top: 50px;
}

.categories-name {
    font-size: 0.7em;
    text-align: center;
    cursor: pointer;
}

.item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: calc(100% - 65px);
    margin-top: 200px;
    position: absolute;
    right: 65px;
    z-index: 5;
}

.head-title {
    margin-bottom: 0;
    margin-left: 64px;
    margin-top: 20px;
}

.main-items {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: calc(100% - 40px);
    border-bottom: 1px solid #FFD281;
}

.category-name {
    margin-top: 0;
    margin-bottom: 8px;
}

.align-boxs {
    display: flex;
    flex-direction: column;
}

.item-box {
    height: 100px;
    background: #FFD281;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    padding: 20px;
    margin-bottom: 20px;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    margin-left: 10px;
    cursor: pointer;
}

.item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.item-name {
    font-size: 0.9em;
    color: #000000;
    font-weight: 600;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
}

.item-name .title {
    flex: 1 1 0;
}

.item-price {
    display: flex;
    justify-content: flex-end;
    font-size: 0.65em;
    font-weight: 600;
}

.item-description {
    font-size: 10px;
    color: #000000;
}

.item-head {
    display: flex;
    flex-direction: column;
}

.brand {
    text-align: center;
}

.brand .text {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0.6;
    transition: all 0.3s;
    z-index: 999;
    font-size: 0.65em;
    font-family: "mainFont", sans-serif !important;
    padding: 5px 20px;
    margin: 5px auto;
    display: inline-block;
}

.brand .text:hover {
    opacity: 1;
    box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 0.1);
}

.brand a {
    text-decoration: none;
}

.fab {
    z-index: 500;
    border-radius: 100%;
    background-color: #F4B33C;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 0 15px 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: slideInFromBottom;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    border: 0;
}

.note-image {
    width: 35px;
    height: 35px;
}

.note-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.close-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.close-section-order {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.order-row-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin: 10px 0;
}

.order-row-item .modal-item-title{
    width: 40%;
}

.order-row-item .modal-order-item{
    width: 30%;
    display: flex;
    justify-content: center;
}

.order-row-item .modal-price-item{
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.icon-note {
    width: 14px;
    height: 14px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    animation-duration: 0.5s;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideOutToBottom {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.modal-image {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}

.slide-in {
    animation-name: slideInFromBottom;
    animation-fill-mode: forwards;
}

.slide-out {
    animation-name: slideOutToBottom;
    animation-fill-mode: forwards;
}

.unvisible {
    display: none;
}

.main-item-detail {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.price-section {
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
    color: #414141;
}

.note-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

@media only screen and (min-width: 800px) {
    .item-box {
        width: 42%;
        margin: 0 .5% 20px;
    }

    .align-boxs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .modal{
        align-items: center;
    }

    .modal-content {
        width: 400px;
        border-radius: 15px;
    }
}

@media only screen and (min-width: 1045px) {
    .item-box {
        width: 28%;
        margin: 0 .5% 20px;
    }
}

@media only screen and (min-width: 1400px) {
    .item-box {
        width: 29%;
        margin: 0 .5% 20px;
    }
}