<?php session_start();
include_once("connection/core_db.php");
$prd_table='inventory';
$prd_price_table="inventory_price";
$collective_table='user_info';
$filter='';
$stainTypeVall=isset($_REQUEST['strainType']) ? $_REQUEST['strainType']: '';
if($stainTypeVall=='All Strain Types') {
  $stainTypeVall='';
}

if(isset($_REQUEST["search_field"]) && $_REQUEST["search_field"]=='') {
  $searchValue='';
}

else {
  $searchValue=$_REQUEST["search_field"];
}

if (isset($_REQUEST["limit"])) {
  $limit='20';
}

else {
  $limit=20;
}

if (isset($_REQUEST["page"])) {
  $page=$_REQUEST["page"];
}

else {
  $page=1;
}

$start_from=($page-1) * $limit;
if (!$searchValue && isset($_REQUEST["categories"]) && $stainTypeVall) {
  $categories=$_REQUEST["categories"];
  if($categories=='Flowers') {
    $categories='Flower';
  }
  $strain_type=$_REQUEST["strainType"];
  $categories=implode("','", $categories);
  $data=" AND product_type IN ('$categories') AND strain_type = '".$strain_type."'";
  $filter=$data;
}

elseif(!$searchValue && !isset($_REQUEST["categories"]) && $stainTypeVall && $stainTypeVall !='') {
  $categories=$_REQUEST["categories"];
  if($categories=='Flowers') {
    $categories='Flower';
  }
  $strain_type=$_REQUEST["strainType"];
  $categories=implode("','", $categories);
  $data=" AND strain_type = '".$strain_type."'";
  $filter=$data;
}

elseif(!$searchValue && isset($_REQUEST["categories"]) && !empty($_REQUEST["categories"]) && !$stainTypeVall) {
  $categories=$_REQUEST["categories"];
  $strain_type=$_REQUEST["strainType"];
  if($categories=='Flowers') {
    $categories='Flower';
  }
  $data=" AND product_type IN ('$categories')";
  $filter=$data;
}

elseif($searchValue && $searchValue !='' && $_REQUEST["search_field"] !='' && !isset($_REQUEST["categories"]) && !$stainTypeVall) {
  $search_field=$_REQUEST["search_field"];
  $data=" AND (product_title LIKE '%".$search_field."%' OR product_name LIKE '%".$search_field."%' OR description LIKE '%".$search_field."%')";
  $filter=$data;
}

elseif($searchValue && $searchValue !='' && isset($_REQUEST["categories"]) && !$stainTypeVall) {
  $categories=$_REQUEST["categories"];
  $categories=implode("','", $categories);
  if($categories=='Flowers') {
    $categories='Flower';
  }
  $search_field=$_REQUEST["search_field"];
  $data=" AND product_type IN ('$categories') AND (product_title LIKE '%".$search_field."%' OR product_name LIKE '%".$search_field."%' OR description LIKE '%".$search_field."%')";
  $filter=$data;
}

elseif($searchValue && $searchValue !='' && !isset($_REQUEST["categories"]) && $stainTypeVall) {
  $strain_type=$_REQUEST["strainType"];
  $search_field=$_REQUEST["search_field"];
  $data=" AND strain_type = '".$strain_type."' AND (product_title LIKE '%".$search_field."%' OR product_name LIKE '%".$search_field."%' OR description LIKE '%".$search_field."%')";
  $filter=$data;
}

elseif($searchValue && $searchValue !='' && isset($_REQUEST["categories"]) && $stainTypeVall) {
  $categories=$_REQUEST["categories"];
  $strain_type=$_REQUEST["strainType"];
  $categories=implode("','", $categories);
  if($categories=='Flowers') {
    $categories='Flower';
  }
  $search_field=$_REQUEST["search_field"];
  $data=" AND product_type IN ('$categories') AND strain_type = '".$strain_type."' AND (product_title LIKE '%".$search_field."%' OR product_name LIKE '%".$search_field."%' OR description LIKE '%".$search_field."%')";
  $filter=$data;
}

elseif(isset($_REQUEST["min_price"]) && isset($_REQUEST["max_price"])) {
  $min=$_REQUEST["min_price"];
  $max=$_REQUEST["max_price"];
  $data="AND product_price BETWEEN '".$min."' AND '".$max."'";
  $filter=$data;
}

elseif(isset($_REQUEST["brands"])) {
  $brands=$_REQUEST["brands"];
  if($brands !="") {
    $data="AND product_brand = '".$brands."'";
    $filter=$data;
  }
}

elseif(isset($_REQUEST["strain"])) {
  $stain=$_REQUEST["strain"];
  if($stain !="") {
    $data="AND item_strain_name = '".$stain."'";
    $filter=$data;
  }
}

elseif(isset($_REQUEST["filteroption"]) && $_REQUEST["filteroption"] !='') {
  $type=$_REQUEST["filteroption"];
  if($type=="all") {
    $filter .=" AND most_popular ='Yes' Or deals ='Yes'";
  }
  else {
    $product_type_option=$_REQUEST["filteroption"];
    $filter .=" AND ".$product_type_option." = 'Yes'";
  }
}

if($filter=="") {
  $filter=" AND parent= '1'";
}

else {
  $filter .=" AND parent= '1'";
}

