:root {
    --violet: #7523F5;
    --wheel-backgnd: #6C2BCC;
    --controls-500: #2358D1;
    --black-87: rgba(32, 33, 36, 0.87);
    --controls-100: #EEF2FC;
    --orange: #EF8733;
    --lightblue: #EEF2FC;
    --yellowcolor: #fabc14;
}
body {
    color: var(--black-87);
    font-family: SilpoText,Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding: 8px 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 4px 0;
    padding: 0;

    align-self: stretch;
    color: var(--black-87);
    font-family: SilpoText;
    font-style: normal;
    font-weight: 700;
}
h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 100%;
}
h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
}
h3 {
    font-size: 20px;
    line-height: 130%;
}
h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 130%;
}
h5 {
    font-size: 18px;
    line-height: 130%;
}
h6 {
    font-size: 18px;
    font-weight: 600;
    align-self: auto;
}
.fontsize16 {
    font-size: 16px;
}
h1 span {
    font-size: 70%;
}
p { margin: 0 0 10px 0; }

.container {
    margin: 0 16px 20px 16px;
}
.wrap {
    margin-top: 30px;
}
.block {
    margin: 0 0 20px 0;
}

body.vr {
    line-height: 140%; /* 19.6px */
}
.wheel-backgnd {
    background-color: var(--wheel-backgnd);
    color: white;
}
.wheel {
    font-size: 20px;
    padding: 50px 16px 20px 16px;
    text-align: center;
}
.wheel .container {
    margin: 0 auto;
    max-width: 400px;
}
.wheel p {
    margin-top: 0;
    margin-bottom: 20px;
}
.vrheader {
    min-height: 84px;
    display: flex;
    justify-items: flex-start;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 20px;
}
.orange {
    background-color: var(--orange);
}
.light-blue {
    background-color: var(--lightblue);
}
.vrheader img {
    margin-top: -11px;
    height: 56px;
}
.apple-logo { margin-right: 20px; }

.bluebutton, .yellowbutton {
    display: flex;
    height: 48px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */;
}
.bluebutton {
    border: 1px solid var(--controls-500);
    background: white;
    color: var(--controls-500);
}
.bluebutton:hover {
    background: var(--controls-100);
}
.yellowbutton {
    background: var(--yellowcolor);
    color: black;
}
.actionbutton {
    display: flex;
    height: 48px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    border-radius: 24px;
    background: var(--controls-500, #2358D1);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */;
}
.center {
    text-align: center;
}
.flexcenter {
    display: flex;
    justify-content: center;
}
.flexhorizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flexhorizontal > * {
    display: block;
    margin-bottom: 16px;
}
.lineheight140 {
    line-height: 140%;
}
.height80 {
    height: 80px;
}


