@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500&display=swap');


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Raleway', sans-serif;
  color: #444444;
   font-variant-numeric: lining-nums;
}

html {
  scroll-behavior: smooth;
 }

a {
  color: #5846f9;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #1b7fd4;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #1b7fd4;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffffe0;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1b7fd4;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


.footer-contact .logo-footer {
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  background: #fff;
  border-radius: 110px;
  padding: 45px 15px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 18px 10px 18px;
  display: flex;
  align-items: center;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  padding: 0 3px;
  /*font-family: "Open Sans", sans-serif;*/
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f84925;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #f84925;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #f84925;
}

/*.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}*/

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
  
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
  .heading-acc .heading-acc-1{
    padding: 20px 0px !important;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 25px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #fc4a26;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 100vh;*/
  background: #fff;
  background-size: cover;
}



#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0 0 0;
  font-size: 18px;
}

#about .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  color: #5ba597;
  border: 2px solid #5ba597;
}

#about .btn-get-started:hover {
  background: #5ba597;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .container, #hero .container-fluid {
    padding-top: 0px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/*section {
  overflow: hidden;
}
*/
.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
    /*padding-bottom: 30px;*/
    /*position: fixed;*/
    width: 100%;
    /*top: 120px;*/
    transition: all 0.5s;
    z-index: 9;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5ba597;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #2c4964;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5846f9;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%);
  position: relative;
}

.about .content .read-more:hover {
  background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg, rgba(88, 70, 249, 0.5) 0%, rgba(123, 39, 216, 0.5) 100%), url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #5846f9;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #2c4964;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #8fd4c7;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #5ba597 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5846f9;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(88, 70, 249, 0.8);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px 10px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #5846f9;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #5846f9;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .featured h3 {
  color: #fff;
  background: #5ba597;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #7ac35f;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
}

.faq .section-title h2, .faq .section-title p {
  color: #fff;
}

.faq .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #8577fb;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #2c4964;
}

.faq .faq-list a.collapsed:hover {
  color: #5846f9;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #5846f9;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5846f9;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #5846f9;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #7b27d8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: white;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c6387;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 10px 0 60px 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #5846f9 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/










.gallery-main-sec{
  width: 88%;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
    bottom: 90px;
}

.art-gallery-content{
  text-align: left;
  margin-top: 60px;
}

.art-gallery-content span{
    color: #fb5b3b;
    align-items: center;
    display: flex;
}

.order-selector-nav{
      padding: 20px 150px;
    width: 100%;
    display: flex;
}

.dropdown .btn{
  border-radius: 0px !important;
  padding: .425rem .75rem;
}

.order-date-shipped p{
  margin-bottom: 0px;
}

.order-date-shipped{
  background: #fc4a26;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    width: 114%;
}

.btn-primary:hover {
    color: #fff;
    background-color: #fd7a60;
    border-color: #fd7a60;
}










































#about .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Raleway", sans-serif;
}


#about .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #5ba597;
    margin: 0px 10px;
    left: calc(8% - 25px);
}

#about .section-title {
    padding-bottom: 40px;
    text-align: left;
}

#about .section-title p {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    color: #2a2c39;
}

#pricing .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 0px;
  color: #5ba597;
  border: 2px solid #5ba597;
}

#pricing .btn-get-started:hover {
  background: #5ba597;
  color: #fff;
}

.product-img-sec img {position: absolute; bottom: 0; left: 0; right: 0; top: 0; margin: auto; max-width: 100%; max-height: 100%; }

.btn-delivery a{color: #fc4a26;}
.btn-delivery-1 a{color: #fc4a26;}

.xzoom-product-media {
    position: relative;
    width: 440px;
    height: 400px;
    border: 1px solid #FFE6E1;
    margin: 0 auto;
    background: #FFF7F6;
}
.xzoom-product-media img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;   
     border: none;
     width: auto !important; 
}

.product-price-info {
    margin-bottom: 10px;
}

span.new-price-info {
    font-weight: 600;
    font-size: 16px;
}

span.old-price-info {
    font-size: 14px;
    color: #dc3545;
    text-decoration: line-through;
    margin-right: 10px;
}


a.text-danger.remove-cart-data {background: #f84925; padding: 9px 14px; border-radius: 40px; height: 40px; width: 40px; position: absolute; color: #fff !important; display: block; top: -20px; right: -50px; }

#login-form{ background: #ffffff;
    padding: 50px 50px;
    width: 60%;
    margin: auto;
    margin-top: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
}

#register-form{ background: #ffffff;
    padding: 50px 50px;
    width: 60%;
    margin: auto;
    margin-top: 20px;
    border-radius: 30px;
    margin-bottom: 0px;
}

section.loginForm-page {
    background: #fff3f1 !important;
    padding: 40px 0px;
}

