/* ==========================================================================
   General
   ========================================================================== */
@charset "UTF-8";

@font-face 
{
    font-family: tanha;
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Tanha-FD.eot');
    src: url('../fonts/Tanha-FD.eot') format('embedded-opentype'),
    url('../fonts/Tanha-FD.woff') format('woff'),  
    url('../fonts/Tanha-FD.ttf') format('truetype');
}

html,body{
  margin: 0;
  padding: 0;
  font-family: 'tanha',tahoma,sans-serif;
  background-image: url(../images/pattern.jpg);
  background-position: center;
  background-repeat: repeat;
}

a{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
  color: #EF4229;
}

h1,h2,h3,h4,h5{
  margin: 0;
}

header, section, footer, aside, nav, main, article, figure {
    display: block; 
    direction: rtl;
}

::-moz-selection {
    text-shadow: none;
}

::selection {
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.nopadding{
  padding: 0 !important;
}

.noborder{
  border: none !important;
}

.nopadding-right{
  padding-right: 0 !important;
}

.nopadding-left{
  padding-left: 0 !important;
}

.homecontent h1{
  font-size: 45px;
}

.homecontent h2{
  font-size: 35px;
}

.homecontent{
  text-align: center;
  padding:0;
}

.white-back{
  background-color: #fff;
}

.hidden{
     opacity:0;
}
.visible{
     opacity:1;
}

.dir-rtl{
  direction: rtl;
}


/* ==========================================================================
   Header
   ========================================================================== */
.whole-menu {
    background-image: url(../images/bg-section.jpg);
    background-size: cover;
    height: 500px;
    width: 100%;
    overflow: hidden;
    background-position: center;
    position: relative;
}

.whole-menu-inner {
  background-image: url(../images/bg-section.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-position: center;
  position: relative;
}

.navbar {
  margin: 0 !important;
}

.whole-menu-inner .navbar {
  margin-bottom: 0px;
}

.whole-content {
  width: 100%;
  height: 80%;
  z-index: 2;
  box-sizing: border-box;
  margin: 0 auto;
  transition: all 1s ease;
  max-width: 1170px;
}

.top-menu img{
  height: 70px;
  margin: 15px auto;
}

.ads img{
  width: 100%;
}

.affix {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: all .5s ease-in-out;
  transition: all 1s ease-in-out;
}

.affix + .container {
  padding-top: 70px;
}

@media (min-width: 768px){
  .navbar {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: all 1s;
  }
}



/* ==========================================================================
   Search Part
   ========================================================================== */
.white-search {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  }
.search-box{
  width: 70%;
  margin: 0 auto;
  position: relative;
}

.search-box input {
    margin: 40px 25px;
    width: 100%;
    display: block;
    border: none;
    padding: 10px 0;
    font-size: 2em;
    border-bottom: solid 1px #fff;
    -webkit-transition: all 0.5s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.5s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: -webkit-linear-gradient(top, rgba(239, 66, 41, 0) 97%, #fff 3%);
    background: linear-gradient(to bottom, rgba(239, 66, 41, 0) 97%, #fff 3%);
    background-position: -800px 0;
    background-size: 800px 100%;
    background-repeat: no-repeat;
    color: #fff;
    margin: 0 auto;
}

.search-box input:focus, .search-box input:valid {
    box-shadow: none;
    outline: none;
    background-position: 0 0;
}

.search-box input:focus::-webkit-input-placeholder, .search-box input:valid::-webkit-input-placeholder {
 color: #fff;
 font-size: 0.7em;
 opacity: 0.9;
 -webkit-transform: translateY(-20px);
 transform: translateY(-20px);
 visibility: visible !important;
 /*transition: all 0.3s;*/
}
.search-box input::-webkit-input-placeholder{
  color: #fff;
  transition: all 0.5s ease;
}

.search-box a {
    float: left;
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 0;
    color: #fff;
    font-size: 2em;
    font-weight: initial;
    transition: all 1s;
}

.search-box a:hover {
  color: #ccc;
}

.social {
  position: relative;
}

.social-icons {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
/*  position:absolute;
  top:50px;
  left:0;
  right: 0;*/
  -ms-transform:translate(0,0);
  -webkit-transform:translate(0,0);
  transform:translate(0,0);
}

/* Icons */

.social-icons a {
  color:#fff;
  background-color: rgba(239, 66, 41, 0.6);
  border-radius:2px;
  text-align:center;
  text-decoration:none;
  font-family:fontawesome;
  position: relative;
  display: inline-block;
  width:40px;
  height:40px;
  padding-top:10px;
  margin:0;
  -o-transition:all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
   -webkit-font-smoothing: antialiased;
}

.social-icons a:hover {
  background: #ef4229;
}

/* pop-up text */

.social-icons a span {
  color:#666;
  position:absolute;
  font-family:'tanha',tahoma,sans-serif;
  bottom:0;
  left:-25px;
  right:-25px;
  padding:5px 7px;
  z-index:-1;
  font-size:14px;
  border-radius:2px;
  background:#fff;
  visibility:hidden;
  opacity:0;
  -o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* pop-up text arrow */

.social-icons a span:before {
  content:'';
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  position:absolute;
  bottom:-5px;
  left:40px;
}

/* text pops up when icon is in hover state */

.social-icons a:hover span {
  bottom:50px;
  visibility:visible;
  opacity:1;
}

/* font awesome icons */

.social-icons a:nth-of-type(1):before {
content:'\f09a';
}
.social-icons a:nth-of-type(2):before {
content:'\f099';
}
.social-icons a:nth-of-type(3):before {
content:'\f0d5';
}
.social-icons a:nth-of-type(4):before {
content:'\f16d';
}
.social-icons a:nth-of-type(5):before {
content:'\f1d8';
}
.social-icons a:nth-of-type(6):before {
content:'\f1cb';
}




/* ==========================================================================
   Advance Search
   ========================================================================== */
.btn-default {
  color: #fff !important;
  background-color: rgba(239, 66, 41, 0.6) !important;
}

.btn{
  padding: 10px 20px;
  border-radius: 2px; 
  border: none;
}

.btn-default:hover, .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus{
    color: #fff !important;
    background-color: rgba(239, 66, 41, 0.8) !important;
}

.form-overlay {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0;
  background: #000;
  -webkit-transition: background 1s, opacity 0.4s, width 0s 0.4s;
  transition: background 1s, opacity 0.4s, width 0s 0.4s;
}

.show-form-overlay .form-overlay {
  width: 100%;
  opacity: 0.7;
  z-index: 1;
  -webkit-transition: background 1s, opacity 0.4s, width 0s;
  transition: background 1s, opacity 0.4s, width 0s;
}
.show-form-overlay.form-submitted .form-overlay {
  background: #119DA4;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
}

#form-container {
  cursor: pointer;
  color: rgba(239, 66, 41, 1);
  z-index: 1;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0vh;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
  background-color: rgb(248, 248, 248);
  width: 20%;
  max-width: 20%;
  height: 36px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: all 0.2s 0.45s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
  transition: all 0.2s 0.45s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

#form-container:hover{
  height: 50px;
}

#form-container.expand {
  cursor: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.17);
  border-radius: 0;
  width: 70%;
  height: 500px;
  max-width: 610px;
  padding: 0;
  -webkit-transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
  transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
}

#form-close {
  cursor: pointer;
}

.advance-search-box .icon::before {
  cursor: pointer;
  font-size: 30px;
  line-height: 60px;
  display: block;
  -webkit-transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.advance-search-box .fa-search-plus::before {
  display: block;
}

.advance-search-box .fa-close::before {
  display: none;
}

.advance-search-box .expand.fa-search-plus::before {
  display: none;
}

.advance-search-box .expand.fa-close::before {
  display: block;
  -webkit-animation: none;
  animation: none;
}

#form-content {
  font-family: 'tanha' , tahoma, sans-serif;
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
  width: 100%;
  opacity: 0;
  text-align: right;
  -webkit-transition: opacity 0.2s 0.2s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.2s 0.2s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s 0.2s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s 0.2s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
#form-content.expand {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition: opacity 0s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: opacity 0s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0s;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
#form-content form {
  color: #FFF;
  width: 100%;
  height: 100%;
  padding: 0 20px 20px 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: center;
}

#form-head {
  font-size: 100%;
  padding: 0;
  margin: 0 20px;
  color: #000;
  text-align: center;
  -webkit-transition: all 0.8s 0.6s;
  transition: all 0.8s 0.6s;
}
#form-head h1 {
  padding: 0;
  margin-bottom: 30px;
  margin-top: 0;
}
#form-head .pre {
  display: block;
}
#form-head .post {
  display: none;
}

