body {
    background-color: rgb(255, 255, 255);
}

.icon {
    height: 80px;
    width: auto;
}

#app-icon {
    padding-bottom: 16px;
}

#heading-done .icon {
    margin-bottom: 14px;
}

#issue {
    padding: 24px 16px 0;
}

.title-1 {
    text-align: center;
    margin-bottom: 14px;
}

.body-text {
    text-align: center;
    max-width: 100%;
    width: 346px;
    font: -apple-system-body;
}

.text-container {
    padding: 56px 35px 0;
}

.heading-4 {
    padding-left: 16px;
    margin-bottom: 6px;
}

.selection-control > div:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.selection-control > div:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.selection-control > div:last-child > div {
    border-bottom-width: 0;
}

.selection-control > div {
    background-color: rgb(242, 242, 247);
    margin: 0 auto;
    padding: 0 0 0 16px;
    position: relative;
}

.selection-control > div > div {
    padding: 11px 34px 11px 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(221, 221, 221);
}

.selection-control img {
    height: auto;
    width: 16px;
    position: absolute;
    right: 16px;
    bottom: 14px;
}

#confirm {
    position: fixed;
    text-align: center;
    bottom: 30px;
    left: 0;
    width: 100%;
    transition: transform 0.2s ease-out;
}

#confirm-subtext {
    font: -apple-system-caption1;
    color: rgba(60, 60, 67, 0.6);
}

#button-wrapper {
    margin: 12px auto 0;
    border-radius: 14px;
    max-width: 100%;
    overflow: hidden;
    width: 346px;
    display: block;
}

.button-primary {
    font-weight: 600;
    width: 100%;
    padding: 14px 0;
}

@media (prefers-color-scheme: dark) {

    body {
        background-color: rgb(28, 28, 30);
        color: rgb(255, 255, 255);
    }

    .selection-control > div {
        background-color: rgb(51, 51, 54);
    }

    .selection-control > div > div {
        border-bottom-color: rgba(235, 235, 245, 0.19);
    }

    #confirm-subtext {
        color: rgba(235, 235, 245, 0.6);
    }

}

@media (max-height: 501px) {

    .text-container {
        padding-top: 0;
    }

}