.flowController {
    width: 400px;
    text-align: center;
    margin: auto;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.flowPage {
    display: none;
}

.flowPage.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.kiosk .btn {
    width: 250px;
    margin: 10px auto;
}

.kiosk .mainHeader {align-items: center;justify-content: center;}

.kiosk .mainHeader h2 {
    text-align: center;
}

.kiosk select {
    min-width: 250px;
}

.hiddenSection {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}

.hiddenSection.show {
    transform: translateY(10px);
    opacity: 1;
    pointer-events: all;
}

.powderDetails img {
    height: 120px;
    width: 120px;
    margin-right: 10px;
}

.powderDetails {
    display: flex;
    text-align: left;
    font-size: 11px;
}

.btn.goHome {
    position: absolute;
    left: -60px;
    top: 11px;
    width: auto;
    border: none;
    padding: 12px 20px;
    box-shadow: none;
}

.btn.goHome i {
    margin-right: 5px;
}

.checkedOutPowder img {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.checkedOutPowder {
    display: flex;
    text-align: left;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 8px;
    padding-right: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin: 8px;
}

.checkedOutPowder h4 {
    margin: 0px;
    font-size: 17px;
}

.checkedOutPowder.selected {
    box-shadow: 0px 0px 0px 3px #68d63f;
    border: 1px solid #68d63f;
}