.form-submitted#form-head {
  -webkit-transform: translateY(250%);
  transform: translateY(250%);
}
.form-submitted#form-head .pre {
  display: none;
}
.form-submitted#form-head .post {
  display: block;
}

.advance-search-box .input {
  background: rgba(0, 0, 0, 0.2);
  display: block;
  height: 50px;
  width: 100%;
  margin: 20px 0;
  padding: 0 10px;
  border-width: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.advance-search-box input, select, textarea {
  color: #FFF;
}

.advance-search-box .btn-red {
    width: 50%;
    margin-top: 3%;
}

.advance-search-box select option {
  background: #fff;
  color: #555;
  border: none;
  box-shadow: none;
  outline: none;
}

.advance-search-box select option:disabled {
  font-style: italic;
  color: #000;
  font-size: 90%;
}

.advance-search-box .input {
  -webkit-transition: -webkit-transform 0s 1s;
  transition: -webkit-transform 0s 1s;
  transition: transform 0s 1s;
  transition: transform 0s 1s, -webkit-transform 0s 1s;
}

.advance-search-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

@media (max-width: 600px) {
  #form-container.expand {
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: initial;
    overflow-x: hidden;
    bottom: 0;
  }

  .advance-search-box h1 {
    font-size: 300%;
  }

  .advance-search-box .icon:hover::before {
    -webkit-animation: none;
            animation: none;
  }

  .form-overlay {
    display: none;
    -webkit-transition: none;
    transition: none;
  }
}

