@font-face {
  font-family: mySansFont2;
  src: url(./fonts/ChickenScript.otf);
}
@font-face {
  font-family: myVazirFont;
  src: url(./fonts/Vazir.ttf) !important;
  src: url("/fonts/Vazir.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Vazir.woff") format("woff"),
    url("/fonts/iran.ttf") format("truetype");
  font-weight: normal;
}
.content {
  padding: 15px;
}
/* this is for modal */
/* The Modal (background) */
.modalItem {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 80px; /* 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.904); /* Fallback color */
}
/* Modal Content (image) */
.imgModal {
  margin: auto;
  display: block;
  max-width: 225px;
  border-radius: 50% !important;
}
/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 500px;
  color: #f5e0b2;
  padding: 11px 0;
  height: auto;
  font-size: 13px;
  font-weight: bold;
}

/* Add Animation */
.imgModal,
#caption,
.partLike,
#nameitemmodel {
  -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 */
.closei {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 25px;
  font-weight: bold;
  transition: 0.3s;
}
.closei:hover,
.closei:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.likePartOnItem {
  width: 250px;
  position: relative;
}
.likePartOnItemWithoutPhoto {
  width: 130px;
  position: relative;
}
.likeOnItem {
  cursor: pointer;
  position: absolute;
  left: 0px;
  padding: 3px 13px;
  border-radius: 20px;
  background-color: rgba(84, 84, 84, 0.646);
  transition: 0.5s;
}
/* If Guest Liked Item Before we have to display heart with this style*/
.likeOnItemLiked {
  cursor: pointer;
  position: absolute;
  left: 0px;
  padding: 3px 13px;
  border-radius: 20px;
  background-color: rgba(167, 167, 167, 0.646);
  transition: 0.5s;
}
.commentOnItem {
  position: absolute;
  left: 67px;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: rgba(84, 84, 84, 0.646);
  transition: 0.5s;
}
.partLike {
  width: 200px;
  margin: 0 auto;
  position: relative;
}
.like {
  width: 38px;
  height: 35px;
  position: absolute;
  left: 5px;
  background-color: #000;
  transition: 0.4s;
}
/* .like:hover {
  transform: translateY(-5px);
} */

.like-no {
  background: url("/images/dislike.png") no-repeat;
  background-size: cover;

}

.like-yes {
  background: url("/images/like.png") no-repeat;
  background-size: cover;
}
.comment {
  width: 40px;
  position: absolute;
  left: 42px;
  transition: 0.4s;
}
.comment:hover {
  transform: translateY(-5px);
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .imgModal {
    width: 100%;
  }
}

@keyframes example {
  0% {
    margin-left: 0;
    transform: rotate(0);
    /* background-size: 95px 95px; */
  }

  100% {
    margin-left: 93%;
    transform: rotate(360deg);
    /* background-size: 55px 55px; */
  }
}

.MoveVector {
  animation-name: example;
  animation-duration: 2s;
}
.itemsMenu {
  height: 160px;
  text-align: left;
  border-radius: 10px;
  position: relative;
  transition: 0.4s;
  border-bottom: solid 1px #f1f1f17a;
}
.itemsMenu:hover {
  box-shadow: 0px 6px 13px #6b6b6b85;
  transform: translateY(-4px);
}
.itemsMenu .imgItem {
  border: solid 1px rgba(255, 255, 255, 0.741);
  width: 135px;
  height: 100%;
  float: left;

}
.itemsMenu .nameitem {
  color: #f5e0b2;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 2px !important;
}
.itemsMenu .detailsitem {
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}
.itemsMenu .priceitem {
  float: right;
  font-size: 12px;
  margin: 0;
  color: #f5e0b2;
}

/* Style for SnackBar */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 8px;
  position: fixed;
  z-index: 1;
  left: 50%;
  font-size: 18px;
}

#snackbar.show {
  background-color: rgba(175, 155, 0, 0.942);
  visibility: visible;
  -webkit-animation: fadein 1s, fadeout 0.5s 3.5s;
  animation: fadein 1s, fadeout 0.5s 3.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 65px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 65px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 65px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 65px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/*End Style for SnackBar */

#backVector {
  animation: mymove 0.6s infinite;
}

@keyframes mymove {
  form {
    margin-right: 0;
  }

  to {
    margin-right: 5px;
  }
}

/* Style for items that have tow price //DropDown Hover */
.dropdown {
  float: left;
}
.dropdown-content {
  left: 25px;
  display: none;
  position: absolute;
  background-color: #3a2a2a;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  direction: rtl;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.ShowDropDown {
  display: block;
}
.basketImage {
  height: 40px;
  float: left;
  margin-left: 5px;
}

.basketImage:hover {
  border: solid 2px #fff;
  border-radius: 50%;
}
/* These are for BoxCart Especially for increase and decrese */
.plus,
.down {
  width: 30px;
  cursor: pointer;
}
.quantity {
  width: 45px;
  text-align: center;
}
/* Hide Arrow in input number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.BoxCart {
  display: none;
  width: 330px;
  min-width: 300px;
  height: 330px;
  background-color: #f2f2f2;
  border-radius: 10px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 0;
  margin: 0;
  text-align: right;
  padding: 10px;
  padding-bottom: 24px;
  color: rgb(36, 35, 35);
  overflow-y: scroll;
}

.BoxCart::-webkit-scrollbar {
  display: none;
}

.BoxCartNext {
  min-width: 300px;
  display: none;
  position: fixed;
  bottom: 55px;
  right: 0;
  background-color: #f2f2f2;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  margin-top: 20px;
  padding-right: 0;
  color: #000
}
.imgForCartItem{
  margin-bottom:10px ;
}