html,
body {
  background-color: #ffffff;
  font-size: 15px;
  width: 100%;
  height: 100%;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: 'roboto', sans-serif;
  font-weight: 300;
}

body {
  padding-top: 30px;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  height: 100%;
  /*width: 55%;*/
  max-width: 80%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #000000;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }

  .navbar-brand {
    display: none;
  }

  .navbar-brand-row {
    display: none;
  }

  body {
    padding-top: 0px;
  }

  .fb-container {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {

  .fb-container {
    display: none;
  }
}

.modal-confirm {
  color: #434e65;
  width: 525px;
}

.modal-confirm .modal-content {
  padding: 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}

.modal-confirm .modal-header {
  border-bottom: none;
  position: relative;
  text-align: center;
  margin: -20px -20px 0;
  border-radius: 5px 5px 0 0;
  padding: 35px;
}

.modal-success {
  background: #47c9a2;
}

.modal-error {
  background: #c95f47;
}

.modal-confirm h4 {
  text-align: center;
  font-size: 36px;
  margin: 10px 0;
}

.modal-confirm .form-control,
.modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px;
}

.modal-confirm .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  text-shadow: none;
  opacity: 0.5;
}

.modal-confirm .close:hover {
  opacity: 0.8;
}

.modal-confirm .icon-box {
  color: #fff;
  width: 95px;
  height: 95px;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  border: 5px solid #fff;
  padding: 15px;
  text-align: center;
}

.modal-confirm .icon-box i {
  font-size: 64px;
  margin: -4px 0 0 -4px;
}

.modal-confirm.modal-dialog {
  margin-top: 80px;
}

.modal-confirm .btn,
.modal-confirm .btn:active {
  color: #fff;
  border-radius: 4px;
  background: #eeb711 !important;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  border-radius: 30px;
  margin-top: 10px;
  padding: 6px 20px;
  border: none;
}

.modal-confirm .btn:hover,
.modal-confirm .btn:focus {
  background: #eda645 !important;
  outline: none;
}

.modal-confirm .btn span {
  margin: 1px 3px 0;
  float: left;
}

.modal-confirm .btn i {
  margin-left: 1px;
  font-size: 20px;
  float: right;
}

.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

/* The container */
.container_m {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container_m input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container_m:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_m input:checked~.checkmark {
  background-color: #cd8b18;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container_m input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container_m .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*==========================================
PRE LOADER 
==========================================*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fefefe;
  z-index: 99999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}

.loaded {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/preloading.gif);
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  background-size: cover;
  margin: -20px 0 0 -20px;
}

.about_img {
  padding-bottom: 20px;
}

img {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;

}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

a,
button,
a span {
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.btn.extra-width {
  padding: 13px 40px;
}

.btn:focus,
.btn:active {
  outline: inherit;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0 0 15px;
}

.clear {
  clear: both;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  outline: none;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
  height: 34px;
  max-width: 90%;
  background: #323232;
}

.form-control:focus {
  border-color: #d6962c;
}

h1,
h2,
h3 {
  font-family: 'roboto', sans-serif;
  font-weight: 300;
  margin: 0;
}

h4,
h5 {

  font-weight: 300;
  margin: 0;
  line-height: 2rem;
  font-family: 'Pacifico', cursive;

}

h1 {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 300;
}

h2 {
  font-size: 2.5rem;
  line-height: 3rem;
  margin-bottom: .9rem;
  text-transform: uppercase;
  color: #3879D9;
}

h3 {
  font-weight: 300;
  margin-bottom: .9rem;
  /*font-size: 2.375rem;*/
  line-height: 2.5rem;

}

h4 {
  font-size: 1.875rem;
  line-height: 2.2rem;
  margin-bottom: 1.1rem;
  font-family: 'Pacifico', cursive;

}

h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: .9rem;
}

p {
  line-height: 1.5rem;
}

.justify {
  text-align: justify;
}

p:last-child {
  margin-bottom: 0px;
}

/*.home-wrap h1,*/
.home-wrap h2,
.home-wrap h3,
.home-wrap h4,
.home-wrap h5,
.home-wrap p {
  color: #ffffff;
  font-family: 'roboto', sans-serif;
}

.colorstext {
  color: #f56363;
}

.coloricon i {
  color: #f56363;
}

.colorsbg {
  background: #f56363;
  color: #ffffff;
}

.colorsbg .separator2 {
  border: 2px solid;
}

.colorsbg .separator_wrap::after,
.colorsbg .separator_wrap::before {
  background-color: #ffffff;
}

.lightbg {
  background-color: #f9f9f9;
}

