body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(210, 210, 210);
}

.card {
    background-color: rgb(240, 240, 240);
}

.main {
    height: auto;
}


.carousel-caption {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.carousel-inner {
    height: 45vh;
    width: 100%;
    
}

.caption {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    width: 70%;
    margin-left: 300px;
}


.caption-p {
    font-size: 25px;
}

.carousel-caption {
    margin-top: -40px;
}

section {
    /*min-height: 50vh;*/
}

#category, #menu, #calendar {
    display: flex;
    align-items: center;
    justify-content: center;

}
#food {
 
    align-items: center;
    justify-content: center;	
	
}

.card-food-list {
	margin: 0 auto;
	text-align: center;
    width: 80%;
    height: auto;
    border-radius: 20px;
    border: none;
    padding: 20px;
}

.btn-add-food {
    width: 150px !important;
    padding: 10px;
    font-size: 15px;
}

.product_wrapper {
	float:left;
	padding: 10px;
	text-align: center;
	}
.product_wrapper:hover {
	box-shadow: 0 0 0 2px #e5e5e5;
	cursor:pointer;
	}
.product_wrapper .name {
	font-weight:bold;
	}
.product_wrapper .buy {
	text-transform: uppercase;
    background: #F68B1E;
    border: 1px solid #F68B1E;
    cursor: pointer;
    color: #fff;
    padding: 8px 40px;
    margin-top: 10px;
}
.product_wrapper .buy:hover {
	background: #f17e0a;
    border-color: #f17e0a;
}
.message_box .box{
	margin: 10px 0px;
    border: 1px solid #2b772e;
    text-align: center;
    font-weight: bold;
    color: #2b772e;
	}
.table td {
	border-bottom: #F0F0F0 1px solid;
	padding: 10px;
	}
.cart_div {
	float:right;
	font-weight:bold;
	position:relative;
	}
.cart_div a {
	color:#000;
	}	
.cart_div span {
	font-size: 12px;
    line-height: 14px;
    background: #F68B1E;
    padding: 2px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: 13px;
    color: #fff;
    width: 14px;
    height: 13px;
    text-align: center;
	}
.cart .remove {
    background: none;
    border: none;
    color: #0067ab;
    cursor: pointer;
    padding: 0px;
	}
.cart .remove:hover {
	text-decoration:underline;
	}
	
	
/* TOOLTIPS */	
/* Контейнер подсказок */
.tooltips {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* Если вы хотите точки под текстом при наведении мыши */
}

/* Текст подсказки */
.tooltips .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: black;
  color: #fff;
  text-align: left;
  padding: 5px;
  border-radius: 6px;
 
  /* Разместите текст всплывающей подсказки - см. Примеры ниже! */
  position: absolute;
  z-index: 1;
}

/* Показывать текст всплывающей подсказки при наведении указателя мыши на контейнер всплывающей подсказки */
.tooltips:hover .tooltiptext {
  visibility: visible;
}



/* TABS */
/* Component Needs */

.pc-tab > input,
.pc-tab section > div {
  display: none;
}

#tab1:checked ~ section .tab1,
#tab2:checked ~ section .tab2,
#tab3:checked ~ section .tab3 {
  display: block;
}

#tab1:checked ~ nav .tab1,
#tab2:checked ~ nav .tab2,
#tab3:checked ~ nav .tab3 {
  color: red;
}

/* Visual Styles */

$activeColor: #ffffff;
$unactiveColor: #eeeeee;
$unactiveHoverColor: #dddddd;


h1 {
  text-align: center;
  font-weight: 100;
  font-size: 60px;
  color: #e74c3c;
}

