.guided-setup-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    margin-top: 25px;
}
.guided-setup-container.border {
    border-color: var(--main-grey);
    border-style: solid;
}

.guided-creation-step {
    margin-bottom: 50px;
}

.guided-creation-navigation-bar {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: white;
    left: 0;
    min-height: 50px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    z-index:2;
}

.guided-parent-invite-row:nth-child(odd) {
    background: var(--main-grey);
}

.guided-virtual-set-row, .guided-parent-invite-row {
    padding: 5px;
}

.guided-virtual-set-row:nth-child(odd) {
    background: var(--main-grey);
}

.guided-creation-school-calendar-instructions{
    margin-bottom:1rem;
    text-align:center;

}


.progress-circle {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border-radius: 15px;
    border: var(--main-grey);
    border-style: solid;
    border-width: medium;
}
.progress-circle.active {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background:var(--main-blue-shadow);
    border: var(--main-blue-shadow);
    border-style: solid;
    border-width: medium;
}

.progress-circle.closed {
    background: var(--main-blue);
    border: var(--main-blue);
}

.progress-line {
    width: 45px;
    height: 5px;
    background: var(--main-grey);
}
.progress-line.closed{
    background: var(--main-grey-shadow);
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--main-grey-shadow);;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--main-blue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--main-blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}