body {
    background-color: #f5f5f5;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

#container h3 {
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: left;
}

#container * {
    font-family: "Poppins", sans-serif;
    color: #67748e;
}

#OrderContainer {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 150px 20px 0 20px;
    display: flex;
    align-items: flex-start;
}

#OrderContainer main {
    width: 100%;
}

#OrderContainer main h1 {
    font-size: 36px;
    margin-bottom: 50px;
    color: black;
}

#OrderContainer main section {
    margin: 0 0 40px 0;
    max-width: 550px;
    padding: 0;
    align-items: flex-start;
}

#OrderContainer main section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

#OrderContainer main section figure {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    margin: 10px 0;
    border-radius: 10px;
    background: white;
    box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
    overflow: hidden;
    cursor: pointer;
    transition: .1s;
}

#OrderContainer main section figure.checked {
    background-color: #0078D7;
}

#OrderContainer main section figure.checked * {
    color: white;
}

#OrderContainer main section figure input[type='radio'] {
    transform: scale(2);
    background-color: white;
    cursor: pointer;
    pointer-events: none;
}

#OrderContainer main section figure span {
    margin-left: 20px;
    font-weight: 400;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    text-wrap: nowrap;
}

#OrderContainer main section dd {
    border: 1px solid #d3d3d3;
    width: 100%;
    max-width: 350px;
    height: 78px;
    margin: 5px 0;
    padding: 14px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
    background: #f9f9f9;
}

#OrderContainer main section dd input {
    width: 23px;
    min-width: 23px;
    height: 23px;
    outline: 2px solid #c1c1c1;
}

#OrderContainer main section dd label {
    margin: 0 12px 0 12px;
    color: black;
    font-family: Roboto, helvetica, arial, sans-serif;
    font-size: 14px;
    text-wrap: nowrap;
}

#OrderContainer main section dd label b {
    color: black;
    font-weight: 600;
}

#OrderContainer main section dd img {
    margin: 0 5px;
}

#OrderContainer main section dd img.edahabia {
    width: 30px;
}

#OrderContainer main section dd img.cib {
    width: 35px;
}

#OrderContainer main section input[type='email'] {
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: 60px;
    font-size: 15px;
    color: #495057;
    border-radius: 8px;
    border: 1px solid #d2d6da;
    outline: none;
    font-weight: 600;
    padding: 15px;
    margin-bottom: 10px;
}

#OrderContainer main section input[type='file'] {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

#OrderContainer main section a {
    text-decoration: underline;
}

#OrderContainer main section div.spcldiv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    text-wrap: nowrap;
}

#OrderContainer main section div.spcldiv * {
    margin: 0;
}

#OrderContainer aside {
    position: absolute;
    top: 150px;
    left: calc(100% - 350px - 20px);
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
    overflow: hidden;
    z-index: 1;
}

#OrderContainer aside h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

hr {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

#OrderContainer aside ul {
    align-self: flex-start;
    list-style-type: square;
    padding-left: 40px;
}

#OrderContainer aside ul li {
    margin: 5px 0;
}

#OrderContainer aside input[type='submit'] {
    background-image: linear-gradient(310deg, #2152ff, #21d4fd);
    color: white;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
    cursor: pointer;
    font-size: 16px;
}

#OrderContainer aside img {
    display: none;
    width: 51px;
}

@media (max-width: 990px) {
    #OrderContainer {
        flex-direction: column;
    }

    #OrderContainer aside {
        position: relative;
        top: unset;
        left: unset;
        width: 100% !important;
    }
}