.header{background: #90c422;text-align:center;padding-bottom: 10px; padding-top:10px;}
.header ul{list-style: none;}
.header ul li a{color:#fff;float:left;font-weight:500;font-size:18px; padding-top: 20px; padding-bottom: 30px; padding-left: 15px; padding-right: 15px;}
.logo{text-align: center;z-index: 99999999; position: absolute;}
.logo img{width:100%;}
.top-social{margin-bottom:0px;}
.banner{background:url('../images/banner.jpg');background-size: 100% 100%;}
.banner-form select{float: left;padding:20px; width:100%}
.banner-form button{padding:20px; background: #256101; width:100%;}
.formbanner{text-align: center;padding:275px;}
.organicstore{background:#e8e8e8; padding-top:50px; padding-bottom:50px; text-align:center;}
.loginpage{background:#e8e8e8; padding-top:150px; padding-bottom:75px; padding-left:50px; padding-right:50px;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;}
.organicstore h2{color:#256101; text-align:center;}
.separator-black:before {
    content: "";
    border: 1px solid #90c422;
    height: 1px;
    background: #90c422;
    display: inline-block;
    width: 15%;
}
.separator-black:after {
    content: "";
    border: 1px solid #90c422;
    height: 1px;
    background: #90c422;
    display: inline-block;
    width: 15%;
}
.separator-white:before {
    content: "";
    border: 1px solid #fff;
    height: 1px;
    background: #fff;
    display: inline-block;
    width: 15%;
}
.separator-white:after {
    content: "";
    border: 1px solid #fff;
    height: 1px;
    background: #fff;
    display: inline-block;
    width: 15%;
}
.organicproducts{margin-top:50px; margin-bottom:100px;}
.organicstore .organicproducts img{border: 5px #90c422 solid; border-radius: 125px; margin-bottom:20px;}
.organicstore .organicproducts p{margin-bottom:22px;}
.organicbtn {margin-top:50px; margin-bottom: 50px;}
.trendingshops{text-align:center;background: linear-gradient(#90c422 63.5%, white 50%);padding-top:50px; padding-bottom:50px;}
.trendingshops h2{color:#fff;}
.trendingproducts{text-align: left; background:#fff;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;border-bottom: 5px solid #90c422; border-radius: 5px;}
.trendingproducts img{width:100%; border-radius:5px;}
.trendingproducts h3{color:#256101;}
.trendingproducts strong{color:#90c422;}
.trendingproducts .trendingtext{padding:10px;}

.hightlightedproducts{text-align: left; background:#fff;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;border-left: 5px solid #90c422; border-radius: 5px;}
.hightlightedproducts img{width:100%; border-radius:5px;}
.hightlightedproducts h3{color:#256101;}
.hightlightedproducts strong{color:#90c422;}
.hightlightedproducts .hightlightedtext{padding:10px;}

footer{background:url('../images/footer.png');background-size: 100% 100%;height:360px;}
.copyrights{background:#256101;}
.copyrights p{color:#fff;margin-bottom:0px; padding-top: 5px; padding-bottom:5px;}
.contactbanner{background:url('../images/contact-us.jpg');background-size: cover;height:500px;}
.aboutbanner{background:url('../images/about1.jpg');background-size: 100% 100%; padding-top:50px; padding-bottom:50px;text-align:center;}
.aboutasdf{background: url('../images/about2.jpg');height:500px;border-radius:5px;border-left: 5px solid #fff;}
.aboutwerew{background: url('../images/about3.jpg');height:500px;border-radius:5px;border-right: 5px solid #fff;}
.asdfasdf{text-align:center;}
.asdfasdf h3{color:#256101;}
.side-menu ul{list-style:none;}
.side-menu ul li{padding: 15px 10px 15px 10px;}
.side-menu ul li a{color:#000;font-size:20px;}
.topbar{background:#90c422; padding:20px;color:#fff;}
.propagebg{background:#ecf0f4;padding-top:50px; padding-bottom:50px;}
.proformbg{background:#e8e8e8;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; padding:50px; margin-top:30px; border-radius:5px;}
.filter select,input[type="text"]{float: left; /*width:15%*/}
.filter input[type="submit"]{padding: 9px;background: #256101;width: 15%;border: 0px;color:#fff;}
.mapbox{background:#ebebeb; padding:10px;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;margin-bottom: 10px;}
@media only screen and (max-width: 368px) {
  .formbanner { padding:50px 0px 50px 0px;}
  .mobile-menu{display: block;}
  .homefilter{display:block;}
}
.mobile-menu{display: none;}
.homefilter{display:flex;}

/***********************CHECKBOX****************/
/* The container */
.chk-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	font-weight:400;
}

/* Hide the browser's default checkbox */
.chk-container 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 */
.chk-container:hover input ~ .checkmark {
  background-color: #ccc;
}

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

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

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

/* Style the checkmark/indicator */
.chk-container .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);
}

.adfasmobile{display:none}
.mapsearchinput{display: flex;}
.adfasmap{width:100%; height:450px; border: 2px solid #3872ac;}
@media only screen and (max-width: 900px) {
  .adfasmobile {
    display: block;
  }
  .adfasmobile .logo{
    position: inherit;
  }
  .desktopmenu{display: none;}
  .formbanner{padding:50px 0px 50px 0px;}
  .homefilter{display:block;}
  .mb-30{margin-bottom:30px;}
  footer{height:200px;}
  .contactbanner{height:300px;}
  .mapsearchinput{display:inherit;}
}

.phone {
  background-color: #36383F;
  border-radius: 40px;
  width: 300px;
  height: 600px;
  Display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 30px 50px 100px #85888C;
}
.content {
  border: 1px solid #36383F;
  border-radius: 20px;
  width: 94%;
  height: 91%;
  background-color: #F5F6FA;
  overflow: hidden;
}
nav {
  background-color: #1E1E23;
  height: 65px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 25px;
  left: 25px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px #85888C;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 50px;
  background-color: #F5F6FA;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}
#menu li a{color:#000;float:inherit;}
#menuToggle input:checked ~ ul
{
  transform: none;
}

.rating {
    border: none;
    margin-right: 49px
}

.myratings {
    font-size: 85px;
    color: green
}

.rating>[id^="star"] {
    display: none
}

.rating>label:before {
    margin: 5px;
    font-size: 2.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005"
}

.rating>.half:before {
    content: "\f089";
    position: absolute
}

.rating>label {
    color: #ddd;
    float: right
}

.rating>[id^="star"]:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #FFD700
}

.rating>[id^="star"]:checked+label:hover,
.rating>[id^="star"]:checked~label:hover,
.rating>label:hover~[id^="star"]:checked~label,
.rating>[id^="star"]:checked~label:hover~label {
    color: #FFED85
}

.card {
    position: relative;
    display: flex;
    width: 350px;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #d2d2dc;
    border-radius: 11px;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(249, 249, 250);
    -moz-box-shadow: 0px 0px 5px 0px rgba(212, 182, 212, 1);
    box-shadow: 0px 0px 5px 0px rgb(161, 163, 164)
}

.card .card-body {
    padding: 1rem 1rem
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem
}
.reset-option {
    display: none
}

.reset-button {
    margin: 6px 12px;
    background-color: rgb(255, 255, 255);
    text-transform: uppercase
}
.blogbox{box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;background:#ededed;padding:10px;}