//echo "SELECT * FROM $prd_table WHERE  approval_status='Approved' $filter AND product_price != '0' ORDER BY product_name ASC LIMIT $start_from,$limit" ;exit;
//$result = mysqli_query($connection,"SELECT * FROM $prd_table LEFT JOIN $collective_table ON $prd_table.added_by = $collective_table.user_id  WHERE  status='Enable' $filter ORDER BY product_name ASC LIMIT $start_from,$limit" );
$result=mysqli_query($connection, "SELECT * FROM $prd_table WHERE  approval_status='Approved' $filter AND product_price > 0  ORDER BY product_name ASC LIMIT $start_from,$limit");
$count=mysqli_num_rows($result);
if($count !=0) {
  ?><ul style="padding: 0"><?php while( $_product=mysqli_fetch_assoc($result)) {
    ?><li class="pro-div"><a class="btn-cart" href="javascript:void(0);" onclick="javascript:addToCart(<?php echo $_product['inventory_id']; ?>)"><i class="fa fa-plus"></i></a><div class="pro-div-img"><a href="javascript:void(0);" onclick="javascript:productView(<?php echo $_product['inventory_id']; ?>)" data-toggle="modal" data-target="#product-view"><?php if($_product['img']=='default.png') {
      ?><img src="https://medik8.s3.amazonaws.com/inventory_images/<?php echo $_product['img']; ?>"><?php
    }
    else {
      ?><img src="<?php echo str_replace("http: //","https://",$_product['img']);  ?>">
      <?php
    }
    ?></a></div><div class="highlight-feature"><input type="hidden" id="qty-<?php echo $_product['inventory_id']; ?>" value="1"/><?php if($_product['product_type']=='Flowers') {
      ?><input type="hidden" id="weight-<?php echo $_product['inventory_id']; ?>" value="3.5g"/><input type="hidden" id="price-<?php echo $_product['inventory_id']; ?>" value="<?php echo number_format($_product['product_price'] * 3.5); ?>"/><p class="price semi-bold"><?php echo '$'.number_format($_product['product_price'] * 3.5);
      ?></p><?php
    }
    else {
      ?><?php $qry="SELECT * from $prd_price_table WHERE inventory_id = '".$_product['inventory_id']."' ORDER BY `inventory_option` ASC LIMIT 0, 1";
      $_result=mysqli_query($connection, $qry);
      $price=mysqli_fetch_assoc($_result);
      if(empty($price)) {
        ?><input type="hidden" id="weight-<?php echo $_product['inventory_id']; ?>" value="<?php echo $_product['weight_amount']; ?>"/><input type="hidden" id="price-<?php echo $_product['inventory_id']; ?>" value="<?php echo number_format($_product['product_price']); ?>"/><p class="price semi-bold"><?php echo '$'.number_format($_product['product_price'], 2);
        ?></p><?php
      }
      else {
        if($inventory['inventory_option'] !='Default Title') {
          ?><input type="hidden" id="weight-<?php echo $_product['inventory_id']; ?>" value="<?php echo $price['inventory_option']; ?>"/><?php
        }
        else {
          ?><input type="hidden" id="weight-<?php echo $_product['inventory_id']; ?>" value="1/8"/><?php
        }
        ?><input type="hidden" id="price-<?php echo $_product['inventory_id']; ?>" value="<?php echo number_format($price['price']); ?>"/><p class="price semi-bold"><?php echo '$'.number_format($price['price'], 2);
        ?></p><?php
      }
      ?><?php
    }
    ?><p class="pro-name bold"><a href="javascript:void(0);" onclick="javascript:productView(<?php echo $_product['inventory_id']; ?>)" data-toggle="modal" data-target="#product-view"><?php if(strlen($_product['product_title']) >=45) {
      echo substr($_product['product_title'], 0, 42).'...';
    }
    else {
      echo $_product['product_title'];
    }
    ?></a></p><p class="Dispensary-Name11"><?php $conn=$connection;
    $brandid=$_product['product_brand'];
    ?><?php $locations1=$conn->query("SELECT * FROM tbl_brand WHERE brand_id = '".$brandid."'");
    while($location2=$locations1->fetch_assoc()) {
      ?><?php echo $location2['brand_name'];
    }
    ?></p><p class="Dispensary-Name"><?php echo $_product['companyname'];
    ?></p></div></li><?php
  }
  ?></ul><!--<br clear="all" />--><div id="items" style="margin-bottom: 0px !important;text-align: center;"></div><?php if($page > 1) {
    ?><div class="col-md-2 col-sm-2"><a id="prevoius" href="javascript:void(0);" class="prevoius bold">Previous page</a></div><?php
  }
  ?><div class="col-md-8 col-sm-8"><ul id="pagination" class="page-no"><?php $collection=mysqli_query($connection, "SELECT * FROM $prd_table WHERE approval_status='Approved' $filter AND product_price > '0'");
  $total_records=mysqli_num_rows($collection);
  $total_pages=ceil($total_records / $limit);
  $items='';
  $start=$start_from+1;
  ;
  if($total_records >=$limit) {
    $items="Showing ".$start." to ".($start_from + $count)." of ".$total_records." Total Items.";
  }
  else {
    $items="Item ".$total_records;
  }
  ?><?php if ($page <4) {
    if ($total_pages<9) {
      for($i=1;
      $i <=$total_pages;
      $i++) {
        if ($i==$page) {
          ?><li id="page-<?php echo $i;?>" class="active" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
        else {
          ?><li id="page-<?php echo $i;?>" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
      }
    }
    else {
      for($i=1;
      $i <=9;
      $i++) {
        if ($i==$page) {
          ?><li id="page-<?php echo $i;?>" class="active" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
        else {
          ?><li id="page-<?php echo $i;?>" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
      }
    }
  }
  elseif ($page >$total_pages-4) {
    if ($total_pages<9) {
      for($i=1;
      $i <=$total_pages;
      $i++) {
        if ($i==$page) {
          ?><li id="page-<?php echo $i;?>" class="active" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
        else {
          ?><li id="page-<?php echo $i;?>" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
      }
    }
    else {
      for($i=$total_pages-8;
      $i <=$total_pages;
      $i++) {
        if ($i==$page) {
          ?><li id="page-<?php echo $i;?>" class="active" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
        else {
          ?><li id="page-<?php echo $i;?>" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
          ?></a></li><?php
        }
      }
    }
  }
  else {
    for($i=max(1, $page - 4);
    $i <=min($page + 4, $total_pages);
    $i++) {
      if ($i==$page) {
        ?><li id="page-<?php echo $i;?>" class="active" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
        ?></a></li><?php
      }
      else {
        ?><li id="page-<?php echo $i;?>" data-id="<?php echo $i;?>"><a href="javascript:void(0);"><?php echo $i;
        ?></a></li><?php
      }
    }
  }
  ?></ul></div><?php if($page > 1) {
    ?><div class="col-md-2 col-sm-2"><a id="next" href="javascript:void(0);" class="next bold">Next Page</a></div><?php
  }
  ?><script>jQuery(document).ready(function() {
    jQuery('#pagination li').removeClass('active');
    jQuery('#pagination li#page-<?php echo $page;?>').addClass('active');
    jQuery('#items').html('<?php echo $items; ?>');
    <?php if($_REQUEST["search_field"] !='') {
      ?> jQuery('#search-word').html('Show Results: <strong><?php echo $_REQUEST["search_field"]; ?></strong><a href="" class="pull-right">Clear All</a>');
      <?php
    }
    else {
      ?> jQuery('#search-word').html('');
      <?php
    }
    ?>
  }
  );
  jQuery(document).ready(function() {
    var prdLimit="<?php echo $limit; ?>";
    var total_pages="<?php echo $total_pages; ?>";
    jQuery('a#next').click(function() {
      //var limit = "<?php echo $limit; ?>";
      var pno=jQuery('#pagination li.active').attr('data-id');
      if(pno !=total_pages) {
        pno++;
        getProductList(prdLimit, pno);
      }
    }
    );
    jQuery('a#prevoius').click(function() {
      //var limit = "<?php echo $limit; ?>";
      var pno=jQuery('#pagination li.active').attr('data-id');
      if(pno !=1) {
        pno--;
        getProductList(prdLimit, pno);
      }
    }
    );
    jQuery('#pagination li').click(function() {
      var pno=jQuery(this).attr('data-id');
      jQuery('#pagination li').removeClass('active');
      jQuery(this).addClass('active');
      //var limit = "<?php echo $limit; ?>";
      getProductList(prdLimit, pno);
      $('html, body').animate( {
        scrollTop: $("#strain-types").offset().top
      }
      , 1000);
    }
    );
  }
  );
  </script><?php
}

else {
  ?><div style="min-height:50px;"><h3 class="text-center">There are no products matching the selection.</h3></div><script>jQuery(document).ready(function() {
    jQuery('#items').html('');
    <?php if($_REQUEST["search_field"] !='') {
      ?> jQuery('#search-word').html('Show Results: <strong><?php echo $_REQUEST["search_field"]; ?></strong><a href="" class="pull-right">Clear All</a>');
      <?php
    }
    else {
      ?> jQuery('#search-word').html('');
      <?php
    }
    ?>
  }
  );
  </script><?php
}

?><style>p.Dispensary-Name11 {
  color: #49444B;
  font-size: 12px;
  margin: 0 0 4px;
  width: 100%;
  order: 1;
  text-align: center;
}

</style>.top_items_right .page-no li a {
  color: #000000;
  font-size: 18px;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@font-face {
  src: url('../font/Avenir Book.otf');
  font-family: avenir-book;
}

@font-face {
  src: url('../font/Gotham-Light.otf');
  font-family: Gotham-Light;
}

@font-face {
  src: url('../font/AvenirNextLTPro-Regular.otf');
  font-family: avenir-next;
}

@font-face {
  src: url('../font/avenir-next-bold.ttf');
  font-family: avenir-bold;
}

@font-face {
  src: url('../font/Avenir Black.otf');
  font-family: avenir-black;
}

@font-face {
  src: url('../font/Avenir Next Demi Bold.otf');
  font-family: avenir-bsemi-bold;
}

@font-face {
  src: url('../font/AvenirLTStd-Roman.woff');
  font-family: avenir-roman;
}

@font-face {
  src: url('../font/Proba Pro SemiBold.otf');
  font-family: probapro-semi-bold;
}

@font-face {
  src: url('../font/Proba Pro Medium.otf');
  font-family: probapro-medium;
}

@font-face {
  src: url('../font/Proba Pro Light.otf');
  font-family: probapro-light;
}

@font-face {
  src: url('../font/Proba Pro Regular.otf');
  font-family: probapro;
}

@font-face {
  src: url('../font/Proba Pro Bold.otf');
  font-family: probapro-bold;
}

body {
  font-family: Helvetica !important;
}

.detail.desc-detail-div label {
  color: #ffffff !important;
}

.detail.desc-detail-div .price {
  color: #ffffff !important;
  padding-bottom: 15px;
}

.detail.desc-detail-div .button.btn-cart {
  margin-left: 0px !important;
}

.proba-medium {
  font-family: probapro-medium;
}

.bold,
.step-name {
  font-family: Helvetica !important;
  font-weight: bold !important;
}

.semi-bold {
  font-family: avenir-bsemi-bold;
  font-weight: bold !important;
}

#header .dropdown-navigation ul.nav>li>a {
  font-size: 12px !important;
}

.header-top-left ul li img {
  padding-right: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: Helvetica;
}

a:focus {
  color: #49444b !important;
}

.btn {
  height: auto !important;
}

#header {
  border-bottom: 1px solid #c6c6c6;
}


/*Home Page css*/

.block2 {
  background: linear-gradient(45deg, rgba(35, 142, 55, 1) 0%, rgba(35, 142, 55, 1) 1%, rgba(35, 142, 55, 1) 100%);
  background-size: cover;
  background-position: center;
  padding-top: 130px;
  padding-bottom: 130px;
}

.block2 h2 {
  color: #fff;
  font-size: 28px;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 80px;
}

.block3 h2 {
  color: #49444b;
  font-size: 28px;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 80px;
}

.block2 h1 {
  color: #fff;
}

.block3 h1,
.block3 .content-text,
.block3 p {
  color: #49444b;
}

.block2-content {
  height: 300px;
}

.block3 .block2-content {
  height: 250px;
}

.block2 h3 {
  font-size: 23px;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
  padding-top: 15px;
  font-family: avenir-bold !important;
}

.content-hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.block3 .content-hover {
  background-color: #01974020;
}

.content-text,
.content-hover-text {
  color: #fff;
}

.block2 p {
  font-size: 16px;
  color: #fff;
  text-align: left;
  margin: 0;
  padding-top: 10px;
}

.portal-2-content-3 h3,
.portal-2-content-3 p,
.portal-2-content-4 h3,
.portal-2-content-4 p {
  text-align: right;
}

.portal-2-content-1 h3,
.portal-2-content-1 p,
.portal-2-content-2 h3,
.portal-2-content-2 p {
  text-align: left;
}

.block3 p {
  font-size: 16px;
  margin: 0;
  padding-top: 10px;
}

.content-hover-left {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 90px 150px 0;
  border-color: transparent rgba(255, 255, 255, 0.3) transparent transparent !important;
  padding-right: 35px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.content-hover-right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 0 150px 90px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.3) !important;
  padding-right: 35px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.block3 .portal-2-content-2-right.content-hover-right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 120px 250px 0px;
  border-color: transparent transparent #01974020 transparent !important;
  padding-right: 35px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.block3 .portal-2-content-1-right.content-hover-right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0px 250px 120px;
  border-color: transparent transparent transparent #01974020 !important;
  padding-right: 35px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.block3 .portal-2-content-4-left.content-hover-left {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0px 250px 120px;
  border-color: transparent transparent #01974020 transparent !important;
  padding-right: 35px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.block3 .portal-2-content-3-left.content-hover-left {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 250px 0px 0px 120px;
  border-color: #01974020 transparent transparent transparent !important;
  padding-right: 35px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

h3.content-text.mobile-app {
  padding-top: 15px;
}

.portal-content-3 h3,
.portal-content-3 p,
.portal-content-4 h3,
.portal-content-4 p {
  text-align: right;
}

.head-text {
  font-size: 45px;
  color: #fff;
}

.sub-text {
  font-size: 24px;
  color: #fff;
  margin-top: 25px;
  margin-bottom: 40px;
  line-height: normal;
}

.top-banner-back::after {
  display: block;
  content: "";
  clear: both;
}

.top-banner-back {
  background: linear-gradient(45deg, rgba(35, 142, 55, 0.7) 0%, rgba(35, 142, 55, 0.7) 1%, rgba(35, 142, 55, 0.7) 100%), url('images/new-back-img.png');
  background-position: center;
  background-size: cover;
  padding: 120px 0;
}

.shop.top-banner-back {
  background: linear-gradient(45deg, rgba(35, 142, 55, 0.7) 0%, rgba(35, 142, 55, 0.7) 1%, rgba(35, 142, 55, 0.7) 100%), url('images/new-back-img.png');
  background-position: center;
  background-size: cover;
  padding: 130px 0;
}

.top-border {
  border-top: 1px solid gray;
}

.btn-get-start {
  background-color: #fff;
  border-radius: 25px;
  padding: 15px 30px;
  letter-spacing: 2px;
  margin-top: 75px;
  border: none;
  font-size: 15px;
  color: #49444b;
}

.cart-table-view {
  background: #F0F0F0 0% 0% no-repeat padding-box;
}

.cart-table-view td {
  background: transparent !important;
}

.top-img {
  position: absolute;
  top: -27px;
}

.map-track {
  background: linear-gradient(45deg, rgba(35, 142, 55, 1) 0%, rgba(35, 142, 55, 1) 1%, rgba(35, 142, 55, 1) 100%);
  background-size: cover;
  background-position: center;
  padding-top: 130px;
  padding-bottom: 130px;
}

.map-track p,
.map-track h1,
.map-track h2 {
  color: #fff;
}

.map-track h2 {
  font-size: 28px;
  margin-bottom: 80px;
}

.map-track p {
  font-size: 16px;
}

.delivery-mgment:after {
  content: "";
  clear: both;
  display: table;
}

.delivery-mgment {
  padding: 130px 0;
}

.delivery-mgment h2 {
  color: #49444b;
  font-size: 45px;
  margin-bottom: 75px;
}

.tool-mgmt {
  margin-top: 52px;
  color: #49444b;
  font-size: 24px;
  font-family: avenir-bold !important;
  letter-spacing: 3px;
}

.delivery-mgment p {
  color: #49444b;
  font-size: 22px;
}

.btn-login {
  background-color: #49444b;
  padding: 15px 30px;
  letter-spacing: 2px;
  margin: 25px 0;
  border: none;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  font-size: 18px;
}

.btn-get-start-botom {
  background-color: #49444b;
  border-radius: 25px;
  padding: 15px 30px;
  letter-spacing: 2px;
  margin-top: 75px;
  border: none;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.bottom {
  text-align: center;
  padding-top: 130px;
  padding-bottom: 130px;
}

.start {
  font-size: 45px;
  color: #49444b;
}

.width-86 {
  width: 86%;
  margin: 0 auto;
}

.width-86::after {
  clear: both;
  content: "";
  display: table;
}

.content-text {
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1 span,
.content-text {
  font-family: avenir-bold !important;
}

button {
  font-family: avenir-black !important;
}

.area.vc_area:nth-of-type(2) {
  box-shadow: 0px 5px 8px #ccc;
}

.video-block {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.video-block iframe {
  height: 25vw;
  width: 100%;
}

.video-block p {
  color: #49444b;
  font-size: 20px;
  line-height: 25px;
  text-align: right;
  text-decoration: none !important;
}

#full-footer {
  background-color: #fff !important;
  border-top: 1px solid #c6c6c6;
}

.img-icon-block {
  width: 250px;
  height: 250px;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0px 0px 10px #6c6c6c;
  background-color: #fff !important;
}

.lock {
  background: url('/wp-content/uploads/2017/11/lock2.png') no-repeat;
  background-position: center;
  background-size: 45%;
}

.sheet {
  background: url('/wp-content/uploads/2017/11/sheet-icon.png') no-repeat;
  background-position: center;
  background-size: 40%;
}

.msg {
  background: url('/wp-content/uploads/2017/11/send-icon.png') no-repeat;
  background-position: center;
  background-size: 40%;
}

li.menu-item-type-post_type a {
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 3px !important;
  color: #49444b !important;
}

li.menu-item.menu-item-type-post_type.menu-item-object-page.sign-up {
  /*border: 1px solid #49444b;*/
  /*border-radius: 4px;*/
}

h1 {
  font-size: 45px;
}

div#copyright-region {
  padding-top: 10px;
}

#navigation ul {
  float: left;
}

#right_navigation ul {
  float: right;
}

#right_navigation ul li a {
  text-transform: uppercase;
  color: #49444b;
}

.print-head-text {
  font-size: 45px;
  color: #49444b;
  font-family: probapro-light;
}

.back-purple {
  background: linear-gradient(45deg, rgba(0, 166, 156, 1) 0%, rgba(0, 166, 157, 1) 1%, rgba(37, 169, 224, 1) 100%);
  padding-top: 130px;
  padding-bottom: 130px;
  box-shadow: inset 0px 11px 19px -10px #6c6c6c, inset 0px -11px 20px -10px #6c6c6c;
}

.print-sub-text {
  font-size: 24px;
  color: #49444b;
  margin-top: 25px;
  margin-bottom: 40px;
}

.print-division {
  display: table;
  width: 100%;
}

.print-page {
  display: table-cell;
  width: 32%;
  padding: 0 50px;
}

.print-division h3 {
  font-size: 26px;
  letter-spacing: 3px;
  color: #fff;
}

.print-division p {
  font-size: 19px;
  margin-bottom: 20px;
}

.barcode {
  background-image: url('../images/barcode.png');
}

.printer {
  background-image: url('../images/printer.png');
}

.folder {
  background-image: url('../images/folder.png');
}

.print-page {
  color: #fff;
}

.print-page.border-right {
  border-right: 1px solid #fff;
}

.round {
  border: 2px solid;
  border-radius: 50%;
  margin-right: 15px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.text-icon {
  display: inline-block;
  vertical-align: top;
}

.plan-table td,
.plan-table th {
  padding: 18px 45px !important;
  font-size: 20px;
  border-bottom: none !important;
  border-top: none !important;
}

.plan-table th h3 {
  font-size: 45px;
  color: #49444b;
}

.border-row {
  border-bottom: 1px solid #ccc;
}

.package {
  font-size: 45px;
  margin: 0 0 80px;
  color: #49444b;
}

.plan-table th h3 {
  font-size: 45px;
  color: #49444b;
}

.btn-get-start-price-tbl {
  background: #49444b;
  border-radius: 25px;
  border: none;
  padding: 13px 45px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: auto;
  display: block;
  width: 60%;
}

.btn-see-pricing {
  background-color: #49444b;
  border-radius: 25px;
  padding: 15px 45px;
  letter-spacing: 2px;
  margin-top: 75px;
  border: none;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.img-icon-block-print {
  width: 250px;
  height: 250px;
  background-position: center;
  background-size: 60%;
  margin: 0px auto 15px;
  background-repeat: no-repeat;
}

.back-white {
  padding: 130px 0;
}

.back-white-shop {
  padding: 6vh 0;
}

.plan-table {
  margin: 0 10%;
}

.pricing-packages {
  padding-top: 130px;
  padding-bottom: 130px;
}

.right {
  float: right;
}

.lbl-mgmt-head {
  color: #fff;
  margin-bottom: 130px;
}

.shadow-btm {
  padding: 130px 0;
  box-shadow: 0px 5px 8px #ccc;
  position: relative;
}

.shop-logo {
  padding: 90px 0;
  box-shadow: 0px 5px 8px #ccc;
}

.shadow-btm:after {
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 100%;
  border-right: 3px solid #ccc;
  content: "";
}

.btn-deliver,
.btn-shop {
  border-radius: 25px;
  border: none;
  padding: 15px 45px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: auto;
  display: block;
  width: 40%;
}

.btn-deliver {
  background-color: #7fba53;
}

.btn-shop {
  background-color: #9e88b2;
}

.product-description {
  font-size: 26px;
  text-align: center;
  margin: 50px 0;
  font-family: avenir-book !important;
}

.img-icon-block-product {
  padding: 70px;
}

.shop-logo img {
  width: 20%;
}

.woocommerce-cart .wc-proceed-to-checkout {
  float: right;
}

#page .shop-pages .cart_totals>h2,
#page .shop-pages .cart_totals th,
#page .shop-pages .cart_totals td {
  text-align: right;
}

#page .shop-pages .cart_totals th,
#page .shop-pages .cart_totals td {
  width: auto;
}

.carousel-indicators li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #29abe2;
}

.carousel-indicators li.active {
  background-color: #29abe2;
  border: 1px solid #29abe2;
  width: 15px;
  height: 15px;
}

.carousel-indicators {
  top: 100%;
}

.block3 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.condition-terms {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}

.condition-terms span {
  font-size: 15px;
  line-height: normal;
  color: #000;
  display: inline-block;
  vertical-align: top;
  width: 263px;
}

#login_popup .modal-dialog {
  width: 30%;
  position: absolute;
  top: 25%;
  z-index: 99;
  left: 40%;
  border-radius: 0;
  padding: 10px;
  margin: 0;
}

.field-txt {
  margin-bottom: 25px;
}

.login-input {
  border-bottom: 2px solid #49444b !important;
  margin-bottom: 15px;
  font-size: 18px !important;
  background-color: #ffffff !important;
  border-width: 2px !important;
  border-style: solid !important;
  -webkit-appearance: none;
  height: 50px;
}

.login-input-pass {
  border: 2px solid #000000;
  margin-bottom: 15px;
}

.login-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 21px;
}

.login-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 21px;
}
.call_icon{text-align:left;}
.login-input:focus {
  border-top: 2px solid transparent !important;
  border-left: 2px solid transparent !important;
  border-right: 2px solid transparent !important;
}

.iptchk,
#changepassword.iptchk {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
}

.iptchk:checked:after,
#changepassword.iptchk:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  border: solid #6c6c6c;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  left: 4px;
  top: 1px;
}

