/**
* Author: Muhamad Nasir
* Aplikasi Beca Template
* File: style.css
* Created: 2017-04-06 09:45 AM
*/
* {
  margin: 0px;
  padding: 0px;
}
a,
button {
  cursor: pointer;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}
input:focus,
input:active,
button:active,
button:focus {
  outline: none !important;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f7f7f7;
}
.overflow-hide {
  overflow: hidden;
}
/*
  Design
*/
.trans_02s {
  transition: all ease-in-out .2s;
  -webkit-transition: all ease-in-out .2s;
}
.trans_03s {
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
}
.trans_04s {
  transition: all ease-in-out .4s;
  -webkit-transition: all ease-in-out .4s;
}
.trans_05s {
  transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
}
.trans_1s {
  transition: all ease-in-out 1s;
  -webkit-transition: all ease-in-out 1s;
}
.section {
  width: 100%;
  position: relative;
  float: left;
}
.section::before,
.section::after {
  display: table;
  content: "";
  clear: both;
}
@media (min-width: 1366px) {
  .section {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
.bg-smoke{
  background-color: #f0f0f0;
}
.bg-default {
  background-color: #fff;
}
.bg-danger {
  background-color: #f44336
}
.bg-info {
  background-color: #03a9f4
}
.bg-success {
  background-color: #4caf50
}
.bg-warning {
  background-color: #ffc107;
}
/*
*@Styling Button Bootstrap's
*/
.btn {
  border-radius: 2px;
  line-height: 1.42857143;
}
.btn:hover {
  box-shadow: 0px 3px 3px -1px rgba(0, 0, 0, 0.2);
}
.btn-radius-15 {
  border-radius: 15px;
}
.btn-default {
  border-color: #dfdfdf;
}
.btn-default:hover {
  border-color: #dad5d5;
}
.btn-primary {
  background-color: #304fff;
  border-color: #2945e8;
}
.btn-primary:hover {
  background-color: #2945e8;
  border-color: #1b35cf;
}
.btn-success {
  background-color: #01c853;
  border-color: #0db452;
}
.btn-success:hover {
  background-color: #0db452;
  border-color: #0c9f49;
}
.btn-warning {
  background-color: #ffaa02;
  border-color: #e69a06;
}
.btn-warning:hover {
  background-color: #e69a06;
  border-color: #d08a02;
}
.btn-danger {
  background-color: #dd2c00;
  border-color: #bd2905;
}
.btn-danger:hover {
  background-color: #bd2905;
  border-color: #a72303;
}
/* ------------------ /.form control ----------------- */

.form-control::-webkit-input-placeholder {
  color: #aaa;
}
.form-control::-moz-placeholder {
  color: #aaa;
}
.form-control:-ms-input-placeholder {
  color: #aaa;
}
.form-control:-moz-placeholder {
  color: #aaa;
}
.form-control {
  border-radius: 2px;
  box-shadow: none;
}
.form-control:focus {
  border-color: #304fff;
  box-shadow: none;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-group > .form-control,
.input-group > .input-group-addon,
.input-group > .input-group-btn > .btn,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  box-shadow: none;
}
.control-label,
label {
  color: #777;
  font-weight: 500;
}
/*
* @aAlert
*/
.alert {
  padding: 10px 15px;
  border-radius: 2px;
  box-shadow: 0px 3px 2px -1px rgba(0, 0, 0, 0.08);
}
.alert-danger {
  background-color: rgba(224,67,54, .1);
}
.alert-warning {
  background-color: rgba(255,193,7, .1);
}
.alert-success {
  background-color: rgba(76,175,80, .1);
}
.alert-info {
  background-color: rgba(3,169,224, .1);
}
/*
* @Dropdown Menu
*/
.dropdown .dropdown-menu {
  border: 0;
  border-radius: 0px;
  min-height: 50px;
  visibility: hidden;
  opacity: 0;
  top: 120%;
  display: block;
}
.dropdown .dropdown-menu.left {
  left: 0;
  right: auto;
}
.dropdown .dropdown-menu.right {
  right: 0;
  left: auto;
}
.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 15px;
  border-bottom: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.dropdown .dropdown-menu.right::before {
  right: 50px;
  left: auto;
}
.dropdown .dropdown-menu.p-right-0::before {
  right: 10px;
  left: auto;
}
.dropdown.open .dropdown-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
/*
*@wrapper portal
*/
#wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
/* Portal bg */
.bg_portal {
  background: #33b0cb url('../images/other/bg-portal.jpg') no-repeat;
  background-size: 100% 100%;
}
/*
*@Portal Design
*/
.w-100 {
  width: 100%;
}
.portal,
.portal-header,
.portal-body {
  width: 100%;
  position: relative;
}
.portal::before,
.portal::after,
.portal-header::before,
.portal-header::after,
.portal-body::before,
.portal-body::after {
  display: table;
  content: "";
  clear: both;
}
.portal {
  padding: 30px 30px 0;
}
.portal-header .logo,
.portal-header .title-portal,
.portal-header .button-logout {
  position: relative;
  padding: 7px 15px;
}
/*
.portal-header {
  overflow: hidden;
  border-radius: 15px;
}
*/
.portal-header .logo {
  background-color: #fff;
}
.portal-header .title-portal,
.portal-header .button-logout {
  background-color: #ffce29;
}
.portal-header .logo .image-logo,
.portal-header .logo .title-logo {
  vertical-align: middle;
}

.portal-header .logo .image-logo img {
  max-width: 38px;
  height: auto;
}
.portal-header .logo .title-logo span {
  color: #2756a5;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 1px;
}
.portal-header .title-portal,
.portal-header .button-logout {
  background-color: #ffcd2b;
}
.portal-header .title-portal span {
  color: #fff;
  font-size: 1.35em;
  font-weight: 700;
}
.portal-header .button-logout a {
  color: #fff;
  font-size: 1.63em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.portal-header .button-logout a:hover {
  color: #f44336;
}
.portal-header .button-logout span {
  position: absolute;
  top: 110%;
  left: calc(50% - 50px);
  display: inline-block;
  width: 100px;
  padding: 6px 10px;
  background-color: #fff;
  font-size: .95em;
  box-shadow: 0px 5px 2px -1px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}
.portal-header .button-logout span::before {
  content: "";
  position: absolute;
  border-bottom: 7px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  left: calc(50% - 3px);
  top: -7px;
  z-index: 20;
}
.portal-header .button-logout a:hover ~ span {
  visibility: visible;
  opacity: 1;
}
.portal-menu {
  display: block;
  list-style: none;
}
.portal-menu li {
  display: block;
  position: relative;
  border-bottom: 1px solid #eee;
}
.portal-menu li:last-child {
  border-bottom: none;
}
.portal-menu li a {
  display: block  !important;
  color: #444 !important;
  font-size: 1em !important;
  padding: 10px 20px !important;
}
.portal-menu li:hover a {
  color: #222;
  background-color: #eee;
}
@media (max-width: 1080px) {
  .portal-header .title-portal span {
    font-size: 1.34em;
  }
  .bg_portal {
    background-size: cover;
    float: left;
  }
}
@media (max-width: 767px) {
  .portal-header .title-portal span {
    font-size: 1em;
  }
  .portal-header .button-logout a {
    font-size: 1.2em;
  }
  .portal-header .button-logout span::before {
    display: none;
  }
  .portal {
    padding: 40px 15px 0;
  }
}
/*
*@Portal Shortcut
*/
.portal-shortcut {
  position: relative;
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
}
.portal-shortcut a {
  display: inline-block;
}
.shortcut {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 7px rgba(225,225,225,.5);
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
}
.shortcut:hover {
  box-shadow: 0px 0px 0px 7px rgba(225,225,225,.95);
}
.shortcut .icons {
  max-width: 140px;
  display: inline-block;
  text-align: center;
}
.shortcut .icons i,
.shortcut .icons span {
  display: block;
  color: #fff;
}
.shortcut .icons i {
  font-size: 4.5em;
  line-height: 1.1;
}
.shortcut .icons span {
  font-size: .85em;
  letter-spacing: 2px;
  font-weight: 500;
}
.shortcut:hover .icons i,
.shortcut:hover .icons span {
  color: #333;
}
.shortcut.dashboard {
  background-color: #2196f3;
}
.shortcut.stkb {
  background-color: #f44336;
}
.shortcut.stib {
  background-color: #3f51b5;
}
.shortcut.sarpras {
  background-color: #ff9800;
}
.shortcut.laporan {
  background-color: #009688;
}
.shortcut.pengaturan {
  background-color: #9c27b0;
}
/*
*@Login Page
*/
#login-wrapper {
  position: absolute;
  width: 350px;
  height: 100%;
  right: 50px;
  top: 0;
  background-color: #f5f5f5;
  border-left: 7px solid #f8be01;
  border-right: 7px solid #f8be01;
  z-index: 100;
}
#login-wrapper .inner-login {
  width: 90%;
  position: relative;
}
#login-wrapper .header-form,
#login-wrapper .body-form {
  width: 100%;
  position: relative;
  padding: 10px 15px;
}
#login-wrapper .header-form img {
  max-width: 60px;
  height: auto;
  margin-bottom: 30px;
}
#login-wrapper .header-form span {
  color: #0a9fc1;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
  display: block;
}
#login-wrapper .body-form .control-label {
  color: #666;
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 5px;
}
#login-wrapper .body-form .form-control {
  box-shadow: none;
  background-color: #e9e9e9;
  border-color: transparent;
  border-radius: 8px;
  height: 45px;
  font-size: 1.2em;
}
#login-wrapper .body-form .form-control:focus {
  background-color: #f9f9f9;
  border-color: #eaeaea;
}
#login-wrapper .body-form .verikasi {
  width: 100%;
  height: 45px;
  background-color: #f2f2f2;
  border-radius: 8px;
}
#login-wrapper .body-form .verikasi img {
  width: 100%;
  height: auto;
}
#login-wrapper .body-form .btn {
  border: none;
  border-radius: 8px;
}
#login-wrapper .body-form .forgot-pass {
  display: inline-block;
}
#login-wrapper .body-form .forgot-pass span {
  font-size: .9em;
}
#login-wrapper .body-form .forgot-pass span > a {
  color: #ffd32b;
  font-weight: 600;
}
#login-wrapper .body-form .forgot-pass span > a:hover {
  color: #f4bc16;
  text-decoration: underline;
}
.login-welcome {
  padding: 40px;
  position: relative;
  /*font-family: 'Roboto', sans-serif;*/
}
.login-welcome .welcome-text,
.login-welcome .aplikasi-name,
.login-welcome .institusi-name {
  display: block;
  line-height: 1.1;
}
.login-welcome .welcome-text,
.login-welcome .institusi-name {
  color: #fff;
}
.login-welcome .welcome-text {
  font-size: 3.8em;
  font-weight: 100;
}
.login-welcome .aplikasi-name {
  color: #ffd32b;
  font-size: 3em;
  font-weight: 800;
}
.login-welcome .institusi-name {
  font-size: 2.8em;
  font-weight: 600;
}
.login-welcome .institusi-name > img {
  max-width: 60px;
  height: auto;
  padding-right: 5px;
}
@media (max-width: 1024px) {
  #login-wrapper .body-form .forgot-pass {
    padding-left: 0 !important;
    margin-top: 15px;
  }
  .login-welcome .welcome-text {
    font-size: 2.8em;
  }
  .login-welcome .aplikasi-name {
    font-size: 2.6em;
  }
  .login-welcome .institusi-name {
    font-size: 2.4em;
  }
  .login-welcome .institusi-name > img {
    max-width: 50px;
  }
}

