@media only screen and (max-width: 1279px) {
  :root {
    --large-content-width: 450px;
  }
}

@media only screen and (max-width: 700px) {
  :root {
    --large-content-width: 300px;
  }
}

body {
  background-color: var(--black-color);
}

section#order-paused {
  width: 100%;
  background-color: var(--black-color);
  background-image: url(assets/images/gradient1.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 97vh;
}

#order-paused-middle {
  width: var(--large-content-width);
}

#order-paused-middle .primary-button-wrapper {
	margin-top: 40px;
  position: relative;
}

section #order-paused-content {
  box-shadow: 0 30px 50px rgba(0, 0, 0, .4);
  position: relative;
  background-color: var(--white-color);
  border-radius: var(--large-border-radius);
  padding: 75px 65px;
  padding-bottom: 65px;
  width: var(--large-content-width);
}

#order-paused-content h1 {
  line-height: 100%;
}

#order-paused-content p {
  font-weight: 400;
}

#order-paused-bottom {
  display: flex;
  align-items: center;
  margin-top: var(--tiny-padding);
  width: 75%;
}

#order-paused-circle {
  width: 100px;
  height: 100px;
  background-color: var(--black-color);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--tiny-padding);
  flex-shrink: 0;
}

#order-paused-circle img {
  width: 50px;
  height: 50px;
}

/* HEADS UP SECTION */

#heads-up {
  border-top-left-radius: var(--larger-border-radius);
  border-top-right-radius: var(--larger-border-radius);
  background-color: var(--black-color);
  color: var(--white-color);
  margin-top: calc(-1 * var(--larger-border-radius));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#heads-up hr {
  background-color: var(--white-color);
  margin-top: var(--divider-line-margin-top);
  margin-bottom: 125px;
}

#heads-up .info-icon {
  border-color: var(--white-color);
}

#heads-up strong {
  font-weight: 600;
  color: var(--yellow-color);
}

#heads-up-content {
	margin-top: 100px;
  width: var(--large-content-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#heads-up-left {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-right: 100px;
}

#heads-up-left h2 {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: var(--tiny-padding);
}

#heads-up-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#heads-up-right .info-icon {
  margin-right: 15px;
}

#heads-up-right p {
  width: max-content;
  font-weight: 400;
}

.primary-input-wrapper {
    border: 2px solid #ffffff;
}

#heads-up-bottom {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#heads-up-bottom .primary-input-wrapper {
  margin-top: 50px;
}

@media only screen and (max-width: 1279px) {
  section#order-paused {
	  height: 110vh;
    background-image: url(assets/images/gradient1_small.png);
  }

  #order-paused-middle {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  #order-paused-middle .primary-button-wrapper {
    margin-top: var(--tiny-padding);
    margin-left: 15px;
  }

  section #order-paused-content {
	box-shadow: 0 30px 50px rgba(0, 0, 0, .4);
    position: static;
    padding: var(--tiny-padding);
    margin-top: 20px;
  }

  section #order-paused-content h1 {
    padding-right: 25px;
  }

  #order-paused-bottom {
    width: 100%;
  }

  #order-paused-circle {
    margin-top: var(--tiny-padding);
    margin-right: 0;
    width: 50px;
    height: 50px;
  }

  #order-paused-circle img {
    width: 25px;
    height: 25px;
  }

  #heads-up {
    border-top-left-radius: var(--large-border-radius);
    border-top-right-radius: var(--large-border-radius);
    position: static;
    margin-top: -65px;
  }

  #heads-up hr {
    background-color: var(--white-color);
    margin-top: var(--divider-line-margin-top);
    margin-bottom: 75px;
  }

  #heads-up-content {
    align-items: flex-start;
    flex-direction: column;
    position: relative;
  }

  #heads-up-left {
    padding-right: 0px;
  }

  #heads-up-left h2 {
    width: 200px;
    line-height: 105%;
  }

  #heads-up-left p {
    padding-right: 35px;
  }

  #heads-up-right {
    position: absolute;
    top: 385px;
    color: var(--black-color);
  }

  #heads-up-right .info-icon {
    border-color: var(--black-color);
  }

  #heads-up-bottom {
    height: 300px;
  }

  #heads-up-bottom .primary-input-wrapper {
    margin-top: var(--tiny-padding);
  }
}

@media only screen and (max-width: 700px) {
  #heads-up-left h2 {
    margin-top: 30px;
  }

  #heads-up-right {
    position: absolute;
    top: 450px;
    color: var(--black-color);
  }
}
