.box {
    position: relative;
    border-top: 0;
    margin-bottom: 20px;
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding: 0px;
    -webkit-transition: .5s;
    transition: .5s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #dce3e6;
    border-radius: 4px;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.box-inverse {
    color: #fff !important;
    background-color: #465161;
}

.box-inverse .box-header {
    color: #fff !important;
}

.box-inverse h1,
.box-inverse h2,
.box-inverse h3,
.box-inverse h4,
.box-inverse h5,
.box-inverse h6,
.box-inverse .box-title,
.box-inverse small,
.box-inverse .box-controls li>a {
    color: #fff !important;
}

.box-inverse .box-title small {
    opacity: 0.8;
}

.box-inverse .box-btn-more::before,
.box-inverse .box-btn-more::after {
    border-color: #fff;
}

.box-inverse .box-header,
.box-inverse .box-footer,
.box-inverse .box-action {
    border-color: rgba(255, 255, 255, 0.15);
}

.box-primary {
    background-color: #7460ee;
}

.box-primary.box-bordered {
    border-color: #7460ee;
}

.box-secondary {
    background-color: #e4e7ea;
}

.box-secondary.box-bordered {
    border-color: #e4e7ea;
}

.box-success {
    background-color: #26c6da;
}

.box-success.box-bordered {
    border-color: #26c6da;
}

.box-info {
    background-color: #1e88e5;
}

.box-info.box-bordered {
    border-color: #1e88e5;
}

.box-warning {
    background-color: #ffb22b;
}

.box-warning.box-bordered {
    border-color: #ffb22b;
}

.box-danger {
    background-color: #fc4b6c;
}

.box-danger.box-bordered {
    border-color: #fc4b6c;
}

.box-pink {
    background-color: #FC3468;
}

.box-pink.box-bordered {
    border-color: #FC3468;
}

.box-purple {
    background-color: #7c277d;
}

.box-purple.box-bordered {
    border-color: #7c277d;
}

.box-brown {
    background-color: #8d6658;
}

.box-brown.box-bordered {
    border-color: #8d6658;
}

.box-cyan {
    background-color: #57c7d4;
}

.box-cyan.box-bordered {
    border-color: #57c7d4;
}

.box-yellow {
    background-color: #fcc525;
}

.box-yellow.box-bordered {
    border-color: #fcc525;
}

.box-gray {
    background-color: #868e96;
}

.box-gray.box-bordered {
    border-color: #868e96;
}

.box-dark {
    background-color: #465161;
}

.box-dark.box-bordered {
    border-color: #465161;
}

.box-outline-primary {
    background-color: #fff;
    border: 1px solid #7460ee;
}

.box-outline-secondary {
    background-color: #fff;
    border: 1px solid #e4e7ea;
}

.box-outline-success {
    background-color: #fff;
    border: 1px solid #26c6da;
}

.box-outline-info {
    background-color: #fff;
    border: 1px solid #1e88e5;
}

.box-outline-warning {
    background-color: #fff;
    border: 1px solid #ffb22b;
}

.box-outline-danger {
    background-color: #fff;
    border: 1px solid #fc4b6c;
}

.box-outline-pink {
    background-color: #fff;
    border: 1px solid #FC3468;
}

.box-outline-purple {
    background-color: #fff;
    border: 1px solid #7c277d;
}

.box-outline-brown {
    background-color: #fff;
    border: 1px solid #8d6658;
}

.box-outline-cyan {
    background-color: #fff;
    border: 1px solid #57c7d4;
}

.box-outline-yellow {
    background-color: #fff;
    border: 1px solid #fcc525;
}

.box-outline-gray {
    background-color: #fff;
    border: 1px solid #868e96;
}

.box-outline-dark {
    background-color: #fff;
    border: 1px solid #465161;
}

.box-bordered {
    border: 1px solid #ebebeb;
}

.box-shadowed {
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

.box-hover-shadow:hover {
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.07);
}

.box-transparent {
    background-color: transparent;
}

.box-round {
    border-radius: 4px;
}

.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
    display: none;
}

.box .flex-column>li {
    border-bottom: 1px solid #f4f4f4;
    margin: 0;
}

.box .flex-column>li:last-of-type {
    border-bottom: none;
}

.box.height-control .box-body {
    max-height: 300px;
    overflow: auto;
}

.box .border-right {
    border-right: 1px solid #f4f4f4;
}

.box .border-left {
    border-left: 1px solid #f4f4f4;
}

.box.box-solid {
    border-top: 0;
}

