#content_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

#steps_wrapper {
    /* max-width: 80%; */
    /* background: white; */
    /* border: 0 none; */
    /* border-radius: 3px; */
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); */
    /* box-sizing: border-box; */
    /* width: 400px; */
    /* margin: 0 auto; */
    overflow: hidden;
}
#steps {
    width: 200%;
    display: flex;
    flex-direction: row;
}
.step {
    flex-basis: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step .title {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

#data_wrapper {
    /* text-align: center; */
    background-color: rgba(255, 255, 255, 0.6);
}
#data_wrapper #data_title {
    text-align: left;
    text-transform: none;
    color: #fa2200;
}
#data_wrapper label {
    color: #fa2200;
}
#data_wrapper a {
    color: #fa2200;
    font-weight: bold;
}
.input_wrapper {
    padding-bottom: 10px;
    margin: 10px 0;
    position: relative;
}
.input_wrapper:last-child {
    padding-bottom: 0;
}
.input_wrapper#legal_wrapper label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.input_wrapper#legal_wrapper a {
    margin-left: 5px;
}
.input_wrapper#instagram_wrapper {
    font-size: 0.75rem;
    color: #face03;
}
.input_wrapper input {
    padding: 10px;
    border: none;
    outline: none;
    /* border: 1px solid #ccc; */
    /* border-radius: 3px; */
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
    color: #fa2200;
    background-color: #face03;
    font-size: 13px;
}
.input_wrapper input::placeholder {
    color: #fa2200;
}
.input_wrapper input.error {
    border-color: red;
}
.input_wrapper input[type="submit"] {
    width: auto;
    background: #face03;
    font-weight: bold;
    color: #fa2200;
    border: 0 none;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px 5px;
    text-transform: uppercase;
    margin-bottom: 0;
    -webkit-appearance: none;
}
.input_wrapper input[type="submit"]:disabled {
    background: #555;
    cursor: not-allowed;
}
.input_wrapper input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
    margin-bottom: 0;
}
.input_wrapper select {
    width: 100%;
    box-sizing: border-box;
    background: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
    
}
.input_wrapper label.error {
    font-size: 0.75rem;
    color: red;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
#data_submit_loader_wrapper {
    width: 200%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#data_submit_loader_wrapper .input_wrapper {
    flex-basis: 100%;
    order: 0;
    text-align: center;
}
#data_submit_loader_wrapper #data_loader_wrapper {
    flex-basis: 100%;
    order: 1;
}
#data_submit_loader_wrapper #data_loader_wrapper .loader {
    margin: 0 auto;
    font-size: 8px;
}

#game_wrapper {
    text-align: center;
    order: 1;
    background-color: black;
}
#game {
    position: relative;
    /* height: 200px; */
}
#game #game_result {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
#game #game_result img {
    background-color: black;
    max-width: 100%;
}
#game_title {
    font-size: 0.9rem;
}
#game_title_image img {
    max-width: 100%;
}
#game_wrapper #next_wrapper {
    display: flex;
    flex-direction: row;
    /* width: 200%; */
    overflow-x: hidden;
}
#game_wrapper #next_wrapper .input_wrapper {
    flex-basis: 100%;
    margin-top: 20px;
    text-align: center;
}
#game_wrapper #next_wrapper .input_wrapper a {
    padding: 10px 30px;
    background-color: white;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}
#game_wrapper #next_wrapper #loader_wrapper {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#game_wrapper #next_wrapper #loader_wrapper .loader {
    font-size: 5px;
    margin: 20px auto;
}

#success_wrapper {
    text-align: center;
    order: 1;
}
#success_wrapper img {
    max-width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}
#success_wrapper .input_wrapper {
    margin-top: 20px;
}
#success_wrapper .input_wrapper a {
    background-color: #004fb9;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px 5px;
    margin-bottom: 0;
    text-transform: uppercase;
    text-decoration: none;
}

#keep_watching img {
    max-width: 100%;
}

@media only screen and (max-width: 600px) {
    #progress_wrapper { width: 100%; padding: 0 15px; }
}