.btn-login{background: #fc4a26; border-color: #fc4a26; color: #fff; margin-top: 20px;}
.btn-login:hover{color: #fff;}
.loginbtn-sec p{font-size: 14px; margin-top: 10px;}
.form-group.loginbtn-sec{text-align: center;}
.loginbtn-sec p a{color: #fc4a26;}
#testimonials .item-img {border: 1px solid #f4f4f4; margin: auto; text-align: center; padding: 30px;}
.deliveryAddress-sec-heading {margin-bottom: 10px;}
.deliveryAddress-sec-heading h5{margin: 0px;}

.attached-file{position: absolute; top: 37px; opacity: -1; width: 100%; z-index: 9;}





/*--------------------------------------------------------------
# Main-container
--------------------------------------------------------------*/
.main-container-m{
  border:1px solid #FC4A26;
  margin-top: 0px;
}

.collection-container{
  margin-top: 30px;
}

.cart-container{margin-top: 30px;}


.card-heading h4{
  margin: 0px;
  font-weight: 400 !important;
  font-size: 16px;

}

.card-heading {
    background-color: #FC4A26;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 6px;
    color: #fff;
    position: relative;
    top: 20px;
}

.product-heading h5{
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    padding: 10px;
    color: #f84925;
    margin: 0px;
    border-radius: 5px;
    border: 1px solid #f84925;

}

.bd-round-2{border-radius: 20px;}

.clr-orange{
  color: #FB5B3B;
}

.card-title a{
  color: #353535;
  font-size: 14px;
  margin: 0px;
}

.sub-card-detail{
  background-color: #000;
  margin-top: 0px; 
  color: #fff;
  font-weight: 500;
}

.right-arrow-bg{
  background-color: #FB5B3B;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  display: table;
  margin: auto;
}

.right-arrow-bg:hover {
    color: #fff;
}

.fs-20{
  font-size: 20px;
}

.fs-14{
  font-size: 14px;
}

.fs-16{
  font-size: 16px;
}

.fs-12{
  font-size: 12px;
}

.fs-13{
  font-size: 13px;
}

.fs-10{
  font-size: 10px;
}

.bdr-r{
  border-right: 1px solid #fff;
}

.btn-primary.btn-download_app{
  background-color: #fb5b3b !important;
  border:none;
  box-shadow: 0px 6px 6px 2px #f54723;

}

.footer-heading h5{
  font-size: 14px;
  padding: 10px;
  margin: 0px;
}

.footer-heading{
  background-color: #FB5B3B;
  box-shadow: 0px 7px 12px 1px #ea3d19;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  top: 20px;
}

.header-heading h5{
    background-color: #FB5B3B;
    box-shadow: 0px 3px 7px 1px #ea3d19;
    padding: 5px 10px;
    position: absolute;
    left: -216px;
    bottom: 0px;
    width: 92px;
    font-size: 10px;
    border-radius: 4px;
    color: #fff;
}
.header-heading{
  position: relative;
}

.btn-location{
  background-color: #FC4A26;
  border:none;
  padding: 14px;
  margin-bottom: 20px
}

.dd-location{
  width: 100%;
  padding: 14px;
}

.code-input{
  padding: 10px;
  margin-top: 20px;
  width: 100%;
}

.footer-contact{
  border:2px dotted #fff;
  padding: 10px;
}

.card-body-sec{
  box-shadow: 2px 2px 12px 2px #e0e0e0;
    padding: 20px;
    position: absolute;
    width: 97%;
    height: 400px;
    z-index: -1;
}

.card-body-vendor-product{
    box-shadow: 2px 2px 12px 2px #e0e0e0;
    padding: 20px;
    position: absolute;
    width: 97%;
    height: 400px;
    z-index: 1;
    background: #fff;
}

.card-vendor-product-content{
  position: relative;
  z-index: 2;
}

.contact-bg{
      background-color: #FC4A26;
    padding: 30px 30px 0;
}

/*.card-shadow{
      box-shadow: 0px 5px 8px 0px #efecec;
}*/

.btn-view{background: #FEDDD6; color: #2B2A2A; border:none;}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 12px 8px 12px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #F84925;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #F84925;
}

#main {
  transition: margin-left .5s;
  /*padding: 16px;*/
}

@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}






/*--------------------------------------------------------------
# Payment-delivery Page
--------------------------------------------------------------*/

.tab{
    background-color: #F4F4F4;
    padding: 24px;
    text-align: center;
    margin: 0px;
}
.tab-active{
    background: #fc4a26;
    padding: 12px;
    text-align: center;
    border-radius: 0px;
    color: #fff;
    margin: 0;
}

.tab-active p{
  margin-bottom: 0px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0px;
}

.back-btn{
    background: #fc4a26;
    border-radius: 100px;
    padding: 9px 13px;
    height: 40px;
    width: 40px;
    display: inline-flex;
    color: #fff;
}

.card.item-detail{
  padding: 20px 60px 20px 20px;
  background: #f4f4f4;
  border: 2px dotted #fc4a26;
}

.item-cart-sec .item-detail{
  padding: 20px 0px;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.item-cart-sec .item-detail-shipping{
  padding: 30px 30px 30px 30px;
  background: #f4f4f4;
  border: 2px dotted #fc4a26;
}

.tag-detail{
  padding: 20px 20px 20px 20px;
  background: #f4f4f4;
  border: 2px dotted #fc4a26;
  width: 290px;
  /*display: flex;*/
}

.card.item-detail-1{
  padding: 20px 20px 20px 20px;
  background: #FCFCFC;
  border: 2px dotted #FED7CF;
}

.item-detail .card-tabs{
  display: flex;
}

.item-detail .card-tabs .card-tab-active{
    background: #fc4a26;
    padding: 3px 12px;
    color: #fff;
    border-radius: 4px;
}

.card-tab-active{
    background: #fc4a26;
    padding: 3px 12px;
    color: #fff;
    border-radius: 4px;
}

.delivery-address-detail h5{
  font-size: 18px;
}

.delivery-address-detail p{
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 300;
}

.select-sec-radio{
  position: absolute;
  right: 0px;
  top: 3px;
}

.btn-card{
  height: 300px;
  display: flex;
  align-items: center;
}

.fs-14{
  font-size: 14px;
}

.btn-delivery{
    display: flex;
    align-items: center;
    margin-top: 30px;
    color: #FC4A26;
    margin-bottom: 1.5rem;
    gap: 8px;
}

.btn-delivery-1{
 display: flex;
  align-items: center;
  margin-top: 30px;
  color: #FC4A26;
  margin-bottom: 1.5rem;
  gap: 8px;
}

.circle-btn{
  background: #fc4a26;
  color: #fff;
  padding: 20px;
  height: 50px;
  width: 50px;
  padding: 14PX 19px;
  border-radius: 50px;
}

.cart-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FC4A26;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  padding: 8px 10px;
}


.btn-delivery a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-delivery-1 a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.checked {
  color: orange;
}

.checked-1 {
  color: #fff;
}

.checked-2 {
  color: #fc4a26;
}

.delivery-address-detail .item-detail{
  padding: 20px 60px 20px 20px;
  background: #f4f4f4;
  border: 2px dotted #fc4a26;
}

.delivery-address-detail .item-detail h6{
  margin: 0px;  
}
.w-80{
  width: 80px;
}

.unselected-card{
  padding: 30px 2px 20px;
}

.unselected-card.bd-b{
  border-bottom: 1px solid #f3f0f0;
}

.add-input{
  height: 40px; width: 260px; padding: 10px;
}

p.order-total{
  color: #FC4A26;
  font-weight: 600;
}

.clr-blue{
  color: #2C6ACE;
  text-decoration: underline;
}

.btn-download-invoice{
  color: #fc4a26;
    font-size: 14px;
    float: right;
    width: 100%;
    text-align: right;
}

.btn-download-invoice-1{
  color: #fc4a26;
    font-size: 14px;
    float: right;
    /*width: 100%;*/
    text-align: right;
}

.check {
    background-color: #000;
    padding: 25px 25px;
    border-radius: 50px;
    height: 70px;
    color: #fff;
    width: 70px;
    position: absolute;
    right: 100px;
    top: 24px;
}

.check-1 {
    background-color: #000;
    padding: 15px;
    border-radius: 50px;
    height: 50px;
    color: #fff;
    width: 50px;
    
}

.similar-cards .item-cards{
    padding: 30px 40px;
    background: #f4f4f4;
    border: 2px dotted #fc4a26;
    text-align: center;
    width: 340px;
}

.similar-cards-1 .item-cards{
    padding: 30px 40px;
    background: #f4f4f4;
    border: 2px dotted #fc4a26;
    text-align: center;
}

.similar-cards-1 .item-cards p{
  margin-bottom: 0px;
}

.similar-cards .item-cards h6{
  margin-bottom: 4px;
}

.similar-cards .item-cards p{
  margin-bottom: 0px;
  font-size: 11px;
}

.acc-profile{
  height: 190px;
  width: 190px;
  padding: 10px;
  background: #fff;
  /*border-radius: 200px;*/
  box-shadow: 0px 0px 15px 0px #e4e4e4;
}

.heading-acc h5{
  padding: 20px 204px;
  margin-bottom: 0px;
  background-color: #fff;
  box-shadow: 0px 4px 15px 0px #f1f1f1;
  color: #111;

}

.heading-acc .heading-acc-1{
  padding: 20px 150px;
  margin-bottom: 0px;
  background-color: #fff;
  box-shadow: 0px 4px 15px 0px #f1f1f1;
  color: #111;
}

.heading-acc{
  margin-bottom: 20px;
  color: #fff;
  padding: 0px;
}

.bg-acc-info{
  background-color: #fff;
    margin-bottom: 50px;
    padding: 20px;
    align-items: center;
    box-shadow: 0px 0px 15px 0px #efecec;
    margin-top: 30px;
}

.heading-acc-1 {
    display: flex;
    align-items: center;
    color: #fc4a26;
}

.heading-acc-1 h6{
  font-size: 1.25rem;
  margin-bottom: 0px;
}

.btn-save{
  background-color: #fc4a26;
  border:1px solid #fc4a26;
  color: #fff;
}

.tag-active{
  background-color: #fc4a26;
    padding: 6px 0px;
    border-radius: 50px;
    width: 70px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 4px; 
}

.tag-active-1{
  background-color: #fc4a26;
    padding: 6px 0px;
    border-radius: 50px;
    width: 120px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 4px;
}

.tag-active-2{
  background-color: #fc4a26;
    padding: 6px 0px;
    border-radius: 50px;
    width: 150px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 4px;
}

.header-selector{
  display: 
}

.loding-btn{
  background-color: #FEDDD6;
  color: #000;
  padding: 7px 20px;
  margin-bottom: 40px;
}

.side-bar-tab{
  background: #333;
  padding: 10px 20px;
  width: 290px;
}

.side-bar-tab ul{
  padding: 0px;
  margin: 0px;
}

.side-bar-tab ul li{
  color: #fff;
  text-decoration: none;
  list-style-type: none;
  padding: 10px 0px;

}

.sidebar-bd{
  border-bottom: 1px solid #4a4a4a;
}

.w-500{
  width: 500px;
  margin: auto;
}

.w-300{
  width: 300px;
}

.w-23{
  width: 230px;
}

.heading-store h5{
  margin-bottom: 0px;
  margin-right: 126px;
}

.heading-store{
  align-items: center;
  display: flex;
}

.card-added-header{
    align-items: center;
    background: #f84925;
    border-radius: 8px;
    color: #fff;
    padding: 20px;
    display: flex;
}

.btn.btn-added{
    background-color: #fff;
    color: #f84925;
    font-size: 13px;
    padding: 10px 30px;
    font-weight: 600;
}

.item-desc p{
  margin-bottom: 6px;
  font-size: 14px;
}

.item-desc p span{
  font-weight: 600;
}

.card.review-post{
  background-color: #fc4a26;
  padding: 26px;
  margin-top: 20px;
}

.post-review{
  color: #fff;
  margin-right: 60px;
}

textarea.review-form-input{
    /*background: none;*/
    border: navajowhite;
    border-bottom: 1px solid #fd917b;
    border-radius: 0px;
    margin-top: 30px;
    height: 150px !important;
}

.btn-submit{
  background-color: #FC5D3D;
  color: #fff;
  padding: 10px 30px;
}

.btn-danger{
  background-color: #FC5D3D;
  color: #fff;
  border:none;
}

.btn-danger:hover {
    color: #fff;
    background-color: #FC5D3D;
    border-color: #FC5D3D;
}

.btn-primary{
  background-color: #FC5D3D;
  color: #fff;
  border:none;
}

.btn-submit:hover{background-color: #fff; color: #fc4a26;}

.bd-bottom{
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.view-image{
    background-color: #fc4a26;
    color: #fff;
    border-radius: 40px;
}

.reviews{
    box-shadow: 2px 2px 12px 2px #e0e0e0;
}

.btn.buy-btn{
  background-color: #fc4a26;
  color: #fff;
  border-radius: 0px;
  padding: 10px 30px;
  width: 100%;
}

.btn.buy-btn.deactive{
  background-color: #F5D6D0 ;
}

.input-search-order input{
  height: 40px;
  width: 360px;
  padding: 10px;
  font-size: 14px;
  border-radius: 0px;
  background-color: #FFE4DE;
  border:none;
  color: #FC4A26;
}

.input-search-order .input-search-btn{
  background-color: #FC4A26;
  color: #fff;
  border:none;
}


}





































body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-color: #2ecc71;
    background-repeat: no-repeat
}

.shipping-order-steps .card {
    z-index: 0;
    background-color: #F5D1CA;
    padding-bottom: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 10px
    border:1px solid #F5D1CA !important;
}

.top {
    padding-top: 22px;
    padding-left: 13% !important;
    padding-right: 13% !important
}

#progressbar {
    overflow: hidden;
    color: #f5d1ca;
    padding-left: 0px;
}

