body {
    margin: 0;
    height: 100vh;
}

#main-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: scroll;
}

#toast-container {
    background-color: rgb(242, 242, 247);
    display: flex;
    padding: 20px 10px 20px 25px;
    align-items: center;
    border-bottom-style: solid;
    border-bottom-width: .5px;
    border-bottom-color: rgb(221, 221, 221);
}

#toast-container[hidden] {
    display: none;
}

#toast-container > picture {
    max-height: 29px;
}

#toast-container > picture > img {
    padding-right: 12px;
    height: 29px;
}

#toast-container > div {
    font-size: 14px;
    max-width: 80vw;
}

#toast-container > div, #headline-text, select {
    color: rgb(0, 0, 0);
}

#header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    text-align: center;
}

#app-icon {
    height: 80px;
}

#headline-text {
    margin-top: 25px;
    width: 81.5%;
    padding: 0 15px;
}

.selection-control {
    margin: 0 auto;
    width: calc(81.5% + 30px);
    margin-bottom: 150px;
}

.selection-control[hidden] {
    display: none;
}

.selection-control .heading-4 {
    padding-left: 16px;
    margin-top: 30px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.selection-group > div[disabled] {
    color: rgba(60, 60, 67, 0.6);;
}

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

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

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

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

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

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

#confirm-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(255, 255, 255);
    padding-top: 20px;
}

#button-wrapper {
    width: calc(81.5% + 30px);
}

#environment {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(60, 60, 67, 0.58);
    text-align: center;
}

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

    #toast-container {
        background-color: rgba(44, 44, 46);
        border-bottom-color: rgba(235, 235, 245, 0.19);
    }

    #toast-container > div, #headline-text, .selection-cell {
        color: rgb(235, 235, 245);
    }

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

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

    .selection-group > div[disabled] {
        color: rgba(235, 235, 245, 0.6);
    }

    #confirm-container {
        background: rgb(28, 28, 30);
    }

    #environment {
        color: rgba(235, 235, 245, 0.6);
    }

}