@charset "UTF-8";
/*
  Browsers resets and base typography.
*/
/* Core module CSS variable definitions */
:root {
  --fore-color: #3f565f;
  --secondary-fore-color: #677f84;
  --back-color: #fcfcfc;
  --secondary-back-color: #f0f0f0;
  --blockquote-color: #f9c577;
  --pre-color: #1565c0;
  --border-color: #ddd;
  --bordersp-color: #0f7789;
  --secondary-border-color: #ddd;
  --heading-ratio: 1.19;
  --universal-margin: 0.5rem;
  --universal-padding: 0.5rem;
  --universal-border-radius: 0.125rem;
  --a-link-color: #1680e0;
}

html {
  font-size: 16px;
}

a, b, del, em, i, ins, q, span, strong, u {
  font-size: 1em;
}

html, * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

* {
  font-size: 1rem;
}

*:focus {
outline: none;
}

body {
  margin: 0;
  color: var(--fore-color);
  background: var(--back-color);
}

input {
  overflow: visible;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  margin: calc(1.5 * var(--universal-margin)) var(--universal-margin);
  font-weight: 500;
  overflow:hidden;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
  color: var(--secondary-fore-color);
}

h1 {
    font-weight: 600;
  font-size: calc(1rem * var(--heading-ratio) * var(--heading-ratio) * var(--heading-ratio) * var(--heading-ratio));
  overflow-wrap: break-word;
}

h2 {
    font-weight: 600;
  font-size: calc(1rem * var(--heading-ratio) * var(--heading-ratio) * var(--heading-ratio));
    overflow-wrap: break-word;
}

h3 {
  font-size: calc(1rem * var(--heading-ratio) * var(--heading-ratio));
    overflow-wrap: break-word;
}

h4 {
  font-size: calc(1rem * var(--heading-ratio));
    overflow-wrap: break-word;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: calc(1rem / var(--heading-ratio));
  line-height: 1.75rem;
}

p {
  margin: var(--universal-margin);
}

p span{
    color:#777;
}

ol, ul {
  margin: var(--universal-margin);
  padding-left: calc(2 * var(--universal-margin));
  list-style-position: inside;
}

b, strong {
  font-weight: 700;
}

hr {
  box-sizing: content-box;
  border: 0;
  line-height: 1.25em;
  margin: var(--universal-margin);
  height: 0.0625rem;
  background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

blockquote {
  display: block;
  position: relative;
  margin: var(--universal-margin) 0 0.5rem 0;
  padding-top: calc(2 * var(--universal-padding));
  border: 0.0625rem solid #eee;
  border-left: 0.50rem solid #eee;
  border-radius: 0.125rem;
}

blockquote:before {
  position: absolute;
  top: calc(0rem - var(--universal-padding));
  left: 0.5rem;
  font-style:italic;
  font-family: sans-serif;
  font-size: 3rem;
  font-weight: 700;
  content: "\201c";
  color: #ccc;
}

blockquote[cite]:after {
  font-style: normal;
  font-size: 0.75em;
  font-weight: 700;
  content: "\a—  " attr(cite);
  white-space: pre;
}

code{
font-family: monospace;
font-size: 0.9em;
font-weight: bold;
word-break:break-word;
}

code span{
font-family: monospace;
color:#000;
font-size:1.25em;
}
small, sup, sub, figcaption {
  font-size: 0.75em;
}
smallest {
  font-size: 0.6em;
  color:#cacaca;
}
a {
  text-decoration: none;
}

a:link {
  color: var(--a-link-color);
}

a:hover, a:focus{
  text-decoration: underline;
      outline: none;
}
a:visited {
color: inherit;
}

.outurl a {
color: #00798e;
font-size: 0.9rem;
text-decoration-line: underline;
text-decoration-style: dotted;
overflow:hidden;
text-overflow: ellipsis;
word-break: break-word;
padding:0.5rem;
}

.outurl a:hover {
color: #005090;
}

.muted{
    color:#a6b3b5;
    line-height:1.15rem;
}


/*
  Definitions for the grid system, cards and containers.
*/

.container {
	margin: -4.7rem auto 0 auto;
	padding: 1rem 1rem 5rem 1rem;
	background: #fff;
	border-radius: 0.25rem;
	max-width: 1080px;
	min-height: calc(100vh - 27rem);
	border: 0.0625rem solid #eee;
}

.container-sm{
    max-width:600px;
    margin:auto;
}


.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-flow: row wrap;
}

