@font-face {
    font-family: 'fontello';
    src: url('./font/fontello.eot?74445888');
    src: url('./font/fontello.eot?74445888#iefix') format('embedded-opentype'),
        url('./font/fontello.woff?74445888') format('woff'),
        url('./font/fontello.ttf?74445888') format('truetype'),
        url('./font/fontello.svg?74445888#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Almarai", sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.6;
    width: 90vw;
    direction: rtl;
    max-width: 1920px;
    margin: 0 auto;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

p {
    font-weight: 400;
}

input {
    font-weight: 400;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

button {
    font-weight: 700;
}

.options input[type="radio"] {
    display: none;
}

.options input[type="radio"]+label {
    cursor: pointer;
    font-size: 24px;
    margin: 0.5rem;
}

.options input[type="radio"]:checked+label {
    border: 2px solid #dc2042;

}

textarea,
input {
    border-radius: 4px;
    border: 1px solid #e3dbdb;
    padding: 0.5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;

}

input,
input::placeholder,
input::-webkit-input-placeholder {
    font: 0.25rem/3 sans-serif;
}

textarea:focus,
input:focus {
    color: #7b8a8b;
    background-color: #fff;
    border-color: #597ea2;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
    transition: 0.3s all ease;
}
a{
    text-decoration: none;
    color: #050616;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
}

header img {
    width: max-content;
    height: max-content;
    margin-bottom: 0.5rem;
}
.order-id{
    background-color: #f3f3f3;
    border: 1px solid #e3dbdb;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    color: #9f9f9f;
}
.order-id p{
    margin: unset;
    font-weight: bold;
}

.container {
    margin: 0 auto;
    background-color: #f3f3f3;
    border-radius: 8px;
    padding: 1rem;
}

.question {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.options {
    margin-bottom: 1rem;
}

.qsr-icon {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.title {
    text-align: center;
    padding: 1rem;
}

.btn {
    background-color: #dc2042;
    border: unset;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.btn:hover {
    background-color: #df3d5b;
    transition: 0.3ms all ease;
}

.submit-button {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.info {
    text-align: center;
    font-weight: 300;
    color: #7b8a8b;
}

.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked)>label:before {
    content: '★ ';
}

.rate>input:checked~label {
    color: #ffb02e;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #ffb02e;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #ffb02e;
}

@media (max-width: 767px) {
  
    header {
        align-items: flex-start;
    }
    .title{
        padding: 0.5rem;
    }
    h1{
        margin: unset;
    }
    header img {
        width: 180px;
        height: max-content;
        margin-bottom: 0.5rem;
    }
  }
