/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

/* import files */
@import url("../css/header_footer.css");
@import url("../css/admin.css");

body{
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;   
}
#uprofile{
  background: url("../images/auth/user_profilebg.png") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: block;
  background-attachment: fixed;
}
#admin{
  background: #EBF9F7;
}
#home{
  background: #EEEEEE url("../images/user_stuff/white-texture.png") no-repeat;
  background-size: cover;
}
a:hover{
  color: #085CA2;
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-control::-webkit-input-placeholder {  
  color: rgb(0 0 0 / 40%);
}
.form-control::-moz-placeholder {  
  color: rgb(0 0 0 / 40%);
}
.form-control::-ms-input-placeholder {  
  color: rgb(0 0 0 / 40%);
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.error{
  font-size: 12px;
  color: red;
  padding: 3px 15px;
}
main{
  padding: 83px 0 0;
}
.no-scroll{
  overflow-y: hidden;
}

/*------ AUTHENTICATION FLOW ------*/
#auth:before{
  content: "";
  background: url("../images/auth/object.png") no-repeat;
  background-size: contain;
  background-position: top right;
  display: inline-block;
  width: 350px;
  height: 350px;
  position: absolute;
  right: 0;
  top: 0;
}
#auth .row {
  width: 100%;
}
.auth_login {
  width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    object-position: 100% 15%;
}
.auth_blog {
  height: 100vh;
    max-width: 401px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 30px 0;
}
.auth_headbx, .auth_headbx img{
  margin-bottom: 30px;
}
.auth_headbx h1{
  font-size: 37px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;  
}
.auth_headbx p{
  font-size: 16px;
  font-weight: 400;
  color: #545454;
  margin-bottom: 0;
}
.auth_box .input_group label{
  font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 0px 50px 0 5px;
    color: rgb(0 0 0 / 40%);
    line-height: normal;
    position: absolute;
    background: #fff;
    transform: translate(13px, 12px);
    margin-bottom: 0;
    visibility: hidden;  
}
.input_group svg{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto 15px;
  z-index: 1;
}
.auth_box .form-group {
  margin-bottom: 22px;
}
.auth_box .form-control{
  position: relative;
  font-size: 16px;
    font-weight: 500;
    color: #000000;
    background: transparent;
    border: 1px solid #0000003D;
    border-radius: 16px;
    display: block;
    padding: 12px 16px;
    width: 100%;
    height: auto;
    line-height: unset;
    -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
.auth_box .form-control:focus{
  border: 1.5px solid #32AD9D;
  box-shadow: unset;
  outline: none;
}
.auth_object {
  width: 36px;
    height: 36px;
    background: #EDEDED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 12px;  
}
.toggle-hide-show{
  color: #8C8C8C;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 15px;
    height: fit-content;
    cursor: pointer;
}
.field-icon {
  color: rgb(50, 173, 157);
  position: absolute;
  top: 0;
    bottom: 0;
    right: 0;
    margin: auto 15px;
    height: fit-content;
    cursor: pointer;
    z-index: 2;
}
.field_filled .form-control, .field_active .form-control{
  border: 1.5px solid #32AD9D; 
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s; 
}
.input_group.field_filled  label, .input_group.field_active label{ 
  z-index: 1;
  font-size: 13px;
    font-weight: 600;
    color: #32AD9D;
    transform: translate(13px, -8px);
    padding: 0 5px;
    visibility: visible;
    -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;  
}
.input_group textarea{
  height: 125px !important;
}
.interlink {
  font-size: 15px;
  font-weight: 600;
  color: #32AD9D;
  display: block;
  text-align: center;
  margin: 20px 0 0; 
}
.interlink:hover {
  color: #FFA800;
  font-weight: 600;
}
.auth_btn {
  box-shadow: 0px 3px 6px 0px #FFC1226B;
  background: #FFA800;
  border: 2px solid #FFA800;
  max-width: 247px;
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 30px;
  text-align: center;
  padding: 11px 10px;
  line-height: normal;
  margin: 22px auto 0;
}
.auth_btn:hover {
  color: #FFA800;
  background: #FFFFFF;
}
.back_btn {
  box-shadow: 0px 3px 6px 0px #ccc;
  background: #767676;
  border: 2px solid #767676;
  max-width: 247px;
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 30px;
  text-align: center;
  padding: 11px 10px;
  line-height: normal;
  margin: 22px auto 0;
}
.back_btn:hover {
  color: #767676;
  background: #FFFFFF;
}
.signup_link {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  display: block;
  text-align: center;
}
.signup_link a {
  font-weight: 700;
  background: linear-gradient(180deg, #22B24C 0%, #1C883B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.signup_link a:hover {
  color: #FFA800;
}
.rsend_link{
  font-size: 18px;
  font-weight: 700;
  color: #32AD9D;  
  display: block;
  text-align: center;
}
.rsend_link:hover{
  color: #FFA800;
}
.otp_box {
  display: flex;
  align-items: center;
  gap: 0px;
}
.otp_box input {
  border: 1px solid #0000003D;
  padding: 10px 10px;
  width: 53px;
  height: 56px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  border-radius: 16px;
}
.copyright_content{
  font-size: 13px;
    font-weight: 400;
    color: #545454;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin-left: auto;
    padding: 10px 0;
    width: 100%;
}
.otp_box span {
  background: #32AD9D;
  display: block;
  line-height: normal;
  height: 3px;
  width: 24px;
  margin: auto;
  position: relative;
}
.copyright_content b{
  font-weight: 700;
  color: #32AD9D;
}
.search__blog .form-control {
  box-shadow: 0px 7px 14px 0px #0000001A;
  background: #fff;
  border-radius: 90px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: normal;
  padding: 16px 20px;
  height: auto;
}
.search__blog .form-group {
  position: relative;
  margin-bottom: 0;
}
.search__blog .form-group svg {
  position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    margin: 0 20px;
    z-index: 1;
}
.index_footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.privacy_link li a {
  font-size: 15px;
  font-weight: 700;
  color: #32AD9D;
}
.index_footer span {
  font-size: 13px;
  font-weight: 400;
  color: #545454;
}
.index_footer span b {
  color: #32AD9D;
}
.privacy_link {
  position: relative;
  display: flex;
  align-items: center;
}
.privacy_link li {
  position: relative;
}
.privacy_link li:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #FFA800;
  border-radius: 50%;
  display: inline-block;
  margin: 0px 15px;
}
.privacy_link li:last-child:after {
  display: none;
}
.index_footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
}
.home_blog {
  height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
}
.srch_icon {
  box-shadow: 0px 3px 6px 0px #FFC1226B;
  background: #FFA800;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0;
}
.srch_icon svg {
  position: relative !important;
  margin: 0 !important;
  z-index: 1;
}
.search__blog {
  margin: 50px auto;
  max-width: 889px;
}
.login_links {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #545454;
}
.login_links a {
  font-weight: 700;
  color: #32AD9D;
}
.location_input .form-control {
  padding-left: 50px;
}
.product_list_search {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 9px 44px 0px #0000001A;
}
.product_list_search .search__blog {
  margin: 0;
  max-width: unset;
}
.product_list_search .form-control {
  border: 1px solid #DDDDDD;
  background: #ECECEC4F;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 13px;
  color: #545454;
}
.product_list_search .srch_icon {
  width: 31px;
  height: 31px;
}
.product_list_search .srch_icon svg {
  width: 18px;
  height: 18px;
}
.search__blog select {
  border: none;
    font-size: 16px;
    font-weight: 500;
    color: #545454;
    padding: 0 20px 0 0;
    background: transparent;
    outline: unset;
    box-shadow: unset;
}
.product__list {
  padding: 50px 0;
}
.product__blog {
  box-shadow: 0px 12px 18px 0px #0000001A;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  height: 100%;
}
#home_products > div {
    margin-bottom: 30px;
}
.product__blog img {
  border-radius: 18px !important;
  height: 214px;
  object-fit: contain;
  margin-bottom: 15px;
}
.product__content h6 {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
  display: grid;
    grid-auto-flow: column;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
  margin-bottom: 5px;
}
.product__content h6 span {
  width: 30px;
  height: 30px;
  background: #32AD9D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product__deslist span {
  font-size: 14px;
  font-weight: 500;
  color: #363636;
}
.product__deslist small{
  font-size: 12px;
  font-weight: 400;
  color: #767676;
}
.product__deslist li {
  display: grid;
  grid-auto-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
 margin-bottom: 8px;
}
.product__deslist li svg {
  width: 16px;
}
.product__descrp ul {
  background: #EBF4F3;
  border-radius: 18px;
}
.product__descrp ul li {
  padding: 8px 20px;
  border-bottom: 1px dashed #BDD4D2;
  line-height: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__descrp ul li small {
  font-size: 12px;
  font-weight: 500;
  color: #363636;
  line-height: unset;
}
.product__descrp ul li strong {
  font-size: 12px;
  font-weight: 600;
  color: #363636;
  line-height: unset;
  text-align: right;
  width: 55.5%;
}
.product__descrp ul li:last-child {
  border: none;
}
.product__descrp {
  margin: 18px 0 12px;
}
.tagbtn {
  background: #D4F0DC;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #34A853;
  padding: 4px 15px 6px;
  line-height: unset;
}
.close_tagbtn{
  background: #FF535321;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #FF4A4A;
  padding: 4px 15px 6px;
  line-height: unset;
}
.time_range {
  font-size: 12px;
    font-weight: 500;
    color: rgb(54 54 54 / 80%);
    display: flex;
    align-items: center;
    gap: 10px;
}
.time_range strong {
  font-weight: 600;
  color: #363636;
}
.bottom__procontent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__deslist li:last-child {
  margin-bottom: 0;
}
.product-carousel .owl-nav button {
    background: #00000033 !important;
    width: 28px;
    height: 74px;
    color: #fff !important;
}
.owl-prev {
    border-radius: 0 10px 10px 0;
}
.owl-next {
    border-radius: 10px 0px 0px 10px;
}
.product-carousel .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-carousel {
    position: relative;
}
.pagination {
  justify-content: center;
  margin: 40px 0 0;
}
.pagination li a, .pagination li span {
    background: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    box-shadow: 0px 4px 14px 0px #0000001A;
    z-index: unset !important;
}
.pagination .active a, .pagination .active span {
  background: #32AD9D !important;
  border-color: #32AD9D !important;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-item.disabled a {
  border-radius: 90px !important;
  width: auto;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 15px;
  height: auto;
}
.head_store h1 {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
}
.head_store {display: flex;align-items: center;justify-content: space-between;border-bottom: 1px solid #0000001A;padding: 0 0 13px;margin-bottom: 40px;}
.head_store .search__blog {
  max-width: 305px;
  margin: 0;
  width: 100%;
}
.head_store .form-control {
  font-size: 13px;
  font-weight: 400;
  color: #545454;
  background: #DADADA;
  border: 1px solid #DADADA;
  box-shadow: unset;
  padding: 10px 20px;
}
.head_store .srch_icon {
  width: 31px;
  height: 31px;
  margin: 5px;
}
.head_store .srch_icon svg {
  width: 20px;
}
.store_products .product__deslist, .store_products .bottom__procontent {
  display: none;
}
.store__detials .product__blog {
  box-shadow: 12px 12px 30px 0px #CCCCCCE5;
  padding: 0;
  border-radius: 25px;
  position: relative;
}
.store__detials h6 {
  font-size: 22px;
  font-weight: 600;
  color: #545454;
  margin: 0;
}

.store__detials .product__content {
  padding: 0 20px;
}

.store__detials .bottom__procontent {
  margin: 15px 0;
}

.store__detials .product__deslist small {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
}

.store__detials .product__deslist svg {
  width: 18px;
  height: 17px;
  position: relative;
  top: 2px;
}

.mapimg {
  height: auto !important;
  width: 100%;
  border-radius: 25px !important;
  margin-bottom: 20px !important;
}

.store__detials .product__blog img {
  border-radius: 25px 25px 0 0 !important;
  height: 304px;
}

.normal_call {
  box-shadow: 0px 3px 6px 0px #FFC1226B;
  background: #FFA800;
  border-radius: 90px;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF !important;
  padding: 10px 13px;
  display: inline-block;
  line-height: normal;
  max-width: 180px;
  text-align: center;
  white-space: nowrap;
}
.wtsp_call {
  box-shadow: 0px 3px 6px 0px #FFC1226B;
  background: #037A65;
  border-radius: 90px;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF !important;
  padding: 10px 13px;
  display: inline-block;
  line-height: normal;
  max-width: 180px;
  text-align: center;
  white-space: nowrap;
}
.store_contact_detail {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}
.modal_contentflx{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}
.modal h2{
  font-size: 22px;
  font-weight: 600;
  color: #363636;
  margin-bottom: 0;
}
.modal p{
  font-size: 14px;
    font-weight: 400;
    color: #7A7A7A;
}
.modal-content {
  border: none;
  border-radius: 48px;
}

.modal-dialog {
  max-width: 1004px;
}

.modal-body {
  padding: 30px;
}

.close {
  min-width: 38px !important;
  height: 38px !important;
  padding: 10px;
  border-radius: 50%;
  background: #E6EDF4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  text-shadow: unset;
  font-size: 30px;
  font-weight: 500;
  color: #00244F;
}
#uprofile .copyright_content{
  position: fixed;
    background: #fdfdfd;
    max-width: 600px;
    padding: 10px;
    margin: 0 auto;
}
.field_btngrp {
  display: flex;
  gap: 35px;
}
.success_blog {
  display: block;
  text-align: center;
}
.success_blog h4 {
  font-size: 37px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}
.success_vector {
  margin-bottom: 20px;
}
.success_blog p {
  font-size: 16px;
  font-weight: 400;
  color: #545454;
}
.modal-body .product__blog {
    box-shadow: unset;
    padding: 0;
    border-radius: 0;
    margin: 0;
}
.modal-body .product__deslist li span, .modal-body .product__deslist li small{
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.modal-body .product__deslist{
  margin-bottom: 1rem;
}
.modal-body .product__deslist li svg{
  width: 16px;
}
.modal-body .product__deslist li{
  align-items: center;
  margin-bottom: 5px;
}
/*.modal-body .product__blog img{
  height: 300px;
}*/
.product-carousel .owl-item:before {
    content: "";
    width: 100%;
    height: 214px;
    object-fit: cover;
    margin-bottom: 15px;
    background: #9e9e9e45;
    display: block;
    position: absolute;
    border-radius: 18px;
}
.product-carousel .owl-item {
    position: relative;
}
.product_list_search .search__blog #select2-city-container {
    line-height: normal;
    padding: 0;
    font-size: 13px;
}
.product_list_search .search__blog .select2-container .select2-selection--single {
    padding: 12px 20px 12px 50px;
    border: 1px solid #DDDDDD !important;
    4F;
    background: #ECECEC4F !important;
    box-shadow: 0px 7px 14px 0px #0000001A;
}
.product_list_search .search__blog .select2-selection__arrow {
    height: 15px !important;
}
.product_list_search form {
    margin-bottom: 0;
}
.modal-open{
  padding: 0 !important;
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}
.select2-dropdown{
  z-index: 1 !important;
}
.location_input #select2-city-container {
    padding: 0 0 0 30px;
    line-height: normal;
    font-size: 16px;
}