.transition {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/*
Section
*/
section {
  margin: 0;
}

.sections {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.sections.footer {
  padding-bottom: 80px;
}

section .subtitle h5 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-family: 'roboto', sans-serif;
}

.parallax-section {
  max-width: 100%;
  color: #ffffff;
}

section .title-half h2 {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

section .subtitle-half h5 {
  font-weight: 100;
  font-size: 17px;
}

.fw-special-title-half {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 100;
}

.heading {
  margin-bottom: 4rem;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 750px;
}

.overlay-fluid-block {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
}

.home-overlay-fluid {
  background-color: rgba(41, 41, 41, 0.68);
  width: 80%;
  margin: auto;
}

.overlay-img {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #ffffff;
}

.no-padding {
  padding: 0 !important;
}

.fluid-blocks-col {
  padding: 70px 40px 0 80px;
}

.fluid-blocks-col-right {
  padding: 70px 80px 0 40px;
}

/*
Separator
*/
.separator {
  height: 1px;
  width: 150px;
  margin: auto;
  background: #f56363;
}

.separator-left {
  height: 1px;
  width: 150px;
  background: #f56363;
}

.separator_wrap {
  text-align: center;
}

.separator_wrap-left {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 30px;
}

.separator_wrap::after,
.separator_wrap::before {
  background-color: #f56363;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 90px;
  height: 1px;
  margin-top: 2px;
}

.separator_wrap-left::after {
  background-color: #f56363;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 80px;
  height: 1px;
  margin-top: 2px;
}

.separator2 {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid #f56363;
  transform: rotate(45deg);
  margin-right: 4px;
}

/*
Button
*/
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.disabled,
.btn-primary.disabled:hover {
  color: #ffffff;
  background-color: #d6962c;
  border-color: #d6962c;
}

.btn {
  margin-right: 15px;
  border-radius: 20px;
  margin-top: 2px;
}

.btn-lg,
.btn-group-lg>.btn {
  padding: 8px;
  font-size: 1.2rem;
  border-radius: 4px;
  width: 200px;
  border: 1px solid #fff;
  text-transform: none;
  transition: .6s;
  margin-top: 30px;
  color: #fff;
}

button.btn-lg {
  padding: 10px;
  font-size: 1.2rem;
  border-radius: 4px;
  width: 200px;
  border: 1px solid #fff;
  text-transform: none;
  transition: .6s;
  margin-top: 30px;
  color: #fff;
  display: inline-block;
  background: transparent;
  line-height: 1.5em;
}

button.btn-lg:hover {
  background: #d6962c;
  color: #fff;
}

.btn-md,
.btn-group-md>.btn {
  padding: 8px 20px;
  font-size: 1.2rem;
  border-radius: 30px;
}

/*
.btn-primary {
  color: #ffffff;
}

.btn-primary:active,
.btn-primary:hover {
  background: #d6962c;
}*/

.btn-primary-a:active,
.btn-primary-a:hover {
  background: #e49a1b;
  color: white;
}

.btn-primary-b:active,
.btn-primary-b:hover {
  background: #3884c7;
  color: white;
}

.btn-primary-icon:active,
.btn-primary-icon:hover {
  background: #cccccc;
  color: white;
}

.btn-primary-c:active,
.btn-primary-c:hover {
  background: #38c738;
  color: white;
}

.btn-default {
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: transparent;
}

.btn-default:before,
.btn-default:after {
  background-color: #ffffff;
}

.btn-default:focus {
  background-color: #ffffff;
  border-color: transparent;
}

.btn-default:hover {
  border-color: #ffffff;
  color: #f56363;
  background-color: #ffffff;
}

.btn-primary {
  background-color: #E7A331;
  color: #ffffff;
  border: 1px solid #E7A331;
  text-transform: uppercase;
  border-radius: 4px;
  min-width: 55px;
  min-height: 60px;
}

.btn-primary-a {
  background-color: #E7A331;
  color: #ffffff;
  border: 1px solid #E7A331;
  text-transform: uppercase;
  border-radius: 4px;
}

.btn-primary-icon {
  background-color: #ebebeb;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  margin-right: 0px;
}

.btn-primary-b {
  background-color: #337ab7;
  color: #ffffff;
  border: 1px solid #2e6da4;
  /*text-transform: uppercase;*/
  border-radius: 4px;
}

.btn-primary-c {
  background-color: #34b734;
  color: #ffffff;
  border: 1px solid #2d9f2d;
  border-radius: 4px;
}


.btn-primary:before,
.btn-primary:after {
  background-color: #ffffff;
}

.btn-primary:focus {
  background-color: #d6962c;
  border-color: #5b3e0b;
}

.btn-primary:hover {
  border-color: #5b3e0b;
  color: #fff;
}

/*
Extra height css
*/
.padding0 {
  padding: 0;
}

.center-content {
  text-align: center !important;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.padding-top-20 {
  padding-top: 1.33rem;
}

.padding-bottom-20 {
  padding-bottom: 1.33rem;
}

.padding-top-40 {
  padding-top: 2.66rem;
}

.padding-bottom-40 {
  padding-bottom: 2.66rem;
}

.padding-top-60 {
  padding-top: 5rem;
}

.padding-bottom-60 {
  padding-bottom: 5rem;
}

.padding-bottom-0 {
  padding-bottom: 0;
}

/*padding*/
.padding-twenty {
  padding: 10px 0;
}

.padding-fourty {
  padding: 20px 0;
}

.padding-sixty {
  padding: 30px 0;
}

.padding-eighty {
  padding: 40px 0;
}

h1 span {
  color: #f56363;
  font-weight: 400;
}

/* Header top menu css */

.header_top_menu {
  background: #fff;
  position: relative;
}


a.navbar-brand.our_logo {
  position: absolute;
  left: 0;
  top: -50px;
  width: 15%;
}

.header_top_menu .call_us_text a {
  color: #666;
  font-size: 15px;
  margin-left: 15px;
  padding: 5px;
  display: inline-block;
}

.header_top_menu .call_us_text a i {
  color: #e7a331;
  margin-right: 10px;
  font-size: 18px;
}

.head_top_social a {
  color: #e7a331;
  padding: 5px;
  display: inline-block;
}

/* main menu */
.menu-scroll {
  padding-top: 0px;
  padding-bottom: 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  background-color: #000;
  height: 90px;

}

@media only screen and (hover: none) and (pointer: coarse) {

  .menu-scroll {
    padding-top: 0px;
    padding-bottom: 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-color: #000;
  }

  /*.main_menu_bg{
        background:rgba(0, 0, 0, .45);
        height: 90px;
        
    }*/
}

.menu-scroll .header_top_menu {
  display: none;
}

.menu-scroll a.navbar-brand.our_logo {
  top: -16px;
}

.main_menu_bg {
  background: rgba(0, 0, 0, .45);
  height: 90px;

}

.navbar-default {
  background-color: transparent;
  border-color: transparent;
}

.container-fluid {
  margin-top: 15px;

}

.main_menu_bg li a.booking {
  border: 1px solid #e7a331;
  border-radius: 4px;
  color: #fff !important;
  margin-right: 15px;
  margin-top: 2px;
  min-width: 55px;
  min-height: 60px;
}

.main_menu_bg li a:hover.booking {
  color: #da9b31 !important;
  border-color: #5b3e0b;
}

.btt-pr-b:hover {
  color: #da9b31 !important;
  border-color: #5b3e0b;
  background-color: transparent;
}

.main_menu_bg .navbar {
  margin-bottom: 0px;

}

.navbar-default .navbar-nav>li>a {
  color: #fff;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
  color: #da9b31;
}

/* slider section */

.main_slider .main_slider_content h1 {
  font-size: 5rem;
  font-family: 'Pacifico', cursive;
  color: #fff;
  line-height: 6rem;
  margin: 0px 0px 20px 0px;
}

.main_slider_content {
  padding: 250px 0px 200px 0px;
  margin: 0 auto;
  color: #fff;
}

.slider_overlay {
  background: rgba(0, 0, 0, .6);
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}


/* Abouts Section css */

.abouts {
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.abouts_content {
  padding-top: 120px;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
  display: inline-block;
}

.single_abouts_text h4 {
  color: #000000;
}

.single_abouts_text h3 {
  color: #000000;
}


/* Features section css */
.features {
  background: center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.main_features_content_area {
  padding: 120px 0px;
  display: inline-block;
}

.main_features_content {
  background: right center no-repeat;
  padding: 40px;
  overflow: hidden;
}

.single_features_text {
  background: center center no-repeat;
  padding: 30px;
  background-size: cover;
}

/* Portfolio Section css */
.portfolio {
  background: white;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.portfolio_content {
  padding-bottom: 30px;
  /*display:inline-block;*/
}

.portfolio .portfolio_content .head_title h3 {
  color: #000000;
}

.portfolio .portfolio_content .head_title h4 {
  color: #000000;
}

.head_title {
  padding-top: 70px;
  padding-bottom: 50px;
}

.single_portfolio_text {
  display: inline-block;
  padding: 0;
  position: relative;
  /*overflow:hidden;*/
  border-radius: 5px;
  box-shadow: -2px 2px 10px 0px rgb(68 68 68 / 40%);
}

/*.single_portfolio_text img{
	width:100%;
}*/

.single_portfolio_text:hover .portfolio_images_overlay {
  top: 0px;
  left: 0px;
}

.single_portfolio_text:hover .special-category {
  filter: brightness(1);
}

.single_portfolio_text:hover .over-img {
  display: none;
}

.portfolio_images_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  padding: 10px;
  margin: 0 auto;
  top: -100%;
  border-radius: 5px;
  /*left: 14px;*/
  position: absolute;
  transition: .6s;
}

.portfolio_images_overlay_h6 {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1vw;
  margin: 10px;
}

.portfolio_images_overlay_h6_spec {
  text-transform: uppercase;
  color: black;
  /*font-size: 2rem;*/
  margin: 10px;
}

.portfolio_images_overlay p.product_price {
  font-size: 2vw;
  color: #fff;
  line-height: 0.5vh;
}

/*Amazing Deliceas Section css */
.ourPakeg .main_pakeg_content .head_title h3 {
  color: #fff;

}

.ourPakeg .main_pakeg_content .head_title h4 {
  color: #fff;
  font-family: 'Pacifico', cursive;
  font-size: 1.875rem;
}

.ourPakeg {
  background: no-repeat center top scroll;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  padding-bottom: 120px;
}

.single_pakeg_one {
  background: left center no-repeat;
  padding: 30px;
  overflow: hidden;
  margin-top: 60px;
}

.single_pakeg_two {
  background: right center no-repeat;
  padding: 30px;
  overflow: hidden;
  margin-top: 60px;

}

.single_pakeg_three {
  background: left center no-repeat;
  padding: 30px;
  overflow: hidden;
  margin-top: 60px;

}

.single_pakeg_text {
  background: #fff;
  padding: 30px;
  text-align: left;
}

.single_pakeg_text ul li {
  background: no-repeat left center;
  padding: 15px 0px 15px 60px;
  margin-top: 20px;

}

.mobailapps {
  background: top center no-repeat scroll;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main_mobail_apps_content {
  margin: 80px 0px;
  color: #fff;
  overflow: hidden;
}

.single_monail_apps_text {
  margin-top: 120px;
}

.single_monail_apps_text h4 {
  font-size: 1.875rem;
  margin-bottom: 30px;
}

.single_monail_apps_text h1 {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 5rem;

}

.single_monail_apps_text h1 span {
  font-size: 1.800rem;
  color: #fff;
  display: block;

}

.single_monail_apps_text {
  margin-left: -10px;
}

.single_monail_apps_text a {
  margin-top: 50px;
  margin-left: 10px;
  display: inline-block;
}

.single_monail_apps_text a img {
  max-width: 90%;
}

.footer_widget {
  background: Black center top no-repeat scroll;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.footer_widget_content {
  color: #fff;
}

.single_widget {
  padding-bottom: 50px;
  padding-top: 60px;
}

.single_widget h3 {
  font-size: 1.875rem;

  font-family: 'Pacifico', cursive;
}

.single_widget_info p {
  margin-top: 40px;
}

.single_widget_info p span {
  display: block;
}

.single_widget_info p span.phone_email {
  margin-top: 15px;
}

.footer_socail_icon {
  margin-top: 90px;
}

.footer_socail_icon a {
  padding: 5px;
}

.footer_socail_icon a i {
  font-size: 25px;
  color: #e7a331;
}


.single_widget_info p span.date_day {
  margin-top: 25px;
  font-weight: 600;
}

.footer {
  background: #000;
}

.footer .copyright p {
  padding: 25px;
  color: #fff;
}

.footer .copyright p i {
  padding: 0px 10px;
  color: #ff0000;
}

.footer .copyright p a {
  padding: 0px 10px;
  color: green;
}

.textcenter {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-right: -50%;
}

.scrollup {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  color: #fff;
  cursor: pointer;
  background-color: #000;
  z-index: 898;
  text-align: center;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}

.scrollup:hover {
  background: #e7a331;
  opacity: 1;
}

.scrollup i {
  position: absolute;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}

td {
  text-align: center;
  vertical-align: middle;
}

th {
  text-align: center;
}

tr {
  cursor: pointer;
}

.selected {
  color: white;
  background-color: #E7A331;
}

textarea {
  width: 100%;
  resize: none;
  margin-bottom: 25px;
  margin-top: 20px;
  border: 1px solid #ddd;
  padding: 0.5rem;
  color: #666;
}

.cookie-disclaimer {
  background: #000000;
  color: #FFF;
  opacity: 0.8;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 999;
  position: fixed;
}

.cookie-disclaimer .container {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cookie-disclaimer .cookie-close {
  float: right;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  cursor: pointer;
}

.cookie-disclaimer p {
  margin: 1rem;
}

.hover_color:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, .3);
  transform: scale(1.05);
}

.hover_color_w:hover {
  box-shadow: 0 0 11px rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.pane {
  overflow-y: scroll;
  max-height: 150px;
}

.category {
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  cursor: pointer;
  transition: transform .5s;
}

.special-category {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
  filter: brightness(.75);
}

.all-category {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.container-category {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));*/
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  padding-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
  justify-items: center;
}


.special-container-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /*grid-template-rows: auto auto auto;*/
  grid-template-rows: repeat(2, auto);
  row-gap: 85px;
  column-gap: 65px;
  padding: 30px;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-evenly;
  justify-items: center;
}

.container-food-list {
  padding: 30px;
  margin-right: auto;
  margin-left: auto;
}

/*.container-category img {
    width: 100%;
    display: block;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all 100ms ease-out;
}

.container-category img:hover {
    transform: scale(1.04);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}*/

.container-category img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(33, 33, 33, .5);
}

.outer-div {
  width: 100%;
  text-align: center;
}

.inner-div {
  display: inline-block;
  margin: 0 auto;
}

#special_info_image {
  object-fit: cover;
}

.fill {
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden
}

.fill img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%
}

.image_hover:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(33, 33, 33, .5);
}

.eu_image_hover:hover {
  cursor: pointer;
}

.list_image {
  transition: transform .5s;
}

.item {
  height: 100%;
  max-width: 200px;
  min-width: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  color: #fff;
  grid-column-start: auto;
  grid-row-start: auto;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  transition: transform 0.3s ease-in-out;
  border-radius: 5px;
  cursor: pointer;
  counter-increment: item-counter;
}

.item__details {
  min-height: 40%;
  position: relative;
  z-index: 1;
  padding: 10px;
  color: #444;
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  letter-spacing: 1px;
  color: #828282;
}

.item__details:before {
  font-weight: bold;
  font-size: 1.1rem;
  padding-right: 0.5em;
  color: #444;
}

.item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 5px;
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}