#progressbar li {
    list-style-type: none;
    font-size: 13px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar .step0:before {
    content: "\f10c";
    color: #fff
}

#progressbar li:before {
    width: 40px;
    height: 40px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    background: #C5CAE9;
    border-radius: 50%;
    margin: auto;
    padding: 0px
}

#progressbar .active.step i{
  color: #fff;
  background-color: #fc4a26;
}

#progressbar .step:before{
  width: 40px;
    height: 40px;
    line-height: 45px;
    display: block;
    background: #C5CAE9;
    border-radius: 50%;
    margin: auto;
    padding: 0px
}

#progressbar .step i{
  width: 40px;
    height: 40px;
    line-height: 45px;
    display: block;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    padding: 0px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 12px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 36px;
    z-index: -1
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -50%
}

/*#progressbar li:nth-child(2):after,
#progressbar li:nth-child(3):after,
#progressbar li:nth-child(4):after {
    left: -50%
}*/

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    left: 50%
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #fc4a26
}

#progressbar li p{
  color: #000;
}

.icon {
    width: 60px;
    height: 60px;
    margin-right: 15px
}

.icon-content {
    padding-bottom: 20px
}

@media screen and (max-width: 992px) {
    .icon-content {
        width: 50%
    }
}

















.xzoom-gallery {
    margin-top: 10px
}