.signup,
.frtpwd {
  color: #000;
  font-size: 16px;
}

.lbltxt {
  color: rgba(0, 0, 0, 0.4);
  margin-left: 10px;
  font-size: 21px;
  line-height: 60px;
}

.signup {
  float: right;
}

button.close {
  position: absolute;
  right: 15px;
  top: 10px;
  opacity: 1;
  z-index: 99;
  font-size: 25px;
  color: #fff;
}

button.close:hover {
  color: #fff;
}

.overlay {
  width: 100%;
  content: "";
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5
}

a.close-popup {
  float: right;
  position: absolute;
  right: 7px;
  top: 7px;
}

.products li {
  display: inline-block;
  background-color: #fff;
  margin-right: 15px;
  border-radius: 50%;
  box-shadow: 0px 0px 12px #6c6c6c;
  border: 5px solid #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  transition: all 0.2s ease;
}

.products li:hover,
.products li.onchange {
  border-color: #49444b !important;
}

.products li a {
  color: #49444b;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  height: 150px;
  width: 150px;
  text-transform: uppercase;
  position: relative;
  font-family: avenir-bold;
}

.products li a.active::after {
  content: "\f00c";
  font-family: fontawesome;
  background-color: #50b847;
  border-radius: 50%;
  padding: 2px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 102px;
  width: 20px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  line-height: 17px;
}


/*.products li:first-child
{
background-image: url('../images/product1.png');
}
.products li:nth-child(2)
{
background-image: url('../images/product2.png');
}
.products li:nth-child(3)
{
background-image: url('../images/product3.png');
}
.products li:nth-child(4)
{
background-image: url('../images/product4.png');
}
.products li:nth-child(5)
{
background-image: url('../images/product5.png');
}
.products li:last-child
{
background-image: url('../images/product6.png');
}*/

.filter-type {
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  font-size: 14px;
  height: 48px;
  color: #49444b;
  background-color: #fff !important;
  border: 1px solid #000000 !important;
  border-radius: 0;
}

.search-abv-filter .select-type:after {
  content: "\f078";
  font-family: fontawesome;
  float: right;
  position: absolute;
  color: #49444b;
  font-size: 18px;
  pointer-events: none;
  line-height: 2;
  top: 0;
  width: 50px;
  text-align: center;
  height: 48px;
  right: 16px;
  align-items: center;
  padding: 5px;
}

.select-division .col-md-4:first-child .select-type::after {
  content: "\f078";
  font-family: fontawesome;
  float: right;
  position: absolute;
  right: 30px;
  top: 18%;
  color: #49444b;
  font-size: 18px;
  pointer-events: none;
  border: 1px solid #cfcfcf;
  line-height: 2;
  top: 0;
  width: 50px;
  text-align: center;
  height: 48px;
  right: 16px;
  align-items: center;
  padding: 5px;
}


/*.select-type::after {
content: "\f00c";
font-family: fontawesome;
float: right;
position: absolute;
right: 30px;
top: 18%;
color: #49444b;
font-size: 18px;
pointer-events: none;
border: 1px solid #898989;
line-height: 2;
top: 0;
width: 50px;
text-align: center;
height: 48px;
right: 16px;
align-items: center;
padding: 5px;
}*/

img {
  max-width: 100%;
}

.pro-div-img {
  height: 220px;
  width: 220px;
  float: left;
  margin-right: 10px !important;
  margin-top: 7px;margin-bottom: 7px;
  box-shadow: 0px 3px 6px #00000029;
}

.page-no {
  padding: 0;
  text-align: center;
}

.page-no li {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.page-no li a {
  color: #49444b;
  font-size: 14px;
}

.next,
.prevoius {
  color: #49444b;
  font-size: 14px;
  line-height: 30px;
}

.pro-div {
  box-shadow: 0px 3px 6px #00000029;
  margin-bottom: 50px;
  width: 23.3%;
  float: left;
  margin-right: 1.7%;
  padding: 0;
  list-style: none;
  position: relative;
}

.price {
  font-size: 18px;
  margin-bottom: 0;
  letter-spacing: 0.24px;
  color: #49444B;
  font-family: Helvetica;
  font-weight: bold;
}

.products {
  margin-top: 6vh;
  padding-left: 0;
  margin-bottom: 0
}

.pro-name a {
  font-size: 18px;
  letter-spacing: 0.24px;
  color: #000000;
  font-weight: bold;
  font-family: Helvetica;
  white-space: normal;
  overflow: auto;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1 !important;
  display: block;
}

.highlight-feature {
  background-color: #fff;
  padding: 15px;
}

.pro-name {
  margin: 0;
}

.action-box a.add-to-cart {
  background: #49444B 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  text-align: center;
  letter-spacing: 0.24px;
  color: #FFFFFF;
  display: block;
  padding: 10px;
}

.action-box a.add-to-cart:hover {
  color: #FFFFFF !important;
}

.Dispensary-Name {
  color: #000;
  font-size: 14px;
  margin: 0;
}

.select-division:after {
  display: table;
  content: "";
  clear: both;
}

.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}

.serch-item {}

.pad-top {
  padding: 10px 15px;
}

.reson {
  display: inline-block;
  border: 1px solid #fff !important;
  padding: 12px 15px!important;
  height: auto;
  width: 73% !important;
  font-size: 22pt !important;
  background-color: transparent !important;
}

.reson::-moz-placeholder {
  color: #fff;
  font-size: 22pt;
}

.reson::-webkit-input-placeholder {
  color: #fff;
  font-size: 22pt;
}

.what {
  color: #fff;
  font-size: 21px;
  margin-bottom: 5px;
  font-family: probapro;
}

.serch-item::after {
  display: table;
  content: "";
  clear: both;
}

.title-start {
  font-size: 45px;
  text-transform: capitalize;
  color: #49444b;
  margin-bottom: 25px;
}

.step-title {
  font-size: 14px;
  margin-bottom: 55px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8c8c8c;
}

.heading-title {
  color: #8c888b;
  font-size: 16px;
  margin-bottom: 25px;
}

.btn-next {
  background-color: #49444b;
  border: none;
  line-height: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  width: 120px;
  margin-top: 70px;
  font-size: 11pt;
}

#step-5.btn-next {
  width: 80%;
}

.icon-rel {
  width: 250px;
  height: 250px;
  background-position: center;
  border-radius: 25px;
  box-shadow: 0px 0px 12px #6c6c6c;
  background-size: 60%;
  margin: 60px auto;
  background-repeat: no-repeat;
}

.frm-control::-moz-placeholder {
  color: #8c888b;
}

.frm-control::-webkit-input-placeholder {
  color: #8c888b;
}

.steps input.frm-control {
  display: block;
  height: 50px;
  border: 2px solid #8c888b !important;
  width: 80%;
  margin-bottom: 15px;
  box-shadow: none;
  color: #8c888b;
  font-size: 22px;
  padding: 0px 12px;
}

label.frm-control {
  color: #8c888b;
  font-family: avenir-bold !important;
  font-size: 12pt;
}

.sign-up-reg {
  background-image: url('/wp-content/uploads/2017/12/icon-3.png');
}

.verification-link {
  background-image: url('/wp-content/uploads/2017/12/verfication-icon.png');
}

.terms {
  display: inline-block;
  margin: 25px 0;
}

.conditions {
  padding-left: 30px;
  color: #8c888b;
  margin-bottom: 0;
}

.terms input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  position: relative;
}

.terms input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  border: solid #000;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 1px;
}

.round::after {
  content: "\f00c";
  font-family: fontawesome;
}

.page-no li.active a {
  color: #000;
}

.width-100 {
  width: 100%;
}

.width-80 {
  width: 80%;
}

.width-60 {
  width: 60%;
}

.width-40 {
  width: 40%;
}

.width-20 {
  width: 20%;
}

.desc-detail-div {
  display: table-cell;
  vertical-align: top;
}

.description {
  width: 50%;
  padding: 60px 60px 60px 30px;
  background-color: #49444b;
}

.description p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.description h2 {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

button.btn-cart {
  background-color: #fff;
  box-shadow: none;
  color: #49444b;
  border: 1px solid transparent;
  padding: 12px 16px;
  width: 100%;
  font-size: 14px;
  margin-left: 10px;
}

.addtocart-action {
  display: flex;
  bottom: 60px;
  position: absolute;
}

.addtocart-action input#qty {
  margin: 0;
}

.addtocart-action button.btn-cart:hover,
.addtocart-action button.btn-cart:focus {
  background-color: #fff;
  color: #49444b;
  border-color: transparent;
}

button.btn-cart:hover,
button.btn-cart:focus {
  background-color: #49444b;
  color: #fff;
  border-color: #49444b;
}

.pro-brand-name {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

a.btn-cart {
  border: 1px solid;
  border-radius: 50%;
  padding: 3px 3px;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: top;
  position: absolute;
  right: 8px;
  background-color: #fff;
}

ul.effects {
  list-style: none;
  padding-left: 0;
}

ul.effects li {
  background-color: blue;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  font-size: 15px;
  line-height: normal;
  background-color: rgba(255, 255, 255, .25);
  padding: 10px 12px;
  color: #fff;
  margin: 15px 0;
}

.detail {
  width: 50%;
  padding: 65px 15px 60px 15px;
  background-color: #49444b;
}

.detail img {
  display: block;
  margin: auto;
}

#product-view .modal-body {
  padding: 0
}

.pro-div-img img {
  max-height: 100%;
  margin: auto;
  display: block;
}

li.cart img {
  height: 19px;
}

li.cart span {
  border: 1px solid;
  text-align: center;
  width: auto;
  min-width: 24px;
  line-height: 22px;
  display: inline-block;
  float: none;
  border-radius: 50%;
  font-size: 12px;
  padding-left: 0;
}

a:hover {
  color: #494949 !important;
}

a.btn-cart:focus {
  color: #49444b !important;
}

.products {
  text-align: center;
}

table.cart-table td,
table.cart-table th,
#order-list th,
#order-list td {
  border: 1px solid #c6c6c630;
}

.cart-table thead th,
.cart-table thead th a {
  color: #49444b;
  text-align: center;
  font-size: 18px;
}

.cart-table td:not(.foottd),
.cart-table td a {
  text-align: center;
  font-size: 18px;
}

.checkout .cart-table td:first-child:not(.foottd),
.vertical-height .cart-table td:nth-child(2):not(.m-right) {
  text-align: left;
}

.checkout .cart-table td:last-child,
.vertical-height .cart-table td:last-child {
  text-align: right !important;
}


/*.cart-table td input[type="number"]{
width: 50px;
padding: 10px;
border-color: #c6c6c6 !important;
}*/

.cart-table td input[type="number"] {
  max-width: 70px;
  padding: 10px;
  border-color: #c6c6c6 !important;
  width: auto;
}

.login-head {
  /ext-align: left;
  font: Regular 48px/47px Helvetica;
  letter-spacing: 0.48px;
  color: #000000;
  opacity: 1;
  /* font-size: 30px;
color: #49444b;

margin-bottom: 30px;
font-family: probapro-light;*/
}

.foottd button,
.foottd a.btn,
#advance-desk form button[type="submit"],
#basic-desk form button[type="submit"],
#advance-mob form button[type="submit"],
#basic-mob form button[type="submit"] {
  font-family: avenir-black;
  padding: 0;
  width: 150px;
  line-height: 50px;
  background-color: #49444b;
  color: #fff;
  border: none;
  font-size: 16px;
}

