:root {
    --primary: rgb(var(--primary-rgb));
    --primary-rgb: 139, 192, 62;
    --color-body-background: #1D2125;
    --color-main: #00909C;
    --color-main-hover: #00909C;
}

@charset 'utf-8';
    *, *:before, *:after {
    box-sizing: border-box;
}

html {
  //overflow-y: scroll;
}

body {
  background: var(--color-body-background);
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: var(--color-main);
  -webkit-transition: .5s ease;
          transition: .5s ease;
}
a:hover {
  color: var(--color-main-hover);
}

.linked_a{
    color: var(--color-main);
}

#test {

}

.form {
  background: #222D32;
  padding: 40px;
  max-width: 500px;
  margin: 40px auto;
  border-radius: 2px;
  //box-shadow: 0 4px 10px 4px #222D32;
  
}

.form-control{
	border-radius: 0;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  background: rgba(160, 179, 176, 0.25);
  color: #a0b3b0;
  font-size: 14px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
   text-transform: uppercase;
  letter-spacing: .1em;
  -webkit-transition: .5s ease;
          transition: .5s ease;
}
.tab-group li a:hover {
  background: var(--color-main-hover);
  color: #ffffff;
}
.tab-group .active a {
  background: var(--color-main);
  color: #ffffff;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 20px;
} 

.field-wrap {
  position: relative;
  margin-bottom: 25px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}

.top-row > div:last-child {
  margin: 0; 
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 10px 0;
  font-size: 14;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--color-main);
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
          transition: all 0.5s ease;
  -webkit-appearance: none;
}
.button:hover, .button:focus {
  background: var(--color-main-hover);
}

.button-block {
  display: block;
  width: 100%;
}

.forgot {
  margin-top: -20px;
  text-align: right;
}

#test_vak {
	//visibility: visible;
}

.labeling{
	margin-top: 25px;
	margin-bottom: 0px;
}

.labeling_label {
	margin-left: 10px;
   position: absolute;
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: all 0.25s ease;
          transition: all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  color: grey;
  left: 6px;
  font-weight: normal;
  border-radius: 0;
}

.labeling_label .req {
  margin: 2px;
  color: var(--color-main);
}

.labeling_label.active {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  left: 2px;
  color: white;
}

.labeling_input{
	padding-left: 15px;
}

#fill_country {
 overflow: hidden;
}

/* checkbox */
.check_box {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check_box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check_box:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a green background */
.check_box input:checked ~ .checkmark {
  background-color: var(--color-main);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check_box input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check_box .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.eye {
    position: absolute;
    right: 10px;
    top: 20px;
	cursor: pointer;
    color: #999;
}
#reg_password.form-control.input-lg {
    position: relative;
}
.parent{position:absolute;}

.info_pw {
    position: absolute;
    right: 210px;
    top: 9px;
	color: green;
	cursor: pointer;
}

.info_dash {
    position: absolute;
    right: 428px;
    top: 9px;
	color: green;
	cursor: pointer;
}

#sw_version {
	position: absolute;
	bottom: 0;
	right: 0;
	color: rgb(68, 68, 68);
	float: right;
	font-size: 10px;
	vertical-align: bottom;
	display: inline-block;
	
}

.bkgr_wh {
	background-color: white;
}

label {
    color: #999;
}

.floating-label-self {
    background-color: transparent !important;
    border: 1px solid var(--color-main) !important;
    color: white !important;
}

#dev-bottom-left {
	position: fixed;
	z-index: 999;
	left: 6px;
	bottom: 45px;	
}

#dev-server {
    position: absolute;
    color: white;
    top: 18%;
    left: 70%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: bold;
  }

  #dev-ip {
    position: absolute;
    font-size: 11px;
    color: black;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
  }

  #dev-version {
    position: absolute;
    font-size: 11px;
    color: black;
    top: 86%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
  }

