@charset "utf-8";
/* CSS Document */


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #1bb1dc;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}




/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #1bb1dc;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 16px;
  transition: all 0.5s;
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .social-links a {
  color: #413e66;
  padding-left: 20px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1bb1dc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo a {
  color: #413e66;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding-left: 30px;
}

.main-nav a {
  display: block;
  position: relative;
  color: #413e66;
  padding: 10px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #1bb1dc;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(40, 38, 70, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #065e77;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}















h1 {
      font-size: 36px;
      text-transform: uppercase;
      color: #303030;
      font-weight: 600;
      margin-bottom: 15px;
	  text-shadow: 2px 2px 2px #404040;
  }
h1w {
      font-size: 36px;
      text-transform: uppercase;
      color: #eee;
      font-weight: 600;
      margin-bottom: 15px;
	  text-shadow: 2px 2px 2px #404040;
  }  
  h2 {
      font-size: 24px;
      text-transform: uppercase;
      color: #303030;
      font-weight: 600;
      margin-bottom: 30px;
  }
  h2w {
      font-size: 24px;
      color: #eee;
      font-weight: 600;
      margin-bottom: 30px;
	  text-shadow: 2px 2px 2px #404040;
  } 
   h2y {
      font-size: 24px;
      text-transform: uppercase;
      color: #74b088;
      font-weight: 600;
      margin-bottom: 30px;
  }
  h3 {
      font-size: 24px;
      color: #303030;
      font-weight: 600;
      margin-bottom: 15px;
	  padding-left: 40px;
  }
  h4 {
      font-size: 19px;
      line-height: 1.375em;
      color: #303030;
      font-weight: 400;
      margin-bottom: 30px;
  }  
   h4a {
      font-size: 19px;
      line-height: 1.375em;
      color: #303030;
      font-weight: 400;
	  margin-top: 15px;
      margin-bottom: 15px;
	  margin-left: 15px;
	  margin-right: 15px;
  }  
  h5 {
      font-size: 14px;
      line-height: 1.375em;
      color: #fff;
      font-weight: 400;
      margin-bottom: 15px;
	  text-shadow: 2px 2px 2px #303030;
  }
  
  h5w {
      font-size: 14px;
      line-height: 1.375em;
      color: #eee;
      font-weight: 400;
      margin-bottom: 15px;
	  text-shadow: 2px 2px 2px #303030;
  }
  
  h6 {
      font-size: 12px;
      line-height: 1.4em;
      color: #524f45;
      font-weight: 300;
      margin-bottom: 1px;
	  text-shadow: 1px 1px 1px #303030;
  }
  h7 {
      font-size: 24px;
      color: #74b088;
      font-weight: 600;
      margin-bottom: 15px;
	  padding-left: 40px;
  }
  
  h7y {
      font-size: 24px;
      color: #f0ad4e;
      font-weight: 600;
      margin-bottom: 15px;
	  padding-left: 40px;
  }
  
  
  h8 {
      font-size: 18px;
      color: #74b088;
      font-weight: 600;
      margin-bottom: 15px;
	  padding-left: 40px;
  }
  
 tr270 {
    letter-spacing: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: -30px;
    @include transform(rotate(270deg));
   }  



   
   .btn-cap{color:#fff;background-color:#97979c;border-color:#eea236; padding: 2 5 2 5;} .btn-cap:focus,.btn-cap.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-cap:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-cap:active,.btn-cap.active,.open>.dropdown-toggle.btn-cap{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-cap:active:hover,.btn-cap.active:hover,.open>.dropdown-toggle.btn-cap:hover,.btn-cap:active:focus,.btn-cap.active:focus,.open>.dropdown-toggle.btn-cap:focus,.btn-cap:active.focus,.btn-cap.active.focus,.open>.dropdown-toggle.btn-cap.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-cap:active,.btn-cap.active,.open>.dropdown-toggle.btn-cap{background-image:none}.btn-cap.disabled:hover,.btn-cap[disabled]:hover,fieldset[disabled] .btn-cap:hover,.btn-cap.disabled:focus,.btn-cap[disabled]:focus,fieldset[disabled] .btn-cap:focus,.btn-cap.disabled.focus,.btn-cap[disabled].focus,fieldset[disabled] .btn-cap.focus{background-color:#f0ad4e;border-color:#eea236}.btn-cap.badge{color:#f0ad4e;background-color:#fff}
   .btn-cap1{color:#fff;background-color:#eea236;border-color:#eea236; padding: 2 5 2 5;} .btn-cap1:focus,.btn-cap1.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-cap1:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-cap1:active,.btn-cap1.active,.open>.dropdown-toggle.btn-cap1{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-cap1:active:hover,.btn-cap1.active:hover,.open>.dropdown-toggle.btn-cap1:hover,.btn-cap1:active:focus,.btn-cap1.active:focus,.open>.dropdown-toggle.btn-cap1:focus,.btn-cap1:active.focus,.btn-cap1.active.focus,.open>.dropdown-toggle.btn-cap1.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-cap1:active,.btn-cap1.active,.open>.dropdown-toggle.btn-cap1{background-image:none}.btn-cap1.disabled:hover,.btn-cap1[disabled]:hover,fieldset[disabled] .btn-cap1:hover,.btn-cap1.disabled:focus,.btn-cap1[disabled]:focus,fieldset[disabled] .btn-cap1:focus,.btn-cap1.disabled.focus,.btn-cap1[disabled].focus,fieldset[disabled] .btn-cap1.focus{background-color:#f0ad4e;border-color:#eea236}.btn-cap1.badge{color:#f0ad4e;background-color:#fff}

 



   
.tab2_tbl {
	font-size: small;
	padding-left: 1px;
	margin-bottom: 2px;
}

.tab2_tbl_tr {
	font-size: small;
	padding-left: 1px;
	height: 20px;
	overflow: hidden;
}

.tab2_input {
	font-size: small;
	padding-right: 1px;
	text-align: right;
}   
  
  .jumbotron {
      background-color: #b1dbe6;
      color: #fff;
      padding-bottom: 20px;
	  padding-top: 80px;
	  font-family: Montserrat, sans-serif;
  }
  .container-fluid {
      padding: 30px 2px;
  }
  .bg-yellow {
      background-color: #f0ad4e;
	  padding-top: 0px;
  }
  .bg-yellow1 {
      background-color: #deba57;
  }
  .bg-yellow1c {
      background-color: #deba57;
	  text-align: center;
  }
  .bg-grey {
      background-color: #f6f6f6;
	  padding-top: 0px;
  }
  
  .bg-grey1c {
      background-color: #baccc3;
	  text-align: center;
  }
  
  .bg-grey1 {
      background-color: #baccc3;
  }
  
  .bg-green {
      background-color: #74b088;
  }
  .bg-red {
      background-color: #d9534f;
  }
  .bg-plandiv {
	background-color: rgb(239, 239, 239);
  }
  
  .bg-blue {
      background-color: #308fac;
  }
  .bg-orange {
      background-color: #e87538;
  }
  .logo-small {
      color: #B7DBDB;
      font-size: 50px;
  }
  .logo {
      color: #B7DBDB;
      font-size: 200px;
  }
  .thumbnail {
      padding: 0 0 15px 0;
      border: none;
      border-radius: 0;
  }
  .thumbnail img {
      width: 100%;
      height: 100%;
      margin-bottom: 10px;
  }
  .carousel-control.right, .carousel-control.left {
      background-image: none;
      color: #B7DBDB;
  }
  .carousel-indicators li {
      border-color: #B7DBDB;
  }
  .carousel-indicators li.active {
      background-color: #B7DBDB;
  }
  .item h4 {
      font-size: 19px;
      line-height: 1.375em;
      font-weight: 400;
      font-style: italic;
      margin: 70px 0;
  }
  .item span {
      font-style: normal;
  }
  .panel {
      border: 1px solid #B7DBDB; 
      border-radius:0 !important;
      transition: box-shadow 0.5s;
	  padding-bottom: 0px;
	  padding-top: 0px;
  }
  
  .panel-head {
      padding: 30px;
	}
  
  
  
  
  .panel:hover {
      box-shadow: 5px 0px 20px rgba(0,0,0, .2);
  }
  .panel-footer .btn:hover {
      border: 1px solid #B7DBDB;
      background-color: #fff !important;
      color: #B7DBDB;
  }
  .panel-heading {
      color: #eee !important;
      background-color: #74b088   !important;
      padding: 25px;
	  padding-bottom: 5px;
	  padding-top: 5px;
      border-bottom: 1px solid transparent;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
  }
  
  .panel-body {
      padding-top: 3px;
  }
  
   
  .panel-footer {
      background-color: white !important;
  }
  .panel-footer h3 {
      font-size: 32px;
  }
  .panel-footer h4 {
      color: #aaa;
      font-size: 14px;
  }
  .panel-footer .btn {
      margin: 15px 0;
      background-color: #B7DBDB;
      color: #fff;
  }
  .navbar1 {
      margin-bottom: 0;
      background-color: #bb8840  ;
      z-index: 9999;
      border: 0;
      font-size: 12px !important;
      line-height: 1.42857143 !important;
      letter-spacing: 3px;
      border-radius: 0;
      font-family: Montserrat, sans-serif;
	  padding-left: 10px;
 
 }
	.navbar1 dropdown-submenu {
    display: block;
	position:relative;
	}
	  
  
  .navbar {
      margin-bottom: 0;
      background-color: #F90 ;
	  color:#fff;
      z-index: 9999;
      border: 0;
      font-size: 12px !important;
      line-height: 1.42857143 !important;
      letter-spacing: 3px;
      border-radius: 0;
      font-family: Montserrat, sans-serif;
  }
  .navbar li a, .navbar .navbar-brand {
      color: #ffd !important;
  }
  .navbar-nav li a:hover, .navbar-nav li.active a {
      color: v !important;
      background-color: #bbb !important;
  }
  .navbar-default .navbar-toggle {
      border-color: transparent;
      color: #fff !important;
  }
  footer .glyphicon {
      font-size: 20px;
      margin-bottom: 20px;
      color: #f4511e;
  }
  .slideanim {visibility:hidden;}
  .slide {
      animation-name: slide;
      -webkit-animation-name: slide;
      animation-duration: 1s;
      -webkit-animation-duration: 1s;
      visibility: visible;
  }
  .img_logo {
	box-shadow:3px 3px 4px #444; display:block; margin-left: auto; margin-right: auto;
  }	 
  
  
  
  body {
      font: 400 14px Lato, sans-serif;
      line-height: 1.5;
      color: #818181;
  }
  

.overlay-content {
	position:absolute;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	top: 50%;
	left: 0;
	right: 0;
	text-align:center;
	color: #555;
}
.uploadProcess img{
	max-width: 207px;
	border: none;
	box-shadow: none;
	-webkit-border-radius:0;
	display:inline;
}
.background-boja {
	background-color:#f1f1f1;
}
.background-boja-tab {
	background-color:#f1f1f1;
	color: #404040 ;
}
.background-boja-tab-bold {
	background-color:#f1f1f1;
	color: #404040 ;
	font-weight:bold;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.numfield {
	text-align: right;	
	max-width:80; 
	size:10;
}

.comm_btn {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF ;
	background-color: green  ;
}

.comm_btn_or {
	background-color: #F90  ;
	color: #FFF ;
}

.text_medium {
	font-family: Arial, Helvetica, sans-serif;
	color: #000 ;
	font-size:medium ;
}
.text_smaller {
	font-family: Arial, Helvetica, sans-serif;
	color: #000 ;
	font-size:smaller ;
}

.text_small {
	font-family: Arial, Helvetica, sans-serif;
	color: #000 ;
	font-size:small ;
}

.text_xx-small {
	font-family: Arial, Helvetica, sans-serif;
	color: #000 ;
	font-size:xx-small ;
}

.btn-grey{
  color: #333;
  }
  
.btn-green{
   color: #063 ; 
  }  
  
.btn-head{
  color: #FFF; 
  font-weight:bold;
   }  

   
.head_gr {
      color: green;
    }   
.head_or {
      color: orange;
    }   	

.delete_x {
      color: red;
	  font-size:small ;
	  padding:2;
	  
    }  	
	
.pre-scrollable {
    max-height: 400px;
    overflow-y: scroll;
	overflow-x: scroll;
}



.pre-scrollable1 {
    max-height: 500px;
    overflow-y: scroll;
	overflow-x: scroll;
}	

.pre-scrollable2 {
	overflow-x: scroll;
	overflow-y: auto; 
}	

.pre-scrollable3 {
	overflow-x: auto;
	overflow-y: scroll; 
}	


.pre-scrollable4 {
	 max-height: 1200px;
    overflow-y: scroll;
	overflow-x: scroll;
}

.tab-head {
    background-color: green  ;
	color:orange;  
	border-top-style:double; 
	border-top-color:orange; 
	padding:4;
}	

.tab1-head {
    background-color: #CCC  ;
	color:black;  
	border-top-style:double; 
	border-top-color:orange; 
	padding:4;
}	


.temp-win {
    position:absolute;
	width:550px;
	height:400px;
	background-color: #FC3;
	border-right-color: grey; 
	border-left-color: grey;  
	box-shadow:0px 0px 2px 2px #444;  
  }
  
.temp-win1 {
    position:absolute;
	width:550px;
	height:400px;
	background-color: #FC3;
	border-right-color: grey; 
	border-left-color: grey;  
	box-shadow:0px 0px 2px 2px #444;  
  }  
  


.temp-win2 {
    position:absolute;
  }
  

.selcls { 
    padding: 9px; 
    border: solid 1px #517B97; 
    outline: 0; 
    background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #CAD9E3), to(#FFFFFF)); 
    background: -moz-linear-gradient(top, #FFFFFF, #CAD9E3 1px, #FFFFFF 25px); 
    box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
    -moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
    -webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 

    }   


.filterable {
    margin-top: 15px;
}
.filterable .panel-heading .pull-right {
    margin-top: -20px;
}
.filterable .filters input[disabled] {
    background-color: transparent;
    border: none;
    cursor: auto;
    box-shadow: none;
    padding: 0;
    height: auto;
}
.filterable .filters input[disabled]::-webkit-input-placeholder {
    color: #333;
}
.filterable .filters input[disabled]::-moz-placeholder {
    color: #333;
}
.filterable .filters input[disabled]:-ms-input-placeholder {
    color: #333;
}













.filterable1 {
    margin-top: 15px;
}
.filterable1 .panel-heading .pull-right {
    margin-top: -20px;
}
.filterable1 .filters input[disabled] {
    background-color: transparent;
    border: none;
    cursor: auto;
    box-shadow: none;
    padding: 0;
    height: auto;
}
.filterable1 .filters input[disabled]::-webkit-input-placeholder {
    color: #333;
}
.filterable1 .filters input[disabled]::-moz-placeholder {
    color: #333;
}
.filterable1 .filters input[disabled]:-ms-input-placeholder {
    color: #333;
}



.filterable2 {
    margin-top: 15px;
}
.filterable2 .panel-heading .pull-right {
    margin-top: -20px;
}
.filterable2 .filters input[disabled] {
    background-color: transparent;
    border: none;
    cursor: auto;
    box-shadow: none;
    padding: 0;
    height: auto;
}
.filterable2 .filters input[disabled]::-webkit-input-placeholder {
    color: #333;
}
.filterable2 .filters input[disabled]::-moz-placeholder {
    color: #333;
}
.filterable2 .filters input[disabled]:-ms-input-placeholder {
    color: #333;
}


.droptarget {
  float: left; 
  width: 100px; 
  height: 35px;
  margin: 15px;
  padding: 10px;
  border: 1px solid #aaaaaa;
}


text_lr {
  writing-mode: vertical-lr;
}


.fix-column {
    float: left;
	width: 130px;
}
.fix-head {
	height: 30px;
	width: 130px;
}
.thead {
    height: 30px;
    white-space: nowrap;
	
}
.thead > span {
    display: inline-block;
    width: 80px;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,.5);
    background-color: rgba(183,192,192,.3);
    text-align: center;
	white-space:normal ; 
	word-wrap: break-word; 
	word-break: normal ;
	overflow: hidden;
}
.trow {
    white-space: nowrap;
	 
}
.trow > span {
    display: inline-block;
    width: 80px;
    box-shadow: inset 0 0 1px 0 rgba(255,255,255,.5);
    line-height: 25px;
    height: 30px;
}
.tbodyf {
    height: 300px;
    overflow: auto;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	
}
.fix-column > .tbodyf {
    overflow: hidden;
    /*padding-bottom: 50px;*/
}
/*.fix-column > .tbody > .trow:last-child {margin-bottom: 50px;}*/

.fix-column > .tbodyf > .trow {
    margin-top: -25px;
    margin-bottom: 25px;
}
.fix-column > .tbodyf > .trow:first-child {
    margin-top: 0px;
}

.rest-columns {
    width: 750px;
}
.rest-columns > .thead {
    /*padding-right: 50px;*/
    overflow: hidden;
	
}
/*.rest-columns > .thead > :last-child {margin-right: 50px;}*/
.rest-columns > .thead > span {
    margin-right: 25px;
    margin-left: -25px;
}
.rest-columns > .thead > :first-child {margin-left: 0px;}












.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.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: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

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%;
}






.box {
    padding: 20px;
	padding-bottom: 0px;
    padding-top: 150x;
	position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 30px 10px;
    background: #fff;
    box-shadow: 0 30px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
	background: -webkit-gradient(linear, left top, left 50, from(#FFFFFF), color-stop(4%, #CAD9E3), to(#FFFFFF)); 
    background: -moz-linear-gradient(top, #FFFFFF, #CAD9E3 1px, #FFFFFF 25px); 
}

.box:hover {
      box-shadow: 5px 0px 20px rgba(0,0,0, .2);
}

.box1 {
    padding: 20px;
    padding-top: 150x;
	position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 1px 10px;
    background: #ddd;
    box-shadow: 0 30px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
	
}

.box1:hover {
      box-shadow: 5px 0px 20px rgba(0,0,0, .2);
}


.box2 {
    padding: 1px;
    padding-top: 1x;
	position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 30px 10px;
    background: #ddd;
    box-shadow: 0 30px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
	
}

.box2:hover {
      box-shadow: 5px 0px 20px rgba(0,0,0, .2);
}


 
  .panel-b {
      border: 0px solid #B7DBDB; 
      border-radius:0 !important;
      transition: box-shadow 0.5s;
	  padding-bottom: 0px;
	  padding-top: 20x;
  }
  
  .panel-b-footer .btn:hover {
      border: 1px solid #B7DBDB;
      background-color: #fff !important;
      color: #B7DBDB;
  }
  .panel-b-heading {
      color: #eee !important;
      background-color: #b1dbe6   !important;
      padding: 25px;
	  padding-bottom: 5px;
	  padding-top: 5px;
      border-bottom: 1px solid transparent;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
  }
  .panel-b-footer {
      background-color: white !important;
  }
  .panel-b-footer h3 {
      font-size: 32px;
  }
  .panel-b-footer h4 {
      color: #aaa;
      font-size: 14px;
  }
  .panel-b-footer .btn {
      margin: 15px 0;
      background-color: #B7DBDB;
      color: #fff;
  }
  
  
  .navbar-b {
      margin-bottom: 0;
      background-color: #FFF  ;
	  color: #aaa;
      z-index: 9999;
      border: 0;
      font-size: 12px !important;
      line-height: 1.42857143 !important;
      letter-spacing: 3px;
      border-radius: 0;
      font-family: Montserrat, sans-serif;
	  padding-top: 10px;
  }
  .navbar-b li a, .navbar-b .navbar-b-brand {
      color: #ffd !important;
  }
  .navbar-b-nav li a:hover, .navbar-b-nav li.active a {
      color: v !important;
      background-color: #bbb !important;
  }
  .navbar-b-default .navbar-b-toggle {
      border-color: transparent;
      color: #fff !important;
  }

.jumbotron-b {
      background-color: #74b088;
      color: #fff;
 	  border-radius: 10px;
	  padding-bottom: 10px;
	  padding-top: 20px;
	  font-size: large !important;
	  font-family: Montserrat, sans-serif;
	  text-shadow: 1px 1px 1px #303030;
  }
  
/* Services Section
--------------------------------*/
#services {
  padding: 60px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box:hover {
  transform: scale(1.1);
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon i {
  font-size: 36px;
  line-height: 1;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #1bb1dc;
}

#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
} 

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% - 30px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.drop-down li {
  min-width: 180px;
  position: relative;
}

.drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}

.drop-down ul a:hover, .drop-down ul .active > a, .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.drop-down .drop-down > a {
  padding-right: 35px;
}

.drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

.counter
{
    background-color: none;
    text-align: center;
}
.days,.foods,.recipes
{
    margin-top: 70px;
    margin-bottom: 70px;
}
.counter-count
{
    font-size: 60px;
    background-color: #f0ad4e;
    border-radius: 50%;
    position: relative;
    color: #ffffff;
    text-align: center;
    line-height: 125px;
    width: 125px;
    height: 125px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
}

.days-p
{
    font-size: 24px;
    color: #000000;
    line-height: 32px;
}

.foods-p
{
    font-size: 24px;
    color: #000000;
    line-height: 32px;
}
.recipes-p
{
    font-size: 24px;
    color: #000000;
    line-height: 32px;
}



/* Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}


.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}



/* Team Section
--------------------------------*/
#team {
  padding: 50px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

#team .member .member-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  padding: 15px 0;
  background: rgba(29, 28, 41, 0.6);
}

#team .member .member-info-content {
  transition: margin 0.2s;
  height: 40px;
  transition: height 0.4s;
}

#team .member:hover .member-info {
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  height: 80px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #1bb1dc;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.responsive {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.table-responsive>.fixed-column {
    position: absolute;
    display: inline-block;
    width: auto;
    border-right: 1px solid #ddd;
    background-color: #fff; /* bootstrap v3 fix for fixed column background color*/
}
@media(min-width:768px) {
    .table-responsive>.fixed-column {
        display: none;
    }
}





.InputSizes{
  display: none; 
}

#a{
  padding-left: 0px;
}

#a img, .btnps-select img{
  width: 100px;
  
}

#a li{
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #a3bdb0;
}

#a li:hover{
 background-color: #F4F3F3;
}

#a li img{
  margin: 5px;
}

#a li span, .btnps-select li span{
  margin-left: 30px;
}

/* item list */

.b{
  display: none;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 5px;
  
}

.open{
  display: show !important;
}

.btnps-select{
  margin-top: 2px;
  width: 100%;
  max-width: 350px;
  height: 24px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #ccc;
  color: inherit;
 
}
.btnps-select li{
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btnps-select:hover li{
  margin-left: 0px;
}

.btnps-select:hover{
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
  color: #ccc;
  
  
}

.btnps-select:focus{
   outline:none;
}

.lang-select{
  margin-left: 50px;
}


cap_btn {
  position: fixed;
  display: none;
  background: #5cb85c;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.9s;
}
  drop_btn {
padding:5px; 
color:#f5f5f5; 
background-color:#5cb85c; 
border-radius: 5px; 
border: 1px solid #ccc; 
right: 15px; 
bottom: 15px; 
transition: background 0.9s;
  }	  
  
  #mytopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 30px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 4000; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  background-color: #74b088; 
}

#mytopBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}