/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}
/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em}div.dataTables_wrapper div.dataTables_info{padding-top:10px;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;text-align:center}div.dataTables_wrapper div.dataTables_paginate{text-align:right}div.dataTables_wrapper div.mdl-grid.dt-table{padding-top:0;padding-bottom:0}div.dataTables_wrapper div.mdl-grid.dt-table>div.mdl-cell{margin-top:0;margin-bottom:0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:before,table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:before,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:11px;display:block;opacity:0.3;font-size:1.3em}table.dataTable thead .sorting:before,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:before{right:1em;content:"\2191"}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{right:0.5em;content:"\2193"}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:after{opacity:1}table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:after{opacity:0}
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: "Trebuchet MS" !important;
}

main {
  flex: 1 0 auto;
}

.autocomplete {
    display: -ms-flexbox;
    display: flex;
}
.autocomplete .ac-users {
    padding-top: 10px;
}
.autocomplete .ac-users .chip {
    -ms-flex: auto;
    flex: auto;
    margin-bottom: 10px;
    margin-right: 10px;
}
.autocomplete .ac-users .chip:last-child {
    margin-right: 5px;
}
.autocomplete .ac-dropdown .ac-hover {
    background: #eee;
}
.autocomplete .ac-input {
    -ms-flex: 1;
    flex: 1;
    min-width: 150px;
    padding-top: 0.6rem;
}
.autocomplete .ac-input input {
    height: 2.4rem;
}

#searchAutocomplete-icon{
	cursor: pointer;
}

@media print {
	
	.noPrint, .noPrint * {
		display: none !important;
	}
	
	.div-title-padrao {
		display: none !important;
	}
	
	.page-break {
	  page-break-before: none;
	  page-break-after: avoid;
	}
	html, body{
		height: 99%;
		margin: 0 0 0 0;
	}
	a[href]:after {
    	content: none !important;
	}
	.second-title{
		margin-left: 30%;
		margin-top: 2%;
		margin-bottom: 2%;
	}
	.first-title{
		display: none;
	}
	
	.tabprint tr, th, td{
		border: solid !important;
		border-width: 1px !important;
    }
}


/*DIV INLINE BLOCK*/
.div-float{
        float: left;
        width: 200px;
        height: 280px;
        margin: 2em;
        }
        .div-clear {
        clear: left;
        }
        .div-inline {
        display: inline-block;
        width: 200px;
        height: 280px;
        margin: 1em;
}

.mytabdescription{
	font-size: 0.8em !important;
	white-space: normal !important;	
}

.mytab{
	font-size: 0.5em;
	font-style: normal;
}

#singleDropdown{
	width: 100% !important;
	max-height: 400px !important;
}

#singleDropdownEscola{
	width: 100% !important;
	max-height: 400px !important;
}

#modalajaxloader{
	transform: translateY(150%) !important;
}

.ajaxWorking{
    background-color: #ffffff;
    background-image: url("http://loadinggif.com/images/image-selection/3.gif");
    background-size: 20px 20px;
    background-position:right center;
    background-repeat: no-repeat;	
}

input {
	color: black !important;
}

.input-field .prefix.active {
     color: #0003ff !important;
}

   
.gradientbackg3 {
background: rgba(71,107,130,1);
background: -moz-linear-gradient(top, rgba(71,107,130,1) 0%, rgba(0,0,0,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,107,130,1)), color-stop(100%, rgba(0,0,0,1)));
background: -webkit-linear-gradient(top, rgba(71,107,130,1) 0%, rgba(0,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(71,107,130,1) 0%, rgba(0,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(71,107,130,1) 0%, rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(71,107,130,1) 0%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476b82', endColorstr='#000000', GradientType=0 );
}

.gradientbackg4 {
background: rgb(255,255,255);  
}


#modaluserlogin { width: 50% !important;}

.brand-logo-footer img{
	width: 50% !important;
	height: auto;
}

#qtdTotalCart{
	color: black !important;
	font-weight: bold !important;
}

#imgCart{
    position: relative !important;
    text-align: center;
    font-weight: bold;
    color: black;
}

#imgCart img{
	position: relative !important;	
	width: 15% !important;
	height: auto;
	float: center;		
}

#imgCart span{
    position: absolute;
    top: 34%;
    left: 48%;
    transform: translate(-34%, -48%);	
}

@media only screen 
and (min-width : 340px) 
and (max-width: 600px) {
	#modaluserlogin { width: 95% !important;}
   .brand-logo-footer img{
		width: 80% !important;
		height: auto;
    }
	#imgCart img{
		width: 100% !important;
	}
}

