@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,600,700');
/*
    Base styling
*/
body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  width: 100%;
  overflow-y: scroll;
  color: #333333;
}
.container-main{
  padding-bottom: 20px;
  position: relative;
}
.navbar-brand img{
	height: 45px;
	margin-top: -10px;
}
.main-header{
  position: fixed;
  width: 100%;
  height: 55px;
  border-bottom: 1px solid #CCC;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(50 50 50 / 50%);
  -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.5);
  box-shadow: 0px 0px 10px 0px rgb(50 50 50 / 50%);
  top: 0;
  left: 0;
  padding: 5px 15px;
  z-index: 4;
  background: #FFF;
}
.main-header-placeholder{
  height: 55px;
}
.main-menu{
  max-width: 250px !important;
  border-right: 1px solid #EEE;
}
.main-menu-logo > img{
    width: 180px;
    padding: 15px;
    display: block;
}
.main-menu .off-canvas-toggle{
  padding: 19px 16px;
  color: #000;
}
.login-form{
	padding: 0 30px;
	border: #CCC solid 1px;
	border-radius: 10px;
	background: #FFF;
}
.mb-15{
 	margin-bottom: 15px;
}
.mt-15{
 	margin-top: 15px;
}
.mb-30{
	margin-bottom: 30px;
}
.mt-30{
	margin-top: 30px;
}
.input{
  margin-bottom: 15px;
}
.actions a{
  margin-right: 10px;
}
.edit-images .image img{
  height: 150px;
}
.edit-images .image{
  margin: 10px 10px 10px 0;
  float: left;
  border: thin solid #ccc;
  position: relative;
  background: #FFF;
}
.edit-images .image input[type="checkbox"]{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px;
  height: 20px;
  width: 20px;
}
.ajax-edit-input{
  display: none;
}
.edit-images .image i{
  position: absolute;
  top: 10px;
  right: 10px;
}
#shipit .alert{
  float: right;
  margin-top: 15px;
  margin-right: 15px;
}
.ajaxForm .alert{
  margin-top: 15px;
}
.dropdown-menu > li.no-link {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.optionItemsTable tbody > tr:nth-child(2) > td:nth-child(1) > a:nth-child(1), .optionItemsTable tbody > tr:nth-child(2) > td:nth-child(1) > br {
  display: none;
}

.optionItemsTable tbody > tr:last-child > td > a:last-child {
  display: none;
}

.option-item{
  background: #FFF;
  border-radius: 5px;
  padding: 15px;
  border: 1px solid #CCC;
  margin-bottom: 15px;
}

.option-item-header h4{
  margin: 0;
}

.option-item-header{
  border-bottom: 1px solid #CCC;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.option-item-options{
  float: right;
}

.option-item-options a{
  margin-left: 5px;
}

.option-item.out .option-item-body{
  display: none;
}

.multiselect-native-select{
  display: block;
}

.btn{
  position: relative;
}

.btn:before{
  font: normal normal normal 20px/1 FontAwesome;
  content: "\f110";
  display: block;
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -10px;
  opacity: 0;
  z-index: 2;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn.not-loading:before{
  display: none !important;
}

.btn:after{
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn[disabled]:before{
  opacity: 1;
}

.btn[disabled]:after{
  opacity: 0.5;
}

.actions-bar{
  margin-bottom: 15px;
  border-bottom: 1px solid #CCC;
  padding-bottom: 5px;
}

.filterBtn{
  float: right;
}

.filterBtn .dropdown-menu{
  padding: 5px;
}

.filterBtn .form-control{
  width: 100% !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.no-padding-right{
  padding-right: 0px;
}
.dropdown-menu > li.dropdown-title{
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
.statuses-nav{
    font-size: 12px;
}
.statuses-nav > li > a{
    padding: 6px 8px;
}
.statuses-nav .badge{
    font-size: 10px;
}
.ml-5{
    margin-left: 5px;
}
.mr-5{
  margin-right: 5px;
}
.user{
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-right: none;
    border-left: none;
}
.user .fa-user{
    font-size: 30px;
    float: left;
    margin-right: 10px;
    margin-top: 3px;
}
.off-canvas{
  width: 100%;
  position: fixed;
  max-width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #FFF;
  transition: .3s ease-in-out;
  z-index: 1060;
}
.off-canvas.left{
  transform: translateX(-100%);
}
.off-canvas.right{
  transform: translateX(100%);
}
.off-canvas.top{
  transform: translateY(-100%);
}
.off-canvas.bottom{
  transform: translateY(100%);
}
.off-canvas.active{
  transform: translateY(0);
  transform: translateX(0);
}
.display-inline{
  display: inline !important;
}
.select-narrow{
  width: auto !important;
}
.tab-content-bordered{
  border-right: thin solid #CCC;
  border-bottom: thin solid #CCC;
  border-left: thin solid #CCC;
  padding: 5px;
}
.panel-dashboard h1,.panel-dashboard h2,.panel-dashboard h3,.panel-dashboard h4{
  margin-top: 0;
}
.valign-middle{
  display: table;
  table-layout: fixed;
}
.valign-middle > div {
  display:table-cell;
  vertical-align:middle;
  text-align:center;
}
.product-description img{
  max-width: 100%;
}
.row-eq-height{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.multi-input-form .form-group{
  margin-right: 10px;
}
.multi-input-form{
  margin-bottom: 15px;
}
.multi-input-form button[type="submit"]{
  margin-top: 25px;
}
.qrcode {
  width:160px;
  height:160px;
  margin-top:15px;
  display: inline-flex;
}
.youtube-short {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* Proporción vertical 9:16 */
  overflow: hidden;
}
.youtube-short iframe {
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 9 / 16; /* Proporción vertical 9:16 */
}