.foottd {
  font-size: 18px;
}

.cart-table {
  margin-top: 30px;
  margin-bottom: 30px;
}

#registration {
  padding-top: 130px;
  padding-bottom: 130px;
}

.plan-table h4 {
  font-size: 24px;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

label.filename.selected:before {
  content: "\f15b";
  font-family: FontAwesome;
  padding-right: 15px;
}

label.filename {
  font-family: avenir-bold !important;
  font-size: 16px;
}

.inputfile+label {
  width: 80%;
  font-size: 22px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 50px;
  font-family: avenir-black;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile-1+label {
  color: #fff;
  background-color: #49444b;
}

.inputfile-1:focus+label,
.inputfile-1.has-focus+label,
.inputfile-1+label:hover {
  background-color: #49444b;
}

button[disabled] {
  background-color: #8c888b50;
}

.uploadid {
  background-image: url('../images/upload-id.png');
}

.complete {
  background-image: url('../images/round-done-button.png');
}

.uploadrec {
  background-image: url('../images/rec.png');
}

.shop-head {
  margin-top: 10px;
  color: #49444b;
  margin-bottom: 20px;
}

.margin-15 {
  margin: 0 0 15px 0;
}

.checkout input.form-control {
  height: 50px;
}

#basic-desk form,
#basic-mob form,
#advance-desk form,
#advance-mob form {
  padding: 15px;
}

#basic-desk form input,
#basic-desk form textarea,
#basic-mob form textarea,
#basic-mob form input,
#advance-desk form input,
#advance-desk form textarea,
#advance-mob form textarea,
#advance-mob form input {
  margin: 10px 0;
  border: 1px solid #c6c6c6 !important;
  height: 40px;
}

.msg-success-cart {
  padding: 15px;
  margin: 0;
  background-color: #49444b;
  box-shadow: 0px 0px 10px #333333;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
}

#messages {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 18px;
  justify-content: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  display: flex !important;
  display: -webkit-box;
  right: 0;
  bottom: 0;
}

.pro-sucess {
  display: flex;
  display: -webkit-box;
  flex-direction: column;
  -webkit-box-orient: vertical;
  position: fixed;
  min-height: 100%;
  z-index: 500;
}

p.empty_class {
  line-height: 5;
  text-align: center;
  font-size: 35px;
}

.checkout label {
  font-size: 16px;
  font-family: avenir-bold;
}

a.btn[href="/shop"] {
  text-align: center;
  color: #fff !important;
  margin: 25px auto;
  width: 225px;
  display: block;
  border-radius: 0;
}

.user-login a {
  margin: 15px 0;
}

div#items {
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 15px;
}

.alert-danger,
.fail {
  line-height: 20px;
  font-size: 14px;
  background-color: #fff !important;
  color: red !important;
  border-color: #fff;
  padding: 10px 0;
}

.alert-success,
.pass {
  color: #068e06 !important;
  line-height: 20px;
  font-size: 14px;
  background-color: #fff !important;
  border-color: #fff;
  padding: 10px 0;
}

.nav>li {
  margin-right: 0 !important;
}

#age_limit_popup button {
  border-radius: 72px;
  font-size: 15px;
  line-height: 1.44;
  text-align: center;
  color: #ffffff;
  padding: 14px 55px 16px;
  border: none;
  margin: 5px;
}

#age_limit_popup h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  color: #343434;
  margin: 0 0 11px;
}

#age_limit_popup .modal-content {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: /*3*/
  0px;
}

.flex-wrapp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: fixed;
  z-index: 9999;
}

#age_limit_popup.show-popup {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex !important;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
}

td.foottd.m-right[colspan="6"] a {
  width: 250px;
}

#weight-select {
  margin: 0 0 15px 0;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: rgba(102, 102, 102, 0.314) !important;
  border-image: initial !important;
  margin-bottom: 40px;
}

.checkout h4 {
  color: #49444b;
  cursor: pointer;
  font-family: avenir-bold;
}

.checkout #step1,
.checkout #step2,
.checkout #step {
  border: 1px solid #49444b;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 8px;
}

.checkout #step1.not-activate,
.checkout #step2.not-activate,
.checkout #step.not-activate {
  border: 1px solid #c6c6c6;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 8px;
  cursor: not-allowed;
}

.checkout #step1.not-activate h4,
.checkout #step2.not-activate h4,
.checkout #step.not-activate h4 {
  color: #c6c6c6;
  cursor: not-allowed;
}

ul.acc-links li a {
  font-size: 18px;
  line-height: 50px;
  color: #000;
}

ul.acc-links li a.active {
  color: #49444b;
}

#order-list th {
  color: #49444b;
  font-size: 18px;
}

.acc-pages {
  margin: 3vh 0;
  color: #49444b;
}

ul.acc-links li {
  list-style: none;
  border-bottom: 2px solid #49444b;
}

ul.acc-links {
  background-color: #cccccc30;
  padding: 15px;
}

.pad-0 {
  padding-left: 0;
  padding-right: 0;
}

.despatch,
.order-no {
  font-size: 18px;
  margin: 20px;
  /*color: #49444b;*/
  color: #49444b;
}

.links-sub {
  line-height: normal;
  display: table;
  width: 100%;
}

h3.print-head-text {
  font-size: 27px;
}

.chkfields input,
.chkfields textarea {
  border-color: #c6c6c6 !important;
}

.my-account input {
  border-color: #c6c6c6 !important;
  height: 40px;
}

.my-account input#changepassword {
  display: inline-block;
  vertical-align: text-bottom;
}

.my-account input#birthdate {
  margin-bottom: 0;
}

div[align="center"] button {
  margin-bottom: 25px;
}

#change {
  margin-top: 15px;
}

#social-icon div {
  display: inline-block;
  margin: 0 20px
}

#full-footer {
  background-color: #000 !important;
  height: auto !important;
}

#full-footer .menu ul li {
  display: inline-block;
  float: none;
  margin: 15px 0 0;
}

#full-footer .menu ul {
  text-align: center;
}

#full-footer a:hover {
  background-color: transparent;
}

#register #step3 input[type="radio"]+label {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  vertical-align: super;
}

.medical-patient,
.recreational {
  margin: 2vh 0;
}

#register #step3 input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
  border-radius: 50%;
}

#register #step3 input[type="radio"]:checked:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #6c6c6c;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
}

#loader .loader {
  padding: 130px 0 150px;
  font-size: 24px;
}

.slider-text p {
  color: #49444b;
  font-size: 52px;
}

.slider-text,
.five-star-service-div,
.find-more-div,
.lets-order-div {
  padding: 12vh 0;
}

.find-favourite-slider-divs {
  padding-top: 75px;
  padding-bottom: 25px;
}

.ready-order-div {
  padding: 80px 0;
}

.find-more-div {
  background: linear-gradient(45deg, rgba(0, 166, 156, 0.7) 1%, rgba(0, 166, 156, 0.7) 100%), url('images/grass.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.five-star-service-div {
  background: linear-gradient(45deg, rgba(0, 166, 156, 0.7) 1%, rgba(37, 169, 224, 0.7) 100%), url('images/man-mobile.png') no-repeat;
  background-size: cover;
  background-position: center;
}

button.btn-find-pro,
.btn-get-started {
  background-color: #fff;
  border-radius: 0;
  padding: 15px 15px;
  border: none;
  text-transform: capitalize;
  letter-spacing: 0;
  color: #000;
  width: 130px;
  margin-top: 25px;
}

.find-more-div h3,
.five-star-service-div h3,
.lets-order-div h3 {
  font-size: 25px;
  color: #fff;
  font-weight: bold;
}

.find-more-div h2,
.five-star-service-div h2,
.lets-order-div h2 {
  font-size: 12px;
  color: #fff;
  line-height: 2;
}

.find-favourite-slider-divs h2 {
  font-size: 52px;
  text-align: center;
  color: #49444b;
}

.find-favourite-slider-divs p {
  font-size: 16pt;
  text-align: center;
  color: #49444b;
}

.find-favourite-slider-divs img {
  width: 35%;
  margin-bottom: 20px;
}

.ready-order-div h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #49444b;
  font-weight: bolder;
}

.ready-order-div input {
  display: inline-block;
  border: 1px solid #ccc!important;
  padding: 7px 15px 7px !important;
  width: 100% !important;
  font-size: 14px !important;
  line-height: 31px;
  background: #fff !important;
  color: #000;
}

.ready-order-div input::placeholder {
  color: #ccc !important;
  font-size: 14px !important;
  font-weight: bold;
}

.search-abv-filter input {
  border: 1px solid #000 !important;
  padding: 0 10px !important;
  line-height: 45px !important;
  font-size: 14px !important;
  background: #fff !important;
  color: #000;
}

.search-abv-filter input::placeholder {
  color: #000;
}

.pro-search {
  position: absolute;
  right: 1px;
  top: 1px;
  line-height: 45px;
  padding: 0 60px;
  background-color: #49444b;
  border: none;
  text-transform: capitalize;
  color: #fff;
  font-size: 14px;
  font-family: Gotham-Light !important;
  font-weight: bold;
}

.ready-order-div input::-moz-placeholder {
  color: #000;
  font-size: 22pt;
}

.ready-order-div input::-webkit-input-placeholder {
  color: #000;
  font-size: 22pt;
}

.btn-find-dispensaries {
  background-color: #49444b;
  padding: 5px 20px;
  border: none;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  margin-left: -5px;
  font-size: 17px;
  font-weight: bold;
  font-family: Gotham-Light !important;
  line-height: 45px;
  width: 20%;
  letter-spacing: 1px;
  margin-top: 10px;
}

#location.modal {
  position: fixed;
  z-index: 999;
  padding-top: 10%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}

#location .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 480px;
}

#location .close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 1;
}

#location .close:hover,
#location .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
}

#location a.skip {
  color: #49444b;
  font-size: 16px;
}

.products li:last-child,
.find-favourite-slider-divs {
  display: none;
}

.banner-full-block {
  display: flow-root;
  /* background: linear-gradient(45deg, rgba(35,142,55,0.7) 1%, rgba(35,142,55,0.7) 100%),url(https://ocgreenrelieforg.stage.site/wp-content/themes/medikal/assets/theme/css/images/man-mobile.png) no-repeat;*/
  background: linear-gradient(45deg, rgba(35, 142, 55, 0.7) 1%, rgba(35, 142, 55, 0.7) 100%), url(https://ocgreenrelieforg.stage.site/wp-content/themes/medikal/assets/theme/css/images/stock-photo-yoga-at-park.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  position: relative;
  margin-bottom: 100px;
}

h2.banner-text {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 40%;
  color: #fff;
  text-transform: capitalize;
  font-size: 60px;
}

.col-md-12.cbd-image {
  margin: 20px auto;
  text-align: center;
}

.col-md-12.cbd-image img.cbd-chart {
  width: auto;
  max-width: 500px;
}

p.discription {
  color: #000;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  font-family: sans-serif;
}

h2.heading-title-main {
  color: #09a04a;
  font-size: 22px;
  font-family: sans-serif;
}

.row.first-block ul {
  padding: 0;
}

.row.first-block ul li {
  list-style: none;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
  font-family: sans-serif;
}

.col-md-12.ypu-tube-vid-section iframe {
  width: 100%;
}

.description label {
  color: #fff;
}

#page .blog-metro .post-teasers .post-date {
  background-color: #49444b !important;
}

body #full-footer {
  background: #f0f0f0 !important;
  padding-bottom: 0 !important;
}

p.footer-text {
  width: 100%;
  color: #4e444b;
  font-size: 12px;
  text-transform: uppercase;
}

p.footer-text.no-padding {
  margin-top: -10px;
}

#location {
  display: none !important;
}


/* --- moved CSS from shop.php Starts --- */

#product-list h3 {
  font-size: 18px !important;
  font-weight: normal !important;
}

.all-cate-filters .col-md-1 {
  width: auto;
  margin: 0 1.65%;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  padding: 10px;
  cursor: pointer;
}

.all-cate-filters .active {
  border-bottom: 2px solid #707070;
}

.product-section #select-data .col-md-12.all-cate-filters {
  align-content: space-between;
}


/* --- moved CSS from shop.php End --- */

@media (min-width:900px) {
  #menu-header-navigation-1 {
    margin-right: 50px;
  }
}