@media only screen 
and (min-width: 601px) 
and (max-width: 800px) {
	#modaluserlogin { width: 90% !important;}
   .brand-logo-footer img{
		width: 60% !important;
		height: auto;
    }
	#imgCart img{
		width: 40% !important;
	}
	.div-input-up-inner{
		width: 50%;
	}
	
	.div-button-up-inner{
		width: 20%;
	}		
}


@media only screen 
and (min-width: 801px) 
and (max-width: 900px) {
	#modaluserlogin { width: 70% !important;}
   .brand-logo-footer img{
		width: 40% !important;
		height: auto;
    }
	#imgCart img{
		width: 30% !important;
	}
	.div-input-up-inner{
		width: 25%;
	}
	
	.div-button-up-inner{
		width: 8%;
	}		
}


@media only screen 
and (min-width: 901px) 
and (max-width: 1024px) {
	#modaluserlogin { width: 70% !important;}
   .brand-logo-footer img{
		width: 40% !important;
		height: auto;
    }
	#imgCart img{
		width: 20% !important;
	}
	.div-button-up-pedcliente{
		margin-left: 40%;
	}
	.div-input-up-inner{
		width: 25%;
	}
	
	.div-button-up-inner{
		width: 8%;
	}		
}

@media only screen 
and (min-width: 1025px){
	.div-button-up-pedcliente{
		margin-left: 40%;
	}
	.div-input-up-inner{
		width: 25%;
	}
	
	.div-button-up-inner{
		width: 8%;
	}	
}

.divfooter p {
	font-size: 10pt !important;
}

.item-carousel p{
	font-size: 10pt !important;
}

#totalroteiro{
    position: relative !important;
    text-align: left;
    font-weight: bold;
    color: white;	
}

#totalroteiro img{
	position: relative !important;	
	width: 30% !important;
	height: auto;
	margin-bottom: 0;
	margin-top: 10px;
	float: right;		
}

#totalroteiro span{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-60%, -50%);	
}

#imgCart2{
	position: relative !important;
    width: 70px !important;
    height: 70px !important;
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
    float: right;	
}

#imgCart2 img{
	position: relative !important;	
	width: 100% !important;
	height: auto;
	float: center;		
}

#imgCart2 span{
    position: absolute;
    top: 47%;
    left: 45%;
    transform: translate(-47%, -48%);	
}

#divSearchInput{
	float: right;
}


.watermark{
    background-image: url('../images/logofenovo.png');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 95%;
    opacity: 0.10;
    color: white;
}

.watermark-over{
    color: #000000;
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}
                
                
.divschoolname{
	white-space: normal;
	font-weight: bold;
	font-size: 1.6em; 
	padding-top: 10px;
}

.divschooladdress{
	white-space: normal;
	font-size: 1.0em;
	color: gray; 
	padding-top: 0px;
	padding-bottom: 0px;
}

.table-font{
	font-size: 9pt;
}

.divschoolbuttons{
	float: right;
}

thead{
	background-color: #e6e6fa;	
}

thead th{
	font-size: 1.2em;
	text-align: center;
}

tfoot{
	background-color: #e6e6fa;
}

.d1{
    background-color: #ffedbc;
    color: black;
}

.bordered-shadow{
	box-shadow: 2px 7px 12px #888888;
	padding: 15px;
	font-size: 1.2em !important;
}

.bordered{
	border: 1px solid grey;
	padding: 10px;
}

tr.border_bottom td {
  border-bottom: 1px solid grey;
}

.div-title-padrao{
	width: 100%;
	height: auto;
	background-color: #e6e6fa;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 2px solid #cfcfe1;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: black;
	line-height: 1.0em;
	text-shadow: 3px 2px 2px rgba(153,153,153, 0.8);
	box-shadow: 2px 7px 12px #888888;
}

.div-title-modal{
	width: 100%;
	height: 40px;
	background-color: black;
	padding-top: 10px;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 2px rgba(153,153,153, 0.8);
}

.div-title-modal-detalhe{
	width: 100%;
	height: 40px;
	background-color: black;
	padding-top: 10px;
	padding-bottom: 5px;
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 2px rgba(153,153,153, 0.8);	
}

.transparencia {
     filter:alpha(opacity=10);
     opacity: 0.1;
     -moz-opacity:0.1;
     -webkit-opacity:0.1;
}

#slide-out{
	min-width: 28% !important;
}

#modalpedido{
	min-width: 80% !important;
	max-width: 100% !important;
}

.modal-large{
	min-width: 80% !important;
	max-width: 100% !important;
	min-height: 80% !important;
}

#modaldetalhenota{
	min-width: 80% !important;
	max-width: 100% !important;
}

