/* Mixins */

.ui-animation{
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nowrap{ white-space: nowrap; }
.mt0{ margin-top: 0px !important; }
.mt10{ margin-top: 10px !important; }
.mt20{ margin-top: 20px !important; }
.mt30{ margin-top: 30px !important; }
.mt40{ margin-top: 40px !important; }
.mt50{ margin-top: 50px !important; }
.mr10{ margin-right: 10px !important; }
.ml5{ margin-left: 5px !important; }
.mb0{ margin-bottom: 0px !important; }
.active-color{ color: @active-color !important; }
.display_none{ display: none; }
.display-block{ display: block; }
.float{ float: left; }
.vertical-line{ width: 2px; background: #ccc; height: 40px; margin: 0 auto; }
.field_with_errors_inline .field_with_errors{
    display: inline-block;
}
.no_strong{ font-weight: 400 !important; }
img.img-border{
  border: 1px solid #333 !important;
}
img.img-thumb{
  height: auto;
  width: auto;
  max-width: 100px;
  max-height: 100px;
}
.color-red{ color: red !important; }


/* Form */

.box-icon-wrap{
	position: relative;
    padding: 0 0 0 55px;
}
.box-icon-wrap .box-icon{
	display: inline;
    position: absolute;
    top: -3px;
    font-size: 30px;
    color: #dbdfe2;
    width: 38px;
    text-align: center;
     left: 0;
}
form{
	margin: 0 0 30px 0;
}
form .form-control{
	background: #fff;
	border-color: #D9DFE3;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 9px 12px;
	max-width: 100%;
	border-radius: 1px;

}
form .form-control:focus {
	/*   border-color: @primary-color; */
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
form input.form-control{
	height: 40px;
}
form span.text-control{
	display: block;
	margin: 8px 0 0 0;
}
form .field_with_errors .form-control{
	border-color: #DD4EAF;
}
form .field_with_errors .help-inline,
form .field_with_errors .help-block{
	color: #DD4EAF;
}
form .field_with_ok .form-control{
	border-color: #34D1A1;
}
form .field_with_ok .help-inline,
form .field_with_ok .help-block{
	color: #34D1A1;
}
form label{
	color: #0B6391;
	font-weight: 500;
}
form .required label{
  display: inline-block;
  vertical-align: top;
}
form .required label:after{
	margin: -.2em 0 0 .2em;
    content: '*';
    color: red;
}
.form-control.wxs, div.wxs{
	width: 100px;
    max-width: 100%;
}
.form-control.wsm, div.wsm{
    width: 250px;
    max-width: 100%;
}
.form-control.wmd, div.wmd{
    width: 400px;
    max-width: 100%;
}
.form-control.wlg, div.wlg{
    width: 600px;
    max-width: 100%;
}
.form-control.wxlg, div.wxlg{
    width: 800px;
    max-width: 100%;
}
.help-inline {
    display: inline;
    padding: 0 0 0 8px;
    color: #a6a6a6;
}
.form-group{
	margin-top: 20px;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #f0f3f5;
    border-color: #D9DFE3;
}


/* Buttons */

.btn{
	border-radius: 1px;
	padding: 10px 18px;
}
.btn-primary{
	border-color: #34D1A1;
	background: #34D1A1;
}
.btn-primary:hover {
    color: #fff;
    background-color: #2BBB8F;
    border-color: #2BBB8F;
}
.btn-default{
	color: #0B6391;
}
.btn-default:hover {
	color: #0B6391;
	background-color: #F5F7F8;
	border-color: #D9DFE3;
}


/* Tables */

ul.actions{
	padding-left: 0;
    list-style: none;
    margin-left: -5px;
    white-space: nowrap;
    margin: 0;
    text-align: right;
}
ul.actions li{
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}
table, .table{
	margin: 12px 0 15px 0;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #F5F7F8;
}
.table-hover > tbody > tr:hover,
.table-striped > tbody > tr:nth-of-type(odd):hover {
    background-color: #E8EDF0;
    color: #0B6391;
}
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border-right: 1px solid #EBEAEA;
    border-left: 1px solid #EBEAEA;
    border-top: 0;
    border-bottom: 0;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th{
    border: 1px solid #EBEAEA;
}
.table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
    padding: 15px 10px;
}
th{
	font-weight: 400;
	color: #0B6391;
	font-size: 16px;
}


/* Pagination */

.pagination {
    margin: 20px 0 10px 0;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 1px;
    border-top-left-radius: 1px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 1px;
    border-top-right-radius: 1px;
}
.pagination > li > a, .pagination > li > span {
    padding: 9px 14px;
}
.pagination > li > a, .pagination > li > span{
	color: #0B6391;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
    background-color: #34D1A1;
    border-color: #34D1A1;;
}


/* Errors */

.alert-danger {
    color: #DD4EAF;
    background-color: #fff3fb;
    border-color: #DD4EAF;
}


/* Login */

html.login,
html.login body{
	height: 100%;
}

html.login body .wrap{
	min-height: 100%;
}
html.login body{
	background: #2ed6b3 url('/assets/img/gradient.png') repeat-x top left;
	color: #fff;
}
html.login body .wrap{
	background: transparent url('/assets/img/bg.png') top left;
	text-align: center;
}
.login .wrap-box{
	background: #fff;
	width: 500px;
	max-width: 100%;
    margin: 50px auto 25px auto;
	padding: 30px 25px;
	border-radius: 2px;
}
.login .wrap-box .login-form{
	text-align: left;
	color: #6c8794;
}
.login .wrap-box .logo{
	padding: 35px 0px 10px 0;
}
.login .footer{
	font-size: 12px;
	padding-bottom: 60px;
}
.login .wrap-box .login-form input.form-control{
	height: auto;
	padding: 16px 15px;
	border-radius: 2px;
}
.login .wrap-box .login-form .btn-primary{
	width: 100%;
	padding: 18px 15px;
	border-radius: 2px;
}
@media (max-width: 350px) {
	.login .wrap-box .login-form #forget-password{
		float: none !important;
		display: block;
		margin: 15px 0 30px 0;
	}
}
@media (max-width: 767px) {
	html.login body .wrap{
		padding: 20px;
	}
	.login .wrap-box{
	    margin: 0px auto 15px auto;
    }
}

strong{
	font-weight: 500;
}
h1 small{
	margin-left: 10px;
}
.search-box{
	margin: 15px 0 20px 0;
}
.search-box .form-group{
	margin: 0;
}
.search-box input[type=text]{
	width: 200px;
	max-width: 100%;
}
.mw200{
	max-width: 200px;
}
label {
    font-weight: 500;
}
.table .form-group{
	margin: 0 0 10px 0;
}
#map_canvas{
	background: #f5f5f5;
	height: 300px;
	margin-top: 15px;
}
.ml10{ margin-left: 10px; }
.ml30{ margin-left: 30px; }