.item:hover {
  transform: scale(1.05);
}

.item:hover:after {
  opacity: 0;
}

.vertical-center {
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  justify-content: end;
}

.grid-container {
  display: grid;
  grid-template-columns: auto 70px;
  grid-template-rows: auto auto;
  grid-gap: 5px;
  padding-top: 5px;
  justify-content: end;
}

.grid-container-menu {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-gap: 5px;
  padding-top: 5px;
  justify-content: center;
}

.grid-container-allergens {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-gap: 5px;
  padding: 5px;
}

.grid-container2 {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-gap: 5px;
  padding: 5px;
  justify-content: end;
}

.grid-container3 {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-gap: 5px;
  padding: 5px;
}

.grid-pay1 {
  display: grid;
  grid-template-columns: 10vh;
  grid-template-rows: 8vh;
  grid-gap: 5px;
  padding: 5px;
  padding-bottom: 30px;
}

.grid-pay2 {
  display: grid;
  grid-template-columns: 10vh 10vh;
  grid-template-rows: 8vh;
  grid-gap: 5px;
  padding: 5px;
  padding-bottom: 30px;
}

.grid-pay3 {
  display: grid;
  grid-template-columns: 10vh 10vh 10vh;
  grid-template-rows: 8vh;
  grid-gap: 5px;
  padding: 5px;
  padding-bottom: 30px;
}