#modaldetalhepedido{
	min-width: 80% !important;
	max-width: 100% !important;
}

#modalitempedido{
	min-width: 80% !important;
	max-width: 100% !important;		
}

.div-button-up-pedcliente{
	width: 70%;
	position: relative;
}



.div-input-up-inner{
	display: inline-block;
	margin-right: 5px;
}

.div-button-up-inner{
	display: inline-block;
	margin-left: 0;
}

.noDisplay{
	display: none;
    transition: opacity 1s ease-out;
    opacity: 0;	
}

.div-title-topo{
	height: auto;
	width: 100%;
	border: 1px solid;
	padding-bottom: 5px;
	margin-bottom: 5px;
    box-shadow: 5px 10px 18px #888888;	
}

.item-topico-left{
	font-size: 14pt important!;
	font-weight: bold important!;
	text-align: left important!;
}

.div-title-topo .div-title-text-topo{
	font-size: 14pt;
	font-weight: bold;
	margin-top: 20px;
}

.div-title-top{
	margin-top: 14px;	
	margin-left: 10px;
	padding-right: 10px;
	padding-left: 10px;	
}

.div-title-bottom{
	margin-top: 14px;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
}

.div-title-inner img{
	margin-right: -90px;
	width: 85px;
	height: auto;
	margin-top: 10px;
	float: left;
}


.input-values-pedcliente{
	max-width: 50px; 
}

.input-value-atend-pedcliente{
	max-width: 70px; 	
}

.divnavbutton img{
	margin-top: 5px;
	width: 50px !important;
	height: 50px !important;
}

#prod-detail-price{
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px 6px;
	border-radius: 0 6px 6px 6px;
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 10px;
	width: 120px;
	height: 50px;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	border: solid 1px gray;	
	background-color: white;
	box-shadow: 2px 7px 12px #888888;
}

#div-detalhe-produto{	
	position: relative;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 12pt; 
	color: gray;
}

#image-detalhe-produto{
	text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
}

#span-title-produto{
	font-size: 1.7em;
	font-weight: bold;
	color: black;
	text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);	
}

#modaluserlogin2 .input-field input:focus + label {
   color: yellow !important;
}
 /* label underline focus color */
#modaluserlogin2 .row .input-field input:focus {
   border-bottom: 1px solid yellow !important;
   box-shadow: 0 1px 0 0 yellow !important
}

#modaluserlogin2 .row .input-field input {
   border-bottom: 1px solid white !important;
   box-shadow: 0 1px 0 0 white !important
}

#formuserlogin h5{
	color: #2c95ec;
}


/* SELECT SEARCH BOX FOR WORK WITH MATERIAL*/
.select2 .selection .select2-selection--single, .select2-container--default .select2-search--dropdown .select2-search__field {
    border-witdh: 0 0 0px 0 !important;
    border-radius: 0 !important;
    height: 2.05rem;
}

.select2-container--default .select2-selection--multiple, .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-width: 0 0 0px 0 !important;
    border-radius: 0 !important;
}

.select2-results__option {
    color: #013B63;
    padding: 8px 16px;
    font-size: 16px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eee !important;
    color: #013B63 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e1e1e1 !important;
}

.select2-dropdown {
    border: none !important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.select2-container--default .select2-results__option[role=group] .select2-results__group {
    background-color: #333333;
    color: #fff;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
}

.select2-container .select2-search--inline .select2-search__field:focus {
    border-bottom: 1px !important;
    box-shadow: none !important;
}

.select2-container .select2-selection--multiple {
    min-height: 2.05rem !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #ddd !important;
    color: rgba(0,0,0,0.26);
    border-bottom: 1px dotted rgba(0,0,0,0.26);
}
/***
The MIT License (MIT)
Copyright (c) 2015 Brian Seymour
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
***/
.mbox-open {
    overflow: hidden;
}

.mbox-wrapper h5 {
    font-size: 18px;
    font-weight: 300;
    margin-top: 0;
}

.mbox-wrapper hr {
    margin: 20px 0;
    border: 0;
    height: 1px;
    background: #ddd;
}

.mbox-wrapper .right-align {
    text-align: right;
}

.mbox-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    outline: 0;
    background: rgba(255, 255, 255, .7);
}

.mbox-wrapper.in {
    display: block;
}

.mbox-wrapper .mbox {
    max-width: 600px;
    width: 100%;
    position: absolute;
    padding: 15px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

@media (max-width: 630px) {
    .mbox-wrapper .mbox {
        transform: translateY(-50%);
        left: 15px;
        right: 15px;
        max-width: none;
        width: auto;
    }
}