.xzoom {
    margin-top: 20px
}

.social-part{
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 10px;
}

.social-part i{
    border: 1px solid #fff;
    padding: 0px 7px;
    border-radius: 50px;
    height: 30px;
    align-items: center;
    color: #fff;
    width: 30px;
    display: flex;
    margin-right: 0px;
}

#main .openbtn i{border: none !important; color: #fff;}

.card-img, .card-img-top {
    border-top-left-radius: calc(0rem - 1px);
    border-top-right-radius: calc(0rem - 1px);
}


hr {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.card-price-footer{
  padding: 0px 20px 20px 20px;
}

.product-card .city-name a, .store-name a{
  color: #000;
}

.product-card:hover {
    border: 1px solid rgb(252 74 38);
    box-shadow: 0 8px 20px #D4D5D7;
}

.store-name {
  font-size: 14px;
}

.store-name {
  margin:0px 0px 8px;
}

.city-name{
  font-size: 14px;
  font-weight: 700;
}

.city-name{
  margin:8px 0px 0px; 
}

/*.form-control:focus{
  color: #ffc1b4 !important;
}
*/
.form-control{
  font-variant-numeric: lining-nums;
}

/*---------------------Product-detail-page---------------------*/

.xzoom-gallery {
    margin-top: 10px
}

.xzoom {
    margin-top: 20px
}

.orange {
  background: transparent; }

.green {
  background: transparent; }

.blue {
  background: transparent; }

.product-size-detail .btn-group{
  margin-left: 30px;
}

.product-color-detail .btn-group{
  margin-left: 20px;
  margin-top: 20px;
}

.btn-group label{
  margin-bottom: 0px;
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.btn-secondary {
    color: #545454;
    background-color: transparent;
}

.btn-check:active+.btn-secondary, .btn-check:checked+.btn-secondary, .btn-secondary.active, .btn-secondary:active, .show>.btn-secondary.dropdown-toggle {
    color: #fc4a26;
    border: 2px solid #fc4a26;
}

.btn-group>.btn-group:not(:first-child), .btn-group>.btn:not(:first-child) {
    /*margin-left: -.125rem;*/
}


.btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:first-child)>.btn, .btn-group>.btn:nth-child(n+3), .btn-group>:not(.btn-check)+.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-secondary.focus, .btn-secondary:focus, .btn-secondary:hover {
    color: #545454;
    background-color: transparent; 
}

.btn-secondary.focus, .btn-secondary:focus, .btn-secondary.orange:hover {
    color: #fff;
    background-color: #ffae3f;
}

.btn-secondary.focus, .btn-secondary:focus, .btn-secondary.green:hover {
    color: #fff;
    background-color: #97c303;
}

.btn-secondary.focus, .btn-secondary:focus, .btn-secondary.blue:hover {
    color: #fff;
    background-color: #0c90ce;
}

.btn-group>.btn-group:not(:first-child)>.btn, .btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.btn-group .btn{
  border-radius: 0px;
}

.btn-group>.btn-group:not(:first-child), .btn-group>.btn:not(:first-child){
  margin-left: 2px;
}
/*---------------New---------------*/

.search-store-sec{position: absolute; width: 400px; z-index: 9; background-color:rgba(255,255,255,0.3); padding: 30px; border-radius: 6px; left: 170px; top: 230px; }
div#demo {margin-top: 30px; }
.banner-img-slider{background-image: url(../../front/images/b-1.png); background-repeat: no-repeat; background-size: cover; height: 615px; width: 100%;}
.banner-img-slider-2{background-image: url(../../front/images/b-2.png); background-repeat: no-repeat; background-size: cover; height: 615px; width: 100%;}
.banner-img-slider-3{background-image: url(../../front/images/b-3.png); background-repeat: no-repeat; background-size: cover; height: 615px; width: 100%;}
.card-body.product-item-detail {padding: 10px 10px 20px;}
.product-item-detail p.card-text{font-size: 12px; color: #6f6f6f; font-weight: 300;}
sup#total-count {background: #fc4a26; padding: 1px 6px; border-radius: 60px; color: #fff;}
.product-img-sec {position: relative; height: 180px; width: 180px; margin: 0 auto; }
.item-cart-sec .similar-cards-1 .item-1-details item-img img{border: 1px solid #eaeaea;}
.cart-empty-sec{padding: 100px 0px;}

.item-description-container{margin:16px 0px;}

.item-description-container h1{
  font-size: .9rem;
  font-weight: 300;
  color: #616161;
}

.item-description-container p{
  font-size: .9rem;
  font-weight: 300;
  color: #616161;
}

.attached-file-icon{
  position: absolute;
    color: #9c847f;
    right: 20px;
    bottom: 26px;
    z-index: 1;
    display: block;
}
#swal2-title{color: #fc4a26bf;}

.additional-table{border-bottom:1px solid #e7e7e7;}

.specification-table{
  width: 100%;
}

th.additional-text {
    background-color: #f9f9f9;
    width: 50%;
    white-space: normal;
    word-wrap: break-word;
    border-top: 1px solid #e7e7e7;
    padding: 7px 14px 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
}


td.additional-value {
    width: 50%;
    white-space: normal;
    word-wrap: break-word;
    border-top: 1px solid #e7e7e7;
    padding: 7px 14px 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
}.review-user-item {
    margin-bottom: 22px;
}
.review-user-info {
    display: flex;
    align-items: center;
}.review-user-media {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}.review-user-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}.review-user-text {
    margin-left: 10px;
    flex: 1;
}.review-user-text h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.review-user-desc {
    margin: 10px 0 0 0;
}
.review-user-desc p{
  font-size: 14px; 
  font-weight: 300;
}

/*-------------------------------Vendor List Items-------------------------------*/

.header-selector {
    background: #fbf4f2;
    border-radius: 8px;
    padding: 20px;
}

.item-1-details {
    padding: 12px 15px;
    background: #fff;
/*    border: 1px solid #F8F1F0;*/
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 12px 2px #F2EDEC;
    border: 1px solid #fc4a26;
    margin-bottom: 10px;
}

.header-selector{background: #fbf4f2; border-radius: 8px; padding: 20px;}
.select2-container .select2-selection--single{height: 40px; } 
.select2-container--default .select2-selection--single {border: 1px solid #d6d6d6; border-radius: 4px; }
.select2-container--default .select2-selection--single .select2-selection__arrow{top: 6px; }
.select2-container--default .select2-selection--single .select2-selection__rendered {line-height: 37px; }
.select2-container--default .select2-selection--single .select2-selection__placeholder {color: #000000; font-size: 14px; font-weight: 200;}
.select2-container {margin-right: 10px; /*width: 100%!important;*/}
.select2-container--default .select2-selection--single .select2-selection__arrow b{color: #d6d6d6 !important;}
.select2-results__option {font-weight: 300; font-size: 14px; }
.btn-reset{color: #f84925; border-color: #f84925; background: transparent; }
.btn-reset:hover{color: #fff; background-color: #f84925;}
.btn.btn-secondary.btn-search{ color: #fff; background-color: #f84925; border: none; padding: 7px 14px; }




@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}


/*=====  End of Choices  ======*/


.s131 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-family: 'Poppins', sans-serif;
  background: #F84925;
  background-size: cover;
  background-position: center center;
  padding: 15px 160px;
}


.s131-search-location-section {
  background: #F84925;
  padding: 15px 160px;
  position: relative;
}





.s131-search-location-section form {
  width: 100%;
  max-width: 900px;
}

.s131-search-location-section form .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.s131-search-location-section form .inner-form .input-field {
  height: 46px;
}

.s131-search-location-section form .inner-form .input-field .input-select {
  border-radius: 6px 0px 0px 6px;
}
.s131-search-location-section form .inner-form .input-field input {
  height: 100%;
  background: #fff;
  border: 0;
  display: block;
  font-size: 14px;
  width: 100%;
  padding: 10px 20px;
  color: #333;
  border: 1px solid #e5e5e5;
  /*border-radius: 0px 0px 0px 0px;*/
}

.s131-search-location-section form .inner-form .input-field input.placeholder {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 200;
}

.s131-search-location-section form .inner-form .input-field input:-moz-placeholder {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 200;
}

.s131-search-location-section form .inner-form .input-field input::-webkit-input-placeholder {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 200;
}

.s131-search-location-section form .inner-form .input-field input:hover, .s131-search-location-section form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}

.s131-search-location-section form .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.s131-search-location-section form .inner-form .input-field.first-wrap input {
  border-right: 0;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .input-select {
  padding: 0px 20px;
  background: #fff;
  border-left: 1px solid #e5e5e5;

}

.s131-search-location-section form .inner-form .input-field.second-wrap .input-select select {
  min-width: 160px;
  height: 46px;
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border: none;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .choices__inner {
  background: #fff;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  height: 100%;
  color: #333;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 30px;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .choices__inner .choices__list.choices__list--single {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .choices__inner .choices__item.choices__item--selectable.choices__placeholder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  opacity: 1;
  color: #333;
  font-size: 20px;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .choices__inner .choices__list--single .choices__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  font-size: 20px;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .choices__list.choices__list--dropdown {
  border: 0;
  background: #fff;
}

.s131-search-location-section form .inner-form .input-field.second-wrap .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: #fff;
  color: #333;
}



.s131-search-location-section form .inner-form .input-field.third-wrap {
  width: 164px;
}

.s131-search-location-section form .inner-form .input-field.third-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #111111;
  transition: all .2s ease-out, color .2s ease-out;
  font-weight: 400;
  border-radius: 0px 6px 6px 0;
}


@media screen and (max-width: 992px) {
  .s131-search-location-section form .inner-form .input-field {
    height: 46px;
  }

@media screen and (max-width: 767px) {

  .card-added-header{
    display: block;
  }

  .w-23 {
    width: auto;
  }

  .bdr-r{
    border-right: 0px;
    padding: 16px 0px;
  }


  .heading-acc h5{padding: 20px 0px;}

  .s131-search-location-section {padding: 15px 30px;}

  .s131-search-location-section form .inner-form{
    display: block;
  }

  .s131-search-location-section form .inner-form .input-field.second-wrap .input-select select{
    min-width: 100%;
  }
  .s131-search-location-section form .inner-form .input-field .input-select {
    border-radius: 6px;
  }
  .s131-search-location-section form .inner-form .input-field input
  .s131-search-location-section form .inner-form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
  }
  .s131-search-location-section form .inner-form .input-field {
    margin-bottom: 20px;
  }
  .s131-search-location-section form .inner-form .input-field input {
    padding: 10px 15px;
    border-radius: 6px;
  }
  .s131-search-location-section form .inner-form .input-field.third-wrap .btn-search{
    border-radius: 6px;
  }
  .s131-search-location-section form .inner-form .input-field.first-wrap {
    width: 100%;
  }
  .s131-search-location-section form .inner-form .input-field.first-wrap .choices__inner {
    padding: 10px 15px;
  }
  .s131-search-location-section form .inner-form .input-field.second-wrap {
    width: 100%;
  }
  .s131-search-location-section form .inner-form .input-field.second-wrap input {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .s131-search-location-section form .inner-form .input-field.third-wrap {
    margin-bottom: 0;
    width: 100%;
  }
}









.location-section{background-color: #fff; padding: 4px 14px; border-radius: 6px;}
.location-section i{ font-size: 20px; color: #111; margin-right: 15px; }
.user-name{font-size: 12px; margin: 0px; color: #707070;}
.user-location{font-size: 16px; margin: 0px; color: #111;}

.s131 form {
  width: 100%;
  max-width: 900px;
}

.s131 form .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.s131 form .inner-form .input-field {
  height: 46px;
}

.s131 form .inner-form .input-field .input-select {
  border-radius: 6px 0px 0px 6px;
}
.s131 form .inner-form .input-field input {
  height: 100%;
  background: #fff;
  border: 0;
  display: block;
  font-size: 14px;
  width: 100%;
  padding: 10px 20px;
  color: #333;
  border: 1px solid #e5e5e5;
  /*border-radius: 0px 0px 0px 0px;*/
}

.s131 form .inner-form .input-field input.placeholder {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 200;
}

.s131 form .inner-form .input-field input:-moz-placeholder {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 200;
}

.s131 form .inner-form .input-field input::-webkit-input-placeholder {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 200;
}

.s131 form .inner-form .input-field input:hover, .s131 form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}

.s131 form .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.s131 form .inner-form .input-field.first-wrap input {
  border-right: 0;
}

.s131 form .inner-form .input-field.second-wrap .input-select {
  padding: 0px 20px;
  background: #fff;
  border-left: 1px solid #e5e5e5;

}

.s131 form .inner-form .input-field.second-wrap .input-select select {
  min-width: 160px;
  height: 46px;
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border: none;
}

.s131 form .inner-form .input-field.second-wrap .choices__inner {
  background: #fff;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  height: 100%;
  color: #333;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 30px;
}

.s131 form .inner-form .input-field.second-wrap .choices__inner .choices__list.choices__list--single {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

.s131 form .inner-form .input-field.second-wrap .choices__inner .choices__item.choices__item--selectable.choices__placeholder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  opacity: 1;
  color: #333;
  font-size: 20px;
}

.s131 form .inner-form .input-field.second-wrap .choices__inner .choices__list--single .choices__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  font-size: 20px;
}

.s131 form .inner-form .input-field.second-wrap .choices__list.choices__list--dropdown {
  border: 0;
  background: #fff;
}

.s131 form .inner-form .input-field.second-wrap .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: #fff;
  color: #333;
}



.s131 form .inner-form .input-field.third-wrap {
  width: 164px;
}

.s131 form .inner-form .input-field.third-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #111111;
  transition: all .2s ease-out, color .2s ease-out;
  font-weight: 400;
  border-radius: 0px 6px 6px 0;
}


@media screen and (max-width: 992px) {
  .s131 form .inner-form .input-field {
    height: 46px;
  }

@media screen and (max-width: 767px) {

  .card-added-header{
    display: block;
  }

  .w-23 {
    width: auto;
  }

  .bdr-r{
    border-right: 0px;
    padding: 16px 0px;
  }


  .heading-acc h5{padding: 20px 0px;}

  .s131 {padding: 15px 30px;}

  .s131 form .inner-form{
    display: block;
  }

  .s131 form .inner-form .input-field.second-wrap .input-select select{
    min-width: 100%;
  }
  .s131 form .inner-form .input-field .input-select {
    border-radius: 6px;
  }
  .s131 form .inner-form .input-field input
  .s131 form .inner-form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
  }
  .s131 form .inner-form .input-field {
    margin-bottom: 20px;
  }
  .s131 form .inner-form .input-field input {
    padding: 10px 15px;
    border-radius: 6px;
  }
  .s131 form .inner-form .input-field.third-wrap .btn-search{
    border-radius: 6px;
  }
  .s131 form .inner-form .input-field.first-wrap {
    width: 100%;
  }
  .s131 form .inner-form .input-field.first-wrap .choices__inner {
    padding: 10px 15px;
  }
  .s131 form .inner-form .input-field.second-wrap {
    width: 100%;
  }
  .s131 form .inner-form .input-field.second-wrap input {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .s131 form .inner-form .input-field.third-wrap {
    margin-bottom: 0;
    width: 100%;
  }
}

input,
input::placeholder {
    font: 15px/3 sans-serif;
}

/*.item-cart-sec .item-detail .item-img img{width: 190px; height: 170px;}*/

/*---------------Slider---------------*/


div#demo {margin-top: 0px; }
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
    background: #f84925;
    height: 40px;
    margin: auto;
    align-items: center;
    width: 40px;
}

.cart-empty-sec a:hover {color: #fff;}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #fc4a26;
    border-color: #fc4a26;
} 

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #fc4a26;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #fc4a26;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.swal2-header img.swal2-image {
    height: 100px !important;
    display: block !important;
}

.add-address-box {
    width: 100%;
    border: 2px dashed #eee;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 266px;
    margin-bottom: 10px;
}

.add-address-card-text i {
    font-size: 45px;
    color: #eee;
}
.add-address-card-text h3 {
    font-size: 20px;
    color: #605b5b;
    margin-top: 10px;
    font-weight: 600;
}
.address-card-info{
    border: 1px solid #eeeeee;
    position: relative;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    height: 266px;
    width: 100%;
    border-width: 1px;
    box-sizing: border-box;
}.address-card-inner h2 {
    color: #343a40;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
}.address-card-inner p {
    color: #343a40;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 10px;
    padding: 0;
}a.deliver-btn {
    background: #f84925;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}a.Edit-btn {
    background: #f4f4f4;
    color: #554c44;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}a.delete-btn {
    background: #f4f4f4;
    color: #f70404;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}.address-card-inner-btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}a.Instructions-btn {
    color: #f84925;
    font-size: 14px;
}.address-card-inner-btn a {
    color: #f84925;
    font-size: 14px;
}

.ribbon-warp{width: 120px;height: 120px;overflow: hidden;position:absolute;top: -10px;right: -10px;}
.ribbon-warp::before,.ribbon-warp::after{content: '';width: 10px;height: 10px;background: #cfc8c8;position: absolute;z-index: -1;}
.ribbon-warp::before{top: 0;left: 0;}
.ribbon-warp::after{bottom: 0;right: 0;}


.ribbon-text{width: 200px;font-size: 13px;text-align: center;padding: 8px 0;background: #eeeeee;color: #605b5b;position: absolute;transform: rotate(45deg);right: -45%;top: 26%;}