@media (max-width: 959px) {
  #login-wrapper {
    position: relative;
    right: 0;
    width: 100%;
  }
  .login-welcome {
    padding: 20px;
  }
  .login-welcome .welcome-text {
    font-size: 1.8em;
  }
  .login-welcome .aplikasi-name {
    font-size: 1.6em;
  }
  .login-welcome .institusi-name {
    font-size: 1.4em;
  }
  .login-welcome .institusi-name > img {
    max-width: 40px;
  }
}
/*
* @Dashboard Page
*/
#sidebar {
  width: 350px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  background-color: #222; /* Default Skin */
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#sidebar + #content {
  margin-left: 350px;
  min-height: 100vh;
  position: relative;
}
#sidebar.show + #content {
  margin-left: 45px;
}
/* Sidebar */
#sidebar .left-content,
#sidebar .nav--right {
  position: absolute;
  height: 100%;
  top: 0;
}
#sidebar .left-content {
  left: 0;
  width: 305px;
}
#sidebar .left-content .logo-dishub {
  text-align: center;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
}
#sidebar .left-content .logo-dishub.border-btm {
  border-bottom: 2px solid #fff;
}
#sidebar .left-content .logo-dishub img {
  max-width: 110px;
  height: auto;
}
#sidebar .left-content .logo-dishub span {
  color: #fff;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.3;
  display: block;
}
#sidebar .nav--right {
  width: 45px;
  left: 305px;
}
#sidebar .nav--right ul {
  display: block;
  list-style-type: none;
}
#sidebar .nav--right ul > li {
  display: block;
  text-align: center;
}
#sidebar .nav--right ul > li > a {
  padding: 10px 5px;
  display: block;
  position: relative;
  font-size: 1.7em;
  color: #fff;
  position: relative;
}
#sidebar .nav--right ul > li.notif--onn > a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #f44336;
  top: 20px;
  right: 13px;
  z-index: 3;
}
#sidebar .nav--right ul > li > a > span {
  position: absolute;
  z-index: 100;
  display: inline-block;
  padding: 5px 10px;
  opacity: 0;
  top: calc(50% - 14px);
  left: 0;
  font-size: 12px;
  background-color: #444;
  color: #fff;
  visibility: hidden;
  transform: translateX(60px) scale(.8);
  -webkit-transform: translateX(60px) scale(.8);
  -moz-transform: translateX(60px) scale(.8);
  -ms-transform: translateX(60px) scale(.8);
}
#sidebar .nav--right ul > li > a > span::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 10px;
  border-right: 5px solid #444;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
