@import url('https://fonts.googleapis.com/css2?family=BenchNine:wght@300;400;700&family=Open+Sans:wght@300;400;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;400;700&family=Roboto+Condensed:wght@400;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');



body {
    margin: 0px;
    background: #222;
}



.ui-datepicker {
  font-size: 12px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc;
}


.bodytext {
    position: relative;
    text-align:left;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    line-height: 20px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.bodytext_code {
    position: relative;
    text-align:left;
    font-family: 'Courier Prime', serif;
    font-size: 15px;
    font-weight: 400;
    color: #5BD0FF;
    line-height: 19px;
}

.bodytext a:link,
.bodytext a:hover,
.bodytext a:visited,
.bodytext a:active
{
  color: #fff;
  text-decoration: none;
}




.bodytext_dark {
  position: relative;
  text-align:left;
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #222;
  line-height: 20px;
}

.bodytext_dark a:link,
.bodytext_dark a:hover,
.bodytext_dark a:visited,
.bodytext_dark a:active
{
  color: #222;
  text-decoration: none;
}




.bodytext_copyright {
  position: relative;
  text-align:left;
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  font-weight: 200;
  color: #fff;
  line-height: 18px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bodytext_copyright a:link,
.bodytext_copyright a:hover,
.bodytext_copyright a:visited,
.bodytext_copyright a:active
{
  color: #fff;
  text-decoration: none;
}


@media screen and (min-width: 401px) {
  .bodytext_copyright { 
      font-size: 12px;
      line-height: 18px;
  }
}
@media screen and (max-width: 400px) {
  .bodytext_copyright { 
      font-size: 9px;
      line-height: 15px;
  }
}




.textfield_grey {
    border-radius: 0px;
    border: 1px solid #aaa;
    padding: 3px 2px 3px 2px;
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 15px;
    font-weight: normal;
    outline: none;
    background: #fff;
    box-sizing: border-box;
    margin-top: 2px;
    /* -webkit-text-fill-color: #222;
    -moz-text-fill-color: #222;
    -o-text-fill-color: #222;
    -khtml-text-fill-color: #222; */
}

.textfield_grey:active,
.textfield_grey:hover,
.textfield_grey:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}



input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}















.custom_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 8px 12px 8px 12px;
    border-radius: 2px;
    background: #d00;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; 
    line-height: 16px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_button:hover {
    background: #666 !important;
    color: #fff;
}


.custom_button_disabled {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 8px 12px 8px 12px;
  border-radius: 2px;
  background: #ccc;
  color: #000;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px; 
  line-height: 16px;
  font-weight: 200;
  transition: 0.3s;
  margin: 0px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}





.micro_button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 4px 4px 2px 4px;
  border-radius: 2px;
  background: #d00;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px; 
  line-height: 13px;
  font-weight: 400;
  transition: 0.3s;
  margin: 0px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.micro_button:hover {
  background: #888 !important;
  color: #fff;
}



.dialog_container {
  display: flex; 
  position: fixed; 
  width: 90%; 
  top: 0px; 
  min-height: 95vh; 
  padding: 0px;
  padding-top: 20px;
  left: -20000px; 
  justify-content: center; 
  align-items: center; 
  align-content: center; 
  text-align: center; 
  z-index: 9999991;
}


.dialog_base {
    display: block;
    position: relative;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    color: #222;
    font-size: 12px;
    line-height: 13px;
    text-align: left;
    width: 100%;
    padding: 16px 26px 20px 26px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.7);
    min-height: 100px;
}









/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding: 0px;
  padding-left: 21px;
  top: -4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  background-color: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  background-color: none;
  position: absolute;
  left: 0;
  top: -2px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 5px;
  top: -6px;
  left: 3px;
  border-radius: 0;
  opacity: 1;
  background-color: none;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}






.checkbox_small {
  display: inline-block; 
  position: relative;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #ccc;
  width: 14px;
  height: 14px;
  cursor: pointer;
}









.loader {
  display: inline-block;
  color: #d00;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}





.menu_item {
  display: block; 
  position: relative; 
  padding: 8px; 
  padding-left: 18px; 
  padding-right: 18px; 
  font-size: 16px;
  line-height: 16px;
  text-align: left; 
  border-bottom: 1px solid #666;
  cursor: pointer;
}




#main_nav_bar_logo {
  cursor: pointer; 
  position: relative; 
  border: 0px; 
  height: 36px; 
  width: auto;
}

#main_menu_icon {
  border: 0px; 
  height: 24px; 
  width: auto; 
  cursor: pointer;
}

#main_nav_bar_spacer {
  display: block; 
  position: relative; 
  height: 90px; 
  width: 100%; 
  padding: 0px; 
  box-sizing: border-box;
}

