/* Reset css */

@media(min-width: 768px) {
  .push-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
  }
}

/* 2.5 text color*/
.text-default, .text-default:hover, .text-default:active, .text-default:focus, .text-default:visited {
  text-decoration: none;
  color: #fff;
}
.text-white {
  color: #ffffff !important;
}
.text-danger {
  color: #ef5350 !important;
}
.text-muted {
  color: #98a6ad !important;
}
.text-primary {
  color: #1e88e5 !important;
}
.text-warning {
  color: #ffd740 !important;
}
.text-success {
  color: #33b86c !important;
}
.text-info {
  color: #29b6f6 !important;
}
.text-inverse {
  color: #212121 !important;
}
.text-pink {
  color: #ec407a !important;
}
.text-purple {
  color: #7e57c2 !important;
}
.text-dark {
  color: #797979 !important;
}

/* Padding - Margin */

.p-0 {
  padding: 0px !important;
}
.p-5 {
  padding: 5px;
}
.p-10 {
  padding: 10px;
}
.p-t-0 {
  padding-top: 0px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.m-0 {
  margin: 0px !important;
}
.m-r-5 {
  margin-right: 5px;
}
.m-r-10 {
  margin-right: 10px;
}
.m-r-15 {
  margin-right: 15px !important;
}
.m-l-10 {
  margin-left: 10px;
}
.m-l-15 {
  margin-left: 15px;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-t-0 {
  margin-top: 0px;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.m-t-20 {
  margin-top: 20px;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.m-b-0 {
  margin-bottom: 0px;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-b-15 {
  margin-bottom: 15px;
}
.m-b-30 {
  margin-bottom: 30px;
}

/* ---- Width-Sizes ---*/

.w-xs {
  min-width: 80px;
}
.w-sm {
  min-width: 95px;
}
.w-md {
  min-width: 110px;
}
.w-lg {
  min-width: 140px;
}

/* Extra */

.t-t-u {
  text-transform: uppercase;
}

.m-h-50 {
  min-height: 50px;
}
.l-h-34 {
  line-height: 34px;
}
.font-light {
  font-weight: 300;
}
.wrapper-md {
  padding: 20px;
}
.pull-in {
  margin-left: -15px;
  margin-right: -15px;
}
.b-0 {
  border: none !important;
}
.no-border {
  border: none;
}
.d-block {
  display: block;
}
.bx-shadow {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
}