/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
VARIABLES
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
BODY
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
html {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004) !important;
  color: #172b4d; }

body {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.1px;
  color: #172b4d;
  letter-spacing: 0.3px; }

select::-ms-expand {
  display: none; }

.icon {
  width: 24px;
  height: 24px; }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

.dataTables_filter {
  display: none; }

.menu-hidden {
  display: none; }

.main-btn {
  height: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  padding: 12px 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #5072FF;
  display: inline-block;
  outline: none;
  border: none;
  cursor: pointer; }
  .main-btn:hover {
    transform: scale(1.05);
    transform: translate(0px, -2px);
    background-color: #fff;
    color: #5072FF;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
    -moz-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
    box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35); }

.secondary-btn {
  height: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  padding: 11px 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #5072FF;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #5072FF;
  cursor: pointer; }
  .secondary-btn:hover {
    border: 1px solid #fff;
    transform: scale(1.05);
    transform: translate(0px, -2px);
    background-color: #fff;
    color: #5072FF;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
    -moz-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
    box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35); }

.main-btn-disabled {
  opacity: 0.35;
  cursor: default; }
  .main-btn-disabled:hover {
    transform: scale(1);
    background-color: #5072FF;
    color: #fff;
    -webkit-box-shadow: 0px 0px 0px 0px #ffffe1;
    -moz-box-shadow: 0px 0px 0px 0px #ffffe1;
    box-shadow: 0px 0px 0px 0px #ffffe1; }

.secondary-btn-disabled {
  opacity: 0.35;
  cursor: default; }
  .secondary-btn-disabled:hover {
    transform: scale(1);
    border: 1px solid #5072FF;
    -webkit-box-shadow: 0px 0px 0px 0px #ffffe1;
    -moz-box-shadow: 0px 0px 0px 0px #ffffe1;
    box-shadow: 0px 0px 0px 0px #ffffe1; }

.highcharts-credits {
  display: none; }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ADVICE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.advice-content {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 110;
  background-color: rgba(0, 0, 0, 0.75);
  display: none; }
  .advice-content .advice-bg {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center; }
    .advice-content .advice-bg .advice-box {
      width: 500px;
      background-color: #fff;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
      padding: 50px;
      transform: translate(0, 50px);
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      -webkit-box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.75);
      box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.75); }
      .advice-content .advice-bg .advice-box .advice-box-header {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-between;
        /* Safari */
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
        margin-bottom: 20px; }
        .advice-content .advice-bg .advice-box .advice-box-header .header-title {
          font-size: 1.8rem;
          font-weight: 600; }
        .advice-content .advice-bg .advice-box .advice-box-header i {
          opacity: 0.25;
          cursor: pointer;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out; }
          .advice-content .advice-bg .advice-box .advice-box-header i:hover {
            opacity: 1; }
      .advice-content .advice-bg .advice-box .advice-text {
        font-size: 1.4rem;
        margin-bottom: 25px; }
      .advice-content .advice-bg .advice-box .pop-btn-group {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row; }
        .advice-content .advice-bg .advice-box .pop-btn-group .pop-btn {
          font-size: 1.4rem;
          border: 1px solid;
          padding: 6px 8px;
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          border-radius: 4px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out; }
        .advice-content .advice-bg .advice-box .pop-btn-group .pop-btn-action {
          border: 1px solid #5072FF;
          margin-right: 10px;
          background-color: #5072FF;
          color: #fff; }
        .advice-content .advice-bg .advice-box .pop-btn-group .pop-btn-cancel {
          border: 1px solid #ccc;
          margin-right: 10px;
          color: #999; }
    .advice-content .advice-bg .advice-box-appear {
      transform: translate(0, 0);
      opacity: 1; }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SPINNER
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.spinner-content {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 110;
  background-color: rgba(255, 255, 255, 0.5);
  display: none; }
  .spinner-content .spinner-bg {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center; }
    .spinner-content .spinner-bg .spinner {
      animation: rotate 2s linear infinite;
      z-index: 2;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -25px 0 0 -25px;
      width: 50px;
      height: 50px; }
      .spinner-content .spinner-bg .spinner .path {
        stroke: #5072FF;
        stroke-linecap: round;
        animation: dash 1.5s ease-in-out infinite; }
@keyframes rotate {
  100% {
    transform: rotate(360deg); } }
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35; }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124; } }
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ALERT
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.message-content {
  width: 100%;
  position: fixed;
  bottom: 32px;
  z-index: 140;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0; }
  .message-content .message {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    /* Safari */
    justify-content: space-between;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 6, 64, 0.1), 0px 30px 50px rgba(0, 6, 64, 0.1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 6, 64, 0.1), 0px 30px 50px rgba(0, 6, 64, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 6, 64, 0.1), 0px 30px 50px rgba(0, 6, 64, 0.1);
    height: 70px;
    width: 100%;
    max-width: 940px;
    padding-right: 32px;
    padding-left: 32px; }
    .message-content .message .message-title {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600; }
    .message-content .message .message-close {
      cursor: pointer;
      color: #fff; }

.message--info {
  background-color: #372FFF; }

.message--success {
  background-color: #21BF73; }

.message--warning {
  background-color: #FF9141; }

.message--error {
  background-color: #EB4559; }

.message--place {
  opacity: 1; }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
COOKIES ADVICE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.cookies-alert {
  position: fixed;
  z-index: 130;
  width: 400px;
  background-color: rgba(0, 0, 0, 0.85);
  right: 20px;
  bottom: 20px;
  padding: 30px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px; }
  .cookies-alert .cookies-body-text {
    font-size: 1.4rem;
    color: #fff;
    opacity: 0.8;
    line-height: 150%; }
    .cookies-alert .cookies-body-text a {
      display: inline-block;
      margin-left: 5px;
      color: #fff;
      text-decoration: underline; }
  .cookies-alert .cookies-btn {
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 1.4rem;
    display: inline-block;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out; }
    .cookies-alert .cookies-btn:hover {
      background-color: #fff;
      color: #333; }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
LAYOUT COOKIES LEGAL
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.layout-bg {
  position: fixed;
  z-index: 120;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: scroll;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  display: none; }
  .layout-bg .layout-content {
    width: 100%;
    max-width: 874px;
    background-color: #fff;
    margin: 60px auto 60px auto;
    opacity: 0;
    transform: translate(0px, 60px);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    display: none; }
    .layout-bg .layout-content .layout-header {
      width: 100%;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-between;
      /* Safari */
      justify-content: space-between;
      height: 40px;
      margin-bottom: 50px; }
      .layout-bg .layout-content .layout-header .title {
        font-size: 3.4rem;
        letter-spacing: -0.25px;
        font-weight: 600; }
      .layout-bg .layout-content .layout-header .close-layout {
        font-size: 3.6rem;
        opacity: 0.25;
        -webkit-transition: all 0.1s ease-out;
        -moz-transition: all 0.1s ease-out;
        -o-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out;
        cursor: pointer; }
        .layout-bg .layout-content .layout-header .close-layout:hover {
          opacity: 1; }
    .layout-bg .layout-content .box-content .list {
      width: 100%; }
      .layout-bg .layout-content .box-content .list .list-row {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.075); }
        .layout-bg .layout-content .box-content .list .list-row:last-child {
          border-bottom: 0px; }
          .layout-bg .layout-content .box-content .list .list-row:last-child .list-content {
            margin-bottom: 0px; }
        .layout-bg .layout-content .box-content .list .list-row .list-title {
          font-size: 1.6rem;
          font-weight: 600;
          padding: 20px 0px 20px 0px; }
        .layout-bg .layout-content .box-content .list .list-row .list-text {
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 2.2rem;
          margin-bottom: 20px;
          opacity: 0.85; }
          .layout-bg .layout-content .box-content .list .list-row .list-text a {
            display: inline-block;
            color: #1e87f0;
            margin-left: 3px; }
            .layout-bg .layout-content .box-content .list .list-row .list-text a:hover {
              text-decoration: underline; }

.layout-bg-up {
  display: block; }

.layout-content-up {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important; }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
USER SLIDE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.user-slide-content {
  display: none;
  position: fixed;
  z-index: 90;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25); }
  .user-slide-content .user-slide-box-content {
    position: absolute;
    right: 0;
    width: 370px;
    height: 100%;
    padding: 10px;
    transform: translate(370px, 0px);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
    .user-slide-content .user-slide-box-content .user-slide-box {
      width: 100%;
      height: 100%;
      background-color: #fff;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
      -webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.22);
      -moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.22);
      box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.22);
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: space-between;
      /* Safari */
      justify-content: space-between;
      position: relative; }
      .user-slide-content .user-slide-box-content .user-slide-box .user-slide-close {
        width: 30px;
        height: 30px;
        position: absolute;
        z-index: 95;
        top: 15px;
        right: 15px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        background-color: rgba(66, 82, 110, 0.15);
        background-image: url(../img/ico/ico-close.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 18px;
        opacity: 0.5;
        cursor: pointer;
        -webkit-transition: all 0.1s ease-out;
        -moz-transition: all 0.1s ease-out;
        -o-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-close:hover {
          opacity: 1; }
      .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up {
        width: 100%;
        padding: 30px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
        opacity: 0;
        transform: translate(0px, 25px);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up .user-img {
          width: 150px;
          height: 150px;
          background-color: #333;
          -webkit-border-radius: 100px;
          -moz-border-radius: 100px;
          border-radius: 100px;
          margin-top: 40px;
          margin-bottom: 40px;
          background-size: 150px;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          align-items: center;
          justify-content: center; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up .user-img .user-letters {
            color: #fff;
            font-size: 6rem;
            font-weight: 400;
            margin: 0px auto;
            opacity: 0.5; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up .user-name {
          font-size: 1.6re;
          font-weight: 600;
          margin-bottom: 5px; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up .user-mail {
          font-size: 1.4rem;
          opacity: 0.5; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up .edit-btn {
          font-size: 1.4rem;
          color: #5072FF;
          display: inline-block;
          padding: 8px 12px;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          text-align: center;
          cursor: pointer;
          margin-top: 20px;
          background-color: rgba(0, 0, 0, 0.1);
          color: rgba(66, 82, 110, 0.55);
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-up .edit-btn:hover {
            background-color: rgba(0, 0, 0, 0.15);
            color: rgba(66, 82, 110, 0.65); }
      .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down {
        padding: 30px;
        width: 100%;
        transform: translate(0px, 25px);
        opacity: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .language-row {
          padding: 10px 0;
          width: 100%;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          -webkit-justify-content: space-between;
          /* Safari */
          justify-content: space-between; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .language-row .title {
            font-size: 1.4rem;
            opacity: 0.5; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .language-row select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            outline: none;
            font-size: 14px;
            border: none;
            background: transparent;
            text-align: right;
            color: #172b4d;
            font-weight: 600;
            padding-right: 24px;
            background-image: url("../img/ico/ico-drop-down.svg");
            background-repeat: no-repeat;
            background-position: right; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .version-row {
          border-top: 1px solid rgba(0, 0, 0, 0.075);
          padding: 10px 0;
          width: 100%;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          -webkit-justify-content: space-between;
          /* Safari */
          justify-content: space-between; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .version-row .title {
            font-size: 1.4rem;
            opacity: 0.5; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .version-row .data {
            font-size: 1.4rem;
            font-weight: 600; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .cookies-legal-row {
          border-top: 1px solid rgba(0, 0, 0, 0.075);
          padding: 10px 0;
          width: 100%;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .cookies-legal-row .title {
            font-size: 1.4rem;
            opacity: 0.5;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
            cursor: pointer;
            margin-right: 10px; }
            .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .cookies-legal-row .title:hover {
              opacity: 1; }
            .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .cookies-legal-row .title:last-child {
              margin-right: 0px; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .close-session {
          margin: 10px 0px 20px 0px;
          padding: 10px 12px;
          border: 1px solid #5072FF;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          color: #5072FF;
          text-align: center;
          font-weight: 600; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .close-session:hover {
            background-color: #5072FF;
            color: #fff; }
        .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .backend-row {
          display: inline-block;
          padding: 8px 10px;
          font-size: 1.3rem;
          background-color: rgba(0, 0, 0, 0.05);
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          color: #172b4d;
          text-aling: center; }
          .user-slide-content .user-slide-box-content .user-slide-box .user-slide-down .backend-row .heart {
            font-size: 10px; }
      .user-slide-content .user-slide-box-content .user-slide-box .user-slide-appear {
        opacity: 1;
        transform: translate(0px, 0px); }
  .user-slide-content .user-slide-box-content-appear {
    transform: translate(0px, 0px); }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MENU SLIDE LITE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.menu-slide-lite {
  position: fixed;
  z-index: 80;
  width: 70px;
  height: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #16171b; }
  .menu-slide-lite .menu-slide-header {
    width: 100%;
    height: 70px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    background-color: #5072FF; }
    .menu-slide-lite .menu-slide-header:hover .hambuger-menu {
      transform: translate(0px, 0px);
      opacity: 1; }
    .menu-slide-lite .menu-slide-header .hambuger-menu {
      width: 11px;
      height: 16px;
      background-image: url("../img/ico/ico-menu-lite.svg");
      transform: translate(-2px, 0px);
      opacity: 0.35;
      margin-right: 18px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .menu-slide-lite .menu-slide-header .main-brand {
      width: 14px;
      height: 20px;
      background-image: url("../img/ico/mainBrandBig.svg");
      background-size: 111px;
      -webkit-transition: all 0.2 ease-out;
      -moz-transition: all 0.2 ease-out;
      -o-transition: all 0.2 ease-out;
      transition: all 0.2 ease-out; }
    .menu-slide-lite .menu-slide-header .by-akting {
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      margin-bottom: -12px;
      margin-left: 8px;
      opacity: 0.5;
      color: #fff;
      font-weight: 400; }
  .menu-slide-lite .menu-user {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    padding: 13px; }
    .menu-slide-lite .menu-user .user-img {
      width: 44px;
      height: 44px;
      border: 2px solid #333;
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px;
      background-color: #111;
      background-size: 40px;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      align-items: center; }
      .menu-slide-lite .menu-user .user-img .user-letters {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 400;
        margin: 0px auto;
        opacity: 0.5; }
    .menu-slide-lite .menu-user .user-name {
      font-size: 1.5rem;
      color: #fff;
      letter-spacing: 0.5px;
      opacity: 1;
      font-weight: 400;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      margin-left: 15px; }
  .menu-slide-lite .menu-group {
    width: 100%; }
    .menu-slide-lite .menu-group .menu-btn {
      cursor: pointer;
      display: inline-block;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      align-items: center;
      width: 70px;
      height: 40px;
      opacity: 0.35;
      position: relative;
      -webkit-transition: all 0.1s ease-out;
      -moz-transition: all 0.1s ease-out;
      -o-transition: all 0.1s ease-out;
      transition: all 0.1s ease-out; }
      .menu-slide-lite .menu-group .menu-btn .btn-icon-box {
        width: 70px;
        height: 40px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center; }
        .menu-slide-lite .menu-group .menu-btn .btn-icon-box .selected-bar {
          position: absolute;
          left: 0;
          top: 0;
          width: 4px;
          height: 40px;
          background-color: #5072FF;
          display: none; }
        .menu-slide-lite .menu-group .menu-btn .btn-icon-box .selected-circle {
          position: absolute;
          left: -5px;
          top: 15px;
          width: 10px;
          height: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
          border-radius: 10px;
          background-color: #5072FF;
          display: none; }
        .menu-slide-lite .menu-group .menu-btn .btn-icon-box i {
          color: #fff;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out; }
      .menu-slide-lite .menu-group .menu-btn .btn-title {
        margin: 2px 0px 0px 0px;
        color: #fff;
        font-size: 1.4rem;
        -webkit-transition: all 0.1s ease-out;
        -moz-transition: all 0.1s ease-out;
        -o-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out;
        font-weight: 400;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        letter-spacing: 0.25px; }
      .menu-slide-lite .menu-group .menu-btn .menu-submenu {
        position: absolute;
        left: 70px;
        top: 0px;
        min-width: 200px;
        background-color: #323540;
        display: none;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
        .menu-slide-lite .menu-group .menu-btn .menu-submenu .menu-bg {
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.15);
          padding: 15px 20px 15px 20px;
          -webkit-box-shadow: inset 2px 0px 1px 0px rgba(0, 0, 0, 0.05);
          -moz-box-shadow: inset 2px 0px 1px 0px rgba(0, 0, 0, 0.05);
          box-shadow: inset 2px 0px 1px 0px rgba(0, 0, 0, 0.05); }
          .menu-slide-lite .menu-group .menu-btn .menu-submenu .menu-bg .submenu-title {
            font-size: 1rem;
            letter-spacing: 1.5px;
            opacity: 0.25;
            color: #fff;
            margin-bottom: 10px;
            font-weight: 600; }
          .menu-slide-lite .menu-group .menu-btn .menu-submenu .menu-bg .submenu-link {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 10px;
            opacity: 0.5;
            letter-spacing: 0.35px;
            -webkit-transition: all 0.1s ease-out;
            -moz-transition: all 0.1s ease-out;
            -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
            font-weight: 500; }
            .menu-slide-lite .menu-group .menu-btn .menu-submenu .menu-bg .submenu-link:hover {
              opacity: 1; }
            .menu-slide-lite .menu-group .menu-btn .menu-submenu .menu-bg .submenu-link:last-child {
              margin-bottom: 0px; }
      .menu-slide-lite .menu-group .menu-btn:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.65); }
        .menu-slide-lite .menu-group .menu-btn:hover .menu-submenu {
          display: block; }
    .menu-slide-lite .menu-group .btn-selected {
      opacity: 1;
      background-color: rgba(0, 0, 0, 0.5); }
      .menu-slide-lite .menu-group .btn-selected .btn-icon-box .selected-bar,
      .menu-slide-lite .menu-group .btn-selected .btn-icon-box .selected-circle {
        display: block; }
      .menu-slide-lite .menu-group .btn-selected:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.5); }
        .menu-slide-lite .menu-group .btn-selected:hover .menu-submenu .menu-bg {
          background-color: rgba(0, 0, 0, 0.5);
          -webkit-box-shadow: inset 2px 0px 1px 0px rgba(0, 0, 0, 0.25);
          -moz-box-shadow: inset 2px 0px 1px 0px rgba(0, 0, 0, 0.25);
          box-shadow: inset 2px 0px 1px 0px rgba(0, 0, 0, 0.25); }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MENU SLIDE BIG
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.menu-slide-big {
  width: 250px; }
  .menu-slide-big .menu-slide-header {
    width: 100%; }
    .menu-slide-big .menu-slide-header .hambuger-menu {
      transform: translate(0px, 0px); }
    .menu-slide-big .menu-slide-header .main-brand {
      height: 20px;
      background-image: url("../img/ico/mainBrandBig.svg");
      background-size: 111px; }
    .menu-slide-big .menu-slide-header:hover .hambuger-menu {
      transform: translate(-2px, 0px);
      opacity: 1; }
  .menu-slide-big .menu-user .user-name {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .menu-slide-big .menu-group .menu-btn {
    width: 100%; }
    .menu-slide-big .menu-group .menu-btn .btn-title {
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .menu-slide-big .menu-group .menu-btn .menu-submenu {
      left: 250px; }

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CONTAINER
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.container {
  padding: 50px 40px 40px 110px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out; }
  .container .floating-btn {
    position: fixed;
    z-index: 85;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    margin: 0px 40px 40px 0px;
    background-color: #5072FF;
    border: none;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    transform: translate(0px, 100px); }
    .container .floating-btn:hover {
      -webkit-box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.15);
      -moz-box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.15);
      box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.15); }
  .container .floating-submit {
    background-image: url("../img/ico/ico-save.svg"); }
  .container .floating-edit {
    background-image: url("../img/ico/ico-edit-floating.svg"); }
  .container .floatin-btn-appear {
    transform: translate(0px, 0px); }
  .container .dropdown {
    list-style-type: none;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
    .container .dropdown li {
      display: none;
      right: 0;
      min-width: 150px;
      padding: 15px;
      background-color: #484848;
      list-style-type: none;
      position: absolute;
      z-index: 100;
      -webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.22);
      -moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.22);
      box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.22);
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      cursor: pointer; }
      .container .dropdown li .dropdown-element {
        margin-bottom: 10px;
        color: #fff;
        font-size: 1.3rem;
        opacity: 0.5;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        cursor: pointer; }
        .container .dropdown li .dropdown-element:hover {
          opacity: 1; }
        .container .dropdown li .dropdown-element:last-child {
          margin-bottom: 0px; }
      .container .dropdown li:hover {
        display: block; }
    .container .dropdown:hover li {
      display: block; }
  .container .general-box-content {
    width: 100%;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    max-width: 874px;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out; }
    .container .general-box-content .box-header {
      width: 100%;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-between;
      /* Safari */
      justify-content: space-between;
      height: 40px;
      margin-bottom: 50px; }
      .container .general-box-content .box-header .box-header-left {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center; }
        .container .general-box-content .box-header .box-header-left .back-arrow {
          margin-right: 15px;
          margin-left: -5px;
          opacity: 0.25;
          cursor: pointer;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          color: #172b4d; }
          .container .general-box-content .box-header .box-header-left .back-arrow:hover {
            opacity: 0.75; }
        .container .general-box-content .box-header .box-header-left .header-title {
          font-size: 3.4rem;
          letter-spacing: -0.25px;
          font-weight: 600; }
        .container .general-box-content .box-header .box-header-left .prev-next-content {
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          margin-left: 16px; }
          .container .general-box-content .box-header .box-header-left .prev-next-content button {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            outline: none;
            background-color: transparent;
            border: 1px solid transparent;
            width: 40px;
            height: 40px;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            border-radius: 100px;
            display: -webkit-box;
            /* OLD - iOS 6-, Safari 3.1-6 */
            display: -moz-box;
            /* OLD - Firefox 19- (buggy but mostly works) */
            display: -ms-flexbox;
            /* TWEENER - IE 10 */
            display: -webkit-flex;
            /* NEW - Chrome */
            display: flex;
            /* NEW, Spec - Opera 12.1, Firefox 20+ */
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-align-items: center;
            align-items: center;
            align-items: center;
            justify-content: center;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
            cursor: pointer; }
            .container .general-box-content .box-header .box-header-left .prev-next-content button i {
              opacity: 0.35;
              -webkit-transition: all 0.2s ease-out;
              -moz-transition: all 0.2s ease-out;
              -o-transition: all 0.2s ease-out;
              transition: all 0.2s ease-out; }
            .container .general-box-content .box-header .box-header-left .prev-next-content button:hover {
              background-color: rgba(0, 0, 0, 0.05); }
              .container .general-box-content .box-header .box-header-left .prev-next-content button:hover i {
                opacity: 0.65; }
      .container .general-box-content .box-header .add-manual-users {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px; }
        .container .general-box-content .box-header .add-manual-users .manual-users-label {
          font-size: 1.4rem;
          margin-right: 10px;
          opacity: 0.65; }
        .container .general-box-content .box-header .add-manual-users input[type="number"] {
          height: 30px;
          font-size: 1.3rem;
          border: 1px solid transparent;
          background-color: rgba(0, 0, 0, 0.05);
          padding: 0px 8px 0px 8px;
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          border-radius: 4px;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
          width: 60px;
          color: #172b4d;
          cursor: pointer;
          margin-right: 10px;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          outline: none; }
          .container .general-box-content .box-header .add-manual-users input[type="number"]::-webkit-outer-spin-button, .container .general-box-content .box-header .add-manual-users input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0; }
          .container .general-box-content .box-header .add-manual-users input[type="number"]:focus {
            border: 1px solid #5072FF;
            background-color: #fff; }
        .container .general-box-content .box-header .add-manual-users .manual-users-btn {
          height: 30px;
          font-weight: 600;
          letter-spacing: 0.5px;
          font-size: 1.4rem;
          padding: 6px 10px 0px 10px;
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          border-radius: 4px;
          color: #5072FF;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
          background-color: transparent;
          display: inline-block;
          border: 1px solid #5072FF; }
          .container .general-box-content .box-header .add-manual-users .manual-users-btn:hover {
            border: 1px solid #fff;
            transform: scale(1.05);
            transform: translate(0px, -2px);
            background-color: #fff;
            color: #5072FF;
            -webkit-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
            -moz-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
            box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35); }
      .container .general-box-content .box-header .header-btn {
        font-size: 1.4rem;
        padding: 10px 15px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        color: #fff;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        background-color: #5072FF; }
        .container .general-box-content .box-header .header-btn:hover {
          background-color: #fff;
          color: #5072FF;
          -webkit-box-shadow: 0px 1px 16px 0px rgba(80, 114, 225, 0.3);
          -moz-box-shadow: 0px 1px 16px 0px rgba(80, 114, 225, 0.3);
          box-shadow: 0px 1px 16px 0px rgba(80, 114, 225, 0.3); }
    .container .general-box-content .box-content {
      margin-bottom: 80px; }
      .container .general-box-content .box-content:last-child {
        margin-bottom: 00px;
        padding-bottom: 00px;
        border-bottom: 0px; }
      .container .general-box-content .box-content .resume-box {
        width: 100%;
        margin: 0px -5px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row; }
        .container .general-box-content .box-content .resume-box .resume-element-content {
          width: 25%;
          padding: 0px 5px; }
          .container .general-box-content .box-content .resume-box .resume-element-content .resume-element {
            width: 100%;
            background-color: rgba(0, 0, 0, 0.075);
            padding: 15px 25px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px; }
            .container .general-box-content .box-content .resume-box .resume-element-content .resume-element .resume-data {
              font-size: 2.4rem;
              font-weight: 600; }
              .container .general-box-content .box-content .resume-box .resume-element-content .resume-element .resume-data .data-light {
                font-weight: 400;
                font-size: 1.8rem; }
            .container .general-box-content .box-content .resume-box .resume-element-content .resume-element .resume-label {
              font-size: 1.4rem;
              opacity: 0.65; }
      .container .general-box-content .box-content .filter-box {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: space-between;
        /* Safari */
        justify-content: space-between;
        margin-bottom: 20px; }
        .container .general-box-content .box-content .filter-box form {
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          border-radius: 4px;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row; }
        .container .general-box-content .box-content .filter-box input[type="text"] {
          height: 30px;
          font-size: 1.3rem;
          border: 1px solid transparent;
          background-color: rgba(0, 0, 0, 0.05);
          padding: 0px 25px 0px 8px;
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          border-radius: 4px;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
          width: 250px;
          background-image: url("../img/ico/ico-search-light.svg");
          background-repeat: no-repeat;
          background-position: right 5px center;
          background-size: 20px;
          color: #172b4d;
          cursor: pointer; }
          .container .general-box-content .box-content .filter-box input[type="text"]:focus {
            border: 1px solid #5072FF;
            background-color: #fff; }
        .container .general-box-content .box-content .filter-box select {
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          outline: none;
          padding: 0px 25px 0px 8px;
          height: 30px;
          font-size: 1.3rem;
          margin-right: 10px;
          border: 1px solid transparent;
          background-color: rgba(0, 0, 0, 0.05);
          background-image: url("../img/ico/ico-drop-down.svg");
          background-repeat: no-repeat;
          background-position: right 3px center;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
          color: #172b4d;
          cursor: pointer; }
          .container .general-box-content .box-content .filter-box select:focus {
            border: 1px solid #5072FF;
            background-color: #fff; }
        .container .general-box-content .box-content .filter-box .option-group {
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          -webkit-align-items: center;
          align-items: center; }
          .container .general-box-content .box-content .filter-box .option-group .option-btn {
            display: -webkit-box;
            /* OLD - iOS 6-, Safari 3.1-6 */
            display: -moz-box;
            /* OLD - Firefox 19- (buggy but mostly works) */
            display: -ms-flexbox;
            /* TWEENER - IE 10 */
            display: -webkit-flex;
            /* NEW - Chrome */
            display: flex;
            /* NEW, Spec - Opera 12.1, Firefox 20+ */
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-align-items: center;
            align-items: center;
            cursor: pointer;
            margin-left: 10px;
            opacity: 0.5;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out; }
            .container .general-box-content .box-content .filter-box .option-group .option-btn:hover {
              opacity: 1; }
      .container .general-box-content .box-content .paginate {
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        font-size: 1.2rem;
        font-weight: 500; }
        .container .general-box-content .box-content .paginate li {
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: column;
          flex-direction: column;
          -webkit-align-items: center;
          align-items: center;
          align-items: center;
          justify-content: center;
          background-color: transparent;
          cursor: pointer;
          -webkit-border-radius: 100px;
          -moz-border-radius: 100px;
          border-radius: 100px;
          background-color: rgba(0, 0, 0, 0.075);
          margin-right: 8px; }
          .container .general-box-content .box-content .paginate li a {
            width: 30px;
            height: 30px;
            color: #172b4d !important;
            text-align: center;
            padding-top: 8px; }
          .container .general-box-content .box-content .paginate li:hover, .container .general-box-content .box-content .paginate li:active {
            background-color: rgba(0, 0, 0, 0.15); }
        .container .general-box-content .box-content .paginate .next a,
        .container .general-box-content .box-content .paginate .prev a {
          width: auto;
          padding: 8px 15px; }
        .container .general-box-content .box-content .paginate .disabled {
          opacity: 0.5;
          cursor: default; }
          .container .general-box-content .box-content .paginate .disabled:hover {
            background-color: rgba(0, 0, 0, 0.075);
            opacity: 0.5 !important; }
          .container .general-box-content .box-content .paginate .disabled a {
            cursor: default; }
        .container .general-box-content .box-content .paginate .active {
          background-color: #172b4d; }
          .container .general-box-content .box-content .paginate .active a {
            color: #fff !important; }
          .container .general-box-content .box-content .paginate .active:hover {
            background-color: #172b4d;
            color: #fff !important; }
      .container .general-box-content .box-content table {
        width: 100% !important;
        border-collapse: collapse;
        font-size: 1.4rem;
        border-bottom: 0px;
        font-weight: 400; }
        .container .general-box-content .box-content table thead tr td {
          font-weight: 500;
          font-size: 1.2rem;
          padding: 10px 0px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.075);
          background-position: right 20px center; }
          .container .general-box-content .box-content table thead tr td a {
            color: #172b4d;
            opacity: 0.65; }
        .container .general-box-content .box-content table thead tr td:first-child {
          padding-left: 10px; }
        .container .general-box-content .box-content table thead tr td:last-child {
          background-image: none; }
        .container .general-box-content .box-content table tbody tr {
          padding: 0px 0px 0px 5px;
          cursor: pointer; }
          .container .general-box-content .box-content table tbody tr td {
            padding: 6px 0px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.075);
            font-size: 1.4rem;
            height: 37px; }
          .container .general-box-content .box-content table tbody tr .row-options a {
            opacity: 0.5;
            float: right; }
            .container .general-box-content .box-content table tbody tr .row-options a:hover {
              opacity: 1; }
          .container .general-box-content .box-content table tbody tr td:first-child {
            padding-left: 10px; }
          .container .general-box-content .box-content table tbody tr td:last-child {
            padding-right: 10px; }
          .container .general-box-content .box-content table tbody tr:hover td {
            background-color: rgba(0, 0, 0, 0.05); }
        .container .general-box-content .box-content table tbody .disabled-row td {
          text-decoration: line-through;
          opacity: 0.5; }
        .container .general-box-content .box-content table tbody .disabled-row .row-options {
          opacity: 1; }
        .container .general-box-content .box-content table tbody tr:last-child td {
          border-bottom: 0px; }
        .container .general-box-content .box-content table tbody .resume-row td {
          background-color: #333;
          color: #fff; }
        .container .general-box-content .box-content table tbody .resume-row:hover td {
          background-color: #333;
          color: #fff; }
      .container .general-box-content .box-content .section-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-transform: uppercase;
        color: rgba(66, 82, 110, 0.6);
        font-weight: 700;
        padding: 8px 14px;
        background-color: rgba(66, 82, 110, 0.15);
        display: inline-block;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px; }
      .container .general-box-content .box-content .form-row-map {
        position: relative; }
        .container .general-box-content .box-content .form-row-map .search-row {
          position: absolute;
          z-index: 1;
          top: 10px;
          left: 120px;
          -webkit-box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3);
          -moz-box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3);
          -webkit-border-radius: 100px;
          -moz-border-radius: 100px;
          border-radius: 100px;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          -webkit-align-items: center;
          align-items: center; }
          .container .general-box-content .box-content .form-row-map .search-row input[type="text"] {
            width: 200px;
            height: 29px;
            border: none;
            font-size: 1.2rem;
            border-bottom-left-radius: 100px;
            border-top-left-radius: 100px;
            outline: medium none currentcolor;
            padding-left: 15px; }
          .container .general-box-content .box-content .form-row-map .search-row #submit {
            border-bottom-right-radius: 100px;
            border-top-right-radius: 100px;
            padding: 5px 9px 2px 9px;
            background-color: #fff;
            cursor: pointer; }
            .container .general-box-content .box-content .form-row-map .search-row #submit i {
              font-size: 18px;
              color: #5072FF; }
        .container .general-box-content .box-content .form-row-map #map {
          width: 100%;
          height: 300px; }
      .container .general-box-content .box-content .form-row {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        margin-bottom: 10px;
        max-width: 874px;
        /* Hide default HTML checkbox */
        /* The slider */
        /* Rounded sliders */ }
        .container .general-box-content .box-content .form-row:last-child {
          margin-bottom: 0px; }
        .container .general-box-content .box-content .form-row .form-label {
          font-size: 1.4rem;
          width: 280px;
          line-height: 100%;
          padding-right: 20px;
          opacity: 0.75;
          margin-top: 9px; }
        .container .general-box-content .box-content .form-row .form-data {
          font-size: 1.6rem;
          font-weight: 500; }
        .container .general-box-content .box-content .form-row input[type="text"],
        .container .general-box-content .box-content .form-row input[type="password"],
        .container .general-box-content .box-content .form-row input[type="email"],
        .container .general-box-content .box-content .form-row input[type="number"],
        .container .general-box-content .box-content .form-row input[type="url"] {
          width: 400px;
          height: 35px;
          font-size: 1.5rem;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          border: 1px solid rgba(66, 82, 110, 0.25);
          padding: 0px 8px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          color: #172b4d;
          font-family: 'Inter', sans-serif;
          font-weight: 400; }
          .container .general-box-content .box-content .form-row input[type="text"]:focus,
          .container .general-box-content .box-content .form-row input[type="password"]:focus,
          .container .general-box-content .box-content .form-row input[type="email"]:focus,
          .container .general-box-content .box-content .form-row input[type="number"]:focus,
          .container .general-box-content .box-content .form-row input[type="url"]:focus {
            border: 1px solid #5072FF; }
        .container .general-box-content .box-content .form-row textarea {
          width: 400px;
          height: 105px;
          font-size: 1.5rem;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          border: 1px solid rgba(66, 82, 110, 0.25);
          padding: 8px 8px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          color: #172b4d;
          resize: none;
          font-weight: 400; }
          .container .general-box-content .box-content .form-row textarea:focus {
            border: 1px solid #5072FF; }
        .container .general-box-content .box-content .form-row .textarea-big {
          width: 594px;
          min-height: 175px;
          font-family: 'Inter', sans-serif; }
        .container .general-box-content .box-content .form-row .datepicker {
          width: 400px !important;
          background-image: url("../img/ico/ico-calendar.svg");
          background-repeat: no-repeat;
          background-position: center right 5px; }
        .container .general-box-content .box-content .form-row select {
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          outline: none;
          width: 400px;
          height: 35px !important;
          font-size: 1.6rem;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          border: 1px solid rgba(66, 82, 110, 0.25);
          padding: 0px 8px;
          -webkit-transition: all 0.15s ease-out;
          -moz-transition: all 0.15s ease-out;
          -o-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out;
          background-image: url("../img/ico/ico-drop-down.svg");
          background-repeat: no-repeat;
          background-position: right 7px center;
          font-weight: 500;
          background-color: transparent; }
        .container .general-box-content .box-content .form-row .switch {
          position: relative;
          display: inline-block;
          width: 51px;
          height: 24px;
          margin: 4px 0px 8px 0px; }
        .container .general-box-content .box-content .form-row .switch input {
          display: none; }
        .container .general-box-content .box-content .form-row .slider {
          position: absolute;
          cursor: pointer;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0, 0, 0, 0.075);
          -webkit-transition: all 0.15s ease-out;
          -moz-transition: all 0.15s ease-out;
          -o-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out; }
        .container .general-box-content .box-content .form-row .slider:before {
          position: absolute;
          content: "";
          height: 18px;
          width: 18px;
          left: 3px;
          bottom: 3px;
          background-color: white;
          -webkit-transition: all 0.15s ease-out;
          -moz-transition: all 0.15s ease-out;
          -o-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out; }
        .container .general-box-content .box-content .form-row input:checked + .slider {
          background-color: #5072FF; }
        .container .general-box-content .box-content .form-row input:focus + .slider {
          box-shadow: 0 0 1px #5072FF; }
        .container .general-box-content .box-content .form-row input:checked + .slider:before {
          -webkit-transform: translateX(26px);
          -ms-transform: translateX(26px);
          transform: translateX(26px); }
        .container .general-box-content .box-content .form-row .slider.round {
          border-radius: 25px; }
        .container .general-box-content .box-content .form-row .slider.round:before {
          border-radius: 50%; }
        .container .general-box-content .box-content .form-row .check-radio-box {
          width: 350px;
          /* Checked state */
          /* Hover state whilst checked */
          /* Disabled state */
          /* Check mark */
          /* Show check mark */
          /* Checkbox tick */
          /* Disabled tick colour */
          /* Radio button inner circle */
          /* Disabled circle colour */ }
          .container .general-box-content .box-content .form-row .check-radio-box .control {
            font-size: 1.4rem;
            position: relative;
            display: block;
            margin-bottom: 10px;
            padding: 4px 0px 0px 30px;
            cursor: pointer; }
          .container .general-box-content .box-content .form-row .check-radio-box .control input {
            position: absolute;
            z-index: -1;
            opacity: 0; }
          .container .general-box-content .box-content .form-row .check-radio-box .control__indicator {
            position: absolute;
            top: 2px;
            left: 0;
            width: 20px;
            height: 20px;
            background: rgba(0, 0, 0, 0.075);
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px; }
          .container .general-box-content .box-content .form-row .check-radio-box .control--radio .control__indicator {
            border-radius: 50%; }
          .container .general-box-content .box-content .form-row .check-radio-box control:hover input ~ .control__indicator,
          .container .general-box-content .box-content .form-row .check-radio-box .control input:focus ~ .control__indicator {
            background: rgba(0, 0, 0, 0.075); }
          .container .general-box-content .box-content .form-row .check-radio-box .control input:checked ~ .control__indicator {
            background: #5072FF; }
          .container .general-box-content .box-content .form-row .check-radio-box .control:hover input:not([disabled]):checked ~ .control__indicator,
          .container .general-box-content .box-content .form-row .check-radio-box .control input:checked:focus ~ .control__indicator {
            background: #5072FF; }
          .container .general-box-content .box-content .form-row .check-radio-box .control input:disabled ~ .control__indicator {
            pointer-events: none;
            opacity: 0.6;
            background: rgba(0, 0, 0, 0.075); }
          .container .general-box-content .box-content .form-row .check-radio-box .control__indicator:after {
            position: absolute;
            display: none;
            content: ''; }
          .container .general-box-content .box-content .form-row .check-radio-box .control input:checked ~ .control__indicator:after {
            display: block; }
          .container .general-box-content .box-content .form-row .check-radio-box .control--checkbox .control__indicator:after {
            top: 4px;
            left: 8px;
            width: 3px;
            height: 8px;
            transform: rotate(45deg);
            border: solid #fff;
            border-width: 0 2px 2px 0; }
          .container .general-box-content .box-content .form-row .check-radio-box .control--checkbox input:disabled ~ .control__indicator:after {
            border-color: rgba(0, 0, 0, 0.075); }
          .container .general-box-content .box-content .form-row .check-radio-box .control--radio .control__indicator:after {
            top: 7px;
            left: 7px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff; }
          .container .general-box-content .box-content .form-row .check-radio-box .control--radio input:disabled ~ .control__indicator:after {
            background: #7b7b7b; }
      .container .general-box-content .box-content .form-row-view {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.075);
        max-width: 874px; }
        .container .general-box-content .box-content .form-row-view:last-child {
          margin-bottom: 0px;
          padding-bottom: 0px;
          border-bottom: 0px; }
        .container .general-box-content .box-content .form-row-view .form-label {
          font-size: 1.4rem;
          width: 280px;
          line-height: 100%;
          padding-right: 20px;
          opacity: 0.65;
          margin-top: 5px; }
        .container .general-box-content .box-content .form-row-view .form-data {
          font-size: 1.6rem;
          width: 674px;
          max-width: 600px;
          font-weight: 500; }
      .container .general-box-content .box-content .form-row-view-new {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        margin-bottom: 30px; }
        .container .general-box-content .box-content .form-row-view-new .form-label {
          font-size: 1.4rem;
          min-width: 280px;
          line-height: 100%;
          padding-right: 20px;
          opacity: 0.65;
          margin-bottom: 15px; }
        .container .general-box-content .box-content .form-row-view-new .form-data-title {
          font-size: 2.4rem;
          font-weight: 600;
          line-height: 3.4rem; }
        .container .general-box-content .box-content .form-row-view-new .form-data-text {
          font-size: 1.8rem;
          width: 100%;
          line-height: 2.8rem;
          font-weight: 500; }
      .container .general-box-content .box-content .form-row-img {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        margin-bottom: 10px; }
        .container .general-box-content .box-content .form-row-img .form-label {
          font-size: 1.4rem;
          width: 280px;
          line-height: 100%;
          padding-right: 20px;
          opacity: 0.75;
          padding-top: 5px; }
        .container .general-box-content .box-content .form-row-img .img-file-content {
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: column;
          flex-direction: column; }
          .container .general-box-content .box-content .form-row-img .img-file-content .image-content {
            width: 345px;
            height: 100px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background-color: rgba(0, 0, 0, 0.075);
            margin-bottom: 10px; }
          .container .general-box-content .box-content .form-row-img .img-file-content .image-content-regular {
            width: 400px;
            margin-bottom: 10px; }
          .container .general-box-content .box-content .form-row-img .img-file-content .form-img {
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            max-width: 400px;
            border: 0;
            margin-bottom: 10px; }
          .container .general-box-content .box-content .form-row-img .img-file-content .inputfile {
            width: 0.1px;
            height: 0.1px;
            opacity: 0;
            overflow: hidden;
            position: absolute;
            z-index: -1; }
          .container .general-box-content .box-content .form-row-img .img-file-content .inputfile + label {
            height: 40px;
            font-weight: 400;
            letter-spacing: 0.5px;
            font-size: 1.4rem;
            padding: 11px 15px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
            color: #5072FF;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
            background-color: #fff;
            float: left;
            border: 1px solid #5072FF;
            max-width: 175px;
            text-align: center;
            cursor: pointer; }
          .container .general-box-content .box-content .form-row-img .img-file-content .inputfile:focus + label,
          .container .general-box-content .box-content .form-row-img .img-file-content .inputfile + label:hover {
            border: 1px solid #fff;
            transform: scale(1.05);
            transform: translate(0px, -2px);
            background-color: #fff;
            color: #5072FF;
            -webkit-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
            -moz-box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35);
            box-shadow: 0px 4px 16px 0px rgba(80, 114, 225, 0.35); }
        .container .general-box-content .box-content .form-row-img:last-child {
          margin-bottom: 0px; }
      .container .general-box-content .box-content .tab-bar {
        width: 100%;
        max-width: 874px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.075); }
        .container .general-box-content .box-content .tab-bar .tab-btn {
          font-size: 1.4rem;
          padding: 8px 16px 8px 16px;
          background-color: transparent;
          color: #172b4d;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          -webkit-align-items: center;
          align-items: center;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          cursor: pointer;
          border-bottom: 2px solid transparent;
          opacity: 0.5; }
          .container .general-box-content .box-content .tab-bar .tab-btn i {
            font-size: 1.4rem;
            margin-left: 10px; }
          .container .general-box-content .box-content .tab-bar .tab-btn:hover {
            border-bottom: 2px solid rgba(0, 0, 0, 0.075);
            opacity: 1; }
        .container .general-box-content .box-content .tab-bar .tab-btn-selected {
          opacity: 1;
          margin-bottom: -1px;
          border-bottom: 3px solid #5072FF;
          color: #5072FF;
          cursor: default; }
          .container .general-box-content .box-content .tab-bar .tab-btn-selected:hover {
            background-color: transparent;
            margin-bottom: -1px;
            border-bottom: 3px solid #5072FF;
            color: #5072FF;
            cursor: default; }
      .container .general-box-content .box-content .form-row-ck {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        margin-bottom: 30px; }
        .container .general-box-content .box-content .form-row-ck:last-child {
          margin-bottom: 0px; }
        .container .general-box-content .box-content .form-row-ck .form-label {
          font-size: 1.4rem;
          width: 280px;
          min-width: 200px;
          line-height: 100%;
          padding-right: 20px;
          opacity: 0.75;
          padding-top: 5px; }
        .container .general-box-content .box-content .form-row-ck textarea {
          flex-grow: 1; }
      .container .general-box-content .box-content .language-box {
        display: none;
        max-width: 874px; }
      .container .general-box-content .box-content .acordion-content {
        width: 100%; }
        .container .general-box-content .box-content .acordion-content .acordion-row {
          width: 100%;
          border-bottom: 1px solid rgba(0, 0, 0, 0.075);
          cursor: pointer; }
          .container .general-box-content .box-content .acordion-content .acordion-row:last-child {
            border-bottom: 0px; }
          .container .general-box-content .box-content .acordion-content .acordion-row .acordion-header {
            display: -webkit-box;
            /* OLD - iOS 6-, Safari 3.1-6 */
            display: -moz-box;
            /* OLD - Firefox 19- (buggy but mostly works) */
            display: -ms-flexbox;
            /* TWEENER - IE 10 */
            display: -webkit-flex;
            /* NEW - Chrome */
            display: flex;
            /* NEW, Spec - Opera 12.1, Firefox 20+ */
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-justify-content: space-between;
            /* Safari */
            justify-content: space-between;
            -webkit-align-items: center;
            align-items: center;
            padding: 15px 0px 15px 0px; }
            .container .general-box-content .box-content .acordion-content .acordion-row .acordion-header .title {
              font-size: 1.6rem;
              font-weight: 600; }
            .container .general-box-content .box-content .acordion-content .acordion-row .acordion-header i {
              font-size: 2.8rem;
              opacity: 0.25;
              -webkit-transition: all 0.2s ease-out;
              -moz-transition: all 0.2s ease-out;
              -o-transition: all 0.2s ease-out;
              transition: all 0.2s ease-out; }
          .container .general-box-content .box-content .acordion-content .acordion-row .acordion-text-content {
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 2.2rem;
            margin-bottom: 15px;
            display: none; }
        .container .general-box-content .box-content .acordion-content .acordion-cross .acordion-header i {
          transform: rotate(45deg);
          opacity: 0.85; }
      .container .general-box-content .box-content .list {
        width: 100%; }
        .container .general-box-content .box-content .list .list-row {
          width: 100%;
          border-bottom: 1px solid rgba(0, 0, 0, 0.075); }
          .container .general-box-content .box-content .list .list-row:last-child {
            border-bottom: 0px; }
            .container .general-box-content .box-content .list .list-row:last-child .list-content {
              margin-bottom: 0px; }
          .container .general-box-content .box-content .list .list-row .list-title {
            font-size: 1.6rem;
            font-weight: 600;
            padding: 20px 0px 20px 0px; }
          .container .general-box-content .box-content .list .list-row .list-content {
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 2.2rem;
            margin-bottom: 20px; }
      .container .general-box-content .box-content .room-content {
        width: 100%; }
        .container .general-box-content .box-content .room-content .room-title {
          font-size: 2.4rem;
          margin-bottom: 20px;
          font-weight: 600; }
        .container .general-box-content .box-content .room-content .room-shif-content {
          width: 100%;
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          column-gap: 8px;
          row-gap: 8px;
          margin-bottom: 48px; }
          .container .general-box-content .box-content .room-content .room-shif-content .room-shift {
            width: 100%;
            border: 1px solid rgba(0, 0, 0, 0.075);
            padding: 16px 24px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px; }
            .container .general-box-content .box-content .room-content .room-shif-content .room-shift .shift-books {
              font-size: 2.4rem;
              font-weight: 300;
              margin-bottom: 8px; }
            .container .general-box-content .box-content .room-content .room-shif-content .room-shift .shift {
              font-size: 1.4rem;
              opacity: 0.65;
              font-weight: 600; }
    .container .general-box-content .box-content-img {
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      flex-wrap: wrap; }
      .container .general-box-content .box-content-img .img-text-element {
        padding: 10px;
        width: 33.33%; }
        .container .general-box-content .box-content-img .img-text-element .img-text-content {
          width: 100%;
          border: 1px solid rgba(66, 82, 110, 0.25);
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          border-radius: 4px;
          padding: 20px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          cursor: pointer;
          min-height: 220px; }
          .container .general-box-content .box-content-img .img-text-element .img-text-content:hover {
            transform: translate(0px, -2px);
            -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
            -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
            border: 1px solid #fff; }
          .container .general-box-content .box-content-img .img-text-element .img-text-content img {
            width: 100%;
            margin-bottom: 10px; }
            .container .general-box-content .box-content-img .img-text-element .img-text-content img:last-child {
              margin-bottom: 0px; }
          .container .general-box-content .box-content-img .img-text-element .img-text-content .img-text-title {
            font-weight: 600;
            margin-bottom: 15px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            line-height: 20px;
            /* fallback */
            max-height: 40px;
            /* fallback */
            -webkit-line-clamp: 2;
            /* number of lines to show */
            -webkit-box-orient: vertical; }
          .container .general-box-content .box-content-img .img-text-element .img-text-content .img-text-subtitle {
            font-size: 1.4rem;
            opacity: 0.75;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            line-height: 18px;
            /* fallback */
            max-height: 54px;
            /* fallback */
            -webkit-line-clamp: 3;
            /* number of lines to show */
            -webkit-box-orient: vertical; }
          .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box {
            width: 100%;
            margin-bottom: 20px;
            display: -webkit-box;
            /* OLD - iOS 6-, Safari 3.1-6 */
            display: -moz-box;
            /* OLD - Firefox 19- (buggy but mostly works) */
            display: -ms-flexbox;
            /* TWEENER - IE 10 */
            display: -webkit-flex;
            /* NEW - Chrome */
            display: flex;
            /* NEW, Spec - Opera 12.1, Firefox 20+ */
            -webkit-flex-direction: row;
            flex-direction: row;
            -webkit-justify-content: space-between;
            /* Safari */
            justify-content: space-between; }
            .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single {
              background-color: rgba(0, 0, 0, 0.075);
              -webkit-border-radius: 4px;
              -moz-border-radius: 4px;
              border-radius: 4px;
              padding: 5px;
              -webkit-transition: all 0.2 ease-out;
              -moz-transition: all 0.2 ease-out;
              -o-transition: all 0.2 ease-out;
              transition: all 0.2 ease-out; }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single .option-icon {
                width: 24px;
                height: 24px; }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single .icon-fav {
                -webkit-transition: all 0.1s ease-out;
                -moz-transition: all 0.1s ease-out;
                -o-transition: all 0.1s ease-out;
                transition: all 0.1s ease-out;
                background-image: url("../img/ico/ico-fav-50.svg");
                cursor: pointer; }
                .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single .icon-fav:hover {
                  -webkit-transition: all 0.1s ease-out;
                  -moz-transition: all 0.1s ease-out;
                  -o-transition: all 0.1s ease-out;
                  transition: all 0.1s ease-out;
                  background-image: url("../img/ico/ico-fav.svg"); }
            .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single-selected {
              background-color: #5072FF; }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single-selected:hover .icon-fav {
                background-image: url("../img/ico/ico-fav-w.svg"); }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-single-selected .icon-fav {
                background-image: url("../img/ico/ico-fav-w.svg"); }
            .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group {
              display: -webkit-box;
              /* OLD - iOS 6-, Safari 3.1-6 */
              display: -moz-box;
              /* OLD - Firefox 19- (buggy but mostly works) */
              display: -ms-flexbox;
              /* TWEENER - IE 10 */
              display: -webkit-flex;
              /* NEW - Chrome */
              display: flex;
              /* NEW, Spec - Opera 12.1, Firefox 20+ */
              -webkit-flex-direction: row;
              flex-direction: row;
              background-color: rgba(0, 0, 0, 0.075);
              -webkit-border-radius: 4px;
              -moz-border-radius: 4px;
              border-radius: 4px;
              padding: 5px; }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .option-icon {
                width: 24px;
                height: 24px; }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-disable {
                -webkit-transition: all 0.1s ease-out;
                -moz-transition: all 0.1s ease-out;
                -o-transition: all 0.1s ease-out;
                transition: all 0.1s ease-out;
                background-image: url("../img/ico/ico-disable-50.svg");
                cursor: pointer; }
                .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-disable:hover {
                  -webkit-transition: all 0.1s ease-out;
                  -moz-transition: all 0.1s ease-out;
                  -o-transition: all 0.1s ease-out;
                  transition: all 0.1s ease-out;
                  background-image: url("../img/ico/ico-disable.svg"); }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-edit {
                -webkit-transition: all 0.1s ease-out;
                -moz-transition: all 0.1s ease-out;
                -o-transition: all 0.1s ease-out;
                transition: all 0.1s ease-out;
                background-image: url("../img/ico/ico-edit-50.svg");
                cursor: pointer; }
                .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-edit:hover {
                  -webkit-transition: all 0.1s ease-out;
                  -moz-transition: all 0.1s ease-out;
                  -o-transition: all 0.1s ease-out;
                  transition: all 0.1s ease-out;
                  background-image: url("../img/ico/ico-edit.svg"); }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-drag {
                -webkit-transition: all 0.1s ease-out;
                -moz-transition: all 0.1s ease-out;
                -o-transition: all 0.1s ease-out;
                transition: all 0.1s ease-out;
                background-image: url("../img/ico/ico-drag-50.svg");
                cursor: pointer; }
                .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-drag:hover {
                  -webkit-transition: all 0.1s ease-out;
                  -moz-transition: all 0.1s ease-out;
                  -o-transition: all 0.1s ease-out;
                  transition: all 0.1s ease-out;
                  background-image: url("../img/ico/ico-drag.svg"); }
              .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-delete {
                -webkit-transition: all 0.1s ease-out;
                -moz-transition: all 0.1s ease-out;
                -o-transition: all 0.1s ease-out;
                transition: all 0.1s ease-out;
                background-image: url("../img/ico/ico-delete-50.svg");
                cursor: pointer; }
                .container .general-box-content .box-content-img .img-text-element .img-text-content .option-box .option-icon-group .icon-delete:hover {
                  -webkit-transition: all 0.1s ease-out;
                  -moz-transition: all 0.1s ease-out;
                  -o-transition: all 0.1s ease-out;
                  transition: all 0.1s ease-out;
                  background-image: url("../img/ico/ico-delete.svg"); }
      .container .general-box-content .box-content-img .img-text-element-disabled .img-text-content .img-text-title,
      .container .general-box-content .box-content-img .img-text-element-disabled .img-text-content .img-text-subtitle {
        opacity: 0.25; }
      .container .general-box-content .box-content-img .img-text-element-disabled .option-box .option-icon-single {
        opacity: 0.5;
        cursor: default !important; }
        .container .general-box-content .box-content-img .img-text-element-disabled .option-box .option-icon-single .icon-fav {
          cursor: default !important; }
          .container .general-box-content .box-content-img .img-text-element-disabled .option-box .option-icon-single .icon-fav:hover {
            background-image: url("../img/ico/ico-fav-50.svg") !important; }
    .container .general-box-content .box-chart {
      width: 100%;
      padding: 20px 20px 0px 20px;
      background-color: rgba(0, 0, 0, 0.02);
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px; }
      .container .general-box-content .box-chart .chart-header {
        padding: 10px 14px 25px 10px;
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-between;
        /* Safari */
        justify-content: space-between;
        -webkit-justify-content: space-between;
        /* Safari */
        justify-content: space-between; }
        .container .general-box-content .box-chart .chart-header .chart-title {
          font-size: 1.8rem; }
        .container .general-box-content .box-chart .chart-header .chart-options {
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row; }
          .container .general-box-content .box-chart .chart-header .chart-options i {
            opacity: 0.5;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
            cursor: pointer;
            margin-left: 10px; }
            .container .general-box-content .box-chart .chart-header .chart-options i:hover {
              opacity: 1; }
      .container .general-box-content .box-chart .chart {
        width: 100%;
        height: 400px; }
  .container .general-box-full-screen {
    max-width: 100%; }

.container-menu-lite {
  padding: 50px 40px 40px 290px; }

.container-login {
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #010a43, #5072FF);
  background-size: 400% 400%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-animation: AnimationName 15s ease infinite;
  -moz-animation: AnimationName155s ease infinite;
  animation: AnimationName 15s ease infinite; }
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
  .container-login .login-content {
    width: 100%;
    height: 100%;
    background-image: url("../img/shapesBg.svg");
    background-size: cover;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    align-items: center;
    justify-content: center; }
    .container-login .login-content .main-brand {
      font-size: 2.8rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 20px; }
      .container-login .login-content .main-brand .by {
        display: inline-block;
        color: #fff;
        font-weight: 400;
        font-size: 1.3rem;
        opacity: 0.5;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
        .container-login .login-content .main-brand .by:hover {
          opacity: 1; }
    .container-login .login-content .login-box {
      width: 450px;
      padding: 60px;
      background-color: #fff;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      -webkit-box-shadow: 0px 6px 72px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 6px 72px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 6px 72px 0px rgba(0, 0, 0, 0.3); }
      .container-login .login-content .login-box .login-brand {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
        margin-bottom: 10px; }
        .container-login .login-content .login-box .login-brand .main-brand {
          width: 166px;
          height: 30px;
          background-image: url("../img/ico/mainBrandBigBlue.svg"); }
        .container-login .login-content .login-box .login-brand .by-akting {
          font-size: 1.1rem;
          letter-spacing: 0.5px;
          margin-top: -4px;
          margin-left: 8px;
          opacity: 0.5;
          color: #172b4d;
          font-weight: 400; }
      .container-login .login-content .login-box .login-title {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 20px; }
      .container-login .login-content .login-box .message {
        position: static;
        z-index: 0;
        width: 100%;
        height: auto;
        margin-left: 0px;
        margin-bottom: 0px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        transform: scale(1);
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        -webkit-box-shadow: 0px 0px 0px 0px transparent;
        -moz-box-shadow: 0px 0px 0px 0px transparent;
        box-shadow: 0px 0px 0px 0px transparent;
        display: inline-block;
        padding: 0px 0px; }
      .container-login .login-content .login-box .message {
        font-size: 1.2rem;
        padding: 10px 12px;
        font-family: 'Roboto', sans-serif;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
        margin-top: -15px;
        opacity: 1; }
        .container-login .login-content .login-box .message .message-left .main-icon {
          display: none; }
        .container-login .login-content .login-box .message .message-left .message-text {
          display: block;
          margin-left: 0px;
          font-size: 1.3rem;
          font-weight: 400; }
        .container-login .login-content .login-box .message .close-message {
          display: none !important; }
      .container-login .login-content .login-box .success {
        color: #4daf76;
        background-color: #ddf3e6; }
      .container-login .login-content .login-box .error {
        color: #f65454;
        background-color: #feeded; }
      .container-login .login-content .login-box form label {
        font-size: 1.4rem;
        opacity: 0.5; }
      .container-login .login-content .login-box form input[type="text"],
      .container-login .login-content .login-box form input[type="email"],
      .container-login .login-content .login-box form input[type="password"] {
        width: 100%;
        height: 35px;
        font-size: 1.6rem;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid rgba(66, 82, 110, 0.25);
        padding: 0px 8px;
        -webkit-transition: all 0.1s ease-out;
        -moz-transition: all 0.1s ease-out;
        -o-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out;
        color: #172b4d;
        margin-top: 5px;
        margin-bottom: 15px; }
        .container-login .login-content .login-box form input[type="text"]:invalid,
        .container-login .login-content .login-box form input[type="email"]:invalid,
        .container-login .login-content .login-box form input[type="password"]:invalid {
          box-shadow: none; }
        .container-login .login-content .login-box form input[type="text"]:focus,
        .container-login .login-content .login-box form input[type="email"]:focus,
        .container-login .login-content .login-box form input[type="password"]:focus {
          border: 1px solid #5072FF; }
      .container-login .login-content .login-box form input[type="submit"] {
        border: none;
        cursor: pointer;
        font-family: 'Inter', sans-serif; }
      .container-login .login-content .login-box form .password-label-box {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-between;
        /* Safari */
        justify-content: space-between; }
        .container-login .login-content .login-box form .password-label-box .remember {
          font-size: 1.2rem;
          color: #172b4d;
          opacity: 0.35;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6 */
          display: -moz-box;
          /* OLD - Firefox 19- (buggy but mostly works) */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Chrome */
          display: flex;
          /* NEW, Spec - Opera 12.1, Firefox 20+ */
          -webkit-flex-direction: row;
          flex-direction: row;
          -webkit-justify-content: space-between;
          /* Safari */
          justify-content: space-between; }
          .container-login .login-content .login-box form .password-label-box .remember i {
            font-size: 16px;
            margin-right: 5px;
            margin-top: -2px; }
          .container-login .login-content .login-box form .password-label-box .remember:hover {
            opacity: 0.75; }
    .container-login .login-content .login-footer {
      width: 450px;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-justify-content: space-between;
      /* Safari */
      justify-content: space-between;
      -webkit-align-items: center;
      align-items: center;
      margin-top: 20px; }
      .container-login .login-content .login-footer select {
        background-color: transparent;
        border: none;
        color: #fff;
        font-size: 1.2rem;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding-right: 20px; }
      .container-login .login-content .login-footer .footer-links {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-flex-direction: row;
        flex-direction: row;
        color: #fff; }
        .container-login .login-content .login-footer .footer-links p {
          opacity: 0.5;
          cursor: pointer;
          color: #fff;
          margin-left: 20px;
          font-size: 1.2rem;
          font-family: 'Inter', sans-serif;
          font-weight: 400;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out; }
          .container-login .login-content .login-footer .footer-links p:hover {
            opacity: 0.75; }

/*# sourceMappingURL=backboo.css.map */