.pc-tab { 
  width: 100%;
     max-width: 90%;
  margin: 0 auto;
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    li {
      label {
        
        float: left;
        padding: 15px 25px;
        border: 1px solid #ddd;
        border-bottom: 0;
        background: $unactiveColor;
        color: #444;
        &:hover {
          background: $unactiveHoverColor;
        }
        &:active {
          background: $activeColor;
        }
      }
      &:not(:last-child) label {
         border-right-width: 0; 
      }
    }
  }
  section {
    
    clear: both;
    div {
      padding: 20px; 
      width: 100%;
      border: 1px solid #ddd;
      background: #fff;
      line-height: 1.5em;
      letter-spacing: 0.3px;
      color: #444;
      h2 {
        margin: 0;
        
        letter-spacing: 1px;
        color: #34495e;
      }
    }
  }
}

#tab1:checked ~ nav .tab1,
#tab2:checked ~ nav .tab2,
#tab3:checked ~ nav .tab3 {
  label {
    background: white;
    color: #111;
    position: relative;
    &:after {
      content: '';
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: $activeColor;
      left: 0;
      bottom: -1px;
    }
  }
}
label{
    margin-bottom: 0 !important;
}
/* END TABS*/

/*preloader*/
.preloader {
    //background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}
.preloader__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}
.preloader.is-visible {
  display: block;
  transition: opacity .2s ease;
}

.preloader.is-hidden {
  display: none
}

