@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.order-screen{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000!important;
    left: 0;
    top: 0;
    overflow: auto;
    background-color: rgba(0,0,0,.4);
    backdrop-filter: blur(1.5px);
    padding: 2.4% 0;
    display: none;
}

.order-placing-box{
    background-color: white;
    width: 93%;
    max-width: 500px;
    height: fit-content;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    border-radius: 0.7em;
    padding: 20px;
}

.cod-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cod-heading > h2{
    font-family: 'Libre Franklin', sans-serif;
    text-transform: uppercase;
    font-size: 130%;
    letter-spacing: 0.7px;
}

.cod-heading > button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.cod-heading > button:focus{
    outline: none;
}

.cod-heading > button > i{
    font-size: 130%;
}


.cod-second-heading{
    height: fit-content;
    width: 100%;
    padding: 30px 0 20px 0;
}

.cod-second-heading > h2{
    font-family: 'Libre Franklin', sans-serif;
    font-size: 130%;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
}

.cod-second-heading > p{
    font-family: 'Libre Franklin', sans-serif;
    font-size: 100%;
    letter-spacing: 0.7px;
}



.order-form-div{
    height: fit-content;
    width: 100%;
}

.order-form-div > form{
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    gap: 15px;
}

.order-form-div > form > .input-div-block{
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    gap: 5px;
}

.order-form-div > form > .input-div-block:last-child{
    margin-top: 10px;
}

.order-form-div > form > .input-div-block > h3{
    font-family: 'Libre Franklin', sans-serif;
}

.order-form-div > form > .input-div-block > .input-div{
    display: flex;
    width: 100%;
    height: 50px;
    background-color: white;
    border-radius: 0.5em;
    border: 0.1em solid rgba(0, 0, 0, 0.3);
}

.order-form-div > form > .input-div-block > .input-div > i{
    height: 100%;
    width: 50px;
    background-color: #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}

.order-form-div > form > .input-div-block > .input-div > input{
    width: 100%;
    height: 50px;
    border: none;
    background-color: transparent;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 17px;
    padding-left: 20px;
}

.order-form-div > form > .input-div-block > .input-div > input:focus{
    outline: none;
}

.order-form-div > form > .input-div-block > .input-div > select{
    width: 100%;
    height: 50px;
    border: none;
    background-color: transparent;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 17px;
    padding-left: 20px;
}

.order-form-div > form > .input-div-block > .input-div > select:focus{
    outline: none;
}


#submitBtn{
    background-color: black;
    color: white;
    font-family: 'Libre Franklin', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    padding-left: 0px;
    border-radius: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100%;
}