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

html {
    font-family: "Arial", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

button {
    font-weight: 600;
    outline: none;
    border: none;
    cursor: pointer;
}

input,
textarea,
select {
    outline: none;
}

ul,
li {
    list-style: none;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

p {
    font-weight: 400;
    padding: 0;
    margin: 0;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
}

.wrapper {
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

@media (min-width: 431px) {
    .wrapper {
        max-width: 510px;
    }
}

.main {
    position: relative;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.wrapper__list {
    z-index: 1;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.wrapper__item {
    cursor: pointer;
    display: block;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.wrapper__item input {
    display: none;
}

.wrapper__item div {
    border-radius: 16px;
    padding: 24px 45px 24px 24px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    background-color: rgb(239, 245, 247);
    transition: all 0.2s ease-out 0s;
    -webkit-box-pack: start;
    justify-content: start;
    color: rgb(10, 50, 77);
    border: transparent;
}

@media (min-width: 768px) {
    .wrapper__item div {
        padding: 26px 58px 26px 24px;
        font-size: 18px;
        line-height: 25px;
    }
}

.wrapper__item--checkbox div::before {
    content: "";
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgb(188, 201, 208);
    border-radius: 4px;
}

.wrapper__item--checkbox input:checked + div::before {
    background-color: rgb(99, 54, 255);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' fill='none' viewBox='0 0 12 9'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M1 3.625 4.6 7 11 1'/%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    border: none;
}

.wrapper__button {
    position: fixed;
    width: 100%;
    max-width: 460px;
    bottom: 0px;
    padding: 77px 0px 32px;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgb(255, 255, 255) 41%
    );
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.wrapper__button .button {
    margin-bottom: 0;
    cursor: pointer;
    pointer-events: auto;
}

.wrapper__item--radio input:checked + div {
    background-color: rgb(99, 54, 255);
    color: rgb(255, 255, 255);
    border: none;
}

.wrapper__title {
    font-size: 24px;
    line-height: 33px;
	font-weight: 700;
    text-align: center;
}

@media (min-width: 1200px) {
    .wrapper__title {
        font-size: 32px;
        line-height: 44px;
        font-weight: 800;
    }
}

.button:disabled {
    background-color: rgba(99, 54, 255, 0.3);
}

.button {
    width: 311px;
    height: 62px;
    margin: 0px auto;
    display: block;
    padding: 0px 20px;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    outline: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 62px;
    text-decoration: none;
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgb(99, 54, 255);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    transition: background-color 0.2s ease-out 0s;
    margin-bottom: 17px;
}

@media (min-width: 768px) {
    .button {
        width: 100%;
        font-size: 24px;
        height: 76px;
        border-radius: 100px;
    }
}

@media (min-width: 1200px) {
    .button {
        width: 460px;
        height: 76px;
        border-radius: 100px;
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 33px;
    }
}

.header {
	width: 100%;
    border-bottom: 1px solid rgb(204, 220, 229);
}

.logo {
    width: 311px;
    padding: 13px 0px 12px;
    margin: 0px auto;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
}