/*end preloader*/



	.text {
	 font-family: Verdana, Arial; font-size: 10px; font-weight: normal; color: #000;
	 }
	 .text_white {
	 font-family: Verdana, Arial; font-size: 13px; font-weight: normal; color: #fff;
	 }
	 .theme {
	 font-family: Verdana, Arial; font-size: 20px; font-weight: bold; color: #fff;
	 }
	 .title {
	 color: #fff; font-family: Verdana, Arial; font-size: 12px; font-weight: bold;
	  }
	 .red {
	 font-family: Verdana, Arial; font-size: 16px; font-weight: bold; color: #ff0000;
	 }
	 .green {
	  color: #009933; font-size: 12px; font-family: Verdana; font-weight: bold;
	}

	.top_menu {
	  font-family: Verdana, Arial; font-weight: bold; font-size: 8pt; color: #000; 
	
	}
	
	.big    {
	          font-family: Verdana, Arial; font-weight: bold; font-size: 14px; color:#000; text-decoration:none
	}
	
	.small {
	  font-family: Verdana, Arial; font-weight: normal; font-size: 9px; color:#000; text-decoration:none
	
	}
	.text_fuxia {
	
	  color: #cc0066; font-family: Century Gothic, Arial; font-size: 11px; font-weight: bold;
	}
	.theme_orange {
	 font-family: Century Gothic, Arial; font-weight: bold; font-size: 18px;
		color:#FF5500; text-decoration:none
	}
		
	a.login { font-size: 10px; color:#000; text-decoration:none}
	a.login:hover { font-size: 10px; color:#999;}
	
	a.small { font-family: Verdana, Arial; font-weight: normal; font-size: 9px; color:#000; text-decoration:none}
	a.small:hover { font-family: Verdana, Arial; font-weight: normal; font-size: 9px; color:#ff0000;}
	
	a.big { font-family: Verdana, Arial; font-weight: bold; font-size: 12px; color:#000; text-decoration:none}
	a.big:hover { font-family: Verdana, Arial; font-weight: bold; font-size: 12px; color:#fff;}
	
	
	a.prod {  font-family: Verdana, Arial; font-weight: bold; font-size: 11px;  outline: none;
		color:#FF007F; text-decoration:none}
	a.prod:hover { color:#095E09;}
	
	
	.prod {
	 font-family: Verdana, Arial; font-weight: bold; font-size: 11px;  outline: none;
		color:#FF007F; text-decoration:none
	
	}


/* tabs  */
 /* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	border-bottom:1px solid #666;
	height:30px;
	width: 680px;

		
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding: 0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(images/orange.png) no-repeat -425px 0;    
	font-family: Verdana, Arial; color: #333;
	font-size:11px;
	display:block;
	height: 30px;  
	line-height:14px;
	width: 133px;
	text-align:center;	
	text-decoration:none;

	padding:0px;
	margin:0px;	
	position:relative; 
	top:-1px;
	outline:none;
		
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -425px -31px;	
	color:#fff;	   outline:none;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -425px -62px;		
	cursor:default !important; 
	color:#000 !important;

}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */  
ul.tabs a.s 			{ background-position: -553px 0; width:81px; 	outline:none;}
ul.tabs a.s:hover 	{ background-position: -553px -31px; 	outline:none;}
ul.tabs a.s.current  { background-position: -553px -62px; 	outline:none;}

/* width 2 */
ul.tabs a.l 			{ background-position: -248px -0px; width:174px; 	outline:none;}
ul.tabs a.l:hover 	{ background-position: -248px -31px; 	outline:none;}
ul.tabs a.l.current  { background-position: -248px -62px; 	outline:none;}


/* width 3 */
ul.tabs a.xl 			{ background-position: 0 -0px; width:247px; 	outline:none;}
ul.tabs a.xl:hover 	{ background-position: 0 -31px; 	outline:none;}
ul.tabs a.xl.current { background-position: 0 -62px; 	outline:none;}


	.table_bord { 
	font-family: Verdana, Arial; font-size: 11px; color: #000; font-weight: bold;	
    border: 1px #999 solid; /* ????? ?????? ??????? */
    border-collapse: collapse; /* ?????????? ?????? ????????? ????? */
    background:  #FFFFD4;
	width: 98%;
   }
   .td_bord  { 
   	font-family: Verdana, Arial; font-size: 11px; color: #000; font-weight: normal;
    padding: 3px; /* ???? ?????? ??????????? ????? */
    border: 1px #999 solid; /* ??????? ?????? ????? */
   }
       
   .tr_grey {
   background:  #DADADA;
  }
  
   .tr_yell {
   background:  #FFFFD4;
  }


/* tab pane styling */
div.panes  {
	padding: 5px;
    background: url(images/h300.jpg) left bottom repeat-x;
	border:1px solid #999;
	border-top:0;
	width: 669px;
	
	height: 100%;
	height: auto;
	
	}
/* initially all panes are hidden */ 
div.panes div {
	display:none;
}
/* end tabs style */

/* form button*/
.button {
	position: relative;
	height: 40px;
	width: 200px;
	background: #00BCD4;
	border-radius: 8px;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.submit,
.arrow {
	display: inline-block;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.submit {
	margin: 6px 6px;
}

.arrow {
	position: relative;
	top: -3px;
	opacity: 0;
}

.line {
	height: 3px;
	width: 20px;
	border-radius: 6px;
	background: #fff;
}

.top {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.bottom {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: 10px;
}

.instructions {
	text-align: center;
	margin: 20px auto;
}

.button:active {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}

.button.hover .submit {
	-webkit-transform: translateX(-90px);
	-moz-transform: translateX(-90px);
	transform: translateX(-90px);
	opacity: 0;	
}

.button.hover .arrow {
	-webkit-transform: translateX(-70px);
	-moz-transform: translateX(-70px);
	transform: translateX(-70px);
	opacity: 1;
}

.button.active .arrow {
	opacity: 1;
	-webkit-transform: rotate(90deg) translateY(70px);
	-moz-transform: rotate(90deg) translateY(70px);
	transform: rotate(90deg) translateY(70px);
}

.button.active {
	background: #4CAF50;
}

.button.active .submit {
	opacity: 0;
}

.button.active .top {
	width: 34px;
}

.button.active .bottom {
	margin: 14px 0 0 12px;
}

/* end button*/

.table>:not(caption)>*>* {
    padding: 0.1rem !important;
}
.card {
	--bs-card-spacer-y: 0 !important; 
    --bs-card-spacer-x: 0 !important;
	
}
/* for top menu*/
ul{
 /* display:flex;
  align-items:center;
  height:50px;*/
}
ul a{
  margin-left:10px;
}
@media (max-width:640px){
  .menu{display:none;}
  .trigger{
    display:inline-block;
    margin:3px;
    cursor:pointer;
   }
   .trigger i{
     display:block;
     width:30px;
     height:6px;
     margin:4px auto;
     background:#fff;
   }
   .show{
     display:block;
   }
}
/*end top menu*/

/*print modal */

@media print {
    header, .footer, footer {
        display: none;
    }

    /* hide main content when dialog open */
    body.modal-open div.container.body-content div#mainContent {
        display: none;
    }

    .noPrint {
        display: none;
    }
}

/* end print modal*/

/* for small screens table becomes divs */

table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td {
    padding: 15px 10px !important;
}
table.dataTable > tbody > tr:first-child > * {
    border-top: 1px solid #999 !important;
}
table.dataTable thead tr {
  height: 40px;
  background: #FFED86;
  font-size: 16px;
}
table.dataTable tbody tr {
  border-bottom: 1px solid #E3F1D5;
}

/* NEW ##########################################################
	Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
	*/
	@media
	  only screen 
    and (max-width: 760px), (min-device-width: 768px) 
    and (max-device-width: 1024px)  {
		
		table#date_select {
			display: none;
		}
		
		table#sort {
			width: auto !important;
		}
		
		/* Force table to not be like tables anymore */
		table#sort, table#sort tbody, table#sort td, table#sort tr {
			display: block;
		}
		table#sort thead, th {
			display: none;
		}

		/* Hide table headers (but not display: none;, for accessibility) */
		table#sort table#thead table#tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

    table#sort tr {
      margin: 0 0 1rem 0;
    }
      
    table#sort tr:nth-child(odd) {
      background: #ccc;
    }
    
		table#sort td {
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			padding-left: 0%;
		}

		table#sort td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 0;
			left: 6px;
			width: 100%;
			padding-right: 10px;
			white-space: nowrap;
		}

		/*
		Label the data
    You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
		///ΗΜ/ΝΙΑ	Τρέχον βάρος, kg	Επιθυμητό βάρος, kg	Όριο, kCal ανά ημέρα	Action
		td:nth-of-type(1):before { content: "ΗΜ/ΝΙΑ"; }
		td:nth-of-type(2):before { content: "Τρέχον βάρος, kg"; }
		td:nth-of-type(3):before { content: "Επιθυμητό βάρος, kg"; }
		td:nth-of-type(4):before { content: "Όριο, kCal ανά ημέρα"; }
		td:nth-of-type(5):before { content: "Action"; }
		
		*/
	}
	
.register-photo {
  background:#f1f7fc;
  padding:20px 0;
}

.register-photo .image-holder {
  display:table-cell;
  width:auto;
  background:url(../../assets/img/meeting.jpg);
  background-size:cover;
}

.register-photo .form-container {
  display:table;
  max-width:900px;
  width:90%;
  margin:0 auto;
  box-shadow:1px 1px 5px rgba(0,0,0,0.1);
}

.register-photo form {
  display:table-cell;
  width:400px;
  background-color:#ffffff;
  padding:40px 60px;
  color:#505e6c;
}

@media (max-width:991px) {
  .register-photo form {
    padding:40px;
  }
}

.register-photo form h2 {
  font-size:24px;
  line-height:1.5;
  margin-bottom:30px;
}

.register-photo form .form-control {
  background:#f7f9fc;
  border:none;
  border-bottom:1px solid #dfe7f1;
  border-radius:0;
  box-shadow:none;
  outline:none;
  color:inherit;
  text-indent:6px;
  height:40px;
}

.register-photo form .form-check {
  font-size:13px;
  line-height:20px;
}

.register-photo form .btn-primary {
  background:#f4476b;
  border:none;
  border-radius:4px;
  padding:11px;
  box-shadow:none;
  margin-top:35px;
  text-shadow:none;
  outline:none !important;
}

.register-photo form .btn-primary:hover, .register-photo form .btn-primary:active {
  background:#eb3b60;
}

.register-photo form .btn-primary:active {
  transform:translateY(1px);
}

.register-photo form .already {
  display:block;
  text-align:center;
  font-size:12px;
  color:#6f7a85;
  opacity:0.9;
  text-decoration:none;
}

/* end table style*/