@-webkit-keyframes wiggle {
  0%, 100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@keyframes wiggle {
  0%, 100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}




/* ==========================================================================
   Mega Menu
   ========================================================================== */
header .affix {
  top: 0;
  width: 100%;
  border-radius: 0;
}

header .affix + .container-fluid {
  padding-top: 70px;
}

header{
  background-size: 100%;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 999;
  background-color: #000;
}

header .k-up{
  height: 80px;
}

header .header-back{
  margin: 0 auto;
  background-color: rgba(0,0,0,0.5);
  transition: width 2s;
  -webkit-transition: width 2s;
  min-height: 50px;
  padding-top: 5px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

header .nav > li.searchbtn,header .nav > li.sharebtn{
  color: #fff !important;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  display: block;
  padding:15px;
  cursor: pointer;
}

header .nav > li > a{
  color: #fff !important;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

header .nav > li.searchbtn:hover,header .nav > li.sharebtn:hover{
  background: none;
  border-bottom: 2px solid #DC2827;
}



header .nav > li > a:hover,header .nav > li > a:focus{
  background: none;
  border-bottom: 2px solid #DC2827;
}

header .nav .open > a,header .nav .open > a:hover,header .nav .open > a:focus{
  background:none;
  border-bottom: 2px solid #DC2827;
}

header .navbar-brand{
  color: #fff !important;
  margin-left: 20px !important;
  position: relative;
}

header .navbar.affix{
  background-color: #000;
  z-index: 4;
  width: 100%;
}

header #myNavbar .navbar-left{
  padding: 0 !important;
  margin: 0 !important;
}

header .icon-bar{
  background-color: #fff;
}

.topnav{
  position: static;
  left: -100%;
  z-index: 2;
  width: 100%;
  background-color: #000;
  height: 100%;
  transition: all 0.5s;
}

.topnav.responsible{
  left: 0;
}

.nav > li > a {
  position: relative;
  display: inline-block;
  padding: 12px 10px;
}


/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-wraper {
    width: 100%;
    margin: 30px auto;
    text-align: center;
}

.btn-red {
    background-color: #EF4229;
    color:#fff;
    border:none;
    position:relative;
    height:40px;
    font-size:1em;
    padding:0 2em;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
  }

.btn-red:hover, .btn-red:focus, .btn-red:active{
  background:transparent;
  color:#ef4229;
}

button.btn-red:before, button.btn-red:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #ef4229;
  transition:400ms ease all;
}

button.btn-red:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button.btn-red:hover:before,button.btn-red:hover:after{
  width:100%;
  transition:800ms ease all;
}

.red-btn{
  background-color: rgba(239, 66, 41, 0.8);
  color: #fff !important;
  transition: all 0.7s;
}

/* green btn */
.btn-green {
    background-color: #d3ef29;
    color:#fff;
    border:none;
    position:relative;
    height:45px;
    font-size:1.1em;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
  }

.btn-green:hover, .btn-green:focus, .btn-green:active{
  background:transparent;
  color:#d3ef29;
}

button.btn-green:before, button.btn-green:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #d3ef29;
  transition:400ms ease all;
}

button.btn-green:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button.btn-green:hover:before,button.btn-green:hover:after{
  width:100%;
  transition:800ms ease all;
}

/* Black btn */
.btn-black {
  background-color: #000;
  color:#fff;
  border:none;
  position:relative;
  height:45px;
  font-size:1.1em;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
}

.btn-black:hover, .btn-black:focus, .btn-black:active{
  background:transparent;
  color:#000;
}

button.btn-black:before, button.btn-black:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #000;
  transition:400ms ease all;
}

button.btn-black:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}

button.btn-black:hover:before,button.btn-black:hover:after{
  width:100%;
  transition:800ms ease all;
}


/* ==========================================================================
   Latest Recipe
   ========================================================================== */
.middle-content {
  overflow: hidden;
}

.big-recipe {
    position: relative;
    margin: 0 auto 30px auto;
}

.caption-img {
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 20px;
    color: #fff;
}

.big-recipe .crop-image{
  width: 100%;
  height: 555px;
  overflow: hidden;
}

.divider{
    border-bottom: 1px solid #fff;
    width: 85%;
    margin: 20px auto;
    opacity: 0.5;
}

.bigrecipe-detail .category {
  border: 1px dashed #f5f5f5;
  padding: 7px 10px;
  color: #ffffff;
  margin: 0;
  width: 55%;
  text-align: center;
  top: 5px;
  position: relative;
  left: 15%;
}

.bigrecipe-detail ul{
  padding: 0 20px;
  margin: 0;
}

.bigrecipe-detail ul li {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 2.7em;
}

.big-recipe .caption-img h3{
  margin: 40px 20px;
}

.bigrecipe-detail ul li:first-child{
  border-left: 1px solid rgba(255,255,255,0.5);
}

.big-recipe-caption {
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 10px 20px;
    text-align: justify;
    line-height: 1.7em;
    font-weight: normal;
    height: 150px;
    overflow: hidden;
    display: inline-block;
}

.big-recipe-caption p{
  width: 100%;
}

.big-recipe .bigrecipe-detail li img {
    width: 120px !important;
    margin: 0 auto;
    opacity: 1 !important;
    position: relative;
    left: 0;
    right: 0;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.small-recipe {
  height: 111px;
}

.small-recipe figure {
  height: 100%;
}

.small-recipe .category{
  margin: 10px 10px 0 0;
}

.small-recipe .crop-image{
  width: 100%;
  height: 111px;
  overflow: hidden;
}

.recipe-level {
    color: #666;
    font-size: 12px;
    margin: 0 10px;
}

figure img {
  width: 100%;
  height: 100%;
}

/*border effect */
.grid {
  position: relative;
  margin: 0 auto;
}

figure .effect-bubba {
  background: #000;
}

.grid figure .effect-bubba{
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.grid figure .effect-bubba img {
  position: relative;
  width: 100%;
  opacity: 0.8;
  border-radius: 1px;
}

figure .effect-bubba img {
  opacity: 1;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure .effect-bubba:hover img {
  opacity: 0.4;
}

figure .effect-bubba .animate-border::before,
figure .effect-bubba .animate-border::after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

figure .effect-bubba .animate-border::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0,1);
  transform: scale(0,1);
}

figure .effect-bubba .animate-border::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1,0);
  transform: scale(1,0);
}

