
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
img{
  max-width: 100%;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-green);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

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

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

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

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-green);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-green-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background: var(--color-black);
}

.header.sticked {
  background: var(--color-black);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}




.header .btn_try_now,
.header .btn_try_now:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-green);
  padding: 8px 23px;
  border-radius: 20px;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.header .btn_try_now:hover,
.header .btn_try_now:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-green-rgb), 0.85);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
  position: relative;
}

.footer .footer-content {
  background: var(--color-black);
  padding: 50px 0 0px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-green);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-green);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-green);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-green-rgb), 0.85);
}

.footer .footer-legal {
  padding: 10px 0;
  background: var(--color-black);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-green-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-green);
  text-decoration: none;
}
.footer{
  .follow_us{
    a{
      margin-right: 10px;
      color: var(--color-white);
      font-size: 20px;
    }
  }
}



/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
.hdng{
  h2{
    font-size: 35px;
    font-weight: 600;
    color: var(--color-black);
  }
  h6{
    font-size: 20px;
    font-weight: 600;
  }
}
.hdng.green{
  h2,h6{
    color: var(--color-green);
  }
}
.hdng.white {
  h2,h6{
    color: var(--color-white);
  }
}
section {
  padding: 50px 0;
  overflow: hidden;
}
.hero_home_banner::after{
  content: '';
  position: absolute;
  background: rgba(var(--color-black-rgb), 0.3);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero_home_banner{
  position: relative;
  padding-top: 60px;
  overflow: hidden;
  border-radius: 0px 0px 100px 100px;
  .banner_content{
    background: rgba(67, 161, 44, 1);
    padding: 20px;
    filter: drop-shadow(0px 0px 250px 0px #000000);
    margin-top: 60px;
    max-width: 650px;
    width: 100%;
    position: absolute;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    z-index: +9;
    h1{
      font-size: 30px;
      font-weight: 600;
      color: var(--color-white);
      line-height: 45px;
      margin-bottom: 10px;
    }
    h6{
      display: block;
      margin: 0 auto;
      max-width: 534px;
      width: 100%;
      font-size: 15px;
      font-weight: 500;
      color: var(--color-white);
      line-height: 22px;
      margin-bottom: 10px;
    }
  }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.about_work_timer{
  background: #EAF5E8;

}
.about_work_timer .about_work_timer-item {
  padding: 15px;
  transition: all ease-in-out 0.4s;
  /* background: var(--color-white); */
  height: 100%;
  border: 1px solid #000000;
  border-radius: 20px;
}

.about_work_timer .about_work_timer-item .icon {
  margin-bottom: 10px;
}

.about_work_timer .about_work_timer-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.about_work_timer .about_work_timer-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.7;
}

.about_work_timer .about_work_timer-item h4 a {
  color: var(--color-dark);
  transition: ease-in-out 0.3s;
}

.about_work_timer .about_work_timer-item p {
  color: rgba(var(--color-dark-rgb), 0.7);
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 0;
  line-height: 1.6;
}

.about_work_timer .about_work_timer-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
  /* background-color: var(--color-white); */
    /* h4 a,p {
    color: var(--color-white);
  }
  svg path{
    fill: var(--color-white);
  } */
}
.shot_img_bg{
  background-color: #44A12C;
    color: var(--color-white);
  padding: 30px 25px;
  margin-left: -110px;
  padding-left: 15px;
  z-index: -1;
  position: relative;
  border-radius: 0px 20px 20px 0px;
  h4{
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  p{
    font-size: 17px;
    font-weight: 400;
  }
}

.shot_img_bg_2{
  background-color: #44A12C;
    color: var(--color-white);
  padding: 30px 15px;
  margin-right: -100px;
  padding-right: 100px;
  z-index: -1;
  position: relative;
  padding: 50px 25px;
  border-radius: 20px 0px 0px 20px;
  h4{
    font-size: 30px;
    font-weight: 600;
  }
  p,ul li{
    font-size: 20px;
    font-weight: 600;
  }
  ul{
    padding-left: 20px;
    li{
      margin-top: 10px;
    }
  }
}

.features{
  background-image: linear-gradient(to right,
  rgba(var(--color-green-rgb),0.5),
  rgba(var(--color-green-rgb),0.5)), url('../img/features_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.features_img img{
  border-radius: 50px;
}
.features_list{
  background-color: var(--color-white);
  padding: 15px;
  border-radius: 30px;
  span{
    width: 70px;
  }
}

/*--------------------------------------------------------------
# how_it_work Section
--------------------------------------------------------------*/
.how_it_work{
  background: #E3F1DF;
}
.how_it_work_card{
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background-color: #FFFFFF;
  h5{
    font-size: 20px;
    font-weight: 600;
  }
  p{
    font-size: 17px;
    font-weight: 400;
    margin: 0px;
  }
  img{
    max-height: 40px;
    max-width: 50px;
  }
}
.how_it_work_video_card{
  background-image: url('../img/how_it_work_video_bg.webp');
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 400px;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
    .play-btn {
      width: 94px;
      height: 94px;
      background: radial-gradient(var(--color-green) 50%, rgba(var(--color-green-rgb), 0.4) 52%);
      border-radius: 50%;
      display: block;
      position: absolute;
      left: calc(50% - 47px);
      top: calc(50% - 47px);
      overflow: hidden;
    }
    .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(var(--color-green-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }

  .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
  }

  .play-btn:hover:after {
    border-left: 15px solid var(--color-green);
    transform: scale(20);
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/* .how_it_work_video_card{
  position: relative;
  &::after{
    content: url('../img/ellipse_halp_round.webp');
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
  }
} */

.plan_pricing{
  background-image: linear-gradient(to right,
  rgba(var(--color-white-rgb),0.9),
  rgba(var(--color-white-rgb),0.9)), url('../img/plan_pricing.webp');
  background-size: cover;
  background-position: top;
  min-height: 600px;

  .nav-pills.nav_pills_green{  
    .nav-link{
    border-radius: 25px;
    padding: 10px 20px;
    min-width: 100px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #3B3472;
    }
    .nav-link.active,
    .show>.nav-link{
      background-color: var(--color-green);
      color: var(--color-white);
    }
  }
  .plan_pricing_container{
    margin-top: 50px;
    border: 1px solid var(--color-green);
    padding: 30px;
    border-radius: 20px;
    
    .pricing_card{
      transition: all ease-in-out 0.4s;
      background: transparent;
      padding: 20px;
      border-radius: 20px;
    }

    .pricing_card_header{
      h3{
        font-size: 48px;
        font-weight: 700;
        color: var(--color-green);
        sub{
          font-size: 20px;
          font-weight: 500;
          bottom: 0;
          color: rgba(var(--color-black-rgb),0.5);
        }
      }
    }
    .pricing_card_body{
      min-height: 375px;
      h4{
        font-size: 37px;
        margin-bottom: 15px;
        font-weight: 500;
        color: var(--color-green);
      }
      p{
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
        color: rgba(var(--color-black-rgb),0.5);
      }
      ul{
        height: 1000%;
        margin-bottom: 0px;
      }
      ul li{
        list-style: none;
        position: relative;
        font-size: 20px;
        font-weight: 500;
        color: rgba(var(--color-black-rgb),0.5);
        margin-bottom: 10px;
        &::after{
          content: '';
          position: absolute;
          background-image: url('../img/icons/check_circle.webp');
          width: 25px;
          height: 25px;
          background-size: cover;

          left: -35px;
          top: 5px;
        }
      }
    }
    
    .pricing_card_footer{
      .choose_plan_btn{
        background-color: rgba(var(--color-green-rgb));
        color: var(--color-white);
        border-radius: 25px;
        padding: 10px;
      }
    }

    .pricing_card:hover {
      transform: translateY(-50px);
      box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
      background-color: var(--color-green);
        h4,sub,p,h3,ul li {
        color: var(--color-white);
      }
      ul li::after{
        background-image: url('../img/icons/check_circle_wht.webp');
      }
      .pricing_card_footer{
        margin-bottom: -40px;
        .choose_plan_btn{
          background-color: rgba(var(--color-white-rgb),1);
          color: var(--color-green);
        }
      }
      
    }
  }
}

.testimonial{
  background-image: linear-gradient(to right , 
    rgba(var(--color-green-rgb),0.6) , 
    rgba(var(--color-green-rgb),0.6)) , 
    url('../img/testimonial_bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  .testimonials_slider_card{
    position: relative;
    background: rgba(var(--color-white-rgb),0.2); 
    border: 1px solid rgba(var(--color-white-rgb),0.2); 
    padding: 40px 30px 30px 40px;
    border-radius: 10px;
    &::before{
      content: '';
      position: absolute;
      width: 30px;
      height: 30px;
      background-image: url('../img/icons/quotes.webp');
      background-size: cover;
      left: 10px;
      top: 10px;
      z-index: +9;
    }
    &:hover{
    background: rgba(var(--color-white-rgb),0); 
    border: 1px solid var(--color-white);
    }
    img{
      width: 80px;
      height: 80px;
      object-fit: cover;
      object-position: center;
      margin: 10px auto;
    }
    p{
      font-size: 18px;
      font-weight: 500;
      text-align: left;
      color: var(--color-white);
    }
    h5{
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      color: var(--color-white);
      margin-bottom: 5px;
    }
    small{
      font-size: 18px;
      font-weight: 400;
      text-align: center;
      color: var(--color-white);
    }
  }
  #testimony_carousel .owl-nav [class*=owl-]{
      background: transparent !important;
      color: var(--color-white);
      font-size: 30px;
      margin: 10px;
      opacity: 1;
      &:hover{
          background: transparent !important;
          opacity: 0.6;
      }
  }
}

#clients_carousel.owl-carousel .owl-item img{
    width: auto;
}
.contact_support{
  position: relative;
  padding: 0px;
}
.contact_support img.contact_support_bg_img{
  width: 100%;
  max-height: 350px;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.contact_support_content{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: +9;
  .contact_card{
    padding: 30px;
    box-shadow: 0px 4px 200px 0px #0000001A;
    background-color: var(--color-white);
    border-radius: 5px;
    ul{
      list-style: none;
      padding: 0px;
      display: grid;
      gap: 50px;
    }
    h4{
      font-size: 20px;
      font-weight: 600;
      color: #001431;
      margin: 0px;
      margin-left: 10px;

    }
    a{
      font-size: 15px;
      font-weight: 600;
      text-align: left;
      color: #001431;  
      margin-top: 15px;  
    }
  }

  .support_card{
    padding: 30px 20px 30px 20px;
    gap: 20px;
    border-radius: 20px;
    opacity: 0px;
    background: var(--color-green);
    .form-control{
      background: #FFFFFF;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 600;
    }
    input.form-control{
      height: 45px;
    }
    .form-label{
      color: var(--color-white);
      font-size: 12px;
      font-weight: 600;
    }
    .btn_submit{
      background: #FFFFFF;
      color: #44A12C;
      padding: 10px 30px 10px 30px;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 600;

    }
  }
}


.streamline_bg{
  background-image: url('../img/streamline_bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
  .streamline_cntnt{
    h4{
      font-size: 30px;
      font-weight: 600;
    }
    p{
      font-size: 15px;
      font-weight: 500;

    }
    .qr_code{
      display: flex;
      align-items: center;
      p{
        font-size: 13px;
        font-weight: 400;
        margin-top: 5px;
        margin-bottom: 0px;
      }
      h5{
        font-size: 15px;
        font-weight: 700;
        margin-top: 5px;
        margin-bottom: 0px;
      }
    }
  }
}

.page_banner{
  background-image: url('../img/page_banner.webp');
  background-size: cover;
  background-position: center;
  min-height: 220px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  .page_banner_content{
    text-align: center;
    h1{
      font-size: 40px;
      font-weight: 700;
      color: #FFFFFF;
    }
  }
}

.privacy_policy_content{
  h3{
    font-size: 30px;
    font-weight: 700;
  }
  p,ul li{
    font-size: 18px;
    font-weight: 300;
    color: #292929;
  }
  ul li b{
    font-weight: 700;
  }
}
.privacy_policy_contact{
  i{
    font-size: 25px;
  }
  p{
    font-size: 18px;
    b{
      font-weight: 700;
    }
  }
}
body{
  position: relative;
}

.dropdown.language_btn {
  height: 50px;
  position: absolute;
  right: 10px;
  bottom: 0px;
  z-index: +999;
  .btn{
    width: 80px;
    border-radius: 20px;
    background: #FFFFFF;
    color: #000;
    font-size: 12px;
    font-weight: 600;
  }
  .btn.dropdown-toggle::after{
    position: absolute;
    right: 10px;
    top: 15px;
    color: #000;
    font-size: 17px;
  }
}
.flag_img{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}
















.language_btn{
  position: absolute;
  right: 50px;
  bottom: 0px;
  z-index: +999;
  .lang-select{
    position: absolute;
    bottom: 10px;
    width: 80px;
    ul{
      position: absolute;
      bottom: 20px;
      background-color: #ffffff;
      width: 80px;
      border-radius: 10px;
      overflow: hidden;
    }
  }
  .vodiapicker{
    display: none; 
  }

#a{
  padding-left: 0px;
}

#a img,
.btn-select img{
  width: 20px;
  
}
.btn-select{
  position: relative;
}
.btn-select::after{
  content: '';
  position: absolute;
  width: 0px;
  right: 5px;
  top: 8px;
  border-left: 6px solid transparent;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
}
#a li{
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

#a li:hover{
 background-color: #F4F3F3;
}

#a li img{
  margin: 5px;
}

#a li span, 
.btn-select li span{
  margin-left: 10px;
  color: #000;
}
.b{
  display: none;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  /* border: 1px solid rgba(0,0,0,.15); */
  border-radius: 5px; 
}
.open{
  display: show !important;
}
.btn-select{
  margin-top: 0px;
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.btn-select li{
  list-style: none;
  float: left;
  padding-bottom: 0px;
}
.btn-select:hover li{
  margin-left: 0px;
}
.btn-select:hover{
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
}
.btn-select:focus{
  outline:none;
}
}