.select2-container{
	display: block;
	width: 600px !important;
    max-width: 100% !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single{
	border: solid #d9dfe3 1px;
	border-radius: 1px;
	padding: 9px 12px;
	height: auto;
	min-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
    right: 3px;
}

.what_box,
.date_box{
	border: 1px solid #d9dfe3;
	border-left: 5px solid #d9dfe3;
	margin: 20px 0 0 30px;
	padding: 0px 20px;
}
.what_box h3{
	margin-bottom: 23px;
}
.what_box h3 a.collapsed i:before{
    content: "\f0da";
}
.what_add{
	margin: 5px 0 0 0;
}
.statistics_what_add{
	margin: 5px 0 0 0;
}
.date_box input[type=checkbox]{
	margin: 0 2px 0 10px;
}
#rep_selector{
	margin: 25px 10px 10px 25px;
}
@media (min-width: 768px) {
	.toggled #rep_selector{
		display: none;
	}
}
#rep_selector .btn{
	width: 100%;
	text-align: left;
}
#rep_selector .btn:after{
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 16px;
    color: #6b717d;
}

#rep_selector.open .btn:after {
    content: "";
}

/* Dropzone */
.dz .dz-preview{
	padding: 0;
	margin: 10px;
}
.dz .dz-preview .dz-details{
	position: relative;
	margin: 10px 10px 10px 10px;
	float: left;
	display: inline-block;
    vertical-align: top;
    padding: 0px;
    min-height: 100px;
    margin: 0;
    width: 120px;
    height: 120px;
    background: #f5f5f5;
}
.dz .dz-preview .dz-details,
.dz .dz-preview{

}
.dz{
	margin: 5px 0 25px 0;
    border: 2px #ccc dashed;
    padding: 10px 10px;
}
.dz:after{
	 clear: both;
	 display: table;
     content: " ";
}
.dz .dz-preview .dz-remove {
    position: absolute;
    top: -2px;
    right: -13px;
    z-index: 99;
    font-size: 20px;
}
.dz.dz-clickable,
.dz.dz-clickable .dz-message,
.dz.dz-clickable .dz-message * {
  cursor: pointer;
}
.dz .dz-message {
  font-weight: 400;
  text-align: center;
  margin: 2em 0;
}
.dz .dz-message .note {
  font-size: 0.8em;
  font-weight: 300;
  display: block;
  margin-top: 1.4rem;
}
.dz input[type=file]{
	margin: 30px auto 0 auto;
}