#sidebar .nav--right ul > li:hover > a > span {
  opacity: 1;
  visibility: visible;
  transform: translateX(50px) scale(1);
  -webkit-transform: translateX(50px) scale(1);
  -moz-transform: translateX(50px) scale(1);
  -ms-transform: translateX(50px) scale(1);
}
#sidebar .nav--right ul > li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#sidebar .nav--right .button-collapese {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 45px;
  font-size: 1.7em;
  color: #fff;
  cursor: pointer;
}
#sidebar .nav--right .button-collapese:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/*
* @Notif bar
*/
.notif--bar {
  width: 340px;
  min-height: 100vh;
  position: absolute;
  background-color: #fff;
  top: 0;
  margin-top:;
  left: 50px;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  box-shadow: 3px 0px 2px 0px rgba(0, 0, 0, 0.08);
}
/* Munculkan Notifikasi Bar */
#sidebar .nav--right ul > li:hover .notif--bar{
  opacity: 1;
  visibility: visible;
  left: 45px;
}
.notif--bar .header-notif {
  position: relative;
  text-align: center;
}
.notif--bar .header-notif span {
  color: #fff;
  font-size: 1.2em;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}
.notif--bar .notify {
  width: 100%;
  position: relative;
  padding: 8px 5px;
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px solid #f5f5f5;
}
.notif--bar .notify:hover {
  background-color: #f5f5f5;
}
.notif--bar .notify .status-foto,
.notif--bar .notify .notif-view {
  vertical-align: middle;
}
.notif--bar .notify .notif-info {
  vertical-align: top;
  text-align: left;
  padding: 0 7px;
  width: 295px;
}
.notif--bar .notify .notif-view,
.notif--bar .notify .status-foto {
  width: 45px;
  height: 45px;
  font-size: 2.1em;
  color: #fff;
}
.notif--bar .notify .notif-view {
  color: #999;
  background-color: #f0f0f0;
  border-radius: 40px;
}
.notif--bar .notify .notif-info span {
  font-size: .9em;
  color: #777;
}
.notif--bar .notify .notif-info span > strong,
.notif--bar .notify .notif-info span > b {
  color: #555;
  font-weight: bold;
  line-height: 1.1
}
/* Header Of Page */
.header-page {
  position: relative;
  padding: 0 0 5px;
  margin-bottom: 10px;
}
.header-page .breadcrumbs {
  display: block;
  list-style-type: none;
  font-family: 'Roboto',sans-serif;
}
.header-page .breadcrumbs li {
  display: inline-block;
  position: relative;
}
.header-page .breadcrumbs li::after {
  content: "/";
  font-size: 1.1em;
  color: #ccc;
  position: absolute;
  right: -5px;
  top: 3px;
}
.header-page .breadcrumbs li:last-child::after {
  display: none;
}
.header-page .breadcrumbs li > a,
.header-page .breadcrumbs li > span {
  font-size: 1.05em;
  display: block;
  padding: 5px 8px;
}
.header-page .breadcrumbs li:first-child > a {
  padding-left: 0;
}
.header-page .breadcrumbs li > span {
  color: #aaa;
}
.header-page .curren-page {
  padding: 10px 0;
  text-align: right;
}
.header-page .curren-page span {
  font-size: 1.3em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.header-page .curren-page span > i {
  padding-right: 5px;
  font-size: 1.2em;
}
@media (max-width: 959px) {
  .header-page .curren-page {
    text-align: center;
  }
}
.box,
.box-body,
.box-header,
.box-footer {
  width: 100%;
  position: relative;
  float: left;
}
.box::before,
.box::after,
.box-header::before,
.box-header::after
.box-body::before,
.box-body::after,
.box-footer::before,
.box-footer::after {
  display: table;
  content: "";
  clear: both;
}
.box-header,
.box-body {
  background-color: #fff;
}
.box-header {
  padding: 13px 15px;
}
.box-header span {
  font-size: 1.15em;
  font-weight: 700;
  text-transform: uppercase;
}
.box-header span > small {
  color: #999;
  font-size: .8em;
  font-weight: 400;
  text-transform: capitalize;
}
.box-body {
  padding: 15px;
}
/* Widget Box */
.widget,
.widget-header,
.widget-body,
.widget-footer {
  width: 100%;
  position: relative;
}
.widget {
  padding: 10px;
}
.widget-header,
.widget-footer {
  padding: 5px;
}
.widget-header {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.widget-header span,
.widget-header small {
  display: block;
}
.widget-header span {
  font-size: 1em;
  color: #444;
}
.widget-header small {
  color: #999;
  font-size: .85em;
}
/* Menu Tab */
.menu-tab {
  position: relative;
}
.menu-tab ul {
  display: block;
  list-style-type: none;
}
.menu-tab ul > li {
  display: inline-block;
  margin: 0 0 0 -4px;
}
.menu-tab ul > li:first-child {
  margin-left: 0;
}
.menu-tab ul > li > a {
  display: block;
  padding: 15px;
  color: #fff;
  font-size: 1.1em;
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
}
.menu-tab ul > li.active > a,
.menu-tab ul > li > a:focus {
  background-color: #fff;
  color: #444;
  cursor: default;
}
.menu-tab ul > li.active:hover > a {
  background-color: #fff !important;
}
.conten-tab {
  width: 100%;
  float: left;
  position: relative;
}
/* Menus Sidebar */
.menu-sidebar {
  display: block;
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}
.menu-sidebar ul {
  display: block;
  list-style-type: none;
}
.menu-sidebar ul > li {
  position: relative;
}
.menu-sidebar ul > li > a {
  display: block;
  padding: 14px 20px;
  font-size: 1.3em;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}
.menu-sidebar ul > li > a > i {
  font-size: 1.3em;
  padding-right: 15px;
}
@media (max-height: 649px) {
  .menu-sidebar {
    max-height: 260px;
  }
}
@media (min-height: 650px) {
  .menu-sidebar {
    max-height: 380px;
  }
}
/*
* @Dashboard Page Widget
*/
#graph {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 20px;
  min-height: 450px;
}
/* Aktivitas Admin */
.aktifitas {
  position: relative;
  display: block;
  margin-left: 5px;
  height: 260px;
}
.aktifitas::before {
  position: absolute;
  left: 9px;
  bottom: 0;
  top: 0;
  background-color: #ddd;
  width: 1px;
  content: "";
}
.aktifitas ul {
  list-style: none;
  padding: 10px 0 0;
  display: block;
  position: relative;
}
.aktifitas ul li {
  display: block;
  padding: 10px 5px 10px 20px;
  position: relative;
}
.aktifitas ul li::before {
  position: absolute;
  left: 0px;
  padding: 3px 5px;
  top: -10px;
  font-family: 'FontAwesome';
  content: "\f111";
  color: #a7d9a8;
  font-size: 11px;
}
.aktifitas ul li:nth-child(even)::before {
  color: #f09a9b;
}
.aktifitas ul li .time {
  color: #aaa;
  font-size: 12px;
  display: block;
}
.aktifitas ul li .text-act {
  color: #444;
  font-size: 13px;
}
.aktifitas ul li .text-act > .link-act,
.aktifitas ul li .text-act > .username {
  color: #4eaf52;
  font-weight: 600;
  font-size: 12px;
}
.aktifitas ul li .text-act > .username {
  color: #9476cc;
}
.aktifitas ul li .text-act > .username:hover,
.aktifitas ul li .text-act > .link-act:hover {
  text-decoration: underline;
}
@media (max-height: 600px) {
  .aktifitas {
    height: 200px;
  }
}
/*
* @display: flex
*/
.ds-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}
/*
*@ds-table
*/
.ds-tables {
  display: table;
}
.ds-tables-row {
  display: table-row;
}
.ds-tables-cell {
  display: table-cell;
}
