::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #eee;
    opacity: 0.8; 
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #eee;
    opacity: 0.8; 
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #eee;
    opacity: 0.8; 
  }


html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    position: relative;
    min-width: 0;
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
  }
  
h1, h2, h3, h4 {
    text-wrap: balance;
}

::-moz-selection { 
    background: #333; 
    color: #fff;
}

::selection { 
    background: #333;
    color: #fff;
}

:focus {
    outline: none;
}

body,
input,
textarea,
select,
select,
button {
    background: #ffffff;
    color: #4d4e50;
    font: 18px massilia, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

section {
    width: 640px;
    max-width: 92%;
    margin: 60px auto;
}

.intro {
    border-bottom: 1px solid #eee;
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
}

.intro h1 {
    margin: 0 0 10px 0;
}

button {
    font-weight: 700;
    width: 294px;
    text-align: center;
    font-weight: 200;
    border: 0;
    border-radius: 5px;
    padding: 14px 0;
}

#current-choice button {
    border: 0;
    background: #043549;
    color: #fff;
}

button:hover {
    transition: all 0.3s ease-in;
    cursor: pointer;
}

#current-choice span {
    width: 40px;
    display: inline-block;
    text-align: center;
}

#previous-choices {
    margin: 30px 0 30px 0;
    text-align: left;
    overflow: hidden;
}

ol {
    margin: 30px 0;
}

h3.final {
    margin: 0 0 30px 0;
}

ol li {
    list-style: decimal-leading-zero;
    list-style-position: inside;
    margin: 8px 0;
    padding: 0;
}

a.back,
a.button {
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
    padding: 13px 30px 15px;
    border: 0;
    display: inline-block;
    border-radius: 5px;
}

a.back {
    font-size: 16px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #333;
    border: 1px solid #eee;
}

.options {
    color: #333;
    margin: 80px 0 0 0;
}

.options a {
    color: #333;
    border-bottom: 1px dashed #333;
}

button.go,
a.button.go {
    background: #c2ac63;
    color: #fff;
    float: left;
}

a.button.share {
    background: #333;
    color: #fff;
    margin-right: 15px;
    float: left;
}

a.button.share.goagain {
    margin: 0 0 0 15px;
}

button#submit-choices {
    display: inline-block;
    float: left;
    width: inherit;
    padding: 14px 30px;
}

a.button:hover,
button#submit-choices:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in;
}

.highlight {
    font-weight: normal;
    color: #D06862;
}

@media screen and (max-width: 700px) {

    button {
        width: 44%;
        text-align: center;
        border: 2px solid #333;
        border-radius: 5px;
        padding: 12px 0;
    }
    
}

@media screen and (max-width: 420px) {

section {
    max-width: 90%;
    margin: 40px auto 0;
}

button {
    width: 100%;
}

#current-choice span {
    width: 40px;
    display: block;
    text-align: center;
    margin: 20px auto;
}

}