.BtnCheckOut {
    width: auto;
    height: auto;
    border-radius: 4px;
    color: #20221f;
    padding: 0.5em 1em;
    font-size: 22px;
    background-color: #d7b367;
    cursor: pointer;
}

form#checkout .input_wrapper{
    margin-top: 34px;
}
form#checkout .input_wrapper input{
    font-size: 16px;
}
form#checkout{
    /*height: 860px;*/
}
.InputFrame{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-top: 10px;
    width: 98%;

}
.InputFrame input,.InputFrame textarea{
    background-color: #fcfafb;
}
.InputFrame .textAreaAttr{
    border-radius: 5px !important;
    font-size: 18px !important;
}
#desc .content h4{
    font-size: 20px;
}
#desc .content p{
    font-size: 16px;
}
@media (max-width: 575.98px) {
    form#checkout{
        width: 80%;
    }
    #desc .content {
        flex-direction: column;
        justify-content: right;
        align-content: normal;
        align-items: center;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    form#checkout{
        width: 80%;
    }
    #desc {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-content: flex-end;
        align-items: center;
    }

    #desc .content {
        flex-direction: column;
        justify-content: right;
        align-content: normal;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    form#checkout{
        width: 50%;
    }
    #desc {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-content: flex-end;
        align-items: center;
    }

    #desc .content {
        flex-direction: column;
        justify-content: right;
        align-content: normal;
        align-items: center;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    form#checkout{
        width: 50%;
    }
    #desc {
        display: flex;
        flex-direction: row;
        width: 70%;
        justify-content: end;
        align-content: flex-end;
        align-items: center;
    }

    #desc .content {
        flex-direction: column;
        justify-content: right;
        align-content: normal;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    form#checkout{
        width: 36vw;
    }
    #desc {
        display: flex;
        flex-direction: column;
        text-align: right;
        width: 60%;
        justify-content: space-around;
        align-content: flex-start;
        align-items: center;
    }

    #desc .content {
        flex-direction: column;
        justify-content: right;
        align-content: normal;
        align-items: center;
    }
}