@media (min-width:1000px) and (max-width:1199px) {
  .products li a {
    width: 120px;
    height: 120px;
  }
  .products li a::after {
    left: 90px;
  }
  .condition-terms span {
    width: 180px;
  }
  /* --- New CSS --- */
  #header .branding {
    display: none;
  }
  #menu-main-menu {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .pro-div {
    width: 100%;
  }
  .ready-order-div input::-moz-placeholder,
  .reson::-moz-placeholder {
    font-size: 12pt !important;
  }
  .ready-order-div input::-webkit-input-placeholder,
  .reson::-webkit-input-placeholder {
    font-size: 12pt;
  }
  .slider-text p,
  .find-favourite-slider-divs p,
  .reson,
  .ready-order-div input {
    font-size: 14px !important;
  }
  div#items {
    text-align: center;
  }
  #pagination {
    margin-bottom: 0;
  }
  .step-title {
    text-align: center;
  }
  div#myacc-detail {
    font-size: 20px;
    padding: 10px;
  }
  div#myacc-detail span {
    padding-right: 15px;
  }
  .border-right {
    border-right: none;
  }
  .location-show {
    font-size: 16px;
    color: #49444b;
    line-height: 50px;
  }
  .steps input.frm-control,
  #send-code {
    width: 100% !important;
  }
  #login_popup .modal-dialog {
    width: 100%;
    margin: auto;
    left: 0;
  }
  #product-view .modal-dialog {
    width: 90%;
    margin: auto;
  }
  #age_limit_popup h2,
  .cart-table td:not(.foottd),
  .cart-table td a {
    font-size: 16px;
  }
  #age_limit_popup img {
    width: 20%;
  }
  .width-86 {
    width: 100%;
    margin: 0 auto;
  }
  h2,
  .step-title {
    margin-bottom: 15px !important;
  }
  #page .region {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  #footer-logo img {
    margin: auto;
    display: block;
  }
  div#social-icon {
    text-align: center;
    margin-top: 15px;
  }
  .portal-2-content-3 h3,
  .portal-2-content-3 p,
  .portal-2-content-4 h3,
  .portal-2-content-4 p,
  .portal-content-3 h3,
  .portal-content-3 p,
  .portal-content-4 h3,
  .portal-content-4 p {
    text-align: left;
  }
  .top-banner-back {
    padding: 20px 0;
  }
  .btn-get-start,
  .btn-get-start-botom,
  .btn-see-pricing {
    margin-top: 15px;
  }
  .start {
    font-size: 34px;
  }
  .top-img {
    position: initial;
  }
  .block2-content,
  .block3 .block2-content {
    height: auto;
    margin-bottom: 15px;
  }
  .page-id-42 .row {
    margin-left: 0;
    margin-right: 0;
  }
  .slicknav-open ul.slicknav_nav {
    display: block !important;
  }
  .xs-none {
    display: none;
  }
  .print-page {
    display: block;
    width: 100%;
  }
  .for-desktop {
    display: none;
  }
  .plan-table {
    margin: 0 15px;
  }
  .btn-get-start-price-tbl {
    width: 80%;
  }
  .pro-detail-modal {
    display: flex;
    flex-direction: column;
  }
  .description {
    width: 100%;
    order: 2;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 2;
  }
  .detail {
    width: 100%;
    order: 1;
    -webkit-order: 1;
    -webkit-box-ordinal-group: 1;
  }
  .desc-detail-div {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  p.empty_class {
    font-size: 25px;
  }
  .order-change {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    -webkit-flex-flow: column;
  }
  .order-change .step-1 {
    order: 2;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 2;
  }
  .order-change .step-2 {
    order: 1;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 1;
  }
  .icon-rel {
    margin: 30px auto;
  }
}

@media screen and (max-width:480px) {
  .btn-find-dispensaries {
    width: 100%;
  }
  /* --- New CSS --- */
  #logo {
    margin-left: 9% !important;
  }
  .all-cate-filters .col-md-1 {
    width: 50%;
    margin: 0;
    min-height: 48px;
    height: auto;
  }
  .pro-search {
    position: relative !important;
    width: 100%;
  }
  .banner-block .banner-content {
    top: 22%;
  }
  .bottom-banner-block .bottom-banner-content {
    top: 24% !important;
  }
  .bottom-banner-block img {
    width: auto !important;
    height: 300px;
    max-width: initial;
  }
  .banner-block .banner-content h3 {
    font-size: 21px !important;
    line-height: 20px !important;
  }
  .banner-block .banner-content h5 {
    font-size: 21px !important;
    line-height: 20px !important;
  }
  .banner-block .banner-content {
    top: 21%;
  }
  .footer-banner-block img.banner-image {
    width: auto;
    max-width: auto;
    height: 300px;
  }
  .footer-banner-block .footer-banner-content {
    top: 28%;
  }
}

@media (min-width:768px) and (max-width:992px) {
  .pro-div:nth-child(3n+3) {
    margin-right: 0;
  }
  .pro-div {
    width: 32%;
  }
  .slider-text p {
    font-size: 39px;
  }
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .next,
  .prevoius {
    line-height: normal;
  }
  .width-86 {
    width: 95%;
    margin: 0 auto;
  }
  .top-img {
    position: initial;
  }
  .top-banner-back,
  .delivery-mgment,
  .block2,
  .map-track,
  .block3 {
    padding: 30px 0;
  }
  .page-id-42 .row {
    margin-left: 0;
    margin-right: 0;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .pro-name a {
    font-size: 16px;
  }
  .print-page {
    padding: 0 30px;
  }
  .plan-table {
    margin: 0;
  }
  .package,
  .lbl-mgmt-head {
    margin-bottom: 30px;
  }
  .slicknav-open ul.slicknav_nav {
    display: block !important;
  }
  .modal-dialog,
  #login_popup .modal-dialog {
    width: 60%;
    left: 20%;
  }
  /* --- New CSS --- */
  .search-box.input-group.col-md-6 {
    display: block;
    float: left;
    width: calc(100% - 10px);
  }
  .all-cate-filters .col-md-1 {
    width: 25%;
    margin: 0;
    min-height: 48px;
    height: auto;
    float: left;
  }
  .sign-in-image {
    width: 60% !important;
  }
  form.login-form {
    width: 40% !important;
    padding: 4% 30px !important;
  }
  .sign-up-image {
    width: 55% !important;
  }
  form.register-form {
    width: 45% !important;
    margin: 50px 0 !important;
    padding: 0 30px;
  }
  form.register-form #sign-in-btn {
    position: initial !important;
    width: 100% !important;
  }
}

@media (min-width:768px) and (max-width:1024px) {
  #product-view .modal-dialog {
    width: 90% !important;
    margin: 15px auto;
  }
  /* --- New CSS --- */
  #header .branding {
    display: none;
  }
  #menu-main-menu {
    display: block !important;
  }
}

@media(min-width:1600px) {
  .top-img img {
    transform: translateY(-117px) scale(0.8);
  }
}

@media(min-width:992px) {
  .pro-div:nth-child(4n+4) {
    margin-right: 0;
  }
}

@media(min-width:767px) {
  .for-mobile {
    display: none;
  }
  html {
    position: relative;
  }
  #product-view .modal-dialog {
    width: 65%;
    left: 0;
    top: 12%;
  }
  .width-30 {
    width: 30%;
  }
  .width-70 {
    width: 70%;
  }
  .pro-col {
    display: table-cell;
    padding: 0 10px;
    vertical-align: middle;
  }
  .location-show {
    display: none;
  }
}

@media screen and (max-width:767px) {
  .banner-block .banner-content h3 {
    font-size: 21px !important;
  }
  .header-top-left ul li a,
  .header-top-right ul li a {
    font-size: 10px !important;
    margin: 5px 7px !important;
  }
  .header-top-left ul li,
  .header-top-right ul li {
    font-size: 10px;
    margin: 5px 7px !important;
  }
  .header-top-right {
    margin-top: -30px;
  }
  .search-seaction .search-abv-filter .select-box {
    padding-bottom: 10px;
  }
  .search-abv-filter input {
    margin-bottom: 10px;
  }
  .footer-banner-block h4 {
    font-size: 25px !important;
  }
  .footer-banner-block img.banner-image {
    height: 200px;
  }
  .ready-order-div {
    padding: 20px 0 !important;
  }
  footer ul.d-flex li i {
    font-size: 25px !important;
  }
  footer ul.d-flex li a,
  footer ul.d-flex li {
    font-size: 10px !important;
  }
  .banner-block .banner-content {
    top: 40% !importnat;
  }
  .detail.desc-detail-div label {
    color: #fff;
  }
  .detail.desc-detail-div button.btn-cart {
    margin-left: 0px !important;
  }
  #weight-select {
    margin-bottom: 20px !important;
  }
  .price {
    color: #fff;
    padding-bottom: 20px;
  }
  .desc-detail-div {
    margin-top: -30px;
  }
  .description h2 {
    font-size: 18px;
  }
  .description .pro-brand-name {
    font-size: 14px;
  }
  .pro-detail-modal .description {
    padding: 0px 20px 20px 20px !important;
  }
}

@media (max-width:1024px) {
  .find-more-div h2,
  .five-star-service-div h2,
  .lets-order-div h2 {
    /*font-size: 23px;*/
  }
  .find-more-div h3,
  .five-star-service-div h3,
  .lets-order-div h3,
  .ready-order-div h2 {
    /*font-size: 34px;*/
  }
  .find-favourite-slider-divs h2 {
    font-size: 30px;
  }
  .slider-text,
  .five-star-service-div,
  .find-more-div,
  .lets-order-div {
    padding: 7vh 0;
  }
  .ready-order-div input,
  .reson {
    width: 100% !important;
  }
  .delivery-mgment,
  .block2,
  .map-track,
  .back-white,
  .back-purple,
  .pricing-packages,
  .block3,
  .bottom,
  #registration {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  h1,
  .delivery-mgment h2,
  .head-text,
  .print-head-text,
  .package,
  .plan-table th h3,
  .title-start {
    font-size: 32px;
  }
  .delivery-mgment p,
  .print-division p,
  .plan-table td,
  .plan-table th,
  .inputfile+label {
    font-size: 16px;
  }
  h3.content-text {
    font-size: 19px;
  }
  .img-icon-block,
  .img-icon-block-print {
    width: 175px;
    height: 175px;
  }
  .plan-table p {
    margin-bottom: 0;
  }
  .products {
    margin-top: 30px;
  }
  .plan-table td,
  .plan-table th {
    padding: 18px 15px !important;
  }
  .cart-table,
  .serch-item {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  a[title="My Account"]:after {
    content: attr(title);
  }
}


/* owl-carousel ---start*/

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block
}

.owl-carousel.owl-hidden {
  opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}

.owl-carousel.owl-rtl {
  direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
  float: right
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
  z-index: 0
}

.owl-carousel .owl-animated-out {
  z-index: 1
}

.owl-carousel .fadeOut {
  animation-name: fadeOut
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

.owl-height {
  transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%
}

.owl-prev,
.owl-next {
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  background-color: #49444b;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  background-position: center;
}

.owl-prev {
  left: 0;
  background-image: url('../images/left.png');
}

.owl-next {
  right: 0;
  background-image: url('../images/right.png');
}


/* owl-carousel ---end*/

@media screen and (max-width: 600px) {
  .products li {
    margin-right: 5px;
  }
  .wrapper-sticky {
    height: auto !important;
  }
  .header-top-content {
    margin-bottom: 0 !important;
  }
  .cart-table,
  .cart-table thead,
  .cart-table tfoot,
  .cart-table tbody,
  .cart-table th,
  .cart-table td,
  .cart-table tr {
    display: block;
    width: 100%;
  }
  .m-right {
    text-align: right;
  }
  .cart-table td.foottd {
    display: table-cell;
  }
  .cart-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .cart-table td:not(.foottd) {
    position: relative;
    padding-left: 7% !important;
    text-align: right;
    border-bottom-width: 0;
  }
  .cart-table td:before {
    position: absolute;
    top: auto;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
  }
  .vertical-height .cart-table tbody td:nth-of-type(1):before {
    content: "Remove";
  }
  .vertical-height .cart-table tbody td:nth-of-type(2):before {
    content: "Product";
  }
  .cart-table tbody td:nth-of-type(3):before {
    content: "Price";
  }
  .cart-table tbody td:nth-of-type(4):before {
    content: "Quantity";
  }
  .cart-table tbody td:nth-of-type(5):before {
    content: " Row Total";
  }
  .checkout .cart-table tbody td:nth-of-type(1):before,
  .view-order.cart-table tbody td:nth-of-type(1):before {
    content: "Product";
  }
  .checkout .cart-table tbody td:nth-of-type(2):before,
  .view-order.cart-table tbody td:nth-of-type(2):before {
    content: "Price";
  }
  .checkout .cart-table tbody td:nth-of-type(3):before,
  .view-order.cart-table tbody td:nth-of-type(3):before {
    content: "Quantity";
  }
  .checkout .cart-table tbody td:nth-of-type(4):before,
  .view-order.cart-table tbody td:nth-of-type(4):before {
    content: "Row Total";
  }
  .cart-table tbody {
    padding-top: 10px;
  }
  .vertical-height .cart-table td:nth-child(2),
  .checkout .cart-table td:first-child:not(.foottd) {
    text-align: right !important;
  }
  .street-no,
  .street-validate {
    width: 100% !important;
    display: inline-block;
    margin-top: 8px;
    text-align: center;
  }
  .min-width {
    min-width: 125px;
  }
  td.foottd.m-right[colspan="6"] {
    float: right;
    text-align: center !important;
  }
  /*.home .banner-block { text-align: center; }
.home .banner-block img { width: auto;	height: 300px;	max-width: initial; }*/
}

.home .find-more-div,
.home .slider-text,
.home .top-banner-back {
  display: none;
}

.top-header {
  background: #000;
  margin: 0;
  height: 30px;
  line-height: 2;
  width: 100%;
}

.top-header ul.d-flex.top-header-last-content {
  display: flex;
}

.top-header ul.d-flex.top-header-last-content li {
  list-style: none;
  margin: 0 5px;
}

.top-header ul.d-flex.top-header-last-content li i.fa {
  color: #fff;
}

.top-header ul.d-flex.top-header-middle-content {
  display: flex;
  margin: 0 0 0 55px;
}

.top-header ul.d-flex.top-header-middle-content li:first-child {
  margin-left: 0;
}

.top-header ul.d-flex.top-header-middle-content li {
  list-style: none;
  margin: 0 15px;
}

.top-header ul.d-flex.top-header-middle-content li a span.sub-span {
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}

.top-header ul.d-flex.top-header-middle-content li i.fa {
  color: #fff;
  vertical-align: middle;
  margin-right: 5px;
  font-size: 10px;
}

.top-header ul.d-flex.top-header-middle-content li span.main-span {
  color: #50b847;
  font-size: 10px;
  text-transform: uppercase;
}

.top-header ul.d-flex.top-header-middle-content li a span.sub-span.last {
  text-transform: capitalize;
}

#location.modal button.btn.btn-default {
  background: #49444b;
  color: #fff;
  border: 1px solid transparent;
}