figure .effect-bubba:hover .animate-border::before,
figure .effect-bubba:hover .animate-border::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.figure.effect-bubba figcaption {
  width: 100%;
}

.food-link-icon{
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%; 
}

.small-food-link-icon{
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%; 
}

.effect-bubba .link-icon{
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.effect-bubba .link-icon i {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,-60px,0);
  transform: translate3d(0,-60px,0);
  opacity: 0;
  font-size: 2em;
}

.effect-bubba:hover .link-icon i {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.category {
  border: 1px dashed #ef4229;
  padding: 5px;
  color: #ef4229;
  margin: 10px;
}

.recipe-title {
  margin: 15px 10px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: 173px;
}

.middle-recipe-title {
  margin: 15px 10px;
  color: #333;
/*  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;*/
  display: inline-block;
  width: 245px;
}

.recipe-caption {
    width: 100%;
    float: right;
    padding: 15px;
    text-align: justify;
    font-size: 13px;
    line-height: 1.7em;
    color: #777;
    overflow: hidden;
    display: inline-block;
    height: 105px;
    margin-bottom: 27px;
}

.recipe-caption p{
  margin: 0;
  width: 330px;
}

.recipe-info {
    width: 100%;
    float: right;
}

.recipe-info ul{
  text-align: center;
  padding-right: 0;
}
 
.recipe-info ul li {
    display: inline-block;
    width: 30%;
    font-size: 13px;
    text-align: center;
}

.recipe-info ul li:nth-child(2){
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.recipe-info ul li img{
  width: 100%;
}


/* ==========================================================================
  Chef introduction
   ========================================================================== */
aside .title-bar span.sec-head, aside .title-bar .more{
  padding-right: 0;
  padding-left: 0;
}

.chefs {
  margin: 20px auto;
}  

.chef-img {
  width: 100%;
}

.chef-name a h4 {
  color: #777;
  margin: 10px 0;
}

.job-title {
    color: #EF4229;
    margin: 0;
    font-size: 14px;
}

.circle-social li {
    display: inline-block;
    height: 30px;
    padding: 6px;
}

.circle-social li i{
  color: #777;
}

.circle-social li:hover i{
  color: #ef4229;
}


/* ==========================================================================
   Tamashakhane
   ========================================================================== */
.tamasha-back {
  background-image: url(../images/video/1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: auto;
  background-color: #484848;
}

.tamasha-wrapper {
    margin-bottom: 5%;
    width: 100%;
}

.tamasha .grid{
  margin-bottom: 30px;
}

.tamasha-title{
  position: relative;
}

.tamasha-title h3{
    color: #fff;
    font-size: 2em;
    margin: 5% auto;
    display: table;
}

.tamasha-title h3::before {
    border-top: 6px double #f53700;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 80px;
    left: 5%;
}

.tamasha-title h3::after{
   border-top: 6px double #f53700;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 80px;
    right: 5%;
}

.tamasha figure .effect-bubba figcaption{
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.tamasha figcaption .tamasha-recipe-title{
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 80%; 
}

.tamasha figcaption .recipe-title {
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    width: 97%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.tamasha figcaption .tamasha-play-icon{
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%; 
}

.tamasha figure .effect-bubba figcaption .play-icon{
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.tamasha figure .effect-bubba figcaption .play-icon i {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,-60px,0);
  transform: translate3d(0,-60px,0);
  opacity: 0;
  font-size: 2em;
}

.tamasha figure .effect-bubba:hover figcaption .play-icon i {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.tamasha .red-btn{
  width: 20%;
}

.tamasha .red-btn:hover, .tamasha .red-btn:active, .tamasha .red-btn.active:focus {
    color: #fff !important;
    background-color: #ef4229 !important;
}


/* ==========================================================================
   Healthy Foods
   ========================================================================== */
.Healthy-food{
  width: 100%;
  min-height: 400px;
  position: relative;
}

.title-bar {
}

.title-bar h4 {
  border-bottom: 1px solid rgba(239, 66, 41, 0.3);
  float: right;
  margin: 20px 0 30px 0;
  position: relative;
  width: 100%;
}

span.sec-head {
  border-bottom: 1px solid #ef4229;
  color: #000;
  display: inline-block;
  float: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: -1px;
  padding-bottom: 10px;
  text-transform: uppercase;
  padding-right: 10px;
}

.title-bar .more {
  font-size: .8rem;
  font-weight: 700;
  line-height: 2.6em;
  text-transform: uppercase;
  padding-left: 10px;

}

.title-bar h4 i{
  color: #ef4229;
  font-size: 1.4em;
  position: relative;
  top: 6px;
}

.more a {
  color: #ef4229;
  font-weight: 100;
  font-size: 14px;
  transition: all 0.7s;
}

.center-title-bar{
  position: relative;
}

.more a:hover{
  color: #000;
}

.center-title-bar h4 {
    color: #000;
    font-size: 1.4em;
    margin: 3% auto;
    display: table;
}

.center-title-bar h4::before {
    border-top: 4px double #f53700;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 80px;
    left: 5%;
}

.center-title-bar h4::after{
   border-top: 4px double #f53700;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 80px;
    right: 5%;
}

.foods-boxes figure {
  position: relative;
}

.foods-boxes figcaption {
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  bottom: -60%;
  left: 0;
  right: 0;
  height: 150px;
}

.foods-boxes .crop-image {
  width: 100%;
  height: 195px;
  overflow: hidden;
}

.food-calorie {
    background-color: #ef4229;
    width: 70%;
    margin: 0 auto;
    height: 35px;
}

.food-calorie h5 {
  color: #fff;
  line-height: 2.7em;
}

.food-caption p{
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding: 20px;
}

.date {
  color: #888;
  font-size: 11px;
  line-height: 2em;
}

.text-more a{
  color: #ef4229;
  opacity: 0.8;
  font-size: 11px;
}

.text-more a:hover{
  opacity: 1;
}

.bottom-box {
  position: absolute;
  top: 82%;
  left: 0;
  right: 0;
}

.fa-circle{
    font-size: 0.1em;
    color: #ddd;
}


/* ==========================================================================
   Featured food
   ========================================================================== */
.featured-food{
  position: relative;
}

.featured-food p {
  margin: 0;
  padding: 20px 0;
  text-align: justify;
}

.content-item {
  background: url(../images/featured/1.jpg);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 555px;
  margin: 0 auto;
  overflow: hidden;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.content-item .overlay {
  border-bottom: 100px solid #ef4229;
  border-left: 100px solid transparent;
  bottom: 0;
  height: 0;
  opacity: .95;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 0;
}

.content-item:hover .overlay {
  border-bottom: 900px solid #ef4229;
  border-left: 900px solid transparent;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.content-item .corner-overlay-content {
  bottom: 20px;
  color: #fff;
  position: absolute;
  right: 7px;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.content-item:hover .corner-overlay-content {
  opacity: 0;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.content-item .overlay-content {
  bottom: 0;
  color: #fff;
  left: 0;
  opacity: 0;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 0;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content-item .overlay-content h2 {
  border-bottom: 1px solid #fff;
  padding: 20px 0;
}

.content-item:hover .overlay-content {
  opacity: 1;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.featured-food .btn-red {
    background-color: #fff;
    color: #ef4229;
}

.featured-food .btn-red:hover, .featured-food .btn-red:focus, .featured-food .btn-red:active {
    background: transparent;
    color: #fff;
}

.featured-food button.btn-red:before, .featured-food button.btn-red:after {
  background :#fff;
}


/* ==========================================================================
   Tips
   ========================================================================== */
.tips img{
  width: 100%;
}

.tip-info {
    padding-right: 15px;
    padding-left: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 190px;
    display: inline-block;
    white-space: nowrap;
}

.tip-info a{
  color: #000;
  font-size: 14px;
}

.tips-detail ul {
  margin-top: 10%;
  margin-bottom: 0;
}

.tips-detail ul li{
  display: inline-block;
  color: #777;
  font-size: 11px;
  width: 31%;
  text-align: center;
}


/* ==========================================================================
   International Foods
   ========================================================================== */
.international-food img{
  width: 80%;
}

.horisontal-divider {
  border-bottom: 1px dashed #777;
}  

.vertical-divider {
  border-right: 1px dashed #777;
  position: absolute;
  right: 50%;
  height: 80%;
  bottom: 0;
}

.international-title h4{
  margin-bottom: 15px;
}


/* ==========================================================================
  Fixed Search
   ========================================================================== */
.fixed-search{
  position: fixed;
  right: 0;
  top: 50%;
  color: #fff;
  font-weight: bold;
  width: 182px;
  font-size: 14px;
  word-spacing: 0;
  cursor: pointer;
  z-index: 5;
  padding: 10px;
}

a.searchbtn {
  position: absolute;
  top: 50%;
  right: -11%;
  display: block;
  outline: none;
  text-align: center;
  z-index: 1000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 20px;
  padding: 17px;
  width: 62px;
  height: 62px;
  border-radius: 40px;
  background: #ef4229;
  -webkit-transition: width 0.3s, background-color 0.3s;
  transition: width 0.3s, background-color 0.3s;
}

a.searchbtn:hover{
  width: 200px;
  background: #fff;
}

.fixed-search h3 {
    position: absolute;
    top: 0;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 800;
    font-size: 1.2em;
    line-height: 3.75;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.fixed-search a:hover h3 {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.icon-wrap i {
    color: #fff;
    font-weight: normal;
    font-size: 2em;
}

.lightbox-overlay .fa{
  left: 10px;
  top: 10px;
}

.searchbox,.loginbox{
  top: 60px;
}

.searchbox{
  display: none;
  position: fixed;
  top: 35%;
  transition: all 2s;
  z-index: 10001;
  left: 0;
  right: 0
}
/*.searchbox input{
  padding: 16px 10px;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #404040;
  color: #999;
}
.searchbox .kbtn.white {
  border: 1px solid #404040;
  color: #fff;
  background-color: #222;
  border-right: 0;
}
.searchbox .kbtn.white:hover{
  background-color: rgba(239, 66, 41, 0.8);
}
.searchbox h3{
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}*/

.lightbox-overlay{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  left:0;
  top:0;
  z-index: 1000;
}

.lightbox-overlay .fa{
  position: absolute;
  z-index: 8;
  left: 35px;
  color: #fff;
  font-size: 20px;
  top: 35px;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-overlay .fa:hover{
  color: #ccc;
}



/* ==========================================================================
   Category page
   ========================================================================== */
.food-grid .food-items {
    padding: 0 12px;
    margin-bottom: 24px;
}

.columnBlockA01 div.food-grid {
  display:block;
  width:100%;
  height:auto;
}

.columnBlockA01 div.food-grid .food-items{
  display:block;
  float:right;
  padding:10px;
}

.columnBlockA01 div.food-list {
  display:block;
  width:100%;
  height:auto;
  clear: both;
  padding: 0;
}

.columnBlockA01 div.food-list .food-items{
  display:block;
  width:100%;
  margin:0 0 5px 0;
  padding:10px;
  float: right;
}

.food-grid .recipe-item {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  -ms-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  width: 100%;
}

.food-grid .item-inner {
  position: relative;
}

.food-grid .item-inner img {
  width: 100%;
  border-radius: 2px;
}


.food-grid .food-items h3.title {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
  padding: 18px 14px 0;
  position: absolute;
  bottom: 10px;
  -webkit-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -ms-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 2;
}

.food-grid .food-items:hover .item-inner > h3.title {
  -webkit-transform: translate3d(0, -108px, 0);
  -khtml-transform: translate3d(0, -108px, 0);
  -moz-transform: translate3d(0, -108px, 0);
  -ms-transform: translate3d(0, -108px, 0);
  -o-transform: translate3d(0, -108px, 0);
  transform: translate3d(0, -108px, 0);
}

.food-grid .food-items h3.title a {
  color: #fff;
}

.food-grid .food-items h3.title a:hover {
  color: #ef4229;
}

.food-grid .food-items .content-overlay {
  background: rgba(33, 33, 33, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  opacity: 0;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.food-grid .food-items:hover .content-overlay {
  opacity: 1;
}

.food-grid .content-recipe .short-content {
  height: 54px;
  overflow: hidden;
  text-align: justify;
}

.food-grid .food-items .menu_product_meta {
  text-align: center;
}

.food-grid .food-items .menu_product_meta .item_product_meta {
  display: inline-block;
  max-width: 33%;
  padding: 0px 10px;
}

.food-grid .food-items .menu_product_meta .item_product_meta i {
  font-size: 25px;
  color: #fff;
  float: left;
  width: 100%;
  display: inline-block;
}

.food-grid .food-items .menu_product_meta .item_product_meta span {
  display: inline-block;
  float: left;
  clear: both;
  width: 100%;
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  letter-spacing: 0.025em;
  color: #fff;
}

.food-grid .food-items .menu_product_meta .item_product_meta span.icon{
  font-size: 1.5em;
}

.food-grid .food-items .menu_product_meta .item_product_meta span.title {
  margin-top: 5px;
}

.food-grid .food-items .menu_product_meta .item_product_meta span {
  display: inline-block;
  float: left;
  clear: both;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.025em;
  color: #fff;
}

.food-grid .food-items .content-overlay .content-recipe {
  padding: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #4c4c4c;
  background: #fff;
}

.food-grid .food-items .content-overlay .content-recipe .readmore {
  float: left;
  color: #ef4229;
  padding: 5px 0;
  font-weight: 500;
  position: relative;
  top: 10px;
}

.food-grid .food-items .content-overlay .content-recipe .readmore:hover {
  color: #a21d09;
}


.food-list .recipe-item {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  -ms-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.13);
  float: left;
  width: 100%;
}

.food-list .item-inner {
  position: relative;
  float: right;
  width: 100%;
  background: #fff;
}

.food-list .item-inner img {
  width: 32.4%;
  float: right;
}


.food-list .food-items h3.title {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: #ef4229;
  padding: 18px 14px 0;
  top: 60px;
  z-index: 2;
  width: 67%;
  float: left;
  text-align: center;
}

.food-list .food-items h3.title a {
  color: #ef4229;
}

.food-list .food-items h3.title a:hover {
  color: #000;
}

.food-list .food-items .content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 67%;
  height: 100%;
  padding-top: 15px;
}

.food-list .content-recipe .short-content {
  height: 54px;
  overflow: hidden;
  text-align: justify;
}

.food-list .food-items .menu_product_meta {
  text-align: center;
}

.food-list .food-items .menu_product_meta .item_product_meta {
  display: inline-block;
  max-width: 33%;
  padding: 0px 10px;
}

.food-list .food-items .menu_product_meta .item_product_meta i {
  font-size: 30px;
  color: #000;
  float: left;
  width: 100%;
  display: inline-block;
}

.food-list .food-items .menu_product_meta .item_product_meta span {
  display: inline-block;
  float: left;
  clear: both;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.025em;
  color: #000;
}

.food-list .food-items .menu_product_meta .item_product_meta span.title {
  margin-top: 5px;
}

.food-list .food-items .menu_product_meta .item_product_meta span {
  display: inline-block;
  float: left;
  clear: both;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.025em;
  color: #000;
}

.food-list .food-items .content-overlay .content-recipe {
  padding: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #4c4c4c;
  background: #fff;
}

.food-list .food-items .content-overlay .content-recipe .readmore {
  float: left;
  color: #ef4229;
  padding: 5px 0;
  font-weight: 500;
  position: relative;
  top: 10px;
}

.food-list .food-items .content-overlay .content-recipe .readmore:hover {
  color: #a21d09;
}

.gridview:hover i, .gridview.active i,.listview:hover i, .listview.active i{
  color: #000;
}


/* ==========================================================================
  Inner Category page
   ========================================================================== */
.inner-gategory-detail {
  padding: 15px;
}

.inner-gategory-detail .item_product_meta i{
  color: #ef4229;
  font-size: 2em;
  margin-bottom: 10px;
}

.inner-gategory-detail .item_product_meta .title {
  font-size: 14px;
  color: #b5aeae;
}

.item_product_meta {
  border-left :1px solid #efefef;
}

.item_product_meta:last-child {
  border: none;
}

.inner-category-wrapper img {
  width: 100%;
}

.writer {
  color: #000;
  line-height: 2em;
}

.writer span {
  font-size: 12px;
  padding: 0 10px;
}

.title-recipe {
  width: 100%;
  float: right;
}

.title-recipe span{
  border-bottom: 1px solid #000;
  font-size: 15px;  
  padding: 0 0 10px 5px;
}

.recipe-material ul li{
  list-style: none;
  font-size: 14px;
  color: #555;
  line-height: 2.5em;
}

.recipe-material ul li i {
  font-size: 0.6em;
  color: #555;
  padding-left: 10px; 
}

.recipe-description div {
  font-size: 14px;
  color: #555;
  line-height: 2em;
}

.tags {
  margin-bottom: 20px;
}

.tags span {
  color: #999;
  font-size: 12px;
  padding: 0 5px;
  border: 1px dashed;
  margin: 0 5px;
}

.tags i {
  padding-left: 10px;
  color: #999;
  position: relative;
  top: 5px;
}

.voting {
  color: #999;
  font-size: 12px; 
}

.voting img{
  width: 35%;
}

.badge {
  color: #ef4229;
  background: transparent;
}

/* ==========================================================================
   Comment
   ========================================================================== */
.comments {
  margin: 30px auto;
  position: relative;
  width: 100%;
  float: right;
}

.comments:before, .comment:before, .comment .text:before {
  content: "";
  position: absolute;
  top: 0;
}

.comments:before {
  width: 3px;
  right: 4%;
  bottom: 0px;
  background: rgba(0,0,0,0.1);
}

.user-img-comment {
  float: right;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.time {
  font-size: 11px;
  color: #999;
}

.replay-btn a{
  color: #ef4229;
  font-size: 12px;
}

.msg p {
  font-size: 13px;
  text-align: justify;
  padding-top: 10px;
}

.user-img-reply {
  float: right;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.reply {
  position: relative;
  width: 100%;
  float: right;
}

.reply:before {
  content: "";
  position: absolute;
  top: 20%;
  right: 4%;
  width: 30px;
  height: 3px;
  bottom: 0px;
  background: rgba(0,0,0,0.1);
}

.comment-form-wrapper{
  width: 100%;
}

.comment-form-wrapper h3 {

}

.comment-form-wrapper .comments {
  position: relative;
  width: 100%;
  background: #fff;
  margin: auto;
  padding: 27px;
  box-sizing: border-box;
  top: 5em;
}

.comment-form-wrapper .comments::after {
  content: " ";
  display: table;
  clear: both;
}

.comments__form-info,
.comments__form-text {
  width: 100%;
  margin: 0;
}

.comments__form-info { float: left; }
.comments__form-text { float: right; }

.comments__form-field {
  position: relative;
}
.comments__form-label {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: text;
  pointer-events: none;
}

.comments__form-label-text {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  color: #ef4229;
}

.comments__form-input:focus::-webkit-input-placeholder, .comments__form-input:focus .comments__form-field:after{
   color: transparent;
}

/*.comments__form-field:after {
    content: '\f171';
    font-family: FontAwesome;
    display: block;
    opacity: 1;
    color: gray;
    position: absolute;
    top: 35%;
    left: 0;
}*/

.comments__form-input:focus + .comments__form-label .comments__form-label-text {
  transform: translateY(0);
  opacity: 1;
}

.comments__form-label::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ef4229;
  bottom: 1em;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.comments__form-input:focus + .comments__form-label::after {
  transform: scaleX(1);
}

.comments__form-input {
  position: relative;
  width: 100%;
  padding: 1em 0;
  border: 0;
  outline: 0;
  margin: 1em 0;
  border-bottom: 1px solid #ddd;
  vertical-align: bottom;
  color: #000;
}

.comments__form-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 168px;
}

.comments__form-submit {
  padding: 0.5em;
  margin: 1em 0;
  background: none;
  border: 1px solid #ef4229;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.25;
}

.comments__form-submit:hover {
  opacity: 1;
}

/* ==========================================================================
   Add Recipe
   ========================================================================== */
.create-recipe .add-photo {
    width: 100%;
    height: 200px;
    text-align: center;
    border: 1px dashed #e6e6e6;
    display: block;
}

.create-recipe .icon-picture.gray {
    background-image: url(../images/add-recipe/icon-picture.svg);
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 160px;
    display: block;
    background-size: 140px;
    transform: scale(1);
    background-position: center 30px;
    opacity: 0.7;
    background-repeat: no-repeat;
}

.create-recipe .icon-picture.gray input[type=file] {
    opacity: 0;
}

.create-recipe .icon-picture.gray:after {
    content: "افزودن تصویر";
    display: block;
    margin-top: 130px;
    font-size: 16px;
}

.create-recipe aside .form-group {
  margin: 15px auto 30px auto;
}

.cook-details {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  margin-bottom: 15%;
  background: #fff;
  width: 100%;
  padding: 0;
  border-radius: 1px;
}

.cook-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
  -webkit-transition: -webkit-transform 0.28s ease-in-out;
  transition: -webkit-transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
  z-index: -1;
}

.cook-details:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.create-recipe .cook-details .form-group {
  width: 100%;
}

.create-recipe .cook-details .form-group select {
  width: 100%;
  font-size: 0.95rem;
  height: 1.6rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  box-shadow: none;
  color: #333;
}

.create-recipe .cook-details .form-group .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #b3b3b3;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}

.create-recipe .cook-details .form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}

.create-recipe .cook-details .form-group .bar::before {
  content: '';
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #ef4229;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}

.create-recipe span.icon {
  font-size: 1.4em;
}

.create-recipe .cook-details .form-group select ~ .control-label{
  font-size: 0.8rem;
  color: gray;
  top: -0.6rem;
  right: 0;
}

.create-recipe .cook-details .form-group select:focus {
  outline: none;
}

.create-recipe .cook-details .form-group select:focus ~ .control-label {
  color: #ef4229;
}

.create-recipe .cook-details .form-group select:focus ~ .bar::before {
  width: 100%;
  left: 0;
}

.mrl35{
  margin: 0 35px;
}

.create-recipe .btn-red {
  padding: 0 1em;
}

.add {
  border-radius: 50%;
  width: 35PX;
  height: 35px;
  background-color: #ef4229;
  color: #fff;
  font-size: 1.3em;
  border: none;
}



/*.create-recipe .comments__form-label::before ,.comments__form-label-text::before {
  content: "\f044";
  display: block;
  color: #000;
}*/

/* ==========================================================================
   Video Inner
   ========================================================================== */
.recipe-video {
  width: 100%;
  margin-top: 30px;
}


/* ==========================================================================
   Icon
   ========================================================================== */
.Healthy-food i.icon, .title-bar i.icon,  aside .title-bar i.icon{
  color: #ef4229;
}

.title-bar i.icon {
  position: relative;
  top: 6px;
  font-size: 1.3em;
}

.tamasha-title i.icon-video-player {
  position: relative;
  top: 6px;
}

aside i.icon-cooking{
  top: 0 !important;
}

.title-recipe .icon-cooking-2, .title-recipe .icon-recipe{
  font-size: 1.4em;
} 

.writer i{
  top: 1px !important;
}




/* ==========================================================================
   Footer
   ========================================================================== */
.footer-wraper {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    float: right;
}

footer {
    background-image: url(../images/bg-section.jpg);
    height: auto;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000;
    direction: rtl;
}

.footer-title {
  border-bottom: 1px solid rgba(239, 66, 41, 0.3);
  margin-bottom: 30px;
}

.footer-title h4 {
  font-size: 16px;
  line-height: inherit;
  margin-bottom: 0;
  border-bottom: 1px solid #ef4229;
  width: 32%;
  padding-bottom: 5px;
  color: #fff;
  font-weight: 100;
  position: relative;
  top: 1px;
}

.about-caption p {
    font-size: 14px;
    color: #fff;
    text-align: justify;
    line-height: 1.6em;
    padding: 0 20px;
    font-weight: 100;
}

.footer-menu-ashpazi{
  padding: 0 20px;
}

.footer-menu-ashpazi ul {
  padding-right: 0;
}

.footer-menu-ashpazi ul li {
  list-style: none;
}

.footer-menu-ashpazi ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 2em;
    display: block;
    margin: 4px;
    text-decoration: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.56, 0.03, 0.51, 2.28);
}

.footer-menu-ashpazi ul li a:hover{
  color: #ef4229;
    transform: scale(1.1);
}

.footer-menu-ashpazi ul li a i{
  padding-left: 15px;
}

.red-wrapper{
  background-color: rgba(0,0,0,0.3);
  padding: 10px;
  bottom: 0;
  left: 0;
  right: 0;
}

.red-part{
  margin: 0 auto;
}

.copy{
  text-align: right;
  width: 100%;
  color: #fff;
  font-size: 14px; 
}

.copy a{
  color: #fff;
}

.copy a:hover{
  color: #ef4229;
}

.footer-menu ul{
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer-menu ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;

    margin: 0 10px;
}

.footer-menu ul li a{
  color: #fff;
}

.footer-menu ul li a:hover{
  color: #ef4229;
}

.footer-menu-ashpazi i.icon {
    padding-left: 15px;
    position: relative;
    top: 3px;
}

.footer-menu-ashpazi i.icon-placeholder-2{
    margin-bottom: 20px;
    float: right;
}


/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 767px) {

   .top-menu .logo{
      text-align: center;
   }

  .navbar-header{
    width: 100%;
  }

  .topnav{
    position: fixed;
  }

  .tamasha .red-btn {
    width: 30%;
  }

  .topnav{
    padding: 0 40px;
  }


  
}

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

  .foods-boxes figcaption{
    position: static;
  }

  .foods-boxes .crop-image{
    height: auto;
  }

  .foods-boxes figure{
    background-color: #fff;
  }

  .footer-menu ul , .copyright{
    text-align: center;
  }

  .logo {
    text-align: center;
  }

  .white-search {
    top: 60%;
  }
}


@media screen and (max-width: 425px) {
  .navbar.affix .navbar-brand span{
    display: block;
    font-size: 14px;
    float: right;
  }

  .k-header #MobileNavbar .navbar-left{
    position: static;
    left:20px;
  }
}