body {
    height: 100vh;
    background: url(../Img/burgerBack.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: rgb(0 0 0 / 90%) 0px 400px 300px -28px inset;
}

.Ordertype,
.Branchs {
    background-color: #fff;
    width: 90%;
    margin: 30px auto;
    text-align: center;
    padding: 15px 0;
    border-radius: 10px;
}

.btn {
    width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px;
    border: 1px solid #be0b29;
    border-radius: 10px;
    cursor: pointer;
}

.btn img {
    width: 23%;
    margin-right: 20px;
    border-radius: 10px;
}

.btn:hover {
    background-color: #be0b29;
    color: #fff;
}


.Branchs {
    position: relative;
    display: none;
}

.Branch {
    padding: 5px;
    display: inline-block;
    margin: 5px;
    margin-top: 5px;
    margin-left: 5px;
    text-align: left;
    cursor: pointer;
    width: 155px;
}

.Branch:hover .fa-location-dot,
.select-branch .fa-location-dot {
    color: #fff !important;
}

.Branch:hover,
.select-branch {
    background-color: #be0b29;
    color: #fff;
}

.Branch p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.fa-location-dot {
    color: #be0b29;
}

.Branchs button {
    width: 90%;
    font-size: 15px;
    background-color: #be0b29;
    color: #fff;
    cursor: pointer;
}

.Branchs button:hover {
    opacity: 0.87;
}

.Branchs .back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 25px;
    background-color: #be0b29;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
}

.Branchs .back:hover {
    opacity: 0.87;
}

@media screen and (min-width: 768px) {

    .btn img {
        width: 16%;
    }
}

@media screen and (min-width: 1024px) {


    .Ordertype,
    .Branchs {
        width: 750px;
    }
}