.device_image {
  display: inline-block; 
  position: relative; 
  padding: 0px; 
  text-align: left; 
  height: 98px; 
  flex-grow: 0;
}

@media screen and (min-width: 501px) {
  #main_nav_bar_logo { 
    height: 36px;
  }
  #main_menu_icon{
    height: 24px; 
  }
  #main_nav_bar_spacer {
    height: 90px; 
  }
  .device_image {
    height: 98px; 
    flex-grow: 0;
  }
}
@media screen and (max-width: 500px) {
  #main_nav_bar_logo { 
    height: 26px;
  }
  #main_menu_icon{
    height: 16px; 
  }
  #main_nav_bar_spacer {
    height: 70px; 
  }
  .device_image {
    height: 40px; 
    flex-grow: 0;
  }
}



.phone_container {
  display: inline-block; 
  position: relative; 
  width: calc(30% - 15px); 
  max-width: 300px; 
  min-width: 220px;
  padding: 0px; 
  box-sizing: border-box; 
  text-align: center;
}



#flex_block_1 {
  display: inline-block; 
  position: relative; 
  width: calc(30% - 5px); 
  max-width: 200px; 
  padding: 0px;
}

#flex_block_2 {
  display: inline-block; 
  position: relative; 
  width: calc(70% - 5px); 
  font-size: 22px; 
  line-height: 26px; 
  font-weight: 700; 
  padding: 0px;
  color: #ffc10a;
  text-align: left;
}

@media screen and (min-width: 701px) {
  #flex_block_1 { 
    width: calc(30% - 5px);
  }
  #flex_block_2{
    width: calc(70% - 5px);
    text-align: left;
  }
}
@media screen and (max-width: 700px) {
  #flex_block_1 { 
    width: calc(30% - 5px);
  }
  #flex_block_2{
    width: 100%;
    text-align: center;
  }
}


#test_number_container {
  display: inline-block; 
  position: relative; 
  width: calc(40% - 7px); 
  text-align: left; 
  color: #fff;
}

#test_message_container {
  display: inline-block; 
  position: relative; 
  width: calc(60% - 7px); 
  text-align: left; 
  color: #fff;
}

@media screen and (min-width: 381px) {
  #test_number_container { 
    width: calc(40% - 7px);
  }
  #test_message_container{
    width: calc(60% - 7px);
  }
}
@media screen and (max-width: 380px) {
  #test_number_container { 
    width: 100%;
  }
  #test_message_container{
    width: 100%;
  }
}





#copyright_box {
  display: inline-block;
  position: relative;
  width: 30%;
  max-width: 260px;
  min-width: 180px;
  text-align: left;
  padding: 0px;
  margin: 0px;
  margin-top: 15px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 200;
  color: #fff;
  line-height: 17px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#footer_links {
  display: inline-block; 
  position: relative; 
  text-align: left;
}


.footer_column {
  display: inline-block;
  position: relative;
  text-align: right;
  padding: 0px;
  margin: 0px;
  margin-top: 15px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: #fff;
  line-height: 24px;
  box-sizing: border-box;
  flex-grow: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



@media screen and (min-width: 421px) {
  #copyright_box {
    width: 30%;
    max-width: 260px;
  }
  #footer_links {
    width: initial;
  }
  .footer_column {
    text-align: right;
  }
}
@media screen and (max-width: 420px) {
  #copyright_box {
    width: 100%;
    max-width: initial;
  }
  #footer_links {
    width: 100%;
  }
  .footer_column {
    text-align: left;
  }
}




.plan_box {
  display: inline-block; 
  position: relative; 
  width: calc(50% - 10px); 
  max-width: 500px;
  margin-top: 60px;
  margin-bottom: 10px;
  padding: 15px; 
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 22px;
  background: #000;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.2); 
  border-radius: 8px;
  text-align: center;
}

@media screen and (min-width: 721px) {
  .plan_box {
    width: calc(50% - 10px);
    margin-top: 60px;
  }
}
@media screen and (max-width: 720px) {
  .plan_box {
    width: 100%;
    margin-top: 65px;
  }
}







.terms_container {
  display: inline-block;
  position: relative;
  width: 100%;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 200;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  text-align: left;
  text-align: justify;
  column-count: 2; 
  column-gap: 20px;
  column-rule: 1px solid #efefef;
  box-sizing: border-box;
  padding: 3px;
}

@media screen and (min-width: 651px) {
  .terms_container { 
  column-count: 2;
  }
}
@media screen and (max-width: 650px) {
  .terms_container { 
  column-count: 1;
  }
}