body{
  font-family: "Roboto", sans-serif;
  background-color: rgba(239, 243, 246, 0.55);
  color: #737373;
  min-height: 100%;
}
a{
  color: #02bdf2;
}
.md-12{font-size: 12px; height: 12px; width: 12px;}
.md-14{font-size: 14px; height: 14px; width: 14px;}
.md-16{font-size: 16px; height: 16px; width: 16px;}
.md-18{font-size: 18px; height: 18px; width: 18px;}
.md-20{font-size: 20px; height: 20px; width: 20px;}
.md-22{font-size: 22px; height: 22px; width: 22px;}
.md-24{font-size: 24px; height: 24px; width: 24px;}
.md-26{font-size: 26px; height: 26px; width: 26px;}
.md-28{font-size: 28px; height: 28px; width: 28px;}
.md-32{font-size: 32px; height: 32px; width: 32px;}
.md-34{font-size: 34px; height: 34px; width: 34px;}
.md-36{font-size: 36px; height: 36px; width: 36px;}
.md-48{font-size: 48px; height: 48px; width: 48px;}
.md-50{font-size: 50px; height: 50px; width: 50px;}
.profile-thumb{
  display: block;
}
sup{
  font-size: 16px;
  font-weight: bold;
  position: relative;
  top: -3px;
  padding-right: 2px;
}
.small-text sup {
    font-size: 12px;
}
.small-text {
    font-size: 10px;
}
.expand{
  position: relative;
  -webkit-animation-name: expand;
  animation-name: expand;
  -webkit-animation-duration: .9s;
  animation-duration: .9s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.expand:hover{
}
@-webkit-keyframes expand {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
  }
}
@keyframes expand {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.pagination-wrap{
  text-align: center;
  border-top: solid 1px rgba(151,151,151,0.13);
}
.pagination-wrap .pagination{
  margin: 10px 0;
}
.pagination>li>a, .pagination>li>span{
  border: none;
  color: #8ca0b3;
  font-size: 12px;
  font-weight: 500;
  height: 28px;
  cursor: pointer;
}
.pagination>li>a.active, .pagination>li>span.active{
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
/**** Inputs ****/
.form-control{
  box-shadow: none;
  border-color: rgba(151,151,151,0.4);
  height: 35px;
  border-radius: 2px;
  color: #232527;
  font-size: 12px;
  font-weight: 500;
}
.form-control:focus{
  border-color: #56b9f0;
}
.has-error .form-control {
  border-color: #e12c2c;
}
.has-error .help-block{
  color: rgba(225,44,44,0.8);
  font-size: 12px;
  font-weight: 400;
}
/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  transition: all .3s ease;
}
.slide-fade-leave-active {
  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(10px);
  opacity: 0;
}
[v-cloak] { display: none; }
.success-message{
  position: fixed;
  bottom: 5%;
  left: 2%;
  z-index: 999;
  background-color: #269563;
  border-color: #339367;
  color: #fff;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control{
  box-shadow: none;
  background-color: rgba(246,247,250,0.4);
}
textarea.form-control{
  min-height: 77px;
}
input[type=checkbox], input[type=radio] {
    display: none;
}
.custom-checkbox, .custom-radio {
    width: 18px;
    height: 18px;
    background-color: #FFF;
    border: 1px solid rgba(151,151,151,0.4);
    border-radius: 2px;
    display: block;
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
}
.custom-checkbox i {
    display: none;
    color: #fff;
}
.custom-radio{
  border-radius: 23px;
}
input[type=radio]:checked + .custom-radio{
  background-color: #02bdf2;
  border: solid #02bdf2 1px;
  position: relative;
}
input[type=radio]:checked ~ .option{
  color: #02bdf2;
}
input[type=radio]:checked + .custom-radio::after{
  position: absolute;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50px;
  content: '';
}
input[type=checkbox]:checked + .custom-checkbox {
    background-color: #02bdf2;
    border: solid #02bdf2 1px;
}
input[type=checkbox]:checked + .custom-checkbox i {
    display: inline-block;
    color: #FFF;
    position: relative;
    top: -1px;
    left: -1px;
}
.custom-checkbox + label,
.custom-radio + label{
  color: #94acc6;
  font-size: 12px;
  font-weight: 500;
  width: calc(100% - 28px);
}
input[type=checkbox][disabled] + .custom-checkbox,
input[type=radio][disabled] + .custom-radio{
  background-color: rgba(246,247,250,0.4);
  cursor: not-allowed;
}
input[type=checkbox][disabled] + .custom-checkbox + label,
input[type=radio][disabled] + .custom-radio + label{
  color: rgba(148,172,198,0.5);
  cursor: not-allowed;
}
.text-success {
    color: #21ae23;
}
.form-holder{
  box-shadow: 0 0 10px 0px #ccc;
  padding: 20px;
  position: relative;
}
.form-holder .ajax-loader{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  text-align: center;
}
.form-holder .ajax-loader img{
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.search-input{
  position: relative;
  background-color: transparent;
  margin-bottom: 0;
}
.search-input .form-control{
  padding-left: 30px;
  color: rgba(22,22,22,0.29);
  background-color: #eeeeee;
}
.search-input .material-icons{
  position: absolute;
  left: 7px;
  top: 7px;
  color: #bdbdbd;
}
.back-to-page .material-icons{
  margin: -1px 4px 0 0;
  display: inline-block;
  vertical-align: top;
}
/*** Alerts**/
.alert-dismissable, .alert-dismissible{
  position: relative;
}
.alert-transparent {
    color: #797979;
    background-color: transparent;
    border: none;
    margin-bottom: 0;
    padding: 18px 40px 18px 48px;
}
.alert-dismissable .close, .alert-dismissible .close{
  position: absolute;
  top: 10px;
  right: 0;
}
.alert-dismissable-icon {
    position: absolute;
    left: 0;
    top: 10px;
}
.alert-transparent .alert-link {
    color: #797979;
    font-weight: 400;
    text-decoration: underline;
}
.alert-transparent .alert-dismissable-icon{
  color: #02bdf2;
}
/**** Buttons modifications ****/
.btn{
  padding: 8px 34px;
  border-radius: 2px;
  font-weight: 500;
  border: none;
}
.btn-small{
  padding: 6px 15px;
}
.btn-small-2{
  padding: 10px 15px;
}
.btn-smaller{
  padding: 3px 6px;
  font-size: 13px;
}
.btn-primary{
  background-color: #02bdf2;
}
.white-btn{
  height: 35px;
  border: none;
  color: #02bdf2 !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  background-color: #ffffff !important;
}
.white-btn:hover,
.white-btn:focus,
.white-btn:active{
  outline: none;
  box-shadow: none;
  background-color: #efefef !important;
}
.main-header-profile {
    margin-top: 10px;
}
.profile-name {
    color: #999999;
    display: block;
    font-weight: 400;
    cursor: pointer;
}
.profile-name span {
    margin-top: 6px;
    display: inline-block;
    font-size: 12px;
}
.profile-name .material-icons {
    vertical-align: top;
    position: relative;
    top: 7px;
}
.main-header-profile .dropdown-menu {
  top: 130%;
  left: auto;
  right: 0;
}
.navbar-default{
  background: none;
  border: none;
  margin-bottom: 0;
}
.main-header-tab {
    border: none;
    margin-top: 3px;
}
.main-header-tab>li>a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border: none;
    height: 40px;
}
.main-header-tab>li.active>a {
    color: #02bbf1;
    background: none;
    border: none;
}
.main-header-tab>li.active>a:focus,
.main-header-tab>li>a:focus,
.main-header-tab>li.active>a:hover,
.main-header-tab>li>a:hover {
    color: #02bbf1;
    border: none;
    background: none;
}
.dropdown-menu>li>a{
  color: #8ca0b3;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 7px 21px;
  margin: 0;
  position: relative;
  background-color: transparent;
  border: none;
  letter-spacing: 0.71px;
  border-radius: 0;
  text-align: right;
}
.dropdown-menu>li.active>a{
  background-color: #f5f5f5;
  color: #8ca0b3;
  border: none;
}
.dropdown-menu>li.active>a::before,
.dropdown-menu>li>a::before{
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  content: "";
  height: 100%;
  width: 3px;
  background-color: #02bbf1;
}
.dropdown-menu>li>a:hover{
  color: #8ca0b3;
  font-weight: 500;
  border: none;
  background-color: #f5f5f5;
}
.dropdown-menu>li>a:hover::before{
  display: block;
}

.main-header-profile .navbar-nav{
  list-style: none;
  padding: 0;
}
.main-header-profile .navbar-nav li a{
  display: inline-block;
  padding: 0 10px;
  color: #fff;
}
.main-header-profile .navbar-nav li a:hover{
  color: #02bdf2;
}
.order-id-col{
  width: 10% !important;
}
.reason-col{
  width: 15% !important;
}
header {
    padding: 25px 33px;
    background-image: -webkit-linear-gradient(to top, #485173 0%, #24283e 100%);
    background-image: -o-linear-gradient(to top, #485173 0%, #24283e 100%);
    background-image: -moz-linear-gradient(to top, #485173 0%, #24283e 100%);
    background-image: linear-gradient(to top, #485173 0%, #24283e 100%);
}
.site-title-wrap{
  border-right: 2px solid rgba(255, 255, 255, 0.27);
}

.site-title {
    margin-top: 5px;
    margin-bottom: 6px;
    display: block;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}
a.site-title{
  display: inline-block !important;
}
a.site-title:hover{
  /* color: #02bdf2 !important; */
  color: #fff !important;
  text-decoration: none !important;
}
.page-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #414968;
    margin: 0 0 10px;
    display: block;
}
.page-subtitle{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #414968;
  margin: 0;
  display: block;
}
.top-bar {
    padding: 27px 33px 0;
    /* background-color: #fff; */
}
.main-content {
    padding: 0 33px;
    margin-top: 26px;
    margin-bottom: 40px;
}
.content-wrapper{
  margin: 20px 0;
}
.refund-reason-form{
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}
.refund-reason-form .refund-title{
  text-align: center;
  margin: 25px 0 20px;
}
.refund-reason-form form{
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  margin: 10% auto 0;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #eee;
}
.close-refund-request{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.refund-reason-form textarea{
  margin-top: 15px;
}
/* .refund-reason-form .btn{
}
 */
.refund-reason-form .loader{
  display: block;
  text-align: center;
  margin: 0 0 20px;
}
.relative{
  position: relative;
}
.alert-dismissible.refund-alert{
  position: fixed;
  top: 15%;
  right: 2%;
}
.alert-dismissible.refund-alert .close{
  top: 2px;
  right: 7px;
}
#ajax-loader                                                 {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(225, 225, 225, 0.87);
}
#ajax-loader img{
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.table-wrap,
.white-wrapper{
  background-color: #fff;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.fluid-table{
  max-width: none;
}
.fixed-table table{
  width: 100%;
  table-layout: fixed;
  margin-bottom: 0;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f95c;
}
.table-responsive table > tbody > tr > td{
  min-width: 100px;
  vertical-align: middle;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th{
  font-size: 13px;
  word-wrap: break-word;
}
.table>thead>tr>th:first-of-type{
  width: 4%;
}
.table>thead>tr>th:nth-child(2){
  width: 12%;
}
.table>thead>tr>th:nth-child(3){
  width: 15%;
      text-align: center;
}

.user-table .table>thead>tr>th:first-of-type{
  width: 20%;
}
.user-table .table>thead>tr>th:nth-child(2){
  width: 30%;
}
.user-table .table>thead>tr>th:nth-child(3){
  width: 15%;
  text-align: left;
}
.user-table table tr td:last-of-type {
    padding: 3px;
}
.permission-table>thead>tr>th:first-of-type,
.roles-table>thead>tr>th:first-of-type{
  width: auto;
}
.roles-table>thead>tr>th:nth-child(2){
  width: auto;
  text-align: left;
}
.permission-table>thead>tr>th:nth-child(2){
  width: auto;
  text-align: center;
}
td.rr-btn-col{
  min-width: 120px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* .table>thead>tr>th:nth-child(4){
  width: 16%;
} */
.table .form-control{
  min-width: 100px;
}
.top-content{
  margin: 10px 0 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(221, 221, 221);
}
label{
  color: #737373;
}
.inline-form-label{
  padding-right: 0;
  font-size: 14px;
  margin: 8px 0 7px;
}
.inline-form-label-lead{
  font-size: 12px;
  font-weight: 400;
  display: block;
}
.setup-container {
    position: relative;
    padding: 46px 15px 97px;
}
.setup-container-title,
.title {
    font-size: 28px;
    font-weight: 300;
    color: #414968;
    margin-bottom: 58px;
    text-align: center;
}
.title{
  margin-bottom: 30px;
}
.login-form, .setup-form {
    width: 100%;
    margin-top: 76px;
    max-width: 470px !important;
    margin-left: auto;
    margin-right: auto;
}
.small-form-container{
  width: 100%;
  max-width: 470px !important;
  margin-left: auto;
  margin-right: auto;
}
.add-users .password{
  position: relative;
}
.add-users .password input{
  padding-right: 40px;
}
.add-users .preview-password{
  position: absolute;
  bottom: 5px;
  right: 9px;
  color: #737373;
  cursor: pointer;
}
.modal-footer{
  text-align: center;
}
.modal-dialog{
  z-index: 9999;
}
.login-form .login-btn {
    margin-top: 20px;
}
.login-form .forgot-password {
    color: #414968;
    text-align: center;
}
.edit-order,
.delete-order{
  display: inline-block;
  margin-top: 4px;
}
.delete-order{
  margin-left: 10px;
  color: red;
}
.floating-button{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#02bdf2;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
  z-index: 999;
}
.add-order {
    max-width: 1000px;
    margin: 0 auto 20px;
}
.add-order .material-icons{
    vertical-align: top;
    margin: -3px 6px 0 0;
}
.add-order span{
    display: inline-block;
    vertical-align: top;
}
.float-icon{
  line-height: 60px;
}
@media (max-width: 991px){
  .site-title-wrap{
    border: none;
  }
}
@media (max-width: 768px){
  .inline-form-label{
    text-align: left;
  }
  .fixed-table{
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  .main-content{
    padding: 0;
  }
  .table-wrap{
    padding: 10px;
  }
  .site-title{
    font-size: 24px;
  }

}
@media (max-width: 680px){

}
@media (max-width: 480px){
}

.no-margin{
  margin: 0;
}
.display-block{
  display: block;
}
.inline-block{
  display: inline-block;
}

.has-error{
  color:#FF0000;
}

[v-cloak] {
    display: none;
  }
.rr-btn-col{
  min-width: 120px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