/* Layout */
@media (min-width: 768px){
	.wrap .page-wrap .page-wrap-content {
   		float: left;
   		width: 100%;
   	}
}

/* Contents */
.filters .active{
	color: #6c8794;
	font-weight: 500;
}
.filters a{
	margin: 0 4px;
}

.stats h2 + small{
	display: block;
}

.stats .lead{
	font-size: clamp(13px, 1.5vw,30px);
	margin-bottom: 5px;
	color: #34d1a1;
}
.stats .lead small{
	font-size: clamp(5px, 0.7vw,11px);
	color: #6c8794;
}

.list-cart li{
	border-bottom: 2px solid #e8e8e8;
    padding: 0 10px 5px 10px;
    margin: 0 0 15px 0;
    background: #f7f7f7;
    border-radius: 3px;
}
.list-cart li strong{
	margin-top: 5px;
    display: inline-block;
}


.search-box .select2-container{
	width: 200px !important;
	display: inline-block;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 1.42857;
}
.red{
	color: #d13434;
}

	.stats-container
	{
		display: flex;
		 margin-top: 40px;
		display: flex;
	    margin-top: 40px;
	    justify-content: space-evenly;
	    flex-wrap: wrap;
	}
	.table-responsive
	{
		margin-right: 20px;
	}
	.filter
	{
		margin-left: 5px;
	}
	.filter-label
	{
		margin-left: 10px;
	}
	.filters
	{
		margin-bottom: 20px;
		text-align:right;
	}
	.cat-what
	{
		padding: 3px; margin: 4px; font-size: 12px; background-color: #e4e4e4; border: 1px solid #aaa; border-radius: 4px;
	}
	.what-text
	{

	}
	.what-value,.company-value
	{
      font-size: 13px;
	}
	.what-name
	{
     width: 350px;
     font-size: 13px;
	}
	>@keyframes lds-rolling {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes lds-rolling {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.lds-rolling {
  /*position: relative;*/
}
.lds-rolling div,
.lds-rolling div:after {
    /*position: absolute;*/
    width: 25px;
    height: 25px;
    border: 3px solid #34d1a1;
    border-top-color: transparent;
    border-radius: 50%;
}
.lds-rolling div {
  -webkit-animation: lds-rolling 1s linear infinite;
  animation: lds-rolling 1s linear infinite;
  top: 100px;
  left: 100px;
}
.lds-rolling div:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.lds-rolling {
  width: 50px !important;
  height: 50px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}


.switch { position: relative; display: inline-block; width: 49px; height: 20px; } .switch input.switch-input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 2px; background-color: white; -webkit-transition: .4s; transition: .4s; } input.switch-input:checked + .slider { background-color: #2196F3; } input.switch-input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input.switch-input:checked + .slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); } /* Rounded sliders */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; }