.grid-pay4 {
  display: grid;
  grid-template-columns: 10vh 10vh 10vh 10vh;
  grid-template-rows: 8vh;
  grid-gap: 5px;
  padding: 5px;
  padding-bottom: 30px;
}

.grid-pay5 {
  display: grid;
  grid-template-columns: 10vh 10vh 10vh 10vh 10vh;
  grid-template-rows: 8vh;
  grid-gap: 5px;
  padding: 5px;
  padding-bottom: 30px;
}

.grid-pay6 {
  display: grid;
  grid-template-columns: 10vh 10vh 10vh 10vh 10vh 10vh;
  grid-template-rows: 8vh;
  grid-gap: 5px;
  padding: 5px;
  padding-bottom: 30px;
}

.grid-container-spec {
  display: grid;
  grid-template-areas:
    'grid_text_a grid_button_a';
  grid-gap: 5px;
  padding: 5px;
}

.grid-container-spec2 {
  display: grid;
  grid-template-areas:
    'grid_text_a';
  grid-gap: 5px;
  padding: 5px;
  justify-content: center;
}

.item1_2 {
  grid-area: grid_text_a;
}

.img-cart {
  margin: 5px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #e7a331;
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.dot_allergen {
  height: 10px;
  width: 10px;
  background-color: #e7a331;
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.dot_div {
  float: right;
  margin-top: 10%;
  margin-right: 20%;
}

.dot_div_allergen {
  float: right;
  margin-right: 5%;
}

.allergen {
  display: flex;
  align-items: center;
  /*font-size: 1.1em;*/
}

.spec_text_item1 {
  color: white;
  font-size: 18px;
}

.spec_text_item2 {
  color: white;
  font-size: 12px;
}

.spec_text_item1_2 {
  color: white;
  font-size: 19px;
}

.spec_text_item2_2 {
  color: white;
  font-size: 13px;
}

.alignleft {
  padding: 8px 30px;
  float: left;
}

.alignright {
  padding: 8px 30px;
  float: right;
}

/* The container */
.container-mat-mobile {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-mat-mobile input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-mobile {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d1d1d1;
}

/* On mouse-over, add a grey background color */
.container-mat-mobile:hover input~.checkmark-mobile {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-mat-mobile input:checked~.checkmark-mobile {
  background-color: rgb(7, 194, 7);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-mobile:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-mat-mobile input:checked~.checkmark-mobile:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-mat-mobile .checkmark-mobile:after {
  left: 15px;
  top: 5px;
  width: 10px;
  height: 20px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The container */
.container-mat {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-mat input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d1d1d1;
}

/* On mouse-over, add a grey background color */
.container-mat:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-mat input:checked~.checkmark {
  background-color: rgb(7, 194, 7);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-mat input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-mat .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.grid-container4 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-auto-rows: 3rem;
  grid-gap: 5px;
}

.grid-container-materials {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 1.5rem;
  margin-left: 10px;
}

.grid-container5 {
  float: left;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-gap: 5px;
  padding: 5px;
  align-items: center;
  /*padding-top: 20px;*/
}

.grid-container-icons1 {
  display: grid;
  grid-template-columns: 32px;
  grid-gap: 5px;
  padding: 5px;
}

.grid-container-icons2 {
  display: grid;
  grid-template-columns: 32px 32px;
  grid-gap: 5px;
  padding: 5px;
}

.grid-container-icons3 {
  display: grid;
  grid-template-columns: 32px 32px 32px;
  grid-gap: 5px;
  padding: 5px;
}

.grid-container-icons4 {
  display: grid;
  grid-template-columns: 32px 32px 32px 32px;
  grid-gap: 5px;
  padding: 5px;
}

.extra-feltet-text-style {
  float: left;
}

#sub_title {
  margin-top: 10px;
}

.sub_title_icon {
  width: 32px;
  height: 32px;
}

.grid-container-items {
  display: grid;
  grid-template-rows: auto auto;
  grid-gap: 5px;
  padding: 5px;
}

.sitemessage {
  display: inline-block;
  white-space: nowrap;
  /*animation: floatText 30s infinite linear;*/
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: floatText;
  padding-left: 100%;
  /*Initial offset*/
}

.sitemessage:hover {
  animation-play-state: paused;
}

@keyframes floatText {
  to {
    transform: translateX(-100%);

  }
}

#animate-container {
  margin-right: 20%;
  margin-left: 20%;
  white-space: nowrap;
  text-transform: uppercase;
  overflow: hidden;
}

.parent {
  position: relative;
  height: 20vw;
  min-height: 200px;
  max-height: 220px;
  width: 25vw;
  min-width: 230px;
  max-width: 250px;
}

.parent_list {
  position: relative;
  height: 12vw;
  max-height: 150px;
  width: 14vw;
  max-width: 180px;
}

.modal_parent_list {
  position: relative;
  height: 50vh;
  max-height: 450px;
  width: 100%;
}

.over-img {
  position: absolute;
  top: 34%;
  left: 34%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 26%;
  /* Need a specific value to work */
}

.row_ino_text::after {
  content: "";
  clear: both;
  display: table;
}

.column_info_text_image {
  float: right;
  width: 50%;
  padding: 5px;
}

.column_info_text {
  float: left;
  width: 50%;
  padding: 5px;
}

.info-text-div {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1rem;
  font-size: 1.2rem;
  word-wrap: break-word;
}

.info-al-div {
  display: flex;
  align-items: center;
  line-height: 1rem;
  font-size: 1.2rem;
  word-wrap: break-word;
}

#page-al-text {
  margin: 5vh;
}

.shake {
  -webkit-animation: shake-animation 4.72s ease infinite;
  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
}

.qr-img-div {
  width: 90px;
  min-width: 90px;
}

.light_modal {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.qr-container {
  padding: 100px 30px 200px 4%;
  margin: 0 auto;
  vertical-align: top;
  display: inline-block;
  text-align: center;

}

.fb-container {
  padding: 120px 30px 200px 0px;
  margin-left: 20px;
  vertical-align: top;
  width: 400px;
  float: left;
  text-align: center;
}

.fb-container2 {
  vertical-align: top;
  text-align: center;
}

.skeleton {
  /*opacity: .7;*/
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }

  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.qr-img {
  width: 120px;
  height: 120px;
  background-color: grey;
  border-radius: 5px;
}

.qr-caption {
  font-size: 30px;
  inline-size: 190px;
  overflow-wrap: break-word;
  color: white;
  right: 4rem;
  padding-top: 10px;
  line-height: 28px;
}

.qr-text-div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /*position: absolute;*/
}

.qr-max-img {
  height: 90px;
  width: 90px;
}

.fh5co-food-qr {
  clear: both;
  width: 100%;
}

.grid-container-items_select {
  display: grid;
  grid-template-columns: 40px 100px;
  grid-template-rows: 1.5rem;
}

.grid-container-items_select_cont {
  display: grid;
  grid-template-columns: auto auto;
}

#allergen_modal_div {
  max-width: 700px;
}

@media screen and (max-width: 768px) {
  .qr-container {
    padding: 100px 30px 200px 10%;
  }
}

/*heti menü*/

/*.grid-container-week_menu {
    display: grid;
    grid-template-columns: auto auto; 
    grid-template-rows: auto auto;
    grid-gap: 5px;
    padding: 5px;
    justify-self: start;
  }*/

.circle {
  width: 25px;
  height: 25px;
  border-radius: 5px 10px 5px;
  color: #fff;
  text-align: center;
  background: #E7A331
}

.week-menu-grid {
  display: grid;
  /*grid-template-columns: repeat(2, 1fr);*/
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.week-menu-container-category {
  display: grid;
  grid-template-columns: 50px auto;
  grid-template-rows: auto;
}

.single_menu_list {
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
}

.single_menu_list h4 {
  font-size: 20px;
  border-bottom: 1px dotted #333;
  padding-bottom: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#week_menu_modal_div {
  max-width: 800px;
}

.arrow {
  position: relative;
  top: -5px;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: 0.2em solid grey;
  border-top: 0.2em solid grey;
  transform: rotate(135deg);
  margin-right: 0.5em;
  margin-left: -15px;
}

.button-materials {
  appearance: button;
  background-color: transparent;
  background-image: linear-gradient(to bottom, #fff, #f2f3f4);
  border: 0 solid #e5e7eb;
  border-radius: .5rem;
  box-sizing: border-box;
  color: #000000;
  column-gap: 1rem;
  cursor: pointer;
  font-size: 100%;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  outline: 2px solid transparent;
  text-align: center;
  text-transform: none;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: -6px 8px 10px rgba(128, 128, 128, 0.1), 0px 2px 2px rgba(128, 128, 128, 0.2);
}

.button-materials:active {
  background-color: #f3f4f6;
  box-shadow: -1px 2px 5px rgba(128, 128, 128, 0.15), 0px 1px 1px rgba(128, 128, 128, 0.15);
  transform: translateY(0.125rem);
}

.button-materials:focus {
  box-shadow: rgba(105, 105, 105, .46) 0 0 0 4px, -6px 8px 10px rgba(128, 128, 128, 0.1), 0px 2px 2px rgba(128, 128, 128, 0.2);
}

.card.is-inactive {
  pointer-events: none;
  opacity: 0.5;
}

.card.is-inactive:hover {
  background-color: #949fb0;
  transform: scale(1);
}

.card.is-expanded .card__inner:after {
  content: "";
  opacity: 1;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 15px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.card.is-expanded .card__expander {
  max-height: 1000px;
  min-height: 200px;
  overflow: visible;
  margin-top: 30px;
  opacity: 1;
}

.card.is-expanded:hover .card__inner {
  transform: scale(1);
}

.card__expander {
  transition: all 0.2s ease-in-out;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  border-radius: 10px;
}

.card__expander .fa {
  font-size: 0.75em;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.card.is-collapsed .card__inner:after {
  content: "";
  opacity: 0;
}

.card.is-collapsed .card__expander {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}

.card.is-expanded .card__expander {
  max-height: 1000px;
  min-height: 200px;
  overflow: visible;
  margin-top: 30px;
  opacity: 1;
}

.navbar-fixed-top {
  z-index: 898;
}

/* Progress  */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #E7A331;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 100%;
  width: 100%;
  height: 8px;
}


/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 899;
  height: 100%;
  width: 100%;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin-left: -50px;
  margin-top: -40px;
  padding: 10px;
  border-radius: 100%;
  animation: loading 3s infinite;
}

#loader img {
  display: block;
  max-width: 100%;
  animation: loading-icon 3s infinite;
}

@keyframes loading {
  0% {
    transform: perspective(250px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(250px) rotateX(180deg) rotateY(0deg);
  }
}

@keyframes loading-icon {
  0% {
    transform: perspective(250px) rotateX(0deg);
  }

  50% {
    transform: perspective(250px) rotateX(180deg);
  }
}

#szechenyi {
  display: block;
  position: fixed;
  bottom: 0;
  top: 120px;
  height: 180px;
  width: 255px;
  background-image: url(../images/szechenyi_terv_logo_fenti.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

#szechenyi.closed {
  transform: translateY(-150%);
}

#szechenyi-toggle {
  display: block;
  position: fixed;
  right: 10px;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  color: white;
  border: 0;
  top: 305px;
  border-radius: 20px;
  background-color: #094ea1;

  z-index: 1;
  outline: none;
  cursor: pointer;
  font-size: unset;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  box-shadow: 0px 0px 15px 0px rgba(13, 105, 217, 0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(13, 105, 217, 0.5);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(13, 105, 217, 0.5);
  -o-box-shadow: 0px 0px 15px 0px rgba(13, 105, 217, 0.5);
  -ms-box-shadow: 0px 0px 15px 0px rgba(13, 105, 217, 0.5);
}

#szechenyi-toggle.closed {
  transform: rotate(180deg);
}

#szechenyi-toggle:hover {
  background-color: #1767ca;
}

.palyazat-content {
  right: 0;
  text-align: right;
}

.palyazat-content img {
  /*opacity: 0.7;
    border-radius: 5px;*/
  transition: transform .2s;
  /* Animation */
  width: 25%;
  max-width: 300px;
  min-width: 150px;
}

.palyazat-content img:hover,
.palyazat-content img:focus {
  /*box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    opacity: 1;
    transform: scale(1.05);*/
  cursor: pointer;
}

/*---------*/
@-webkit-keyframes shake-animation {
  0% {
    transform: translate(0, 0)
  }

  1.78571% {
    transform: translate(5px, 0)
  }

  3.57143% {
    transform: translate(0, 0)
  }

  5.35714% {
    transform: translate(5px, 0)
  }

  7.14286% {
    transform: translate(0, 0)
  }

  8.92857% {
    transform: translate(5px, 0)
  }

  10.71429% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(0, 0)
  }
}

@keyframes shake-animation {
  0% {
    transform: translate(0, 0)
  }

  1.78571% {
    transform: translate(5px, 0)
  }

  3.57143% {
    transform: translate(0, 0)
  }

  5.35714% {
    transform: translate(5px, 0)
  }

  7.14286% {
    transform: translate(0, 0)
  }

  8.92857% {
    transform: translate(5px, 0)
  }

  10.71429% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(0, 0)
  }
}

