* {
  box-sizing: border-box;
}


.header-awe-playlist {
	font-size: 18px;
	/* font-weight: 600; */
    line-height: 1.75;
	letter-spacing: 0.5px;
	padding-right: 80px;
	text-align: left;
	align-self: stretch;
	word-wrap: break-word;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    -webkit-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
@media (max-width: 980px) {
    .header-awe-playlist {
		padding-bottom: 0px;
		padding-right: 0px;
		}
}


.note-awe-playlist {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #888;
	text-align: left;
}
.awe-playlist-q {
    font-size: 16px;
    color: #000;
    text-align: left;
}

#regForm {
  font-family: Arial, sans-serif;
  padding: 20px;
  width: 100%;
}



input {
	padding: 10px;
	width: 600px;
	font-size: 18px;
	font-family: 'Montserrat', 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
	border: 1px solid #aaaaaa;
	border-radius: 4px;
	align-self: stretch;
	word-wrap: break-word;
}

@media (max-width: 640px) {
    input {
		width: 460px;
        max-width: 100%;
		}
}
@media (max-width: 520px) {
    input {
		width: 400px;
        max-width: 100%;
		}
}
@media (max-width: 480px) {
    input {
	width: 380px;
        max-width: 100%;
		}
}


/* Mark input boxes that gets an error on validation: */
input.invalid {
	background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
	display: none;
}


button {
	background-color: #6EC98E;
	font-family: 'Montserrat', 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 8px 16px 8px 16px;
	border-radius: 4px;
	text-decoration-line: none;
	background: #FFBB00; 
	justify-content: flex-start;
	align-items: flex-start;
	display: inline-flex;
	word-wrap: break-word;
	cursor: pointer;
}

button:hover {
	background-color: darkblue;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 10px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #338951;
}

/* page loader (spinner) */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.loading:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}
.loading:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.loading:not(:required):after {
    content: "";
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    animation: spinner 1.5s infinite linear;
    border-radius: 0.5em;
    box-shadow:
        rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}
@keyframes spinner {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
