:root {
  --brand-color: #0e87cc;
  --brand-color-hover: #0c679a;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  box-sizing:         border-box;
  outline: none;
  transition: all .2s;
  font-family: "Poppins", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.7em;
}

a {
  color: inherit;
  text-decoration: underline;
}

a.link {
  color: var(--brand-color);
  text-decoration: none ;
}

a:hover {
  color: var(--brand-color-hover);
}

p {
  margin:0 0 24px;
}

p:last-child {
  margin:0; padding:0;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.col10 {
  width: 9%;
}
.col15 {
  width: 15%;
}
.col20 {
  width: 19%;
}
.col25 {
  width: 25%;
}
.col30 {
  width: 29%;
}
.col33 {
  width: 33.33%;
}
.col35 {
  width: 35%;
}
.col40 {
  width: 39%;
}
.col45 {
  width: 45%;
}
.col50 {
  width: 49%;
}
.col55 {
  width: 55%;
}
.col60 {
  width: 59%;
}
.col65 {
  width: 65%;
}
.col70 {
  width: 69%;
}
.col75 {
  width: 75%;
}
.col80 {
  width: 79%;
}
.col85 {
  width: 85%;
}
.col90 {
  width: 89%;
}
.col95 {
  width: 95%;
}

.marginauto {
  margin:0 auto;
}

.section {
  padding:50px 0;
  position: relative;
}

.bgimage {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.bgimage::after {
  position: absolute;
  content: '';
  background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.4));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bgimage * {
  position: relative;
  z-index: 1;
}

.wdth {
  max-width: 1260px;
  margin:0 auto;
}

.whitetext {
  color: #fff;
}

.textcenter {
  text-align: center;
}

.textright {
  text-align: right;
}

.textleft {
  text-align: left;
}

.logo a {
  display: inline-block;
  line-height: 0;
}

.logo img {
  height: 80px;
}

.header {
  padding: 15px 0;
  background: #eee;
  text-align: center;
  position: relative;
  top: 0; left: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.5);
}
/*.index .header {
  position: absolute;
}*/
.header .wdth {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  height: 90px;
}

.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:0 50px;
}

.header .right_menu ul {
  justify-content: flex-end;
}

.header li {
  position: relative;
}

.header li a {
  display: block;
  text-decoration: none;
  font-size: 17px;
}

.header.fixed {
  position: fixed;
}

.header.fixed .logo img {
  height: 70px;
}

.header.fixed li a {
  font-size: 15px;
}

.footer {
  padding: 15px 0;
  background: #eee;
  text-align: center;
}
.footer .wdth {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftr_menu_links ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 30px;
}

.ftr_menu_links li {
  position: relative;
}

.ftr_menu_links li a {
  display: block;
  text-decoration: none;
}

.copyright p {
  text-align: right;
  margin: 0;
  font-size: 12px;
  color: #777;
}


.site_main {
  min-height: calc(100vh - 245px);
}