.col-sm,
[class^='col-sm-'],
[class^='col-sm-offset-'],
.row[class*='cols-sm-'] > * {
  box-sizing: border-box;
  flex: 0 0 auto;
  /*padding: 0 calc(var(--universal-padding) / 2);*/
}

.col-sm,
.row.cols-sm > * {
  max-width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}

.col-sm-1,
.row.cols-sm-1 > * {
  max-width: 8.33333%;
  flex-basis: 8.33333%;
}

.col-sm-offset-0 {
  margin-left: 0;
}

.col-sm-2,
.row.cols-sm-2 > * {
  max-width: 16.66667%;
  flex-basis: 16.66667%;
}

.col-sm-offset-1 {
  margin-left: 8.33333%;
}

.col-sm-3,
.row.cols-sm-3 > * {
  max-width: 25%;
  flex-basis: 25%;
}

.col-sm-offset-2 {
  margin-left: 16.66667%;
}

.col-sm-4,
.row.cols-sm-4 > * {
  max-width: 33.33333%;
  flex-basis: 33.33333%;
}

.col-sm-offset-3 {
  margin-left: 25%;
}

.col-sm-5,
.row.cols-sm-5 > * {
  max-width: 41.66667%;
  flex-basis: 41.66667%;
}

.col-sm-offset-4 {
  margin-left: 33.33333%;
}

.col-sm-6,
.row.cols-sm-6 > * {
  max-width: 50%;
  flex-basis: 50%;
}

.col-sm-offset-5 {
  margin-left: 41.66667%;
}

.col-sm-7,
.row.cols-sm-7 > * {
  max-width: 58.33333%;
  flex-basis: 58.33333%;
}

.col-sm-offset-6 {
  margin-left: 50%;
}

.col-sm-8,
.row.cols-sm-8 > * {
  max-width: 66.66667%;
  flex-basis: 66.66667%;
}

.col-sm-offset-7 {
  margin-left: 58.33333%;
}

.col-sm-9,
.row.cols-sm-9 > * {
  max-width: 75%;
  flex-basis: 75%;
}

.col-sm-offset-8 {
  margin-left: 66.66667%;
}

.col-sm-10,
.row.cols-sm-10 > * {
  max-width: 83.33333%;
  flex-basis: 83.33333%;
}

.col-sm-offset-9 {
  margin-left: 75%;
}

.col-sm-11,
.row.cols-sm-11 > * {
  max-width: 91.66667%;
  flex-basis: 91.66667%;
}

.col-sm-offset-10 {
  margin-left: 83.33333%;
}

.col-sm-12,
.row.cols-sm-12 > * {
  max-width: 100%;
  flex-basis: 100%;
}

.col-sm-offset-11 {
  margin-left: 91.66667%;
}

.col-sm-normal {
  order: initial;
}

.col-sm-first {
  order: -999;
}

.col-sm-last {
  order: 999;
}

