.add-new-food {
    display: inline-block;
    outline: 0;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 5px 0 rgb(213 217 217 / 50%);
    background: #FFD814;
    border: 1px solid #FCD200;
    font-size: 13px;
    height: 41px;
    padding: 0 11px;
    text-align: center;
    width: 100%;
    max-width: 120px;
    min-width: 200px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0F1111;
    margin-left: 15px;
    margin-right: 15px;
}

.add-new-food:hover {
    background: #F7CA00;
    border-color: #F2C200;
    box-shadow: 0 2px 5px 0 rgb(213 217 217 / 50%);
}

.body-wrap {
    background-image: url('/images/tablecloth.jpg');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.1);

}

.page-body {
    background-color: rgba(255, 255, 255, 0);
    margin: auto;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.page-body>div {
    text-align: center;
}

.update-button {
    cursor: pointer;
    font-weight: 600;
    font-family: Helvetica, "sans-serif";
    transition: all .2s;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ffde00;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 13px;
    margin: auto;
    margin-top: 20px;
}

.update-button:hover {
    background: #d2001a;
}

.update-button>svg {
    width: 34px;
    margin-left: 10px;
    transition: transform .3s ease-in-out;
}

.update-button:hover svg {
    transform: translateX(5px);
}

.update-button:active {
    transform: scale(0.95);
}

.input-food {
    margin-top: 1px;
    width: 100%;
    color: rgb(36, 35, 42);
    font-size: 16px;
    line-height: 20px;
    min-height: 28px;
    width: 300px;
    border-radius: 4px;
    padding: 8px 16px;
    border: 2px solid transparent;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
    background: rgb(251, 251, 251);
    transition: all 0.1s ease 0s;

}

.input-food:focus {
    border: 2px solid rgb(124, 138, 255);
}

.input-food-note {
    margin-top: 1px;
    width: 100%;
    color: rgb(36, 35, 42);
    font-size: 16px;
    line-height: 20px;
    min-height: 28px;
    width: 300px;
    height: 120px;
    border-radius: 4px;
    padding: 8px 16px;
    border: 2px solid transparent;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
    background: rgb(251, 251, 251);
    transition: all 0.1s ease 0s;

}

.input-food-note:focus {
    border: 2px solid rgb(202, 0, 0);
}

.dropdown {
    height: 40px;
    width: 250px;
    margin: 10px auto;
    border-radius: 10px;
    border-width: 1px 5px 5px 1px;
    border-color: #969696;
}

.dropdown-foodtype {
    height: 40px;
    width: 300px;
    margin-top: -5px;
    margin-bottom: -5px;
    border-radius: 5px;
    border-width: 1px 3px 3px 1px;
    border-color: #969696;
}

.form-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.custum-file-upload {
    height: 100px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cacaca;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
}

.custum-file-upload .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custum-file-upload .icon svg {
    height: 30px;
    fill: rgba(75, 85, 99, 1);
}

.custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custum-file-upload .text span {
    font-weight: 400;
    color: rgba(75, 85, 99, 1);
}

.custum-file-upload input {
    display: none;
}

.modal-body {
    margin: auto;
    padding-top: 100px;
}

.modal-header {
    background-color: #efefef;
    border-radius: 30px 30px 1px 1px;

}

.modal-content {
    border-radius: 30px;
}

.button-wrapper {
    display: flex;
    flex-direction: row;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cards-wrapper {
    max-width: 1000px;
    margin: auto;
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.card {
    margin: 10px;
    position: relative;
    width: 250px;
    max-height: 250px;
    color: #2e2d31;
    background: #131313;
    overflow: hidden;
    border-radius: 25px;
    margin-left: 8px;
}

.temporary_text {
    font-weight: bold;
    font-size: 24px;
    color: #f8f8f8;
}

.card_title {
    font-weight: bold;
}

.card__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__image {
    min-height: 200px;
    max-width: 100%;
    height: auto;
    object-fit: fill;
}

.card_content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #f2f2f2;
    border-top-left-radius: 20px;
    transform: translateY(150px);
    transition: transform .25s;
}

.card_content::before {
    content: '';
    position: absolute;
    top: -47px;
    right: -45px;
    width: 100px;
    height: 100px;
    transform: rotate(-175deg);
    border-radius: 50%;
    box-shadow: inset 48px 48px #f2f2f2;
}

.card_title {
    color: #131313;
    line-height: 15px;
}

.card_subtitle {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
}

.card_description {
    font-size: 14px;
    opacity: 0;
    transition: opacity .5s;
}

.card:hover .card_content {
    transform: translateY(0);
}

.card:hover .card_description {
    opacity: 1;
    transition-delay: .25s;
}


.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4FC3A1;
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    margin-top: 40px;
}


/*-------------     footer      --------------*/
footer p {
    font-size: 16px;
}

.footer-description h2 {
    color: white;
    font-weight: bold;
    width: 59%;
    padding: 35px 0 20px;
}

.footer-description p {
    color: #cfcfcf;
    font-size: 16px;
    width: 80%;
}

.menu h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: #787878;
    font-weight: bold;
    margin: 0;
    padding-bottom: 25px;
}

ul.footer-menu li {
    padding-top: 20px;
}

ul.footer-menu li a {
    font-size: 16px;
    color: #CFCFCF;
    text-transform: capitalize;
}

ul.footer-menu li a i {
    padding-left: 20px;
}

.footer-location {
    display: flex;
    align-items: baseline;
}

.footer-location i {
    color: #787878;
    font-size: 18px;
    padding-right: 15px;
}

.footer-location p {
    color: #CFCFCF;
}

.footer-location {
    display: flex;
    align-items: baseline;
    padding-top: 10px;
    padding-bottom: 20px;
    border: 1px solid #787878;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.menu.contacts a i {
    color: #787878;
    font-size: 18px;
    padding-right: 15px;
}

.menu.contacts a {
    color: #CFCFCF;
    font-size: 16px;
    display: block;
    padding-top: 20px;
}

ul.social-media li {
    margin-right: 20px;
}

ul.social-media {
    display: flex;
    padding: 40px 0;
}

ul.social-media li a i {
    height: 40px;
    width: 40px;
    border-radius: 40px;
    border: 1px solid #CFCFCF;
    color: #CFCFCF;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.social-media li a i:hover {
    border: 1px #f29f05;
    color: white;
}

.footer-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    margin-top: 101px;
    border: 1px solid #787878;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    padding-bottom: 25px;
}

.footer-two a {
    color: #787878;
    font-size: 14px;
    padding-left: 20px;
}

.footer-two p {
    font-size: 14px;
}

p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    color: #787878;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #363636;
    font-size: 16px;
}

a:hover {
    color: #363636;
}

h1 {
    font-size: 60px;
    line-height: 80px;
    color: #363636;
}

h2 {
    line-height: 58px;
    font-size: 48px;
    margin: 0;
    color: #363636;
}

h3 {
    line-height: 46px;
    font-size: 36px;
    margin: 0;
    color: #363636;
}

h4 {
    font-size: 24px;
    line-height: 34px;
    color: #363636;
}

h5 {
    line-height: 32px;
    font-size: 22px;
    color: #363636;
}

h6 {
    line-height: 28px;
    font-size: 18px;
    color: #363636;
}

a {
    color: black;
}

.gap {
    padding: 100px 0;
}

.no-top {
    padding-top: 0;
}

.no-bottom {
    padding-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    display: block;
}

figure {
    overflow: hidden;
}