#location.modal button.btn.btn-default:hover {
  background: #fff;
  color: #49444b;
  border: 1px solid #49444b;
}

.lets-order-div {
  background: linear-gradient(45deg, rgba(35, 142, 55, 0.7) 1%, rgba(35, 142, 55, 0.7) 100%), url(images/leg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.five-star-service-div {
  background: linear-gradient(45deg, rgba(35, 142, 55, 0.7) 1%, rgba(35, 142, 55, 0.7) 100%), url(images/man-mobile.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.back-white-shop .products li a {
  text-transform: capitalize !important;
}

#header .dropdown-navigation ul.nav>li>a {
  color: #000 !important;
  font-size: 12px !important;
  font-weight: bold !important;
  padding: 0px !important;
  letter-spacing: 0.75px !important;
}

#header li.menu-item.menu-item-type-post_type.menu-item-object-page.sign-up a {
  background: #49444b !important;
  color: #fff !important;
}

footer {
  clear: both;
}

footer .content-center {
  text-align: center;
  margin: 0 auto;
}

footer .d-flex {
  display: inline-flex;
  margin-bottom: 15px;
}

footer ul.d-flex li {
  list-style: none;
  margin-right: 20px;
}

footer ul.d-flex li a,
footer ul.d-flex li {
  color: #49444b !important;
  text-transform: uppercase;
  font-size: 13px !important;
  font-weight: bold;
  cursor: pointer;
}

footer p,
footer .textwidget.custom-html-widget {
  color: #fff;
  margin-bottom: 10px;
  font-size: 12px;
}

footer ul.d-flex li i {
  font-size: 35px !important;
  color: #49444b !important;
  margin-right: 13px;
}

#header .region .vertical-target .home-link {
  padding-top: 0 !important;
}

#header {
  border-bottom: 1px solid #cccccc73 !important;
}

#navigation ul.nav>li>a,
ul#menu-header-navigation-1 li {
  padding: 0 5px !important;
}

body .main-logo {
  width: 26% !important;
}

.select-division .filter-type {
  font-size: 12px;
  height: 48px;
  border-radius: 0;
  color: #000;
  font-weight: bold;
}

h2.Shop-catagory-title {
  color: #000;
  font-size: 22px;
  font-weight: bolder !important;
  font-family: avenir-next;
  text-align: center;
  margin: 40px 0 70px 0;
}

#page .slicknav_menu a {
  display: none;
}

#menu-header-navigation-1 {
  display: block !important;
}

.col-md-8.middle-content {
  width: 60%;
}

#navigation ul.nav>li {
  margin: 0 20px !important;
}

#navigation ul.nav>li:first-child {
  margin-left: 0;
}

#header .region {
  padding-top: 5px !important;
  padding-bottom: 0 !important;
}

#navigation ul.nav>li {
  min-height: auto !important;
  line-height: 22px !important;
}

#header .region .vertical-target .home-link {
  margin-top: -20px;
}

.page-template-checkout_old button.btn-login.bold {
  font-size: 18px;
}

.page-template-checkout_old h2.login-head {
  /*text-align: center;*/
  font: Regular 48px/47px Helvetica;
  letter-spacing: 0.48px;
  color: #000000;
  opacity: 1;
  /* font-size: 32px;
margin-bottom: 25px;*/
}

.page-template-checkout_old .container.success {
  margin: 50px auto;
}

body .slicknav_menu a:hover {
  color: #018040 !important;
}


/*.alert-success.alert-dismissible {
text-align: center;
color: #fff !important;
background: #068e06 !important;
}*/

form.login-form {
  width: 30%;
  padding: 80px 50px;
  padding: 12.5% 50px;
  float: right;
  background: #fff;
  margin: 0;
}

/*body {
  background-color: #49444b !important;
}*/

body {
  background-color: #fff !important;
}

form.login-form h2.login-title {
  text-align: center;
  color: #000;
  margin-bottom: 35px;
  font-size: 22px;
}

form.login-form input {
  background-color: #fff !important;
  border-color: #ccc !important;
  min-height: 45px;
}

form.login-form label {
  color: #b2b2b2;
  font-size: 14px;
  text-transform: capitalize;
}

form.login-form button {
  background: #49444b;
  color: #fff;
  padding: 10px;
  width: 100%;
  border: none;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

p.forget-psw a,
p.sign-up-link a {
  color: #000000;
  font: Regular 24px/30px Helvetica;
  text-decoration: underline;
}

p.forget-psw {
  margin-top: 15px;
}

p.forget-psw,
p.sign-up-link {
  text-align: center;
  font-weight: normal;
  margin-bottom: 0px;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.addtocart-action input#qty::placeholder {
  color: #b2b2b2;
}

div.login-form {
  float: right;
  z-index: 1;
  background: #efefef;
  right: 0;
  width: 30%;
  position: absolute;
}

p#skip-login::after {
  content: 'X';
  font-size: 15px;
  color: #49444b;
  font-weight: bold;
}

.login-page,
.register-page {
  display: flow-root;
  /* background: linear-gradient(45deg, rgba(35,142,55,0.7) 1%, rgba(35,142,55,0.7) 100%),url(https://ocgreenrelieforg.stage.site/wp-content/themes/medikal/assets/theme/css/images/man-mobile.png) no-repeat;*/
  /* background: linear-gradient(45deg, rgba(35,142,55,0.7) 1%, rgba(35,142,55,0.7) 100%),url(https://ocgreenrelieforg.stage.site/wp-content/themes/medikal/assets/theme/css/images/stock-photo-top-view-flat-lay-hemp-oil-bottle.jpg) no-repeat;*/
  background-size: cover;
  background-position: center;
}

form.login-form input.iptchk {
  min-height: unset;
  width: 16px;
  height: 16px;
  border: 1px solid;
}

form.login-form .iptchk:checked:after {
  width: 6px;
  height: 9px;
}

.register-page {
  position: relative;
}

form.register-form input.iptchk {
  min-height: unset;
  width: 40px;
  height: 20px;
  border: 1px solid;
}

form.login-form span.lbltxt,
form.register-form span.lbltxt {
  font-size: 14px;
}

form.register-form {
  width: 29.5%;
  margin: 80px 50px 0;
  float: right;
  background: #fff;
  overflow-y: auto;
  /*max-height: 480px;*/
  max-height: 1100px;
}

form.register-form h2.login-title {
  text-align: center;
  color: #000;
  margin-bottom: 35px;
  font-size: 22px;
}

form.register-form h2.sign-up-title {
  font: 30px/34px Helvetica;
  letter-spacing: 0.48px;
  color: #000000;
  opacity: 1;
  margin-bottom: 10px !important;
}

form.register-form .sign-content {
  margin-bottom: 20px;
}

form.register-form input {
  background-color: #fff !important;
  border-color: #ccc !important;
  margin-bottom: 10px !important;
  width: 480px;
  padding: 10px 15px;
}

form.register-form label {
  color: #b2b2b2;
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 10px;
}


/*form.register-form button {
background: #49444B 0% 0% no-repeat padding-box;
border: 1px solid #00803F;
color: #fff;
padding: 10px;
width: 100%;
margin-bottom: 10px;
font-size: 15px;
letter-spacing: 0.5px;
margin-top: 20px;
font-weight: normal;
font-family: Helvetica !important;
}*/

form.register-form #sign-in-btn {
  background: #49444B 0% 0% no-repeat padding-box;
  border: 1px solid #00803F;
  color: #fff;
  padding: 10px;
  width: 29.5%;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: normal;
  font-family: Helvetica !important;
  position: absolute;
  bottom: 30px;
  right: 50px;
}

form.register-form p.lbltxt {
  font-size: 12px;
  line-height: 1.4;
  margin: 0px 0 20px 10px;
}

form.register-form .d-flex {
  display: flex;
}

form.register-form .w-50 {
  width: 49%;
  float: left;
}

form.register-form .w-50.last {
  margin-left: 1%;
}

form.register-form .w-50.first {
  margin-right: 1%;
}

form.register-form p.sign-up-text {
  color: #000;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 21px;
}

form.register-form .sign-up-content {
  margin-bottom: 20px;
}

form.login-form p.sign-up-text {
  color: #49444b;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.2;
}

form.register-form select.patent-type {
  background-color: #fff !important;
  border-color: #ccc !important;
  min-height: 35px;
  margin-bottom: 20px;
  color: #b2b2b2 !important;
  /*color: #222 !important;*/
  font-size: 12px;
  text-transform: capitalize;
}

form.register-form select.patent-type option {
  color: #000;
}

.login-title.personal-info {
  margin: 15px 0 30px !important;
  text-transform: capitalize;
}

form.register-form p.forget-psw a {
  color: #6d6565;
  font-size: 15px;
}

.Form-bottom {
  width: 80%;
  margin: auto;
}

form.register-form input::placeholder {
  color: #b2b2b2;
  font-size: 12px;
}

#page .post-line {
  background-color: #49444b85 !important;
}

#page .page-links>span,
#page .pagination li span,
#page .page-links a:hover,
#page .pagination li a:hover {
  background-color: #49444b !important;
  color: #ffffff;
}

.page-template-cart .btn,
.page-template-checkout_old .btn {
  color: #fff !important;
  background: #49444b !important;
  border: none;
}

.page-template-cart .btn:hover,
.page-template-checkout_old .btn:hover {
  color: #fff !important;
  background: #49444b !important;
}

.most-popular-section .select-type {
  border: 1px solid #cfcfcf;
  font-size: 10px;
  height: 48px;
  border-radius: 0;
  color: #000;
  font-weight: bold;
  padding: 6px 12px;
  line-height: 3.428571;
}

.most-popular-section .select-type form {
  width: 50%;
  float: right;
  margin: 0;
}

.mpopular {
  width: 50%;
  float: left;
  font-size: 12px;
  line-height: 3;
}

.most-popular-section [type="checkbox"]:not(:checked),
.most-popular-section [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

.most-popular-section [type="checkbox"]:not(:checked)+label,
.most-popular-section [type="checkbox"]:checked+label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.most-popular-section [type="checkbox"]:not(:checked)+label::before,
.most-popular-section [type="checkbox"]:checked+label::before {
  right: -13px;
  content: '';
  position: absolute;
  top: -12px;
  width: 48px;
  height: 48px;
  border: 1px solid #cfcfcf;
  background: transparent;
}

.most-popular-section [type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

.most-popular-section [type="checkbox"]:not(:checked)+label::after,
.most-popular-section [type="checkbox"]:checked+label::after {
  content: "\f00c";
  position: absolute;
  font-family: fontawesome;
  font-size: 22px;
  color: #49444b;
  top: -11px;
  left: 90px;
  transition: all .2s;
  background: transparent !important;
  width: 46px;
  text-align: center;
  height: 46px;
  line-height: 2;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
html .btn-primary,
html .btn-primary.active,
html a.btn-primary,
html .btn-primary.disabled,
html .active>.btn-primary,
html .btn,
html .btn.active,
html .active>.btn,
html input[type=submit],
html input[type=button],
html #page a.btn,
html #page #respond #submit,
#page #sidebar .widget_shopping_cart_content .buttons .button,
#page .widget_shopping_cart_content .buttons .button,
#page .woocommerce .button,
#page .shop-pages #place_order,
#page .shop-pages .wc-proceed-to-checkout a.checkout-button,
#page .shop-pages .shop_table .actions .button,
#page .shop-single .product-cart button,
#page .column .product-cart .add_to_cart_button {
  color: #fff !important;
  background-color: #49444b !important;
  border-color: transparent !important;
}

ul.js-dropdown-listtwo {
  display: none;
  margin: 0;
  padding: 0;
  /* border: 1px solid #cfcfcf; */
  margin-top: 4px;
  min-height: max-content;
  clear: both;
  background: #fff;
  width: 268px;
  margin-left: -13px;
  z-index: 99999;
  position: absolute;
}

ul.js-dropdown-listtwo li {
  list-style: none;
  padding: 10px;
  font-size: 12px;
  color: #000;
  line-height: 1;
  border-bottom: 1px solid #cfcfcf;
  background: #cfcfcf26;
  z-index: 99999;
  clear: both;
  cursor: pointer;
}

.most-popular-section .select-type a.js-linktwo {
  font-size: 12px;
  color: #000;
  line-height: 37px;
}

.fail span {
  font-size: 12px;
}

.page-template-forgot-password .col-md-6.col-lg-6.col-xs-12.col-sm-12.col-md-offset-3,
.page-template-reset-password .col-md-6.col-lg-6.col-xs-12.col-sm-12.col-md-offset-3 {
  margin: 5% 0 5% 25%;
}


/*.page-template-forgot-password .alert-danger.alert-dismissible,
.page-template-reset-password .alert-danger.alert-dismissible {
text-align: center;
position: absolute;
width: 100%;
}*/

#page .blog-metro .post-teasers.normal {
  background-image: url(http://www.transparenttextures.com/patterns/otis-redding.png);
}

.pro-detail-modal {
  display: flex;
}

.highlight-feature {
  text-align: center;
}

#header .region .vertical-target a.home-link:last-child {
  display: none;
}

#header .region .vertical-target a.home-link {
  margin-top: 0px;
  display: inline-block;
}