#eu-palyazatok {
  padding-top: 90px;
  padding-bottom: 80px;
}

#eu-palyazatok .section-title {
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
}

#eu-palyazatok .container h3 {
  line-height: 1;
}

.feature-icon {
  float: left;
}

.feature-info {
  padding-left: 55px;
  padding-top: 5px;
}

.feature-info h4 {
  color: #4387d6;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.feature-description {
  line-height: 23px;
  padding-right: 10px;
}

.feature-info p {
  color: black;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0 0 10px;
}

.feature-info ul {
  list-style-type: disc;
  list-style-position: outside;
  color: black;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0 0 10px;
}

.back-icon {
  z-index: -1;
  color: #f5f5f5;
  position: absolute;
  padding-left: 40px;
  left: 0;
  top: 0;
  font-size: 19rem;
}

.highlight {
  color: #808080;
}

.tender {
  cursor: pointer;
  width: auto;
}

/* The Close Button */
.close-tender {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  opacity: 100%;
}

.close-tender:hover,
.close-tender:focus {
  /*color: #ffe6e6;*/
  text-decoration: none;
  cursor: pointer;
}

.close-tender {
  text-shadow: black 1px 0 10px;
  ;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-tender-content {
    width: 100%;
  }
}

.modal-tender {
  display: none;
  position: fixed;
  z-index: 111;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 999;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-tender img {
  position: absolute;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: auto;
  width: auto;
  padding: 10px;
}

/* Modal Content (image) */
.modal-tender-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption-tender {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-tender-content,
#caption-tender {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

.modal-title {
  padding-right: 40px;
}

.navbar-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: 105%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.main_menu_bg li a i {
  padding-top: 10px;
}