@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-Light.ttf");
  font-weight: 300; }
@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-Regular.ttf");
  font-weight: 400; }
@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-Medium.ttf");
  font-weight: 500; }
@font-face {
  font-family: 'Metropolis';
  src: url("../fonts/metropolis/Metropolis-Bold.ttf");
  font-weight: 700; }
html {
  margin: 0;
  padding: 0;
  min-height: 100vh; }

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Metropolis', sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  background-color: #f4f4f4; }

* {
  outline: none;
  box-sizing: border-box; }

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle; }

a {
  text-decoration: none;
  color: #0089ae;
  transition: all 0.3s ease; }

a:hover {
  text-decoration: underline; }

.wrapper {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  z-index: 1000; }

.sec {
  display: block;
  float: left;
  width: 100%; }

.container {
  display: inline-block;
  width: 1384px;
  text-align: left; }

.row {
  display: inline-block;
  float: left;
  width: 100%; }

.error_msg {
  display: inline-block;
  float: left;
  width: 100%;
  color: #f31e51; }

.page_title {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 34px;
  line-height: 44px;
  font-weight: 400; }

.input_row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  margin-bottom: 20px; }
  .input_row:last-child {
    margin-bottom: 0; }
  .input_row.w30 {
    width: 32%;
    margin-right: 2%; }
    .input_row.w30:nth-child(3n+3) {
      margin-right: 0; }
  .input_row.w50 {
    width: 48%;
    margin-right: 2%; }

.lbl {
  float: left;
  margin-bottom: 5px;
  color: #0089ae; }

.input_text {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid #dcddde;
  transition: all 0.15s ease-out; }

.input_text:hover,
.input_text:focus {
  border-color: #b1b1b1; }

textarea.input_text {
  height: 100px;
  resize: none; }

.chbox_input {
  display: none; }

.chbox_input + label {
  display: inline-block;
  width: auto;
  min-height: 25px;
  padding-left: 35px;
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-position: 0 0;
  cursor: pointer; }

.chbox_input + label {
  background-image: url("../img/checkbox.svg"); }

.chbox_input:checked + label {
  background-image: url("../img/checkbox_checked.svg"); }

.btn {
  float: left;
  height: 40px;
  padding: 8px 20px;
  border: none;
  background-color: #0089ae;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer; }
  .btn:hover {
    background-color: #00617b; }

.btn-o {
  padding: 7px 20px;
  background-color: transparent;
  border: 1px solid #0089ae;
  color: #0089ae; }
  .btn-o:hover {
    border-color: #00617b;
    color: #fff; }

.mr10 {
  margin-right: 10px; }

/* LOGIN */
.login_wrapper {
  background: url(../img/login_bg.png); }

.login_forms_box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 24px; }

.login_form {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 360px;
  border: 1px solid #c4c4c4;
  background-color: #fff; }
  .login_form::before, .login_form::after {
    position: absolute;
    display: block;
    content: "";
    left: -1px;
    border: 1px solid #c4c4c4;
    background-color: #f4f4f4;
    height: 100%;
    width: 100%; }
  .login_form::before {
    transform: rotate(-3deg);
    top: 0;
    z-index: -2; }
  .login_form::after {
    transform: rotate(2deg);
    top: 0;
    z-index: -1; }
  .login_form .inner {
    width: 100%;
    padding: 30px 20px; }
  .login_form .input_text {
    height: 30px; }
  .login_form .btns_box {
    width: 100%;
    padding: 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5; }
  .login_form .btn {
    float: right; }

/* HEADER */
.header_sec {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  height: 95px;
  background-color: #fff;
  border-bottom: 1px solid #dcddde;
  z-index: 20; }

.logo_small {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 120px;
  padding: 30px 0;
  background-color: #f4f4f4;
  border-right: 1px solid #dcddde; }
  .logo_small:hover {
    text-decoration: none; }
  .logo_small span {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase; }

.header_maincol {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center; }

.header_info {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 70px; }

/* LEFT BAR */
.navbar_column {
  position: absolute;
  width: 120px;
  min-height: 100%;
  padding-top: 100px;
  border-right: 1px solid #dcddde;
  background-color: #fff;
  text-align: center;
  transition: left 0.3s ease;
  z-index: 10; }
  .navbar_column.fixed {
    position: fixed;
    padding-top: 0; }

.navbar_list {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  list-style: none;
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  text-align: center; }
  .navbar_list li {
    display: inline-block;
    margin: 10px 0;
    padding: 0 10px; }
  .navbar_list a {
    color: #868686;
    font-size: 10px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important; }
  .navbar_list img {
    position: relative;
    z-index: 2; }
  .navbar_list .icon_holder {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%; }
    .navbar_list .icon_holder:before {
      content: '';
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 50%;
      border: 1px solid transparent;
      border-radius: 50%;
      opacity: 0;
      width: 0;
      height: 0;
      background-color: #68c6e6;
      transition: none; }
  .navbar_list li a:hover .icon_holder:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: transparent;
    transition: all 0.5s ease-out; }
  .navbar_list li.current .icon_holder:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #68c6e6; }
  .navbar_list li.current a {
    color: #68c6e6; }

/* CONTENT */
.global_padding_left {
  padding-left: 120px; }

.sec.pads {
  padding: 30px 55px;
  background-color: #fff; }

.form_box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 800px; }

.inner_box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 20px; }

.inner_title {
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #dcddde;
  font-size: 16px;
  font-weight: 700; }

.btns_box {
  display: inline-block;
  float: left;
  width: 100%;
  margin-top: 20px; }

/* MOBILE */
.open_menu_mobile {
  display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .inner_box {
    width: 100%;
    max-width: none; }

  .input_row.w30 {
    width: 48%; }
    .input_row.w30:nth-child(3n+3) {
      margin-right: 2%; } }
@media (max-width: 700px) {
  .logo_small {
    padding: 10px 0; }
    .logo_small span {
      margin-top: 5px; }
    .logo_small img {
      height: 30px; }

  .open_menu_mobile {
    display: inline-block; }

  .navbar_column {
    left: -120px; }

  .navbar_column,
  .navbar_column.fixed {
    position: fixed;
    padding-top: 65px;
    height: 100%;
    min-height: 0;
    overflow: auto; }

  body.menu_opened .navbar_column {
    left: 0; }

  .global_padding_left {
    padding-left: 0; }

  .global_padding_left:first-of-type {
    padding-top: 65px; }

  .sec.pads {
    padding: 15px; }

  .header_sec {
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
    z-index: 100; }

  .header_info {
    padding-right: 20px; } }
@media (max-width: 400px) {
  .login_form {
    width: 90%; } }

/*# sourceMappingURL=style.css.map */