#navigation ul.nav {
  float: right;
  margin-right: 15% !important;
  margin-top: 3.5%;
}

@media screen and (max-width: 767px) {
  .top-header {
    display: none;
  }
  body .main-logo {
    width: auto !important;
  }
  #page .slicknav_menu a {
    display: block !important;
  }
  #menu-header-navigation-1 {
    display: none !important;
  }
  footer .content-center {
    margin: 0 15px;
  }
  #page .slicknav_menu a {
    top: 21px !important;
    left: 15px;
  }
  #header .region .vertical-target .home-link {
    padding-top: 15px !important;
  }
  h2.Shop-catagory-title {
    margin-top: 0px;
  }
  #header .region .vertical-target .home-link {
    margin-top: -10px;
  }
  form.login-form {
    width: 100%;
    padding: 0 30px;
  }
  form.register-form {
    width: 100%;
    padding: 0 30px;
  }
  .login-page,
  .register-page {
    background: unset;
  }
  .register-page .g-recaptcha {
    transform: scale(0.82);
    transform-origin: 0 0;
  }
  .col-md-12.cbd-image img.cbd-chart {
    max-width: 300px;
  }
  .col-md-12.ready-order-div {
    margin: 0 15px;
  }
  .col-md-12.ready-order-div input[type="text"] {
    width: auto !important;
  }
  .col-md-12.ready-order-div button.btn-find-dispensaries {
    width: auto;
    margin-top: 0;
    padding: 1px 20px;
  }
  h2.banner-text {
    font-size: 32px;
  }
  .banner-full-block {
    top: -55px;
    min-height: 30vh;
    margin-bottom: 0;
  }
  .sign-up-image,
  .sign-in-image {
    display: none;
  }
  /* --- New CSS --- */
  body .main-logo {
    max-width: 70px;
  }
  #logo {
    margin-left: 24%;
  }
  .search-box.input-group.col-md-6 {
    display: block;
    float: left;
    width: calc(100% - 10px);
  }
  .bottom-banner-block .bottom-banner-content {
    top: 24% !important;
  }
  .banner-block .banner-content h3 {
    font-size: 32px;
    line-height: 36px;
  }
  .banner-block .banner-content h5 {
    font-size: 24px;
    line-height: 40px;
  }
  .login-page {
    padding: 40px 0;
  }
  form.register-form {
    width: 100% !important;
    padding: 0 30px !important;
    margin: 50px 0 !important;
  }
  form.register-form input {
    width: 100% !important;
  }
  form.register-form #sign-in-btn {
    position: initial !important;
    width: 100% !important;
  }
}

@media screen and (min-width:481px) and (max-width:767px) {
  .btn-find-dispensaries {
    width: 25% !important;
  }
}

@media screen and (max-width: 1024px) {
  .most-popular-section [type="checkbox"]:not(:checked)+label:after,
  .most-popular-section [type="checkbox"]:checked+label:after {
    left: 97px;
  }
}

@media screen and (min-width:1025px) and (max-width:1200px) {
  .most-popular-section [type="checkbox"]:not(:checked)+label:after,
  .most-popular-section [type="checkbox"]:checked+label:after {
    left: 96px;
  }
}

@media screen and (max-width: 1300px) {
  .register-page .g-recaptcha {
    transform: scale(0.92);
    transform-origin: 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .search-abv-filter.container {
    width: 1100px;
  }
  .select-division {
    width: 900px;
    margin: 25px auto 45px;
  }
  .page-template-login-php #page .wrapper-sticky header #navigation .menu #menu-main-menu {
    display: block !important;
  }
  form.register-form {
    margin: 60px 0px 100px !important;
    padding: 0 50px;
    width: 37% !important;
    position: relative;
    overflow-y: visible !important;
  }
  form.register-form #sign-in-btn {
    width: calc(100% - 100px) !important;
    bottom: -40px !important;
  }
}

@-moz-document url-prefix() {
  body #navigation ul.nav>li>a,
  body ul#menu-header-navigation-1 li {
    padding: 0 5px !important;
  }
}

.sign-up-image {
  width: 63%;
}

.sign-in-image {
  width: 70%;
}

.banner-image {
  width: 100%;
}

ul#menu-header-navigation li a {
  color: #000 !important;
  font-size: 10px !important;
  font-weight: bold !important;
  padding: 5px 10px !important;
}

#menu-footer-navigation li.menu-item-type-post_type a {
  letter-spacing: 0px !important;
  font-weight: bold !important;
}

.error {
  color: red !important;
}

.page-template-sign-up form.register-form div.Form-bottom div.d-flex {
  position: relative;
}

.page-template-sign-up form.register-form div.Form-bottom div.d-flex label#remember-error {
  position: absolute;
  bottom: 0;
}

.page-template-sign-up form.register-form div.Form-bottom div.d-flex p.lbltxt {
  margin-bottom: 30px !important;
}

body.page-id-4916 li.menu-item.menu-item-type-post_type.menu-item-object-page.login.current-menu-item {
  border-bottom: 5px solid #49444b;
}


/*==================*/

.header-top-content {
  float: left;
  width: 100%;
  background-color: #f0f0f0;
}

.header-top-content .header-top-left {
  float: left;
}

.header-top-content .header-top-right {
  float: right;
}

.header-top-left ul {
  list-style-type: none;
}

.header-top-left ul li {
  float: left;
  margin: 5px 20px;
  color: #333;
  font-size: 14px;
}

.header-top-left ul li img {
  height: 12px;
}

.header-top-left ul li a {
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
}

.header-top-right ul {
  list-style-type: none;
}

.header-top-right ul li {
  float: left;
  margin: 5px 15px;
  color: #333;
  font-size: 14px;
}

.header-top-right ul li a {
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
}

.banner-block {
  position: relative;
}

.banner-block .banner-content {
  position: absolute;
  width: 100%;
  top: 45% !important;
}

.banner-block .banner-content h3 {
  text-align: center;
  font: Bold 44px/48px Helvetica;
  letter-spacing: 0.72px;
  color: #000000;
}

.banner-block .banner-content h5 {
  text-align: center;
  font: Bold 30px/41px Helvetica;
  letter-spacing: 0.48px;
  color: #000000;
  margin: 0;
}

.bottom-banner-block {
  position: relative;
  background: #F0F0F0 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 2px #00000040;
}

.bottom-banner-block img {
  opacity: 0.37;
}

.bottom-banner-block .bottom-banner-content {
  position: absolute;
  width: 100%;
  top: 40%;
}

.bottom-banner-block .bottom-banner-content h4 {
  text-align: center;
  font: Bold 31px/33px Helvetica;
  letter-spacing: 0.54px;
  color: #49444B;
}

.bottom-banner-block .bottom-banner-content p {
  text-align: center;
  font: Bold 12px/21px Helvetica;
  letter-spacing: 0.23px;
  color: #49444B;
  margin: 0;
}

.footer-banner-block {
  background: transparent 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  position: relative;
}

.footer-banner-block .footer-banner-content {
  position: absolute;
  width: 100%;
  top: 23%;
}

.footer-banner-block .footer-banner-content h4 {
  text-align: center;
  font: Bold 31px/33px Helvetica;
  letter-spacing: 0.54px;
  color: #FFFFFF;
}

.footer-banner-block .footer-banner-content p {
  text-align: center;
  font: Bold 13px/21px Helvetica;
  letter-spacing: 0.23px;
  color: #FFFFFF;
  margin: 0;
}

.footer-banner-block .footer-banner-content .image-box {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.footer-banner-block .footer-banner-content img {
  margin-right: 5px;
  width: 112px;
}

.search-seaction .search-abv-filter .search-box {
  padding: 0;
}

.search-seaction .search-abv-filter .select-box {
  padding-right: 10px;
  padding-left: 0;
}

.search-seaction {
  padding: 30px 0;
  background: #F0F0F0 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 2px #00000040;
}

.product-section {
  padding-top: 50px;
}

#search-word {
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.cart-leftside {
  background: #F0F0F0 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px;
}

.cart-leftside table {
  margin: 0;
}

.cart-leftside hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #ddd;
}

.cart-leftside table .product-img {
  width: 25%;
}

.cart-leftside table img {
  border: 1px solid #000;
  max-height: 160px;
}

.cart-leftside table .product-details {
  padding-bottom: 10px;
  width: 70%;
}

.cart-leftside table .action {
  position: relative;
  width: 5%;
}

.cart-leftside table .action a.remove {
  position: absolute;
  top: 6px !important;
}

.cart-leftside table .qty {
  background: #49444B39 0% 0% no-repeat padding-box !important;
  border: 1px solid #49444B !important;
  padding: 0 10px;
  color: #49444B;
}

.cart-leftside table .brand {
  color: #000;
  margin-bottom: 10px;
}

.cart-leftside table .options {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.cart-leftside table .options>div {
  padding: 0;
}

.cart-leftside table .options ul {
  list-style-type: none;
  margin-bottom: 0;
}

.cart-leftside table .options ul li {
  display: inline-block;
  background: #49444B5F 0% 0% no-repeat padding-box;
  color: #fff;
  padding: 5px 10px;
}

.cart-leftside table .options ul li.selected {
  background: #49444B 0% 0% no-repeat padding-box;
}

.cart-leftside table .price {
  font-size: 18px;
  margin-bottom: 0;
  letter-spacing: 0.24px;
  color: #49444B;
  font-family: Helvetica;
  font-weight: normal;
  clear: both;
}

.cart-rightsite {
  padding-right: 0 !important;
}

.cart-rightsite .total-box {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  padding: 30px;
}

.cart-rightsite table {
  margin: 0;
}

.cart-rightsite table td {
  padding: 5px 0 !important;
  letter-spacing: 0.18px;
  color: #000;
}

.cart-rightsite table tr td:last-child {
  text-align: right;
}

.cart-rightsite table .subtotal td {
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding-bottom: 15px !important;
  letter-spacing: 0.24px;
}

.cart-rightsite table .order-total td {
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  border-top: 1px solid #ddd;
  padding: 15px 0 !important;
  letter-spacing: 0.24px;
}

.cart-rightsite table tr td.tax-note {
  text-align: center;
  padding: 15px !important;
}

.cart-rightsite table .btn-checkout {
  display: block;
  text-transform: uppercase;
}

.cart-rightsite table>tbody>tr:nth-child(even)>td,
.cart-rightsite table>tbody>tr:nth-child(even)>th {
  background-color: #fff !important;
}

@media (min-width:992px) and (max-width:1200px) {
  .all-cate-filters .col-md-1 {
    margin: 0 0.8%;
  }
  form.register-form {
    margin: 60px 0px 100px !important;
    padding: 0 50px;
    width: 37% !important;
    position: relative;
    overflow-y: visible !important;
  }
  form.register-form #sign-in-btn {
    width: calc(100% - 100px) !important;
    bottom: -40px !important;
  }
}

.header-top-content {
  float: none;
  display: inline-block!important;
  vertical-align: top;
}

#menu-main-menu {
  display: block !important;
}

.row {
  display: block !important;
}

div.banner-block {
  margin-top: 0;
}

body #full-footer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}

body {
  padding-bottom: 208px !important;
  
}


/*2020-07-29*/

.top_items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  vertical-align: top;
  background: #f5f7f7;
}

.top_items_left {
  float: left;
  width: 300px;
  background: #edeff0;
  box-shadow: 0px 0px 2px #00000040;
  padding-top: 100px;
}

.top_items_left .sidebar {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0 0 0 55px;
  margin: 0 0 20px;
}

.top_items_left .sidebar ul {
  margin: 0px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.top_items_left .sidebar strong {
  color: #000000;
  font: Bold 18px/normal Helvetica;
  display: block;
  margin: 0 0 15px;
}

.top_items_left .sidebar ul li {
  padding: 0 20px;
  width: 100%;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: normal;
  margin: 0 0 14px;
}

.top_items_left .sidebar ul li label {
  display: inline-block;
  vertical-align: top;
  line-height: normal;
  padding: 0 11px 0 21px;
  font-size: 10px;
  color: #000;
  margin: 0px;
}

.top_items_left .sidebar ul li input+label:before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #707070;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 20px;
}

.top_items_left .sidebar ul li input {
  width: 11px;
  height: 11px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  margin: 0px;
}

.top_items_left .sidebar ul li input:checked+label:after {
  content: "";
  background: #49444B;
  width: 9px;
  height: 9px;
  display: inline-block;
  position: absolute;
  left: 1px;
  border-radius: 50%;
  top: 1px;
  left: 21px;
}

.top_items_right {
  display: inline-block;
  width: calc(100% - 300px);
  padding-bottom: 30px;
  vertical-align: top;
}

.top_items_right h1 {
  font: Bold 40px/normal Helvetica;
  letter-spacing: normal;
  margin: 25px 0 25px;
  padding: 0 60px;
  color: #000;
}

.top_items_right .product-section {
  padding: 0 80px;
}

.top_items_right .product-section #product-list {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}

.top_items_right #product-list .pro-div {
  width: 100%;
}

.top_items_right #product-list ul a.btn-cart:before {
  content: "";
}

.top_items_right #product-list ul a.btn-cart:before {
  content: "";
  color: #fff;
  background: url(../../../../../uploads/2017/11/shopping-cart.png);
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
}

.top_items_right #product-list ul a.btn-cart {
  background: none;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  position: static;
  border: none;
}

.top_items_right #product-list .pro-div {
  justify-content: center;
}

.top_items_right #product-list .pro-div {
  width: 100%;
  box-shadow: none;
  background: none;
}

.top_items_right #product-list .highlight-feature {
  background: none;text-align: left;
}

