* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Clear Sans', sans-serif;
    line-height: 1.5;
    transition: all 0.5s;
}

*:focus {
    outline: none;
}

.all-records {
    height: 100vh;
    background-color: #243239;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    max-width: 528px;
    background-color: #fff;
    border-radius: 5px;
}
@media only screen and (max-width: 768px) {
    .card {
        max-width: 90%;
    }
}

#back-button {
    position: relative;
    width: 24px;
    top: 20px;
    left: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.item {
    display: none;
    padding: 30px 50px 15px;
    text-align: center;
}

.selected {
    display: block !important;
}


.header h2 {
    font-size: 18px;
    margin: 12px auto;
    font-weight: 500;
}

.logo,
.step-img {
    height: 146px;
    width: 146px;
    margin: 12px;
    border-radius: 20px;
}

@media only screen and (max-width: 768px) {
    .logo{
        height: 100px;
        width: 100px;
    }
}

.step-instructions {
    margin: 12px auto;
    color: #616161;
}

.step-actions {
    margin: 30px auto 15px;
}

.block {
    line-height: 1.7;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border: none;
    padding: 10px 8px;
    color: #616161;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 16px auto;
}

.primary {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 1px 5px 0 rgba(0, 0, 0, 0.12),
        0 3px 1px -2px rgba(0, 0, 0, 0.2);
    background-color: #263238;
    color: #fff;
}

.step-img {
    display: inline-block;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 73px;
    background-image: url('img/setup-different-device.svg');
}

#copyAccessCode .step-img {
    background-image: url('img/setup-copypaste.svg');
}

.copy-input {
    pointer-events: none;
    border: none;
    border-bottom: 2px solid #009688;
    color: #009688;
    font-size: 22px;
    width: 140px;
    background-color: transparent;
}

.copy-button {
    border: none;
    background-color: #263238;
    color: #fff;
    padding: 10px 8px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.message,
.installed {
    font-size: 14px;
    color: #616161;
    margin: 16px;
}

#install .step-img.desktop {
    background-image: url('img/setup-desktop-install.svg');
}

#install .step-img.mobile {
    background-image: url('img/setup-mobile-install.svg');
}

#done .step-img.desktop {
    background-image: url('img/setup-desktop-done.svg');
}

#done .step-img.mobile {
    background-image: url('img/setup-mobile-done.svg');
}



#havingTrouble {
    background-color: #FAFAFA;
    border-top: 1px solid #EEE;
    color: #666;
    padding: 10px 50px;
    border-radius: 0 0 5px 5px;
}

#done.item {
    padding: 30px 0 0 0;
}

#done .main {
    padding: 0 50px;
}

#havingTrouble .step-instructions {
    font-size: 14px;
}