/* colors */
:root {
  --white: #ffffff;
  --black: #231f20;
  --grey: #575757;
  --lightgrey: #e8e8e8;
  --blue: #2d7bf1;
  --lightblue: #eaf1fd;
}

/* fonts & colors  */
h1,
.h1 {
  font-size: 21px;
}

p {
  color: var(--grey);
}
.container {
  padding: 20px 10px;
}

/* inputs, buttons  */
button,
.btn,
form select,
form input,
form button {
  max-width: 80%;
  width: 400px;
  box-sizing: border-box;
}
button,
.btn {
  margin: 10px auto;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 20px;
  display: block;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}
button a,
.btn a {
  color: var(--white);
}
button.outline,
.btn.outline {
  border: solid 2px var(--blue);
  background: var(--white);
  color: var(--blue);
}
button.outline a,
.btn.outline a {
  color: var(--blue);
}
form select,
form input {
  border: none;
  border-bottom: solid 2px var(--blue);
  padding: 20px;
  text-align: center;
  margin: 10px auto;
  color: var(--blue);
  background: var(--lightblue);
  size: 21px;
}
form select:active,
form input:active form button {
  background: var(--grey);
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border: none;
}
form button.disabled {
  background: var(--lightgrey);
  cursor: no-drop;
}

/* MSISDN input with country flag  */
.intl-tel-input {
  max-width: 400px;
  width: 80%;
}
.intl-tel-input #textPhonenumber {
  width: 100%;
  max-width: 100%;
}

/* google recaptcha  */
.recaptcha-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* header style  */
header {
  border-top: solid 5px var(--red);
  background: var(--white);
}
header .logo {
  margin: 20px auto;
  text-align: center;
}
header .logo img {
  width: 220px;
}

/* main style  */
body,
main {
  background: var(--white);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: none;
  min-height: calc(90vh - 90px);
}
.banner_img {
  margin-bottom: 10px;
}

/* footer style  */
footer {
  background-size: contain;
  font-size: 11px;
  margin-bottom: 0;
  bottom: 0;
  padding: 10px 0;
  position: relative;
  width: 100%;
  -webkit-text-stroke: 0;
}
footer a {
  border-left: solid thin;
  padding: 0 10px;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
}
footer a:nth-child(1) {
  border-left: none;
}

footer .sm {
  color: var(--grey);
}

/* style for desktop */
@media screen and (min-width: 415px) {
}

button#continueButton {
  width: 30%;
  min-width: 120px;
}

.select {
  position: relative;
  max-width: 300px;
  width: 70%;
  margin: 40px auto 35px auto;
}

.select-text {
  position: relative;
  font-family: inherit;
  background-color: transparent;
  width: 100%;
  padding: 10px 10px 10px 0;
  font-size: 18px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0, 0.12);
}

/* Remove focus */
.select-text:focus {
  outline: none;
  border-bottom: 1px solid rgba(0,0,0, 0);
}

  /* Use custom arrow */
.select .select-text {
  appearance: none;
  -webkit-appearance:none
}

.select:after {
  position: absolute;
  top: 18px;
  right: 10px;
  /* Styling the down arrow */
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.12);
  pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
  color: rgba(0,0,0, 0.26);
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
  color: #2F80ED;
  top: -20px;
  transition: 0.2s ease all;
  font-size: 14px;
  display: none;
}

/* BOTTOM BARS ================================= */
.select-bar {
  position: relative;
  display: block;
  width: 100%;
}

.select-bar:before, .select-bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #2F80ED;
  transition: 0.2s ease all;
}

.select-bar:before {
  left: 50%;
}

.select-bar:after {
  right: 50%;
}

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}