.top_items_left .sidebar .filter-type {
  background: none !important;
  border: none !important;
  box-shadow: none;
  padding: 0;
}

.top_items_left .sidebar ul li:last-child label {
  margin: 0;
}

.top_items_left .form-price-range-filter {
  display: none;
}

.top_items_right .col-md-2 a#prevoius {
  background: #60737F;
  display: inline-block;
  width: 100%;
  color: #fff;
  font-weight: normal;
  font-family: 'Helvetica' !important;
  text-transform: uppercase;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
}

.top_items_right #product-list .col-md-2 {
  width: 200px;
  text-align: center;
}

.top_items_right #product-list .col-md-8 {
  width: calc(100% - 400px);
}

.top_items_right .col-md-2 a#next {
  background: #60737F;
  display: inline-block;
  width: 100%;
  color: #fff;
  font-weight: normal;
  font-family: 'Helvetica' !important;
  text-transform: uppercase;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
}

.top_items_right .page-no li a {
  color: #60737F;
}

.find-favourite-slider-divs+.container {
  display: none;
}

.top_items_right .page-no li {
  width: auto;
  height: auto;
  line-height: normal;
  margin: 0 2.5px;
}

.top_items_right .page-no li.active a {
  color: #57C9DD;
}

.top_items_left .sidebar:first-child {
  display: none;
}

.top_items_right #product-list ul#pagination {
  margin: 12px 0;
}

.top_items_right .col-md-2 a#prevoius:hover {
  background: #57C9DD;
  color: #fff !important;
}

.top_items_right .col-md-2 a#next:hover {
  background: #57C9DD;
  color: #fff !important;
}

.top_items_right .product-section #items {
  order: -1;
  width: 100%;
}

.top_items_right #product-list ul {
  order: 0;
  width: 100%;
}

.tcowl-wrap .owl-carousel {
  max-width: 1170px;
  margin: 0 auto;
  padding: 36px 15px;
}

.tcowl-wrap .owl-carousel .owl-item img {
  padding: 2px 5px;
}

.slider_container {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: inline-block;
  left: 50%;
}

div.autohide-arrows .owl-nav {
  display: block !important;
}

.white #slider_6353.sa_owl_theme .owl-nav .owl-prev {
  width: 40px !important;
  background-size: 13px !important;
}

.white #slider_6353.sa_owl_theme .owl-nav .owl-next {
  width: 40px !important;
  background-size: 13px !important;
}

#slider_6353.sa_owl_theme .owl-dots {
  display: none !important;
}

.white #slider_6353.sa_owl_theme .owl-nav .owl-next:focus {
  outline: none;
}

.white #slider_6353.sa_owl_theme .owl-nav .owl-prev:focus {
  outline: none;
}

#slider_6353 {
  margin-bottom: 0px !important;
}

.slider_container h1 {
  font: Bold 44px/48px Helvetica;
  letter-spacing: 0.72px;
  color: #000000;
  margin-bottom: 10px;
}

.slider_container h2 {
  font: Bold 30px/41px Helvetica;
  letter-spacing: 0.48px;
  color: #000000;
  margin: 0;
}

.tcowl-wrap .owl-nav {
  display: none;
}

.top_items_right #product-list .pro-div:nth-child(4n+4) {
  margin-right: 1.7%;
}

.sa_hover_container {
  padding: 0px !important;
}



@media(max-width:1366px) {

.mobile nav#navigation {
    display: none;
}

.mobile .top_items_right #product-list .pro-div {
    width: calc(33.33% - 2%);   
}


.mobile .filter-search {
    display: table;
    padding: 12px 15px;
    width: 100%;
}
  .mobile .filter-search .input-group {
    width: 75%;
    float: left;
    display: flex;
    margin-left: 5%;
  }
 .mobile .filter-search .input-group input {
    width: 70%;
    border: #49444b solid 1px !important;
    padding: 12.5px;
  }
 .mobile .filter-search .input-group .pro-search {
    position: relative !important;
    width: 30%;
    padding: 0 2%;
    right: 0px;
    top: 0px;
  }
 .mobile i#filter {
    float: left;
    width: 20%;
    font-size: 23px;
    padding: 12px 3%;
    text-align: center;
  }
  
  .mobile .top_items_right { width: 100% !important;}
  .mobile .cart {
    position: absolute;
    right: 50px;
    top: 52px;
}

.mobile .cart-leftside table .product-details {width: 42% !important;}
.mobile .cart-leftside table .options {   
    display: flex !important;
}
.mobile .cart-leftside table .options .action .qty-box {margin-right:15px;}

.mobile .slicknav_menu {
    top: 38px !important;
    position: absolute;
    width: 100%;
  }
 .mobile .slicknav_menu a {
    display: block !important;
    left: 30px;
        top: 18px !important;
  }
  .mobile ul.slicknav_nav {
    top: 73px;
  }
 .mobile ul.slicknav_nav li a {
    border-bottom: #efefef solid 1px !important;
  }
.mobile  ul.slicknav_nav li:last-child a {
    border-bottom: #efefef solid 0px !important;
  }
 .mobile .cart {
    float: right;
    position: absolute;
    top: 59px;
    right: 30px;
  }
 .mobile .with-slicknav #header>.container-fluid>.row {
    padding-right: 0;
  }
 .mobile #logo {
    margin-left: 0% !important;
    width: 100% !important;
  }
 .mobile .with-slicknav #header>.container-fluid>.row {
    padding-right: 0px !important;
  }


}


@media(max-width:1024px) {




}

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

.mobile .action .qty-box {margin-right:15px;}
.mobile .cart-rightsite.col-md-4 {
    padding: 0px;
}

.mobile .top_items_right .product-section {
    padding: 0 40px;
}
.mobile .pro-div-img {
    height: 216px

}



}








@media(max-width:767px) {
  .mobile .slicknav_menu {
    top: 38px !important;
    position: absolute;
    width: 100%;
  }
  .mobile .slicknav_menu a {
    display: block !important;
    left: 30px;
  }
  .mobile ul.slicknav_nav {
    top: 73px;
  }
  .mobile ul.slicknav_nav li a {
    border-bottom: #efefef solid 1px !important;
  }
  .mobile ul.slicknav_nav li:last-child a {
    border-bottom: #efefef solid 0px !important;
  }
  .mobile .cart {
    float: right;
    position: absolute;
    top: 59px;
    right: 30px;
  }
  .mobile .with-slicknav #header>.container-fluid>.row {
    padding-right: 0;
  }
  .mobile #logo {
    margin-left: 0% !important;
    width: 100% !important;
  }
  .mobile .with-slicknav #header>.container-fluid>.row {
    padding-right: 0px !important;
  }
  .mobile .slider_container {
    padding: 0 10%;
  }
  .mobile .slider_container h1 {
    font: Bold 22px/30px Helvetica;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .mobile .slider_container h2 {
    font: normal 18px/24px Helvetica;
    letter-spacing: 0;
    color: #000000;
    margin: 7px 0 0 0;
    text-transform: initial;
  }
  .mobile #slider_6353 {
    margin-top: 0;
  }
  .mobile div.autohide-arrows .owl-nav {
    display: none !important;
  }
  .mobile #slider_6353.sa_owl_theme .owl-dots {
    display: block !important;
    position: absolute;
    top: auto;
    bottom: 18px !important;
  }
  .mobile #full-footer {
    position: initial;
    left: 0;
    width: 100%;
    bottom: 0;
  }
  body.mobile {
    padding-bottom: 0px !important;
  }
 .mobile .filter-search {
    display: table;
    padding: 12px 15px;
    width: 100%;
}
  .mobile .filter-search .input-group {
    width: 80%;
    float: left;
    display: flex;
    margin-left: 0px;
  }
  .mobile .filter-search .input-group input {
    width: 70%;
    border: #49444b solid 1px !important;
    padding: 12.5px;
  }
  .mobile .filter-search .input-group .pro-search {
    position: relative !important;
    width: 30%;
    padding: 0 2%;
    right: 0px;
    top: 0px;
  }
  .mobile i#filter {
    float: left;
    width: 20%;
    font-size: 23px;
    padding: 12px 3%;
    text-align: center;
  }
  .mobile .tcowl-wrap .owl-carousel {
    padding: 15px 0px 20px 0px;
  }
  .mobile .top_items_right h1 {
    font: Bold 24px/ normal Helvetica;
    letter-spacing: normal;
    margin: 40px 20px 20px 20px;
    padding: 0;
    color: #000;
    text-align: center;
  }
  .mobile .footer-banner-block .footer-banner-content {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    /* height: 100%; */
    /* background: #ccc; */
    vertical-align: middle;
  }
  .mobile .footer-banner-block .footer-banner-content h4 {
    text-align: center;
    font: Bold 31px/33px Helvetica;
    letter-spacing: 0.54px;
    color: #FFFFFF;
    max-width: 200px;
    display: table;
    margin: 0 auto;
  }
  .mobile .footer-banner-block .footer-banner-content .image-box {
    display: block;
    text-align: center;
    /* margin-top: 20px; */
    max-width: 112px;
    margin: 0 auto;
    padding-top: 10px;
  }
  .mobile .footer-banner-block .footer-banner-content .image-box img {
    margin-top: 5px;
  }
  .mobile footer ul.d-flex li {
    list-style: none;
    margin: 0 10px;
  }
  .mobile footer ul.d-flex li i {
    margin-right: 0;
    font-size: 22px !important;
  }
  .mobile footer .d-flex {
    display: inline-flex;
    margin-bottom: 0;
    margin-top: 14px;
  }
  .mobile #full-footer {
    margin-top: 0px;
  }
  .mobile .top_items_right {
    display: inline-block;
    width: 100%;
    padding-bottom: 30px;
    vertical-align: top;
  }
  .mobile .top_items_right .product-section {
    padding: 0 10px;
  }
  .mobile .top_items_right #product-list .pro-div {
    width: 30%;
    box-shadow: none;
    background: none;
    margin: 2% 1% 20px 2%;
    border: #ececec solid 1px;
    padding-bottom: 10px;
  }
  .mobile .pro-div-img {
    height: 186px;
  }
  .mobile .pro-name a {
    font-size: 15px;
  }
  .mobile .price {
    color: #000 !important;
    padding-bottom: 0px;
    font-size: 12px;
    padding-top: 5px;
  }
  .mobile .highlight-feature {
    background-color: #fff;
    padding: 0px;
  }
  .mobile .top_items_right #product-list ul {
    margin: 0px;
  }
  .mobile .msg-success-cart {
    padding: 15px;
    margin: 0;
    background-color: #49444b !important;
    box-shadow: 0px 0px 10px #333333;
    color: #fff;
    border-radius: 5px;
    text-transform: capitalize;
    margin: 20px;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
  }
  .mobile .action-box a.add-to-cart {
    padding: 5px 10px;
    display: table;
    margin: 0 auto;
  }
  .mobile div.sa_hover_container:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
  }
  .mobile div.sa_hover_container {
    background-size: cover !important;
  }
  .mobile .tcowl-wrap .owl-carousel .owl-item img {
    max-width: 100%;
  }
  .mobile .action-box a.add-to-cart {border:transparent;}
  
   .mobile .cart-table-view td.foottd.m-right .btn {
    font-size: 11px;
    padding: 10px;
    line-height: 20px;
    width: auto;
    }
    
     .mobile .action .qty-box { 
     width: 50px;
    border: #a5a5a5 solid 1px !important;
    text-align: center;
    padding: 8px;
    }
     .mobile .cart-leftside table .action { width: auto;}
     .mobile .cart-leftside table .action a.remove {
    position: inherit;
    top: 7px !important;
    left: 17px;
    font-size: 20px;
    color: #000;
}
        
        .mobile .cart-leftside table .action .col-md-10, .mobile .cart-leftside         table .action .col-md-2 {width:47px;}
        
        .mobile .total-box a.btn.btn-checkout {
             font-size: 13px;
             padding: 0 10px;
        }
        
        .mobile .cart-leftside table .product-img {
    width: 30%;
}

.mobile .cart-leftside table .price {     
    font-size: 15px;
    font-weight: 600;
    }

.mobile .cart-leftside table .options {
    margin-bottom: 5px;
    float: inherit;
    width: 100%;
    /* font-size: 13px; */
    padding-right: 0px !important;
    margin-left: 0px !important;
    display: flex !important;
}

.mobile .cart-rightsite.col-md-4 {
    padding-left: 0px !important;
}

.mobile table.cart-table-view td {padding:5px !important;}

.mobile h2.shop-head {
    font-size: 18px;
    text-transform: uppercase;
}
.page-template-cart.mobile .container.vertical-height {
    margin-top: 15px;
}

.mobile .top-border {
    border-top: 1px solid #d6d6d6;
}
.mobile .cart-leftside table .product-details {width:auto;}

.page-template-cart.mobile .container {
    margin-right: 15px;
    margin-left: 15px;
  }
  
  .mobile .cart-leftside.col-md-8 {
    padding-left: 7px;
    padding-right: 7px;
  
  }
  
   .mobile .cart-rightsite .total-box {padding: 15px;}
   
   body.mobile .slicknav_menu a:hover { color: #000000 !important;}

}
@media (max-width: 767px){
  body {
    padding-bottom: 0px !important;
  }
 body #full-footer {
   position: initial;  
 }
}
@media(max-width:414px) {
  .mobile .pro-div-img {
    margin: 0;
    height: 136px !important;
    width: 136px !important;
  }
  .mobile .top_items_right #product-list .pro-div {
    width: 46%;
    box-shadow: none;
    background: none;
    margin: 2% 2% 20px 2%;
  }
}