﻿/***header***/
#ia-header-searchform {
  padding-right: 30px;
}

.h2,
h2 {
  font-size: 1.2rem;
}

.h3,
h3 {
  font-size: 1.1rem;
}

@media only screen and (max-width: 600px) {
  h1,
  h2,
  h3 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .dropdown-menu.show {
    display: inline-flex;
  }
}
#FilterPanel {
  display: inline-block;
}

.cplItem img,
.cplItem figure {
  max-width: 300px;
}

//.carousel-item {height: 60vh;}
//.carousel-caption{
//	background-color: orange;
//    	opacity: .6;
//}

//.carousel-caption h1, .carousel-caption h2{opacity:1;}

.carousel-caption {
  background-color: #b19d9eb8;
  opacity: 0.85;
  top: 0;
  bottom: auto;
  //margin-bottom: 25vh;
  //margin-top: 10vh;
  //margin-bottom: 40%;
  //: ;
  //margin-top: 10px;
}

.carousel-img-pos {
  max-height: 60vh;
  object-position: 25%; //center,bottom;
  object-fit: cover;
}

#ia-header-searchform input {
  width: 50%;
}

/*----shop cart icon--*/

.fa-stack[data-count]:after {
  position: absolute;
  right: 0%;
  top: 0%;
  content: attr(data-count);
  font-size: 40%;
  padding: 0.6em;
  border-radius: 999px;
  line-height: 0.75em;
  color: white;
  color: #df0000;
  text-align: center;
  min-width: 2em;
  font-weight: bold;
  background: white;
  border-style: solid;
}
.fa-circle {
  color: #df0000;
}

.red-cart {
  color: #df0000;
  background: white;
}

/***item detail***/
#itemlist {
  //display: flex;
  display: inline-block;
  width: 100%;
}
.cplItem {
  min-width: 300px;
  padding: 10px;
  float: left;
}
#pdContent {
  display: inline-flex;
}

#pdInfo {
  display: block;
}
#pdDescriptionTab {
  border: 1px solid #aaa;
  border-bottom: 0;
  display: inline-block;
  background: #fcfdff;
  position: relative;
  top: 1px;
  left: 0;
  z-index: 3;
  padding: 0.25em 0.75em;
  font-weight: bold;
  font-size: 0.9em;
  /*margin-bottom:-1px;*/
  /*top:-5px;*/
}

#pdDescriptionWrap {
  position: relative;
}

#pdDescription {
  z-index: 1;
  position: relative;
  top: -1;
  border: 1px solid #aaa;
  background: #fcfdff;
  padding: 1em 0.67em;
  /*width:500px;*/
  border-top: 1px #8b8f91 solid;
  border-bottom: 1px #8b8f91 solid;
  border-left: none;
  border-right: none;
  font-size: 1.4em;
}

#pdDescription ul {
  margin: 1em 0;
  list-style: none;
  display: block;
  font-style: italic;
  line-height: 1.1;
  font-size: 0.95em;
}

#itemNumber {
  margin-top: 3em;
  display: block;
  font-size: 1.1em;
}

#relatedItems {
  display: block;
}

/**FR: store.css**/
#variantMatrix {
  width: 400px;
  font-size: 1.2em;
  margin: 10px 0 20px 0;
}

.variantMatrix__variant td {
  vertical-align: bottom;
  vertical-align: top;
  padding-top: 0.7em;
}
.variantMatrix__stockLevel {
  color: green;
  display: block;
  font-size: 0.85em;
}

#variantMatrix .tblhead {
  color: white;
  font-weight: normal;
  padding-top: 5px;
  background-color: #cba969;
}

/* product detail hover zoom 
----------------------------------------------------*/
#pdPic {
  position: relative;
  z-index: 300;
}

#itemImage {
  position: relative;
  width: 450px;
  height: 450px;
  background: #fcfdff no-repeat;
  overflow: hidden;
}

#itemImage img {
  width: 100%;
  height: auto;
}

#zoomArea {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  width: 80px;
  height: 80px;
  position: absolute;
  border: 1px solid #000;
}

#zoomView {
  border: 1px solid black;
  height: 400px;
  width: 400px;
  position: absolute;
  top: 0em;
  left: 475px;
  overflow: hidden;
  display: none;
}

#pdThumbs {
  margin-top: 2px;
}

#pdThumbs div {
  width: 148px;
  height: 148px;
  overflow: hidden;
  display: inline-block;
  /*margin:1px;*/
}

#pdThumbs img {
  width: 148px;
  height: auto;
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
*******************************/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: absolute; //fixed;
  margin: auto;
  width: 80%;//320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog {
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
  left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: 0px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0px;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #eeeeee;
  background-color: #fafafa;
}

/*experiments may25*/
/*
  .carousel-caption {
    background-color: #ea4501;
    opacity: .9;
	*/

.carousel-caption {
  background-color: #3c3633d9;
  opacity: 0.9;
}
/*
try that instead of whats there now.
	left: 0;
    width: 30vw;
    height: 80%;
*/
.carousel-caption h1 {
  color: darkorange;
}
.fa-stack[data-count]:after {
  color: darkorange;
}

.btn-primary {
  color: #fff;
  background-color: orangered;
  border-color: #fff;
  background-image: linear-gradient(to right, orangered, darkorange);
}
.btn {
  display: inline-block;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) .dropdown-menu.show {
  display: inline-flex;
  flex-flow: column;
}


  /*for megamenu*/
  a.dropdown-item.dropdown-item-heading {
    font-weight: 500;
  }

  .dropdown-item {
    display: inline-block;
    
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    /* white-space: nowrap; */
    background-color: transparent;
    border: 0;
	width: 21rem;
	white-space: unset;
	
  }
/*1180 beef by cut*/

#dropdown-menu-cat-1180 {
    /* max-height: 50rem; */
    //width: 80rem;
    column-count: 4;
    //set min width of col
    column-width:21rem;
}
@media only screen and (min-width: 1200px) .dropdown-menu.show .menuCatContainer {
    /* display: flex; */
    column-count: 4;


}
@media only screen and (min-width: 1200px) .dropdown-menu.show {
#dropdown-menu-Beef{
	column-count: 4;
}
#dropdown-menu-Poult {
    columns: 4;
	display:unset;

}
}