@media screen and (min-width: 768px) {
  .col-md,
  [class^='col-md-'],
  [class^='col-md-offset-'],
  .row[class*='cols-md-'] > * {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding: 0 calc(var(--universal-padding) / 2);
  }
  .col-md,
  .row.cols-md > * {
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .col-md-1,
  .row.cols-md-1 > * {
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-2,
  .row.cols-md-2 > * {
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-3,
  .row.cols-md-3 > * {
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-4,
  .row.cols-md-4 > * {
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-5,
  .row.cols-md-5 > * {
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-6,
  .row.cols-md-6 > * {
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-7,
  .row.cols-md-7 > * {
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-8,
  .row.cols-md-8 > * {
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-9,
  .row.cols-md-9 > * {
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-10,
  .row.cols-md-10 > * {
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-11,
  .row.cols-md-11 > * {
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-12,
  .row.cols-md-12 > * {
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-normal {
    order: initial;
  }
  .col-md-first {
    order: -999;
  }
  .col-md-last {
    order: 999;
  }
}

@media screen and (min-width: 1280px) {
  .col-lg,
  [class^='col-lg-'],
  [class^='col-lg-offset-'],
  .row[class*='cols-lg-'] > * {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding: 0 calc(var(--universal-padding) / 2);
  }
  .col-lg,
  .row.cols-lg > * {
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .col-lg-1,
  .row.cols-lg-1 > * {
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-2,
  .row.cols-lg-2 > * {
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-3,
  .row.cols-lg-3 > * {
    max-width: 25%;
    flex-basis: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-4,
  .row.cols-lg-4 > * {
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-5,
  .row.cols-lg-5 > * {
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-6,
  .row.cols-lg-6 > * {
    max-width: 50%;
    flex-basis: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-7,
  .row.cols-lg-7 > * {
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-8,
  .row.cols-lg-8 > * {
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-9,
  .row.cols-lg-9 > * {
    max-width: 75%;
    flex-basis: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-10,
  .row.cols-lg-10 > * {
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-11,
  .row.cols-lg-11 > * {
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-12,
  .row.cols-lg-12 > * {
    max-width: 100%;
    flex-basis: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-normal {
    order: initial;
  }
  .col-lg-first {
    order: -999;
  }
  .col-lg-last {
    order: 999;
  }
}

/* Card component CSS variable definitions */
:root {
  --card-back-color: #fff;
  --card-fore-color: #333;
  --card-border-color: #ddd;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  position: relative;
  width: 100%;
  background: var(--card-back-color);
  color: var(--card-fore-color);
  border: 0.0625rem solid var(--card-border-color);
  border-radius: var(--universal-border-radius);
  margin: var(--universal-margin);
  overflow: hidden;
}

@media screen and (min-width: 320px) {
  .card {
    max-width: 320px;
  }
}

.card > .section {
  background: var(--card-back-color);
  color: var(--card-fore-color);
  box-sizing: border-box;
  margin: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 0.0625rem solid var(--card-border-color);
  padding: var(--universal-padding);
  width: 100%;
}

.card > .section.media {
  height: 200px;
  padding: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.card > .section:last-child {
  border-bottom: 0;
}

/*
	 Custom elements for card elements.
*/
@media screen and (min-width: 240px) {
  .card.small {
    max-width: 240px;
  }
}

@media screen and (min-width: 480px) {
  .card.large {
    max-width: 480px;
  }
}

.card.fluid {
  max-width: 100%;
  width: auto;
  border:none;
}

.card > .section.dark {
  --card-back-color: #e0e0e0;
}

.card > .section.double-padded {
  padding: calc(1.5 * var(--universal-padding));
}
.double-margin{
 margin: calc(2 * var(--universal-padding));    
}
.double-padded{
 padding: calc(2 * var(--universal-padding));    
}
.padded{
 padding: calc(1 * var(--universal-padding));    
}

/*
  Definitions for forms and input elements.
*/
/* Input_control module CSS variable definitions */
:root {
  --form-back-color: #fcfcfc;
  --form-fore-color: #999;
  --form-border-color: #ddd;
  --input-back-color: #fff;
  --input-fore-color: #999;
  --input-border-color: #ccc;
  --input-focus-color: #0093B1;
  --input-invalid-color: #d32f2f;
  --button-back-color: #109972;
  --button-hover-back-color: #1fb382;
  --button-fore-color: #212121;
  --button-border-color: transparent;
  --button-hover-border-color: transparent;
  --button-group-border-color: rgba(124, 124, 124, 0.54);
}


.input-group {
  display: inline-block;
}

.input-group.fluid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group.fluid.redirect input{
    text-align:center;
    color:#999;
}

.input-group.fluid > input {
  max-width: 100%;
  flex-grow: 1;
  flex-basis: 0px;
}

@media screen and (max-width: 767px) {
  .input-group.fluid {
    align-items: stretch;
    flex-direction: column;
  }
}


input:not([type]), [type="text"], [type="email"], [type="number"], [type="search"],
[type="password"], [type="url"], [type="tel"], [type="checkbox"], [type="radio"], textarea, select {
font-weight: 700;
font-size:0.85rem;
  box-sizing: border-box;
  background: var(--input-back-color);
  color: var(--input-fore-color);
  border: 0.0625rem solid var(--input-border-color);
  border-radius: var(--universal-border-radius);
  margin: calc(var(--universal-margin) / 2);
  padding: var(--universal-padding) calc(1.5 * var(--universal-padding));
}

input:not([type="button"]):not([type="submit"]):not([type="reset"]):hover, input:not([type="button"]):not([type="submit"]):not([type="reset"]):focus, textarea:hover, textarea:focus, select:hover, select:focus {
  border-color: var(--input-focus-color);
  box-shadow: none;
}

input:not([type="button"]):not([type="submit"]):not([type="reset"]):invalid, input:not([type="button"]):not([type="submit"]):not([type="reset"]):focus:invalid, textarea:invalid, textarea:focus:invalid, select:invalid, select:focus:invalid {
  border-color: var(--input-invalid-color);
  box-shadow: none;
}

input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], textarea[readonly], select[readonly] {
  background: var(--secondary-back-color);
}

select {
  max-width: 100%;
}

option {
  overflow: hidden;
  text-overflow: ellipsis;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button {
  overflow: visible;
  text-transform: none;
}

button, [type="button"], [type="submit"], [type="reset"],
a.button, label.button, .button,
a[role="button"], label[role="button"], [role="button"] {
  display: inline-block;
  background: var(--button-back-color);
  color: var(--button-fore-color);
  border: 0.0625rem solid var(--button-border-color);
  border-radius: var(--universal-border-radius);
  padding: calc(0.65 * var(--universal-padding)) calc(1.5 * var(--universal-padding)) var(--universal-padding) calc(1.5 * var(--universal-padding));
  margin: var(--universal-margin);
  text-decoration: none;
  cursor: pointer;
}

button:hover, [type="button"]:hover, [type="submit"]:hover,[type="reset"]:hover,
a.button:hover, label.button:hover, .button:hover,
a[role="button"]:hover, label[role="button"]:hover, [role="button"]:hover {
  background: var(--button-hover-back-color);
  border-color: var(--button-hover-border-color);
}

input:disabled, input[disabled], textarea:disabled, textarea[disabled], select:disabled, select[disabled], button:disabled, button[disabled], .button:disabled, .button[disabled], [role="button"]:disabled, [role="button"][disabled] {
  cursor: not-allowed;
  opacity: 0.75;
}

input::placeholder{
    color:#bbb;
    font-weight:600;
}

button.secondary, [type="button"].secondary, [type="submit"].secondary, [type="reset"].secondary, .button.secondary, [role="button"].secondary {
  --button-back-color: #005090;
  --button-fore-color: #fff;
      transition: 0.2s;
}

button.secondary:hover, button.secondary:focus, [type="button"].secondary:hover, [type="button"].secondary:focus, [type="submit"].secondary:hover, [type="submit"].secondary:focus, [type="reset"].secondary:hover, [type="reset"].secondary:focus, .button.secondary:hover, .button.secondary:focus, [role="button"].secondary:hover, [role="button"].secondary:focus {
  --button-hover-back-color: #1680e0;
      transition: 0.2s;
}

/*
  Definitions for navigation elements.
*/
/* Navigation module CSS variable definitions */
:root {
  --header-back-color: #fcfcfc;
  --header-hover-back-color: #1c91a9;
  --header-fore-color: #fff;
  --header-border-color: #1c91a9;
  --footer-fore-color: #9eb6bc;
  --footer-back-color: #e8eeef;
  --footer-border-color: #2f3c3f;
  --footer-link-color: #9eb6bc;
}


.header {
height: 7.75rem;
border-top: 0.1250rem solid #002933;
overflow: hidden;
padding: 0px 15px 25px 15px;
background: var(--header-back-color);
  color: var(--header-fore-color);
}
.hd-con{
    margin: 0 auto;
    max-width:1080px;
}
.logosm{
font-size: 1.8rem;
color: #4d4d4d;
font-weight: bold;
line-height: 4.4rem;
}
.logosm a{
    text-decoration:none;
}
.logosm:hover{
    color:#1680e0;
    transition: 0.5s;
}
.topnav {
      float: right;
  overflow: hidden;
}

.topnav a {
	float: left;
	padding: 0.5rem 0.75rem 0.75rem 0.75rem;
	color: #3c3c3c;
	text-align: center;
	border-radius: 0.15rem;
	margin: 16px 7px 0 0;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}
.nav-icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
padding: 0.75rem;
color: #3c3c3c;
text-align: center;
border-top-left-radius: 0.15rem;
border-top-right-radius: 0.15rem;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
margin: 15px 7px 0 0;
font-size: 0.9rem;
font-weight: 600;
background-color:inherit;
border:none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #eee;
  min-width: 9rem;
border-radius: 0.125rem;
  z-index: 1000;
}

.dropdown-content a {
  float: none;
  color: #3c3c3c;
  padding: 0.75rem;
  margin:0;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn, .sidenav a:hover {
    background-color: #eee;
	color: #1680e0;
}

.dropdown-content a:hover {
  background-color: #e0e0e0;
  color: #1680e0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav-icon a{
    color:#3c3c3c;
}

.lang,.langsm{
    margin-left:2rem;
    line-height:1rem;
}

.langsm {
  display: none;
}

.g-recaptcha {
    margin : 1rem 0.5rem 0.5rem 0;
}

/* The side navigation menu */
.sidenav {
  height: 100%;
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1201; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
background: var(--header-back-color);
	color: #3c3c3c;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.2s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 10px;
  text-decoration: none;
  font-size: 1.5rem;
	color: #3c3c3c;
  display: block;
  transition: 0.3s;
  text-align:center;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 2rem;
  margin-left: 50px;
}



@media screen and (max-width: 480px) {
.header .hd-con img{
   max-width:55%;
    height:auto;
    margin-top:0.15rem;
}
}

footer {
  background: var(--footer-back-color);
  color: var(--footer-fore-color);
  margin-top: -1rem;
  padding: calc(3 * var(--universal-padding)) var(--universal-padding) calc(20 * var(--universal-padding)) var(--universal-padding);
  font-size: 0.875rem;
  	border: 0.0625rem solid #dce9ed;
}

.foo-con{
    margin:0 auto;
    max-width:1080px;
}

footer a:link, footer a:visited {
  color: var(--footer-fore-color);
  font-size: calc(1rem / var(--heading-ratio));
}

footer a:hover, footer a:visited:hover {
  color: #6a8389;
}

.bottom-sticky-g {
position: -webkit-sticky;
position: sticky;
bottom: 0;
z-index: 1101;
margin: 0.5rem auto 0 auto;
padding-top: 0.33rem;
max-width: 980px;
}

.bottom-right-sticky{
position: sticky;
bottom: 0;
z-index: 1101;
max-width: 180px;
float: right;
}

.centered{
	text-align:center;
}

.hdark{
    color: #333;
    font-weight:600;
}

.uline{
text-decoration: dotted underline;
}

#result{
	text-align:center;
}
.bordered{
	border: 0.0625rem solid var(--border-color);
	border-radius: var(--universal-border-radius);
}
.beige{
    background:#F5F5DC;
    border-radius: var(--universal-border-radius);
}

.bg{
border: 0.0625rem solid #e1e1e1;
border-radius: var(--universal-border-radius);
max-width: 262px;
margin: 1rem auto 1.25rem auto;
background: #fcfcfc;
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
}

.infobg{
border-radius: var(--universal-border-radius);
line-height:2.25rem;
background: #fbfbfb;
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
min-height:250px;
text-align:center;
margin-right:0.25rem;
}
.iconbg{
opacity:0.9;
}
.highlight{
background: #fbfbfb;
border-radius: var(--universal-border-radius);
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
}

.larger{
padding: calc(2 * var(--universal-padding));
font-size: calc(0.9rem * var(--heading-ratio));
overflow-wrap: break-word;
word-break: break-word;
min-width:300px;
}

.wider{
	padding: var(--universal-padding) calc(3 * var(--universal-padding));
}

.icon {
    display: inline-flex;
    align-self: center;
}
.icon svg{
    fill: currentColor;
}

.icon.baseline1 svg{
	height: 1.125rem;
    width: 1.125rem;
    top: .125rem;
    position: relative;
}
.icon.baseline2 svg{
	height: 1rem;
    width: 1rem;
    top: .2rem;
    position: relative;
}

.icon.baseline3 svg {
    height: 1.5rem;
    width: 1.5rem;
    top: 0.3rem;
    position: relative;
}
.icon.baseline4 svg {
    height: 1rem;
    width: 1rem;
    top: 0.3rem;
    position: relative;
}

#link-copy-1,#link-copy-2,#link-copy-3,#link-copy-4,#link-copy-5,#link-copy-6,#btn2{
background-color:#f1f1f1;
color: #333;
cursor: pointer;
border-radius: 0.125rem;
font-size: 0.75rem;
min-width:110px;
line-height:1.5rem;
min-height:2.25rem;
}
#link-copy-1:hover,#link-copy-2:hover,#link-copy-3:hover,#link-copy-4:hover,#link-copy-5:hover,#link-copy-6:hover,#btn2:hover,#link-copy-1:active,#link-copy-2:active,#link-copy-3:active,#link-copy-4:active,#link-copy-5:active,#link-copy-6:active,#link-copy-1:focus,#link-copy-2:focus,#link-copy-3:focus,#link-copy-4:focus,#link-copy-5:focus,#link-copy-6:focus,#btn2:active{
background-color: #e6e6e6;
color:#111;
}
#passcheck{
    text-align:center;
    padding: 2rem 1.5rem 2rem 1rem;
}
#passcheck input{
    width:100%;
    text-align:center;
}
.mlink a,.mlink a:visited{
    font-weight:600;
    line-height:2rem;
    color:#0093B1;
    overflow-wrap: break-word;
}
.mlink a:hover{
    color:#00778e;
}
.errortxt{
    color:red;
}

.id_Success{
color : #29A086;
}
.id_Failed{
color : #FEA39F;
}
.id_Uploading{
color : #83c484;
}
.id_Retrying{
color : #c9a96a;
}

.error{
    color:#F08480;
}
.error a{
    color:#F08480;
}
.success{
    color:#29A086;
}
.successful{
color: #fff;
background: #159f65;
border-radius: 0.125rem;
font-size: 0.9rem;
}
.successful a,.unsuccessful a{
    color: #fff;
    text-decoration:underline;
}
.unsuccessful{
    color: #fff;
    background: #d15953;
    border-radius: 0.125rem;
    font-size:0.9rem;
}

.unsuccessful li, .successful li{
    font-size:0.9rem;
}

.right{
    text-align:right;
}
.left{
    text-align:left;
}
.extra-top{
    margin-top:calc(2 * var(--universal-padding));
}
.extra-bottom{
    margin-bottom:calc(2 * var(--universal-padding));
}
.extra-left{
    margin-left:calc(2 * var(--universal-padding));
}
.extra-right{
    margin-right:calc(2 * var(--universal-padding));
}

.get_btn{
border-radius: 0.2rem;
padding: 0.5rem 1.5rem 0.75rem 1.5rem;
font-size: 0.9rem;
margin: 0.55rem 0 0 0;
color: #fff;
font-weight: bold;
background-color: #109972;
box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
}

.get_btn:hover,.get_btn:active{
    background-color: #1fb382;
}


.vpn_btn {
	border-radius: 0.2rem;
	padding: 0.75rem 1rem 0.95rem 1rem;
	font-size: 1rem;
	margin: 0.55rem 0 0 0;
	color: #fff;
	background-color: #03748f;
	box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
}


.stream{
font-size: 0.75rem;
display: block;
margin-top: -1.75rem;
color:#aaa;
}

.code_wrap{
background: #fcfcfc;
padding: 0.5rem;
margin:0.5rem;
border: 0.0625rem solid #ccc;
border-radius:0.125rem;
color:#555;
}

.deals{
    font-size:0.75rem;
    border:0.0625rem solid #be0c00;
    border-radius:1rem;
    padding:0.25rem 0.5rem;
    color:#be0c00;
}

.deals:hover{
    color:#fff;
    background:#1680e0;
    border:0.0625rem solid #fff;
}

.w728{
    max-width:730px;
    margin:auto;
    }
.w300{
    max-width:302px;
    margin:auto;
}
.w970{
    max-width:972px;
    margin:auto;
}
.w320{
    max-width:322px;
    margin:auto;
}

.dl-width{
    max-width:980px;
}

@media screen and (max-width: 920px) {
.main-nav {
    display: none;
  }
 .dropdown-content {
     min-width:5rem;
}
.lang {
    display: none;
  }
.nav-icon {display: block;}
.langsm {
    display: inline;
  }
.left-txt{
    text-align:left;
}
code{
font-size: 0.75em;
}
}

@media screen and (max-width: 479px) {
	.smcentered{
	    text-align:center;
	}
	.hiddensm{
	    display:none;
	}
	.get_btn{
	 padding:0.5rem 1rem;
	 margin-top: -0.5rem;
	}
	.infobg{
	    margin-left:0;
	}
	.larger{
	    margin: var(--universal-margin) 0;
	    width:95%;
	    padding: calc(2.25 * var(--universal-padding));
	}
}
@media screen and (min-width: 480px) {
	.hiddenmd{
	    display:none;
	}
}
@media screen and (min-width: 768px) {
   	.hiddenlg{
		display:none;
	} 
}
@media screen and (max-width: 1240px) {
	.hiddensb{
	    display:none;
	}
}