.msg, .fixed {
  box-sizing: unset;
}

html, body {
  margin: 0;
  min-height: 100%;
  line-height: 1.75;
  scroll-snap-type: y mandatory;
}

body {
  background: linear-gradient(0deg, rgba(255,255,255,1) 10%, rgba(171,171,171,1) 100%);
  font-family: 'Source Code Pro', monospace;
  font-weight: 200;
  text-transform: uppercase;
}

a {
  color: #f9bdc7;
  text-decoration: none !important;
}

a:hover {
  color:#ABABAB;
}

h1 {
  font-size: 1.0em;
  font-weight: bold;
  padding-bottom: 0;
  text-align: center;
}

section {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 0 auto;
  padding: 1em;
}

.info, #messages {
  padding-top: 4em;
}

.box {
  background: white;
  padding: 1em;
}

#tz {
  width: 5em;
  display: inline-block;
  margin-left: -0.5em;
  margin-right: 1em;
}


.top {
  top: 1em;
  position: absolute;
  left: 1.25em;
}

.top:hover {
  color: black;
}

.top-left {
  left: 1em;
}
.top-right {
  right: 1em;
}


.bottom {
  position: fixed;
  bottom: 1.5em;
  right: 2em;
  color:#dcdcdc;
  z-index: 1;
}

.bottom-left {
  position: fixed;
  bottom: 1.5em;
  left: 2em;
  color:#dcdcdc;
  z-index: 1;
}

#clear {
  clear: both;
  height: 0;
}

#lauren:hover {
  color: black;
}

.top-arrow {
  cursor: pointer;
  font-size: 2.0em;
  position: fixed;
  top: 0.1em;
  color: white;
  z-index: 1;
  font-weight: normal;
}

.arrow {
  cursor: pointer;
  font-size: 1.5em;
  line-height: 1.0em;
}

.arrow:hover, .top-arrow:hover, #scroll:hover {
  color: #f9bdc7;
  cursor: pointer;
}

#more {
  display: inline;
}

#vol {
  width: 1.2em;
  opacity: 0.13;
  cursor: pointer;
}
#vol:hover {
  opacity: 1.0;
}

#intro-page, #signup-page {
  margin-bottom: 4em;
}


/* SLOTS */

#slots-section {
  pointer-events: none;
}

/* .slot:nth-child(4n) {
  margin-right: 0;
} */

.slot {
  margin-right: 2%;
  margin-bottom: 2%;
  width: 23.5%;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.no-right-margin {
  margin-right: 0 !important;
}

.slot:hover {
  background: #f9bdc7;
}

/* FORM */
.highlight {
  font-weight: 600;
}

#form label {
  width: 3.5em;
  display:table-cell;
}

#form .name-label {
  width: 6.75em;
}

#form input {
  width: 100%;
  display:table-cell;
  border: none;
  text-transform: uppercase;
}

#form .explain-label {
  width: 3.5em;
  display: block;
}

#form textarea {
  width: 100%;
  border: none;
  text-transform: uppercase;
}


.field {
  display:table;
  width: 100%;
  margin-top: 1em; 
}

select {
  box-shadow: none;
  background: white;
  outline: none;
  border: none;
  width: 100%;
  text-transform: uppercase;
}


#form button {
  background: #f9bdc7 !important;
  border:none;
  width: 12em;
  margin-top: 1em;
  text-transform: uppercase;
  float: right;
}

button:hover {
  background: black !important;
  color: white;
}

.aligner {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  align-items: center;
  z-index: -2;
}

/* CHAT */
#ref {
  position: absolute;
  top: 0;
  left: 0;
  /* background: yellow; */
}
.msg {
  margin-top: 1em;
  width: 100%;
}

.msg .box {
  display: inline-block;
  max-width: 80%;
}

.me {
  text-align: left;
}

.you {
  text-align: right;
}

#messages {
  overflow-y: hidden;
  text-transform: none;
}

#response {
  display: table;
}

#response input {
  width: 100%;
  display: table-cell;
  border: none;
  text-transform: uppercase;
  text-transform: none;
}
#submit-when, #send {
  display: table-cell;
  background: #f9bdc7 !important;
  border:none;
  width: 5em;
  margin-top: 1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

#submit-when:hover, #send:hover {
  background: black !important;
  color: white;
}

.bold {
  font-weight: 600;
}
.note {
  color: #f9bdc7;
}

#back {
  color: white;
  cursor: pointer;
}
#back:hover {
  color: #f9bdc7;
}

/* PLANS */

#plans input:focus {
  border: none;
  outline: none;
}

.info .participant-name {
  /* font-weight: bold; */
}

#scroll {
  display: inline-block;
}

#dates {
  margin: 1em;
  padding: 1em;
  background: white;
  display: inline-block;
}
.date {
  color: #f9bdc7;
  cursor: pointer;
}

.date:hover {
  color:#ABABAB;
}

.snap {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  display: block;
}

#chat-toggle {
  background: linear-gradient(0deg, rgba(255,255,255,1) 10%, rgba(171,171,171,1) 100%);
}



@media only screen and (max-device-width : 767px) {
  .info {
    padding-top: 3em;
  }
  
  #messages {
    padding-top: 1em;
  }

  section {
    width: 100%;
    padding: 1em;
    margin: 0;
  }

  .shift {
    margin-top: 3em;
  }

  .slot {
    margin-right: 2%;
    width: 49%;
  }

  .top {
    top: 1em;
  }

  .top-arrow {
    top: -0.1em;
  }

  .top-left {
    top: 0;
    left: 0.625em;
  }
  .top-right {
    top: 0;
    right: 0.625em;
  }

  footer {
    display: none;
  }

  .bottom {
    bottom: 1em;
    right: 1.25em;
    width: 80vw;
    text-align: right;
  }
  .bottom-left {
    bottom: 1em;
    left: 1.25em;
  }

  select {
    color: #f9bdc7;
    -webkit-appearance: none;
  }
}