.box.box-solid>.box-header .btn:hover,
.box.box-solid>.box-header a:hover {
    background: rgba(0, 0, 0, .1);
}

.box.box-solid.box-default>.box-header {
    color: #455a64;
    background: #d2d6de;
}

.box.box-solid.box-default>.box-header .btn,
.box.box-solid.box-default>.box-header a {
    color: #455a64;
}

.box.box-solid.box-primary>.box-header {
    color: #fff;
    background: #398bf7;
}

.box.box-solid.box-primary>.box-header .btn,
.box.box-solid.box-primary>.box-header a {
    color: #455a64;
}

.box.box-solid.box-info>.box-header {
    color: #fff;
    background: #398bf7;
}

.box.box-solid.box-info>.box-header .btn,
.box.box-solid.box-info>.box-header a {
    color: #455a64;
}

.box.box-solid.box-danger>.box-header {
    color: #fff;
    background: #fc4b6c;
}

.box.box-solid.box-danger>.box-header .btn,
.box.box-solid.box-danger>.box-header a {
    color: #455a64;
}

.box.box-solid.box-warning>.box-header {
    color: #fff;
    background: #ffb22b;
}

.box.box-solid.box-warning>.box-header .btn,
.box.box-solid.box-warning>.box-header a {
    color: #455a64;
}

.box.box-solid.box-success>.box-header {
    color: #fff;
    background: #26c6da;
}

.box.box-solid.box-success>.box-header .btn,
.box.box-solid.box-success>.box-header a {
    color: #455a64;
}

.box.box-solid>.box-header>.box-tools .btn {
    border: 0;
    box-shadow: none;
}

.box.box-solid[class*=bg]>.box-header {
    color: #fff;
}

.box .box-group>.box {
    margin-bottom: 5px;
}

.box .knob-label {
    text-align: center;
    color: #455a64;
    font-weight: 300;
    font-size: 12px;
    margin-bottom: .3em;
}

.box>.loading-img,
.box>.overlay,
.overlay-wrapper>.loading-img,
.overlay-wrapper>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.box .overlay,
.overlay-wrapper .overlay {
    z-index: 50;
    background: rgba(255, 255, 255, .7);
    border-radius: 3px;
}

.box .overlay>.fa,
.overlay-wrapper .overlay>.fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #000;
    font-size: 30px;
}

.box .overlay.dark,
.overlay-wrapper .overlay.dark {
    background: rgba(0, 0, 0, .5);
}

/*.box-body:after, .box-body:before, .box-footer:after, .box-footer:before, .box-header:after, .box-header:before {
      content: " ";
      display: table;
  }*/

.box-header {
    color: #455a64;
    display: block;
    padding: 0.8rem 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(97, 106, 120, 0.07);
}

.box-header.without-border {
    border-bottom: none;
}