.home_section {
  min-height: calc(100vh - 127px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.home_section h3 {
  color: #fff;
  margin: 0; padding: 0;
  font-size: 17px;
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
}

.home_section h1 {
  color: #fff;
  margin: 0 0 30px;
  font-size: 60px;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
}

.home_section p {
  color: #fff;
  font-size: 17px;
  margin: 0 0 20px;
  padding: 0;
}

.home_section p:last-child {
  margin: 0;
}

.home_section .readmore {
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255,255,255,.3);
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home_section .readmore:hover {
  background: rgba(255,255,255,.5);
}

.home_section .readmore span {
  position: relative;
  left: 5px;
  transition: all .2s;
}
.home_section .readmore:hover span {
  left: 10px;
}


.btn,
button {
  color: #fff;
  display: inline-block;
  padding: 12px 30px;
  border: none;
  background: var(--brand-color);
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.btn:hover,
button:hover {
  color: #fff;
  background: var(--brand-color-hover);
}

.btn span,
button span {
  position: relative;
  left: 5px;
  transition: all .2s;
}
.btn:hover span,
button:hover span {
  left: 10px;
}


.title_bar {
  background: var(--brand-color);
  padding: 20px 0;
}

.page_title {
  color: #fff;
  margin: 0;
  font-size: 45px;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
}

.question_title {
  position: relative;
  background: #eee;
  padding: 20px 50px 20px 20px;
  border-radius: 5px;
  margin: 20px 0 0;
  cursor: pointer;
  font-weight: 500;
}

.question_title::after {
  position: absolute;
  content: '+';
  right: 20px;
  font-size: 25px;
  font-weight: normal;
}

.question_title.ui-state-active,
.question_title.ui-state-hover {
  background: #ddd;
}
.question_title.ui-state-active::after {
  content: '-';
}

.question_title:first-child {
  margin: 0;
}

.answer_div {
  padding: 20px;
}

.download_apps {
  position: relative;
}

.download_apps .wdth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.download_apps h2 {
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
}

.download_apps img {
  height: 70px;
}


.products ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.products li {
  position: relative;
  width: calc(100% / 4 - 20px);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 5px 1px rgba(0,0,0,.1);
}

.products li .image_box {
  height: 300px;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.products li .content_box {
  padding:30px 25px;
}

.products li .content_box h3 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 20px;
}

.products li .content_box h3 a {
  color: inherit;
  text-decoration: none;
}

.products li .content_box p {
  margin: 0;
  padding: 0;
}

.products li .content_box p.price {
  margin: 0 0 20px;
  font-size: 17px;
}

.details_page {
  background: linear-gradient(to right, #fff 40%, #f7f7f7 40%, #f7f7f7 100%);
  height: 100%;
}

.details_page .wdth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.details_page .big_image_box {
  width: 44%;
  height: 450px;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.details_page .details_page_content {
  width: 52%;
}

.details_page .details_page_content h1 {
  font-size: 40px;
  line-height: 1.5em;
  margin: 0 0 15px;
  padding:0;
}

.details_page .details_page_content h3.price {
  margin: 0 0 30px;
  padding: 0;
  font-size: 22px;
  font-weight: normal;
}

.details_page .details_page_content .desc {
  font-size: 17px;
  line-height: 1.5em;
  margin: 0 0 30px;
}

.details_page .details_page_content .desc p {
  margin: 0 0 20px;
}

.details_page .details_page_content .desc p:last-child {
  margin: 0;
}

.plan_colss {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.plan_col {
  width: calc(100% / 4 - 20px);
  border-radius: 5px;
  box-shadow: 0 0 15px 1px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}

.plan_col.featured {
  transform: scale(1.2);
  box-shadow: 0 0 15px 1px rgba(0,0,0,.35);
  margin: 0 20px;
}

.plan_col .div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan_col .price {
  padding: 15px;
  text-align: center;
}

.plan_col .price h3 {
  margin: 0;
  padding: 0;
  font-size: 25px;
}

.plan_col .price h3 span {
  font-weight: normal;
  font-size: 50%;
}

.plan_col .lastow {
  margin-top: auto;
  padding: 20px;
  text-align: center;
}

.plan_col .headr {
    background: var(--brand-color-hover);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.plan_col .headr h2 {
  margin: 0;
  padding: 0;
  font-size: 25px;
  line-height: 1.5em;
}

.plan_col .features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan_col .features ul li {
  position: relative;
  padding: 10px;
  text-align: center;
}

.plan_col .features ul li:nth-child(even) {
  background: #eee;
}

.contact_form p {
  margin: 0 0 12px;
}

.contact_form p:last-child {
  margin: 0;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border:1px solid #ccc;
}

.menu_bar {
  background: #eee;
  padding: 15px 0;
}

.menu_bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.menu_bar li {
  position: relative;
}

.menu_bar a {
  text-decoration: none;
}

.or_div {
  margin: 30px 0;
  position: relative;
}

.or_div::after {
  top: 45%;
  left: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #ccc;
}

.or_div span {
  font-size: 20px;
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 0 20px;
}


.profile_card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.profile_image {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile_info {
  width: calc(100% - 240px);
}

.welcome {
  margin: 0 0 10px;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
}

.toggle_menu {
  display: none;
}

.toggle_menu a {
  display: inline-block;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.toggle_menu a img {
  height: 30px;
}

.sidebar_menu {
  position: fixed;
  top: 0;
  left: -40%;
  width: 40%;
  z-index: 99;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.5);
  height: 100vh;
  overflow-x: hidden;
  transition: all .2s;
}

.sidebar_menu.active {
  left: 0;
}

.sidebar_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar_menu li {
  position: relative;
  display: block;
  border-bottom: 1px solid #ccc;
}

.sidebar_menu li:last-child {
  border-bottom: none;
}

.sidebar_menu li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}

.contact_info_ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact_info_ul li {
  font-size: 15px;
  width: calc(100% / 3 - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.contact_info_ul li .img {
  width: 50px;
  height: 50px;
  background: #eee;
  padding: 10px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_info_ul li .img img {
  height: 80%;
  width: 80%;
}


@media (max-width: 1260px){
  .wdth {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1024px){
  .bgimage {
    background-attachment: unset;
  }
  .toggle_menu {
    display: block;
  }
  .left_menu,
  .right_menu {
    display: none;
  }
  .header .logo {
    width: auto;
  }
  .header .logo img,
  .footer .logo img {
    height: 60px;
  }
  .footer .wdth {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .ftr_menu_links ul {
    margin: 20px 0 10px;
  }
  .copyright p {
    text-align: center;
  }
  .home_section h3 {
    font-size: 15px;
  }
  .home_section h1 {
    font-size: 30px;
  }
  .home_section p {
    font-size: 15px;
  }

  .page_title {
    font-size: 25px;
  }
  .products li {
    width: calc(100% / 2 - 20px);
  }

  .details_page {
    background: #f7f7f7;
  }
  .details_page .wdth {
    flex-direction: column;
  }
  .details_page .wdth > div {
    width: 100%;
  }
  .details_page .big_image_box {
    margin-bottom: 20px;
  }
  .details_page .details_page_content h1 {
    font-size: 30px;
  }
  .col50.marginauto.contact_form,
  .col35.marginauto.contact_form,
  .col50.contact_form,
  .col40.contact_form {
    width: auto;
  }
  .plan_col {
    width: calc(100% / 1 - 20px);
  }
  .plan_col.featured {
    transform: scale(1);
    box-shadow: unset;
    margin: auto;
  }
  .download_apps .wdth {
    flex-direction: column;
    gap: 20px; 
  }
  .menu_bar ul {
    gap: 10px 30px;
    flex-wrap: wrap;
  }
  .profile_image {
    width: 150px;
    height: 150px;
  }
  .profile_info {
    width: calc(100% - 200px);
  }
}

@media (max-width: 800px){
  .sidebar_menu {
    width: 70%;
    left: -70%;
  }
  .sidebar_menu.active {
    left: 0;
  }
}

@media (max-width: 480px){
  .products li {
    width: calc(100% / 1);
  }
  .details_page .big_image_box {
    height: 300px;
  }
  .contact_info_ul {
    display: block;
  }
  .contact_info_ul li {
    width: calc(100% / 1);
    margin: 20px 0;
  }
  .ftr_menu_links ul {
    gap: 0 12px;
  }
}


.quantity_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.quantity_box input {
  width: 100px;
  padding: 5px;
  border-radius:5px;
  border: 1px solid #ccc;
  text-align: center;
  height: 30px;
}

.quantity_box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  background: var(--brand-color);
  width: 30px;
  height: 28px;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 13px;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  border: 1px solid #ccc;
}

caption {
  font-size: 16px;
  margin: 20px 0;
}

th {
  font-weight: bold;
  background: #eee;
  border-bottom: 1px solid #fff;
  padding: 12px;
}

td {
  padding: 12px;
}

.emptyline {
    padding:15px;
    background-color: #eee;
}

.cart_link {
    border: 1px solid;
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 10px;
    text-decoration: none;
}

.buttons_line {
    padding:15px;
    background-color: #eee;
}

.buttons_line ul {
    list-style: none;
    margin:0; padding:0;
}

.buttons_line ul li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.buttons_line ul li:last-child {
    margin-right: 0;
}

.cart_table {
    overflow-y: hidden;
}

.cart_table table {
    border-collapse: collapse;
    border-spacing: 0;
    border:none;
    width: 100%;
    min-width: 600px;
}

.cart_table tr {
    border-bottom: 1px solid #eee;
}

.cart_table tr:first-child,
.cart_table tr:last-child {
    border-bottom: none;
}

.cart_table td,
.cart_table th {
    padding: 20px;
    vertical-align: middle;
    font-size: 14px;
}

.cart_table th {
    font-weight: bold;
    letter-spacing: 1px;
}

.cart_table .quantity_box {
    margin:0;
}

.cart_table .quantity_box .button, 
.cart_table .quantity_box input {
    height: 30px;
    line-height: 30px;
}

.cart_table .quantity_box .button {
    width: 30px;
    font-size: 13px;
}

.cart_table .quantity_box input {
    width: 70px;
}

.cart_table .last_row td {
    background-color: #f7f7f7;
    font-weight: bold;
    letter-spacing: 1px;
}

.cart_table .product-name {
    width: 40%;
}

.prod_img {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius:5px;
    background-attachment: unset;
}

.prod_name {
    display: inline-block;
    position: relative;
}

.prod_name a {
    display: block;
    text-decoration: none;
}

.varvaluesss {
    margin:3px 0 0; padding: 0;
    font-size: 12px;
    color: #777;
}

.varvaluesss * {
    display: inline-block !important;
    font-size: 12px !important;
}

.varnameee {
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: bold;
}

.varvalu {
    margin-left: 10px;
}

.prod_rem {
    display: inline-block;
    margin-right: 10px;
}

.prod_rem a {
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    border-radius:100%;
    color: red;
    text-decoration: none;
}

.qtyyy {
    font-size: 12px;
    margin-left: 5px;
    color: #aaa;
}

.refill_product {
    background-color: #fcfcfc;
    border:1px solid #eee;
    border-radius: 3px;
    padding: 20px;
    margin-top: 30px;
}

.ref_prod_name {
    font-size:20px;
    margin: 0 0 5px; padding: 0;
}

.ref_prod_name span {
    opacity: 0.5;
    font-size: 14px;
    display: block;
}

.ref_time {
    font-size: 15px;
    margin: 0; padding: 0;
}

.ref_time strong {
    font-weight: bolder;
}

.refill_product .col25 {
    padding-right: 20px;
}

.refill_product .bgimage {
    height: 80px;
    border-radius: 3px;
}

.notes {
    margin:0; padding:0;
    font-size:13px;
    color: #aaa;
}

.prod_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.checkout_page h3 {
  margin: 0 0 25px;
}

.checkout_page .sec {
  margin: 0 0 30px;
}

.checkout_page .sec input, .checkout_page .sec textarea, .checkout_page .sec select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    resize: none;
    border: 1px solid #ccc;
    margin: 5px 0 0;
}

.mini_cart_prodname {
  display: flex;
  gap: 20px;
}

.mini_cart_prodname .prodimg {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-attachment: unset;
}

.mini_cart_prodname a {
  text-decoration: none;
}

.mini_cart_prodname .prodpric {
  margin-left: auto;
}

.product_detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product_detail li {
  position: relative;
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.product_detail li:last-child {
  border-bottom: none;
}

.product_detail li.cartinf, 
.product_detail li.totalpri {
    background: #eee;
    padding: 10px;
    border: none;
}