* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    display: flex;
    width: 100%;
    max-width: 760px;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px;
}

.content {
    position: relative;
    color: white;
    padding: 35px;
}

.title {
    font-weight: 700;
    display: block;
    text-align: center;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid white;
}

.text {
    display: block;
    max-width: 100%;
    margin: 25px auto 0;
    text-align: center;
}

.text.highlight {
    color: #ee022c;
    font-size: 17px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.divider {
    border: 0;
    height: 2px;
    background: white;
    width: 100%;
    margin: 0;
}

.dark {
    width: 45%;
    background: #222f55;
}

.dark:after {
    content: '';
    background: #222f55;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 20px;
    right: -15px;
    z-index: 10;
    transform: rotate(45deg);
}

.light {
    width: 55%;
    background: #2d5ff3;
}

.result {
    overflow-x: auto;
    height: 380px;
    padding: 0 25px 15px;
}

.result .store {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.result .store:last-child {
    border-bottom: 0;
}

.result p {
    display: flex;
    margin-bottom: 8px;
}

.result strong {
    color: white;
    flex: 0 0 145px;
}

.result .selection {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    opacity: 0.5;
    user-select: none;
    margin: 0;
}

.form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 75px;
}

.input {
    width: 100%;
}

select,
input[type="text"] {
    width: 100%;
    color: white;
    appearance: none;
    -webkit-appearance: none;
    background: #222f55;
    border: 0;
    outline: none;
    padding: 8px 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid white;
    font-family: 'Montserrat', sans-serif;
}

input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

select {
    cursor: pointer;
}

input[type="text"]:hover,
input[type="text"]:focus,
input[type="text"]:active,
select:hover,
select:focus,
select:active {
    border-bottom-color: #ee022c;
    color: #ee022c;
}

.select {
    flex: 0 0 47%;
    position: relative;
}

.select.full {
    flex: 0 0 100%;
}

.select:after {
    content: '';
    pointer-events: none;
    width: 7px;
    height: 7px;
    border: 2px solid #ee022c;
    border-top-color: transparent;
    border-right-color: transparent;
    position: absolute;
    top: 4px;
    right: 5px;
    transform: rotate(315deg);
}

.radios {
    margin: 45px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 100%;
}

.radios li {
    display: flex;
    font-size: 12px;
}

.radios li input {
    margin-right: 5px;
    accent-color: #ee022c;
}

.button {
    width: 100%;
    max-width: 85%;
    margin: 15px auto 0;
    background: transparent;
    font-weight: bold;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-out;
    text-indent: -10px;
    font-family: 'Montserrat', sans-serif;
}

.button:after {
    content: '';
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-right-color: transparent;
    position: absolute;
    top: 20px;
    right: 15px;
    transform: rotate(225deg);
}

.button:hover {
    background: #fff;
    color: #222f55;
}

.button:hover:after {
    border-bottom-color: #222f55;
    border-left-color: #222f55;
}

@media screen and (max-width: 767px) {
    .wrapper {
        width: auto;
        max-width: none;
        flex-wrap: wrap;
    }

    .dark {
        width: 100%;
    }

    .light {
        width: 100%;
    }

    .dark:after {
        top: auto;
        bottom: -15px;
        right: 50%;
        margin: 0 0 15px 0 0;
        transform: rotate(45deg);
    }
}