.box-header.with-border {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.collapsed-box .box-header.with-border {
    border-bottom: none;
}

.box-header .box-title,
.box-header>.fa,
.box-header>.glyphicon,
.box-header>.ion {
    display: inline-block;
    margin: 0;
}

.box-title {
    z-index: auto;
}

.box-title.box-title-bold {
    font-weight: 600;
}

.box-title code {
    font-size: 10px;
}

.box .box-header .box-subtitle {
    font-weight: 300;
    margin-bottom: 0px;
    margin-top: 5px;
    color: #99abb4;
}

.box-header>.fa,
.box-header>.glyphicon,
.box-header>.ion {
    margin-right: 5px;
}

.box-header>.box-tools {
    position: absolute;
    right: 15px;
    top: 15px;
}

.box-header>.box-tools [data-toggle=tooltip],
.control {
    position: relative;
}

.box-bordered {
    border: 1px solid #ebebeb;
}

.box-shadowed {
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

.box-hover-shadow:hover {
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.07);
}

.box-transparent {
    background-color: transparent;
}

.box-header>.box-tools .dropdown-menu>li>a {
    color: #455a64;
}

.btn-box-tool {
    padding: 5px;
    font-size: 12px;
    background: 0 0;
    color: #97a0b3;
}

.btn-box-tool:hover,
.show .btn-box-tool {
    color: #606c84;
}

.btn-box-tool.btn:active {
    box-shadow: none;
}

.box-body {
    padding: 1.25rem;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.no-header .box-body {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.box-body>.table {
    margin-bottom: 0;
}

.box-body .fc {
    margin-top: 5px;
}

.box-body .full-width-chart {
    margin: -10px;
}

.box-body.no-padding .full-width-chart {
    margin: -9px;
}

.box-body .box-pane {
    border-radius: 0 0 0 3px;
}

.box-body .box-pane-right {
    border-radius: 0 0 3px;
}

.box-footer {
    border-top: 1px solid #f4f4f4;
    padding: 1.25rem;
    background-color: #fff;
    border-radius: 0 0 0px 0px;
}

.box-footer>*:last-child {
    margin-bottom: 0;
}

.box-controls {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.box-controls li>a,
.box-controls li>button {
    font-family: themify;
    font-size: 12px;
    display: inline-block;
    padding: 0 4px;
    margin: 0 4px;
    color: #929daf;
    opacity: .8;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.box-controls li>a:hover {
    color: #7460ee;
}

.box-controls li:first-child>a {
    margin-right: 0;
}

.box-controls .dropdown.show>a {
    color: #7460ee;
}

.box-controls [data-toggle="dropdown"],
.box-controls .box-btn-reload {
    font-size: 14px;
}

.box-btn-close::before {
    content: "\e646";
}

.box-btn-slide::before {
    content: "\e648";
}

.box-btn-maximize::before {
    content: "\e6e8";
}

.box-btn-fullscreen::before {
    content: "\e659";
}

.box-btn-prev::before {
    content: "\e64a";
}

.box-btn-next::before {
    content: "\e649";
}

.box-carousel .box-footer .carousel-indicators-outside {
    padding: 6px 0;
}

.box-body>*:last-child {
    margin-bottom: 0;
}

.box-img,
.box-img-top,
.box-img-bottom {
    border-radius: 0;
}

.box-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    opacity: 0;
    z-index: -1;
    -webkit-transition: .5s;
    transition: .5s;
}

.box-loading.reveal {
    opacity: 1;
    z-index: auto;
}

.box-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 0;
    z-index: 9999;
}

.box-fullscreen .box-btn-fullscreen {
    color: #7460ee;
}

.box-slided-up .box-content {
    display: none;
}

.box-slided-up .box-btn-slide::before {
    content: "\e64b";
}

.box-header-actions {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: -4px;
}

.box-header-actions>* {
    margin: 4px;
}

.rotate-45 {
    display: inline-block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rotate-90 {
    display: inline-block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-180 {
    display: inline-block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.blockquote {
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-left: .25rem solid #eceeef;
}

.blockquote-reverse {
    padding-right: 1rem;
    padding-left: 0;
    text-align: right;
    border-right: .25rem solid #eceeef;
    border-left: 0;
}

.blockquote {
    font-style: italic;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1rem;
    color: #616a78;
}

.blockquote p {
    font-size: 1.125rem;
    line-height: 1.875rem;
}

.blockquote a {
    color: #616a78;
}

.blockquote footer {
    color: #929daf;
    font-size: 0.875rem;
}

.blockquote footer::before {
    content: '\2014 \00A0';
}

.blockquote-inverse,
.blockquote-inverse footer {
    color: #fff;
}

.card-inverse {
    color: #fff !important;
    background-color: #465161;
}

.no-border {
    border: none;
}

.card-inverse h1,
.card-inverse h2,
.card-inverse h3,
.card-inverse h4,
.card-inverse h5,
.card-inverse h6,
.card-inverse .card-title,
.card-inverse small,
.card-inverse .card-controls li>a {
    color: #fff !important;
}

.flexbox {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  
  .flexbox .dropdown i {
    font-size: 14px;
  }
  
  .no-shrink {
    flex-shrink: 0;
  }
  
  .flex-justified>*, .flex-grow-all>*, .flex-cols-wide>*, .flex-col-wide, .flex-grow {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
  }
  
  .flexbox>* {
    margin-left: 4px;
    margin-right: 4px;
  }
  
  .flexbox>*:last-child {
    margin-right: 0;
  }
  
  .flexbox>*:first-child {
    margin-left: 0;
  }
  
  .list-inline>li.flexbox {
    display: -webkit-box;
    display: flex;
  }
  
  ul.flexbox {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .flexbox .list-inline>li {
    display: block;
  }
  
  .dropdown-toggle.no-caret::after {
    display: none;
  }
  
  .dropdown-item {
    color: #747e8e;
    font-weight: 300;
    padding: 4px 12px;
    width: auto;
    margin: 4px;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
  }
  
  .flexbox .dropdown a i {
    font-size: 1rem;
  }

  .logo-index {
    width: 500px !important;
  }
  
  .mt-12 {
    margin-top: 120px;
  }