@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200&family=Roboto:wght@100;300;400&display=swap");


/* RESET RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
  --white: #fefffd;
  --main-blue: #1b1f40;
  --element: #f5f5f5;
  --focus: #edf4f4;
  --hover: #8691f2;
}

* {
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
}

.container a {
  color: inherit;
}

.container input,
.container select,
.container textarea,
.container button {
  font-family: inherit;
  font-size: 100%;
}

.container button,
.container label {
  cursor: pointer;
  width: 50%;
}


.container select {
  appearance: none;
  -webkit-appearance: none;
}

/* Remove native arrow on IE */
.container select::-ms-expand {
  display: none;
}

/*Remove dotted outline from selected option on Firefox*/
.container select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 var(--white);
}

.container h1 {
  text-align: center;
}

body {
  font: 12px/1.5 "Montserrat", sans-serif;
  background: var(--main-blue);
  color: var(--white);
  margin: 0;
}

.container {
  width: 500px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .container {
    width: 610px;
    padding: 2rem .05rem;
  }
}

@media only screen and (max-width: 650px) {
  .container {
    width: 344px;
    padding: 1rem .05rem;
  }
}

.container h1 {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 650px) {
  .container h1 {
    margin-bottom: 2rem;
  }
}

.container li {
  list-style-type: none;
}

.container input,
.container select {
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 650px) {
  .container input,
  .container select {
    margin-bottom: 1rem;
  }
}

.container input,
.container button,
.container select {
  width: 430px;
  line-height: 1.5;
  padding: 0 12px;
  height: 50px;
  outline: 2px var(--focus) solid;
  border: none;
  /*border: 2px solid var(--white);*/
  border-radius: 0;
  -webkit-border-radius: 0;
  color: var(--white);
  background: var(--main-blue);
  transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  -webkit-transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  font-size: 15px;
  list-style-type: none;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .container input,
  .container button,
  .container select {
    width: 600px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 650px) {
  .container input,
  .container button,
  .container select {
    width: 340px;
    font-size: 15px;
  }
}

.container button {
  margin-top: 2.5rem;
}

@media only screen and (max-width: 650px) {
  .container button {
    margin-top: 2rem;
  }
}

.container button:hover {
  background: var(--focus);
  border-color: var(--focus);
  color: var(--main-blue);
}

.container input::placeholder {
  color: var(--white);
}

.container input:focus {
  transform: scale(1.02);
  border: none;
}

.container input[type="text"]:focus {
  background-color: var(--focus);
  color: var(--main-blue);
  border: none;
}

.container input::placeholder {
  color: #a6a6a6;
  text-align: left;
}

.container span.double-column {
  display: inline-flex;
  display: -webkit-inline-flex;
  position: relative;
  width: 430px;
}

@media only screen and (max-width: 768px) {
  .container span.double-column {
    width: 600px;
  }
}

@media only screen and (max-width: 650px) {
  .container span.double-column {
    width: 340px;
  }
}

.container span.double-column input[type="text"],
.container span.double-column select {
  border: none;
  outline: 2px var(--focus) solid;
}

@media only screen and (max-width: 650px) {
  .container span.double-column input {
    width: 170px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 650px) {
  .container span.double-column.times input {
    font-size: 12px;
  }
}

span.double-column.times.cug input {
  width: 143.333px;
}

@media only screen and (max-width: 768px) {
  .container span.double-column.cug input {
    width: 200px;
  }
}

@media only screen and (max-width: 650px) {
  .container span.double-column.cug input {
    width: 113.333px;
  }
}

span.icon {
  font-size: 50px;
}









.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11111; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  font: 24px/1.5 "Montserrat", sans-serif;
  font-size: 20px;
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--main-blue);
  margin: 15% auto; /* 15% from the top and centered */
  border: 2px solid var(--white);
  width: 600px;
  left: 50%;
  top: 50%;
  margin-left: -300px;
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .modal .modal-content {
    margin: 30% auto;
    width: 700px;
    margin-left: -350px;
  }
}

@media only screen and (max-width: 650px) {
  .modal .modal-content {
    margin: 30% auto;
    width: 340px;
    margin-left: -170px;
  }
}

.modal-body {
  position: relative;
}

.modal-body-center {
  top: 50%;
  left: 50%;
  position: absolute;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.modal-body-center.table {
  width: 600px;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .modal-body-center.table {
    font-size: 15px;
  }
}

@media only screen and (max-width: 650px) {
  .modal-body-center.table {
    width: 300px;
    font-size: 11px;
  }
}

.modal-body-center.table table {
  border-collapse: collapse;
}

.modal-body-center.table tr {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.modal-body-center.table tr:first-of-type {
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.modal-body-center.table table th,
.modal-body-center.table table td {
  padding: 18px;
}

@media only screen and (max-width: 650px) {
  .modal-body-center.table table th,
  .modal-body-center.table table td {
    padding: 5px;
  }
}

.modal button {
  width: 340px;
  line-height: 1.5;
  padding: 0 12px;
  height: 50px;
  outline: 2px var(--focus) solid;
  border: none;
  /*border: 2px solid var(--white);*/
  border-radius: 0;
  -webkit-border-radius: 0;
  color: var(--white);
  background: var(--main-blue);
  transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  -webkit-transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  font-size: 18px;
  list-style-type: none;
  text-align: center;
  margin-top: 4rem;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .modal button {
    width: 350px;
  }
}

@media only screen and (max-width: 650px) {
  .modal button {
    width: 250px;
  }
}

.modal button:hover {
  background: var(--focus);
  border-color: var(--focus);
  color: var(--main-blue);
}