/* 
CONTENTS #########################

  1. GENERAL STYLES
      1A. UNIVERSAL
      1B. RR COLOR ELEMENTS
  2. SITE HEADER
      2A. LOGO
      2B. MAIN NAV
      2C. DROPDOWN
      2D. EYEBROW
      2E. MOBILE NAV
  3. REUSED BLOCK TEMPLATES
      3A. WHITE BUTTON
      3B. SLANTED BOTTOM BORDER
      3C. PAGE INTROS 
      3D. IMAGE DIVIDERS
      3E. QUOTES
      3F. CONTENT BAND
      3G. SOCIAL PROOF SECTION
      3H. SECONDARY PAGE BANNER
      3I. PRIMARY CTA (4-COLUMN DESIGN)
      3J. SECONDARY PAGE CTA (2-COLUMN DESIGN)
      3K. SIMPLE CTA (FULL WIDTH BUTTON DESIGN)
  4. HOME
      4A. HOMEPAGE BANNER
      4B. BANNER CONTENT
      4C. APP SECTION
      4D. LOCATIONS
  5. LOCATIONS
      5A. FILTERS
      5B. LOCATIONS LIST
  6. FAQS
  7. SHOP PAGE
  8. APP
  9. COMMERCIAL PAGE
  10. CONTACT
  11. FOOTER
  12. CAREERS
  13. PRIVACY POLICY

################################ */








/* 1. GENERAL (START) ####################################
############################################################## */


/* 1A. UNIVERSAL ########### */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: "Raleway", sans-serif;
  /*overflow-x: hidden;*/
}

p {
  line-height: 1.5;
  color: #222;
}

a {
  color: #0058A4;
}

a:hover {
  color: #1EA5D3
}

table {
  font-size: 13px;
  margin: 30px 0;
}

tr.header-row {
  background-color: #666;
  color: #fff;
}

tr.gray {
  background-color: #fafafa;
}

td {
  border: 1px solid #e1e1e1;
  padding: 15px;
}

ul {
  margin-bottom: 15px;
}

ul li {
  font-size: 15px;
}

ol {
  margin-bottom: 15px;
}

ol li {
  font-size: 15px;
}





.mt-1 {
  margin-top: 170px !important;
}

.mt-2 {
  margin-top: 125px !important;
}

.mt-3 {
  margin-top: 100px !important;
}

.mt-4 {
  margin-top: 50px !important;
}

.mt-5 {
  margin-top: 10px !important;
}

.mb-1 {
  margin-bottom: 0px !important;
}

.mb-2 {
  margin-bottom: 170px !important;
}

.mb-3 {
  margin-bottom: 75px !important;
}

.mb-4 {
  margin-bottom: 100px !important;
}






/* 1B. RR COLOR ELEMENTS ########### */

.yellow {
  color: #FFAC3F !important;
}

.yellow-bg {
  background-color: #FFAC3F !important;
}

.yellow-lte-bg {
  background-color: #FFBC68 !important;
}

.btn-yellow {
  border: 2px solid FFBC68 !important;
  color: FFBC68 !important;
}

.blue {
  color: #0058A4 !important;
}

.blue-bg {
  background-color: #0058A4 !important;
}

.blue-lte-bg {
  background-color: #0967B5 !important;
}

.btn-blue {
  border: 2px solid #0058A4 !important;
  color: #0058A4 !important;
}

.light-blue {
  color: #1EA5D3 !important;
}

.light-blue-bg {
  background-color: #1EA5D3 !important;
}

.light-blue-lte-bg {
  background-color: #30B1DE !important;
}

.btn-light-blue {
  border: 2px solid #1EA5D3 !important;
  color: #1EA5D3 !important;
}

.red {
  color: #E82C2A !important;
}

.red-bg {
  background-color: #E82C2A !important;
}

.red-lte-bg {
  background-color: #F93F3D !important;
}

.btn-red {
  border: 2px solid #E82C2A !important;
  color: #E82C2A !important;
}

button.btn-red:focus {
  outline: none;
}

.green {
  color: #9EC587 !important;
}

.green-bg {
  background-color: #9EC587 !important;
}

.orange-lte-bg {
  background-color: #A6CE8E !important;
}

.btn-green {
  border: 2px solid #9EC587 !important;
  color: #9EC587 !important;
}

.orange {
  color: #FF7544 !important;
}

.orange-bg {
  background-color: #FF7544 !important;
}

.orange-lte-bg {
  background-color: #FF865B !important;
}

.btn-orange {
  border: 2px solid #FF7544 !important;
  color: #FF7544 !important;
}

/* GENERAL (END) ##############################
#########################
###################
#############
#######











/* 2. SITE HEADER (START) ####################################
############################################################## */




/* 2A. LOGO ############################ */

.site-header-logo {
  position: relative;
  z-index: 100;
}

.site-header-logo img {
  height: 125px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .site-header-logo img {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .site-header-logo img {
    height: 80px;
  }
}


/* 2B. MAIN NAV ############################ */

.site-nav {
  float: right;
  width: 100%;
  max-width: 1320px;
}

.site-nav .nav-main {
  border-bottom: 10px solid #fff;
}

.site-nav ul {
  list-style-type: none;
  padding: 0 35px 0 520px;
  margin: 0;
  text-align: right;
}

.site-nav .nav-main ul {
  margin-top: 25px;
}

.site-nav ul li {
  display: inline-block;
  text-align: right;
}

.site-nav .nav-main ul li {
  display: inline-block;
  text-align: right;
  margin-right: 15px;
  margin-bottom: 5px;
}

.site-nav .nav-main ul li a {
  color: #0058A4;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.site-nav .nav-main ul li a:hover {
  color: #1EA5D3 !important;
}

.current {
  color: #E82C2A !important;
}

.nav-main {
  float: right;
}

#mobile-navigation {
  margin-top: 107px;
}

.nav-mobile {
  display: none;
  width: 60px;
  height: 60px;
  float: right;
  position: absolute;
  right: 30px;
  top: 25%;
}

.nav-mobile-btn {
  background-image: url(../assets/nav-mobile-btn.svg);
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center top;
}

.nav-mobile-btn:hover {
  background-position: center bottom;
}

@media (max-width: 768px) {

  #mobile-navigation {
    margin-top: 95px !important;
  }
}

/* 2C. DROPDOWN ############################ */

.dropdown-menu {
  border: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  top: 5px !important;
  background-image: url(../assets/nav-dropdown-bg.svg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 75px;
}

.dropdown-toggle::after {
  opacity: 0.6;
  color: #999;
  padding-left: 10p;
  margin-left: 5px;
}

.dropdown-item {
  font-size: 17px !important;
  font-weight: 500 !important;
  padding: 10px 50px 8px 25px;
}

.dropdown-item:hover {
  color: #1EA5D3 !important;
}

.dropdown-divider {
  margin: 0;
}

.site-header .container-fluid {
  padding: 0;
}

.site-header-wrapper {
  min-height: 107px;
  position: relative;
}




@media (max-width: 768px) {

  .site-header-wrapper {
    min-height: 90px;
  }

}







/* 2D. EYEBROW ############################ */

.nav-eyebrow {
  padding: 0 35px 0 0;
}

.nav-eyebrow a {
  float: right;
}

.eyebrow-button {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  background-color: #FFAC3F;
  border-radius: 0 0 8px 8px;
  padding: 10px 20px 10px 50px;
  background-image: url(../assets/icon-account.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: 10px center;
}

.eyebrow-button:hover {
  background-color: #FFBC68 !important;
}

.social-button {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  padding: 4px 13px 8px 13px;
  background-color: #E82C2A;
  margin-right: 10px;
}

.social-button:hover {
  background-color: #F93F3D !important;
}

a.social-button.cart-btn {
  background-color: #1EA5D3;
}

a.social-button.cart-btn:hover {
  background-color: #5fb9d8 !important;
}

/* 2E. MOBILE NAV ############################ */

.mobile-nav-container {
  display: none;
  float: right;
  width: 100%;
}

.mobile-nav-container p {
  float: right;
  margin: 20px 30px 0 0;
}

.mobile-nav-button {
  width: 60px;
  display: block;
  height: 60px;
  background-image: url(../assets/nav-mobile-btn.svg);
  background-size: 100%;
  background-position: center top;
  position: absolute;
  right: 15px;
  z-index: 200;
}

.mobile-nav-button:hover {
  background-position: center bottom;
}

@media (max-width: 992px) {
  .mobile-nav-container {
    display: block;
  }

  .site-nav {
    display: none;
  }
}

.card-body {
  padding: 80px 70px 70px 70px;
  border-top: none;
  border-bottom: 15px solid #fff;
  border-radius: 0;
  background-image: url(../assets/nav-mobile-bg.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}

.card-body ul {
  width: 100%;
  list-style-type: none;
  background-color: #fff;
  padding: 50px 10%;
  border-radius: 8px;
}

.card-body ul li {
  padding: 0;
  margin: 0 auto 10px auto;
  width: 100%;
}

.card-body ul li a {
  background-color: #FFAC3F;
  text-align: center;
  padding: 25px 30px;
  color: #fff;
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.card-body ul li a:hover {
  background-color: #0058A4 !important;
}

.card-body ul li ul {
  width: 100%;
  list-style-type: none;
  background-color: #fff;
  padding: 0;
  border-radius: 8px;
}

.card-body ul li ul li {
  padding: 0;
  margin: 0 auto 10px auto;
  width: 100%;
}

.card-body ul li ul li a {
  background-color: #f1f1f1;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.card-body ul li ul li a:hover {
  color: #fff;
}

.mobile-social {
  width: 60px !important;
  height: 60px !important;
  margin: 30px auto 0 auto !important;
  border-radius: 14px;
  background-image: url(../assets/icon-insta.svg);
  background-repeat: no-repeat;
  background-size: 35px;
  background-position: center;
}

@media (max-width: 576px) {
  .card-body {
    padding: 60px 40px 40px 40px;
    border-top: none;
    border-bottom: 15px solid #fff;
  }
}

/* SITE HEADER (END) ##############################
#########################
###################
#############
#######











/* 3. REUSED BLOCK TEMPLATES (START) ####################################
############################################################## */


/* 3A. WHITE BUTTON ########### */

a.button-white {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  color: #1EA5D3;
}

a.button-white:hover {
  background-color: #1EA5D3;
  color: #fff !important;
}

.bottom-border-uni {
  z-index: 100;
  position: relative;
  height: 25px;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 170% top;
  background-color: #fff;
}

.bottom-border-uni {
  background-size: 150%;
  background-position: -145% top;
}

@media (max-width: 768px) {
  .bottom-border-uni {
    background-size: 150%;
    background-position: -145% top;
  }
}


/* 3B. SLANTED BOTTOM BORDER */

.bottom-border-uni {
  background-size: 150%;
  background-position: -145% top;
}

@media (max-width: 768px) {
  .bottom-border-uni {
    background-size: 150%;
    background-position: -145% top;
  }
}


/* 3C. PAGE INTROS ########### */

.page-intro-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 10% 20px 10%;
}

.page-intro h1 {
  text-align: center;
  font-size: 48px;
  color: #0058A4;
  font-weight: 700;
}

.page-intro p {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

section.intro-columns .txt-column {
  padding: 0 25px;
  text-align: center;
}


/* 3D. IMAGE DIVERS ########### */

.divider-img-wrapper {
  height: 220px;
  background-repeat: no-repeat;
  background-size: 1700px;
  background-position: center;
  margin: 100px 0 100px 0;
}

.divider-img {
  background: #D64036;
  background: linear-gradient(90deg, rgba(35, 89, 158, 1) 50%, rgba(214, 64, 54, 1) 50%);
}

@media (max-width: 768px) {

  .divider-img-wrapper {
    height: 100px;
    background-size: 750px;
  }
}


/* 3E. QUOTES ########### */

section.quote-full {
  text-align: center;
  padding: 0 15%;
  margin: 40px 0 100px 0;
  margin-bottom: 170px;
}

.quote-full .quote {
  margin: 0 0 15px 0;
  font-size: 36px;
  font-weight: 400;
  color: #888;
}

.quote-full .quote span {
  font-weight: 600;
}

.quote att {
  font-size: 18px;
}


/* 3F. CONTENT BAND ########### */

section.cb-home {
  width: 100%;
  background: #0058A4;
  margin: 150px auto 0 auto;
  position: relative;
}

section.cb-secondary {
  width: 100%;
  padding: 0;
  background: #0058A4;
  margin: 60px auto;
}

/* CB HEADER ################## */

.cb .header-wrapper-outer {
  width: 100%;
  background-color: #0058A4;
  padding: 0;
  z-index: 120;
  position: relative;
}

.cb .header-wrapper {
  position: relative;
  background-color: #0058A4;
  max-width: 1320px;
  margin: 0;
}

.cb .header-top {
  position: relative;
  padding: 25px 40px 20px 250px;
  box-sizing: border-box;
}

.cb .header-icon {
  position: absolute;
  width: 170px;
  height: 170px;
  background-color: #e1e1e1;
  display: block;
  border: 8px solid #fff;
  border-radius: 100px;
  top: 45%;
  left: 140px;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-repeat: no-repeat;
  background-position: center;
}

.cb .header-wrapper h2 {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

.cb .header-bottom {
  height: 15px;
  border-top: 8px solid #fff;
}


@media (max-width: 768px) {
  .cb .header-icon {
    top: 0;
    left: 50%;
    width: 140px;
    height: 140px;
  }

  .header-top {
    padding: 100px 20px 25px 30px !important;
    text-align: center;
  }

  .cb .header-wrapper h2 {
    font-size: 38px;
  }
}

/* CB HEADER ################## */

/*.cb .header-wrapper-outer {
          width:100%;
          background-color: #0058A4;
          
          z-index: 120;
          position: relative;
        }
      .cb .header-wrapper {
          position: relative;
          background-color:#0058A4; 
          max-width:1320px; 
        }
      .cb .header-top {
          position: relative;
          padding: 25px 40px 20px 250px;
          box-sizing: border-box;
        }
      .cb .header-icon {
          position:absolute; 
          width:170px;
          height: 170px;
          background-color: #e1e1e1;
          display: block;
          border: 8px solid #fff;
          border-radius: 100px; 
          top: 45%;
          left: 140px;
          transform: translate(-50%, -50%);
          z-index: 1000;
          background-repeat: no-repeat;
          background-position: center;
        }
      .cb .header-wrapper h2 { 
          color:#fff;
          margin: 0;
          padding: 0;
          font-size: 34px;
          font-weight: 400;
          line-height: 1.2;
        }
      .cb .header-bottom {
          height:15px;
          border-top:8px solid #fff;
            position: absolute;
            z-index: 0;
            background-position: bottom;
        bottom: 0;

        }

      @media (max-width: 768px) {
        .cb .header-icon {
            top: 0;
            left: 50%;
            width:140px;
            height: 140px;
          }
          .header-top {padding: 100px 20px 25px 30px!important;
            text-align: center;
          }
         .cb .header-wrapper h2 { 
            font-size: 38px;
          }
      }*/

/* CB CONTENT ################## */

.cb .content-wrapper-outer {
  padding: 0;
}

.cb .content-wrapper {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  background-color: #f1f1f1;
  outline: 20px solid #fff;
  justify-content: center;
}

.cb .content-text {
  padding: 100px 0 80px 100px;
  align-self: center;
  box-sizing: border-box;
}

.cb .content-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cb .content-text p a {
  color: #0058A4;
  text-decoration: none;
  font-weight: 500;
}

.cb .content-text p a:hover {
  color: #1EA5D3;
  text-decoration: none;
  font-weight: 500;
}

.cb a.content-btn {
  margin: 20px 0 0 0;
  border: solid 2px #0059A3;
}

.cb .content-image {
  background-repeat: no-repeat;
  background-size: cover;
}

.cb .content-image-mobile {
  display: none;
}

@media (max-width: 992px) {
  .content-image {
    display: none;
  }

  .cb .content-image-mobile {
    display: block;
  }

  .content-text {
    width: 100%;
    padding: 60px 30px 40px 30px !important;
    text-align: center;
  }
}


/* 3G. SOCIAL PROOF ########### */

section.sp {
  width: 100%;
  padding: 60px 0 0 0;
  background-image: url(../assets/sp-corner.svg);
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: left bottom;
  text-align: center;
  margin: 100px 0;
}

.sp .row {
  max-width: 1320px;
  margin: 0 auto !important;
  justify-content: center;
}

.sp [class*="col-"] {
  display: flex;
}

.sp-item {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 80px 30px 30px;
  box-sizing: border-box;
  margin-bottom: 100px;
}

.sp-item-icon {
  position: absolute;
  width: 125px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0058A4;
  width: 125px;
  height: 125px;
  border: solid 8px #fff;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
}

.quote-img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 25px;
}

.sp h2 {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin: 0 0 120px 0;
}

.sp .quote {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  font-style: italic;
}

.sp .quote span {
  font-weight: 600;
}

.sp. .att {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}


/* 3H. SECONDARY PAGE BANNERS ########### */

section.banner-secondary {}

.banner-secondary .container-fluid {
  padding: 0;
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.banner-wrapper-secondary {
  width: 100%;
  max-width: 1320px;
  height: 225px;
  margin: 0 auto;
  padding: 0;
  outline: 20px solid #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner-wrapper-secondary img {
  display: none;
  width: 100%;
  padding: 0 !important;
}

.banner-secondary .bottom-border {
  z-index: 100;
  position: relative;
  height: 25px;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 170% top;
  background-color: #fff;
}


@media (max-width: 1320px) {
  .banner-secondary .container-fluid {
    background-color: #fff;
  }
}

@media (max-width: 860px) {
  .banner-wrapper-secondary {
    background-position: 58% center;
  }
}

@media (max-width: 768px) {
  .banner-wrapper-secondary img {
    display: block;
    width: 100%;
    padding: 0 !important;
  }

  .banner-secondary .bottom-border {
    background-size: 150%;
    background-position: -145% top;
  }
}


/* 3I. PRIMARY CTA (4-COLUMN DESIGN) ########### */

section.primary-cta {
  text-align: center;
}

section.version-button .cta-item {
  padding: 0 0 140px 0 !important;
}

section.version-no-button .cta-item {
  padding: 0 0 60px 0 !important;
}

.primary-cta-header {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  color: #E82C2A;
  margin: 0;
}

.primary-cta .row {
  max-width: 1320px;
  margin: 0 auto !important
}

.primary-cta h2 {
  font-size: 42px;
  font-weight: 500;
  color: #E82C2A;
  margin: 0 0 50px 0;
}

.primary-cta [class*="col-"] {
  display: flex;
}

.primary-cta .cta-item {
  margin-bottom: 30px;
  background: #23599f;
  color: #fff;
  border-radius: 8px;
  padding: 0;
  position: relative;
}

.primary-cta .cta-item img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.primary-cta .cta-item h3 {
  color: #fff;
  padding: 30px 20px 10px 20px;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.primary-cta .cta-item p {
  color: #fff;
  padding: 5px 30px 20px 30px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

.primary-cta .btn-container {
  background: #1F6DAE;
  width: 100%;
  padding: 0 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.primary-cta .btn-container a {
  display: block;
  margin: 30px 0;
  background: #fff;
  text-decoration: none;
  color: #38B0D8;
  font-weight: 700;
  line-height: 1.2;
  padding: 15px 20px 15px;
  border-radius: 8px;
  font-size: 18px;
}

.primary-cta .btn-container a:hover {
  color: #E82C2A !important;
}

.primary-cta .bottom-border {

  background: #1F6DAE;
  width: 100%;
  height: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}


/* 3J. SECONDARY CTA (2-COLUMN DESIGN) ########### */

section.secondary-cta {
  text-align: center;
}

.secondary-cta-header {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  color: #E82C2A;
  margin: 0;
}

.secondary-cta .row {
  max-width: 1320px;
  margin: 0 auto !important
}

.secondary-cta h2 {
  font-size: 42px;
  font-weight: 500;
  color: #E82C2A;
  margin: 0 0 50px 0;
  padding: 0 50px;
}

.cta-outer-wrapper {
  justify-content: center;
}

.cta-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 250px;
}

.cta-image img {
  width: 100%;
}

.cta-content-wrapper {}

.cta-content-wrapper row {
  flex-direction: column;
}

.cta-content-wrapper p {
  text-align: center;
  color: #fff;
  font-size: 24px;
}

.cta-content-top {
  padding: 50px 30px 15px 30px;
  background-image: url(../assets/cta-bg-top.svg);
  background-size: 80px;
  background-repeat: no-repeat;
  padding: 60px 30px 20px 30px;
  background-position: right top;
  text-align: center;
  color: #fff
}

.cta-content-bottom {
  background-image: url(../assets/cta-bg-bottom.svg);
  background-size: 80px;
  background-repeat: no-repeat;
  padding: 0 30px 50px 30px;
  background-position: left bottom;
}


@media (max-width: 992px) {
  .secondary-cta .row {
    max-width: 100%;
    margin: 0 auto !important
  }

  .cta-content-wrapper {
    padding: 0;
  }

  .cta-content-wrapper p {
    font-size: 20px;
  }

  .cta-image {
    background-position: center top;
    min-height: 250px;
  }
}


/* 3K. SIMPLE CTA (FULL-WIDTH BUTTON DESIGN) ########### */

section.simple-cta {
  text-align: center;
  margin-top: 50px;
  background-color: #f1f1f1;
  padding: 80px 0;
}

.simple-cta a {
  border-radius: 8px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  padding: 20px 80px;
  display: inline-block;
  max-width: 80%;
}

.simple-cta a:hover {
  background-color: #0058A4 !important;
}


/* REUSED BLOCK TEMPLATES (END) ##############################
#########################
###################
#############
#######











/* 4. HOMEPAGE (START) ####################################
############################################################## */


/* 4A. HOMEPAGE BANNER ########### */

section.banner-home {}

.banner-home .container-fluid {
  padding: 0;
  background-color: #f1f1f1;
  background-image: url(../assets/banner-home-bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

.banner-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  outline: 20px solid #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../assets/banner-home.jpg);
}

.banner-wrapper img {
  display: none;
  width: 100%;
  padding: 0 !important;
}

.banner-home .bottom-border {
  z-index: 100;
  position: relative;
  height: 25px;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 170% top;
  background-color: #fff;
}


@media (max-width: 1320px) {
  .banner-home .container-fluid {
    background-color: #fff;
  }
}

@media (max-width: 860px) {
  .banner-wrapper {
    background-position: 58% center;
  }
}

@media (max-width: 768px) {
  .banner-wrapper img {
    display: block;
    width: 100%;
    padding: 0 !important;
  }

  .banner-home .bottom-border {
    background-size: 150%;
    background-position: -145% top;
  }

}


/* 4B. HOMEPAGE BANNER CONTENT ########### */

.banner-content-container {
  background-color: #fff;
  padding: 0;
  margin: 80px 0;
  width: 40%;
}

.banner-content-top {
  padding: 20px 30px 15px 40px;
}

.banner-content-center {
  margin: 8px 0;
  padding: 20px 30px 15px 40px;
}

.banner-content-bottom {
  padding: 25px 30px 25px 40px;
}

.banner-content-container h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.banner-content-container h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.banner-content-container p {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.banner-btn-wrapper {
  display: flex;
  gap: 20px;
}

.banner-btn-wrapper a {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.banner-btn-wrapper a:hover {
  color: #0058A4 !important;
}

@media (max-width: 930px) {
  .banner-btn-wrapper {
    flex-direction: column;
  }

  .banner-btn-wrapper a {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner-content-container {
    width: 100%;
    text-align: center;
  }

  .banner-content-container {
    margin: 0;
    width: 100%;
  }

  .banner-content-top {
    padding: 20px 30px 15px 40px;
  }

  .banner-content-center {
    margin: 8px 0;
    padding: 20px 30px 15px 40px;
  }

  .banner-content-bottom {
    padding: 25px 20% 25px 20%;
  }
}


/* HOMEPAGE APP SECTION #################################### */


section.app-home {
  width: 100%;
  background-color: #f1f1f1;
  padding: 0;
  background-image: url(../assets/sp-corner.svg);
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: left bottom;
  text-align: center;
  margin: 0;
}

.app-home-wrapper {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  background-color: #f1f1f1;
  outline: 20px solid #fff;
}

.app-home [class*="col-"] {
  display: flex;
}

.app-home .row {
  max-width: 1320px;
  margin: 0 auto 0 auto !important;
  justify-content: center;
}

.app-image-column div {
  width: 100%;
  align-self: flex-end;
}

.app-image-column img {
  width: 100%;
  margin: 0 auto;
  align-self: flex-end;
}

.app-card-wrapper {
  margin-bottom: 40px;
}

.app-card {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 80px 30px 30px;
  box-sizing: border-box;
}

.app-card-icon {
  position: absolute;
  width: 125px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0058A4;
  width: 125px;
  height: 125px;
  border: solid 8px #fff;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
}

.app-card h4 {
  font-size: 28px;
  font-weight: 600;
}

.app-card p {
  font-size: 18px;
}

.app-home .btn-wrapper {
  width: 100%;
}

.app-home .btn-wrapper a {
  margin: 0 auto 0;
  max-width: 100%;
}

.app-store-wrapper {
  width: 100%;
  margin: 10px 0 40px 0;
}

.app-store-wrapper img {
  max-width: 200px;
}

@media (max-width: 800px) {
  .app-image-column img {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .app-image-column img {
    width: 60%;
  }

  .app-home-wrapper {
    flex-direction: column-reverse;
  }

  .app-image-column img {
    width: 60%;
  }
}




/* H0MEPAGE (END) ##############################
#########################
###################
#############
#######









/* 5A. FILTERS ########### */














/* 5. LOCATIONS (START) ####################################
############################################################## */


/* 5A. FILTERS ########### */

section.loc-filter {
  margin-bottom: 40px;
  margin: 0 0 40px 0;
}

.loc-filter .row {
  margin-bottom: 40px;
  justify-content: center;
  display: inline;
}

.loc-filter .search-wrapper {
  width: 100%;
  text-align: center;
}

.locations-form-wrapper form {
  margin-bottom: 10px !important
}

.locations-form-wrapper .form-group {
  float: left;
  margin: 0 5px;
}

.locations-form-wrapper .form-group {
  float: left;
  margin: 0 5px;
}

.locations-form-wrapper input {
  padding: 30px 0 30px 20px;
  margin-bottom: 20px;
}

.locations-form-wrapper {
  width: 80%;
  margin: 0 auto 0 auto;
  max-width: 1320px;
}

.locations-form-wrapper button {
  float: left;
  text-align: center;
  font-size: 18px;
  padding: 15px 45px;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  border: 2px solid #0058A4;
  background-color: #0058A4;
}

.locations-form-wrapper form {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  align-items: start;
}

.loc-filter .options-wrapper {
  width: 100%;
  text-align: center;
}

.loc-filter p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.loc-filter a.button.search {
  font-size: 18px;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  border: 2px solid #0058A4;
  background-color: #0058A4;
}

.loc-filter a.button {
  font-size: 18px;
  padding: 12px 25px;
  margin: 0 10px 20px 10px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #999;
  color: #666;
  display: inline-block;
}

.search-wrapper a.button.search {
  border: 2px solid #0058A4;
  background-color: #0058A4;
  color: #fff;
}

.search-wrapper a.button.search:hover {
  border: 2px solid #1EA5D3;
  background-color: #1EA5D3;
  color: #fff;
}

.search-wrapper a.button:hover {
  border: 2px solid #1EA5D3;
  color: #1EA5D3;
}

.options-wrapper a.button {
  padding-left: 60px !important;
  background-image: url(../assets/icon-star-gray.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: 15px center;
}

.options-wrapper a.button:hover {
  background-image: url(../assets/icon-star-light-blue.svg);
  border: 2px solid #1EA5D3;
  color: #1EA5D3;
}

.options-wrapper a.active {
  color: #fff;
  background-image: url(../assets/icon-star.svg);
  background-color: #1EA5D3;
  border: 2px solid #1EA5D3;
  ;
}

.options-wrapper a.active:hover {
  background-image: url(../assets/icon-star.svg);
  border: 2px solid #0058A4;
  background-color: #0058A4;
  color: #fff;
}


/* 5B. LOCATIONS LIST ########### */

section.locations {
  width: 100%;
  padding: 80px 0 0 0;
  text-align: center;
  margin: 20px 0;
  background-color: #f1f1f1;
}

.locations .row {
  max-width: 1320px;
  margin: 0 auto !important;
}

.locations [class*="col-"] {
  display: flex;
}

.locations-item {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 0 90px 0;
  box-sizing: border-box;
  margin-bottom: 100px;
}

.locations-icons {
  display: flex;
  background-image: url(../assets/locations-icons-bg.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 40px;
  justify-content: center;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.locations-icons img {
  width: 30px;
  height: 30px;
  justify-content: center;
  display: flex;
  margin: 0 auto;
}

.locations-item h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  padding: 0 5%;
}

.locations-item p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  padding: 0 4%;
  margin-bottom: 0;
}


@media (max-width: 700px) {

  .icon-wrapper {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .locations-item {
    margin-bottom: 50px
  }
}

/* LOCATIONS (END) ##############################
#########################
###################
#############
#######











/* 6. FAQS (START) ####################################
############################################################## */


.faq-wrapper {
  padding: 60px 50px 125px 50px;
}

.faq-wrapper h2 {
  font-size: 26px;
  color: #999;
  margin: 50px 0 20px 0;
  font-weight: 500;
}

.faq-question {
  position: relative;
}

.faq-question a {
  color: #666;
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 18px 70px 18px 30px;
  margin: 6px 0;
  text-decoration: none;
  background-repeat: no-repeat;
  background-image: url(../assets/faq-question-btn-default.svg);
  background-position: center right 20px;
  background-size: 30px;
}

.faq-question a:hover {
  background-image: url(../assets/faq-question-btn-hover-yellow.svg);
  color: #FFAC3F;
}

.faq-item.active .faq-open a {
  color: #FFAC3F;
  display: block;
  width: 100%;
  margin: 6px 0;
  font-weight: 600;
  background-image: url(../assets/faq-question-btn-open.svg) !important;
}

.faq-item.active .faq-open a:hover {
  background-image: url(../assets/faq-question-btn-hover-gray.svg) !important;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer {
  padding: 18px 50px 18px 30px;
  background-color: #fff;
  display: none;
}

.faq-image {
  float: right;
  width: 80%;
  margin: 40px auto 0 auto;
}

@media (max-width: 768px) {

  .faq-wrapper {
    padding: 60px 30px;
  }
}

/* FAQS (END) ##############################
#########################
###################
#############
#######











/* 7. SHOP (START) ####################################
############################################################## */


.shop-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 4% 0 4%;
}

.shop-item {
  padding: 0 3%;
  margin-bottom: 80px;
}

.details-wrapper {
  margin-top: 30px;
}

.shop-item img {
  width: 100%;
}

.shop-item h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.shop-item p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.shop-item h3 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}

.popup-content .link-wrapper button,
.popup-content .link-wrapper input {
  background-color: #fff;
  color: #999;
  border: 2px solid #d3d3d3;
  border-radius: 8px;
  padding: 15px 15px;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  flex-wrap: nowrap;
  margin: 0 7px 15px 7px;
}

.link-wrapper {
  flex-wrap: nowrap;
  margin: 30px 0;
  justify-content: center;
}

@media (max-width: 576px) {

  .link-wrapper {
    flex-wrap: wrap;
  }
}

/* SHOP (END) ##############################
#########################
###################
#############
#######












/* 8. APP (START) ####################################
############################################################## */


section.app-main {
  width: 100%;
  padding: 20px 0 0 0;
  text-align: center;
  margin: 60px 0 50px 0;
  background-color: #f1f1f1;
}

.app-img-col {
  padding: 30px 0 30px 0;
}

.app-img-col img {
  width: 110%;
  float: right;
}

.app-text-col {
  padding: 30px 50px 100px 0;
}

.app-text-col h2 {
  font-size: 60px;
  font-weight: 500;
}

.app-text-col h3 {
  font-size: 70px;
  font-weight: 800;
}

.app-text-col h4 {
  font-size: 60px;
  font-weight: 500;
}

.app-btn {
  margin-top: 70px;
}

.app-btn a {
  margin-top: 70px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  padding: 20px 80px;
  font-size: 22px;
  f ont-weight: 500;
}

.app-stores {
  margin-top: 40px;
}

.app-stores img {
  max-width: 275px;
}

@media (max-width: 992px) {
  .app-text-col h2 {
    font-size: 50px;
  }

  .app-text-col h3 {
    font-size: 60px;
  }

  .app-text-col h4 {
    font-size: 50px;
    f
  }

  .app-btn {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .app-text-col {
    padding: 30px 30px 20px;
  }

  .app-img-col {
    padding: 30px 0 40px 0;
  }

  .app-img-col img {
    width: 75%;
    float: none;
  }
}



section.app-steps {
  width: 100%;
  padding: 70px 0 80px 0;
  margin: 150px 0 50px 0;
  background-color: #f1f1f1;
}

.app-steps h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 70px 0;
  padding: 0 50px;
}

.app-steps .container {
  padding: 30px 50px 0 50px;
  max-width: 1200px;
}

.row.step {
  margin-bottom: 40px;
}

.app-steps .step-title {
  padding: 20px 20px 22px 40px;
  background-image: url(../assets/app-steps-bg.svg);
  background-repeat: no-repeat;
  background-position: center right;
  align-content: center;
}

.app-steps .instructions {
  background-color: #fff;
  padding: 20px 40px 22px 30px;
  align-content: center;
}

.app-steps .step-title p {
  color: #fff;
  font-size: 24px;
  margin: 0;
}

.app-steps .instructions p {
  color: #666;
  font-size: 18px;
  margin: 0;
}


@media (max-width: 992px) {

  section.app-steps {
    padding: 70px 0 30px 0;
  }

  .app-steps .step-title {
    padding: 25px 100px 20px 30px;
  }

  .app-steps .instructions {
    background-color: #fff;
    padding: 25px 40px 20px 30px;
  }
}

/* APP (END) ##############################
#########################
###################
#############
#######












/* 9. COMMERCIAL PAGE (START) ####################################
############################################################## */

section.commercial-logos .row {
  justify-content: center;
  gap: 60px;
}

/* COMMERCIAL PAGE (END) ##############################
#########################
###################
#############
#######











/* 10. CONTACT (START) ####################################
############################################################## */

section.contact {
  width: 100%;
  padding: 60px 0 0 0;
  text-align: center;
  margin: 20px 0 50px 0;
  background-color: #f1f1f1;
}

.contact h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 60px 0;
}

form {
  margin-bottom: 50px;
}

.contact-form-wrapper input {
  padding: 30px 30px 30px 20px;
  margin-bottom: 20px;
}

.contact-form-wrapper textarea {
  padding: 15px 0 0 20px;
}

.contact-form-wrapper {
  width: 50%;
  margin: 0 auto 100px auto;
  max-width: 992px;
}

.contact-form-wrapper button {
  text-align: center;
  font-size: 18px;
  padding: 12px 45px;
  margin: 40px 0 0 0;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  border: 2px solid #0058A4;
  background-color: #0058A4;
}

.contact-form-wrapper button:hover {
  border: 2px solid #1EA5D3;
  background-color: #1EA5D3;
  color: #fff;
}

.contact-intro .row {
  margin: 30px 0;
}

.contact-intro a.phone {
  padding-left: 50px;
  background-image: url(../assets/icon-phone-red.svg);
  background-repeat: no-repeat;
  background-position: 13px center;
  background-size: 55px;
  color: #333;
  padding: 15px 10px 15px 70px;
  margin: 0 25px;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
}

.contact-intro a.email {
  padding-left: 50px;
  background-image: url(../assets/icon-email.svg);
  background-repeat: no-repeat;
  background-position: 13px center;
  background-size: 55px;
  color: #1EA5D3;
  padding: 15px 10px 15px 80px;
  margin: 0 25px;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
}

.contact-intro a:hover {
  color: #0058A4;
}

@media (max-width: 992px) {

  .contact-form-wrapper {
    width: 70%;
  }
}

@media (max-width: 576px) {

  .contact-form-wrapper {
    width: 85%;
  }
}

/* CONTACT (END) ##############################
#########################
###################
#############
#######











/* 11. CONTACT (START) ####################################
############################################################## */


section.footer {
  margin-top: 150px;
  border-top: 10px solid #fff;
  /*border-bottom:10px solid #fff;*/
  outline: 10px solid #E82C2A;
  background-image: url(../assets/footer-logo-extended.svg);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

.footer-wrapper {
  padding: 0 0 10px 0;
  min-height: 300px;
}

.footer-wrapper .row.nav {
  align-items: flex-start;
  justify-content: right;
  padding: 40px 0 20px 200px;
}

.footer-wrapper .row.nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-wrapper.row.nav ul li {
  margin-bottom: 5px;
}

.footer-wrapper .row.nav ul li a {
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}

.footer-wrapper .row.nav ul li a:hover {
  color: #FFBC68;
  text-decoration: none;
}

.footer-wrapper .row.button {
  align-items: flex-start;
  justify-content: right;
  padding: 20px 0 20px 200px;
}

.footer-wrapper .row.button a {
  padding-left: 50px;
  background-image: url(../assets/icon-phone-red.svg);
  background-repeat: no-repeat;
  background-position: 3px center;
  background-size: 40px;
}

.footer-wrapper .row.button a:hover {
  color: #FF7544 !important;
  background-color: #fff !important;
}

.logo-wrapper {
  display: none;
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
  outline: 10px solid #E82C2A;
  margin-top: 50px;
}

.footer .bottom-text {
  align-items: flex-start;
  justify-self: end;
  padding: 50px 0 0;
}

.footer .bottom-text p {
  color: #fff;
  font-size: 12px;
  text-align: right;
}

.footer .bottom-text a {
  color: #fff !important;
  text-decoration: underline;
}

@media (max-width: 768px) {

  section.footer {
    background-image: none;
    margin: 0;
    outline: none;
    border: none;
    margin-top: 12px;
  }

  .footer-wrapper .row.nav {
    align-items: flex-start;
    justify-content: center;
    padding: 60px 0 20px 0px;

  }

  .footer-wrapper .row.button {
    align-items: flex-start;
    justify-content: right;
    padding: 20px 0 20px 0;
  }

  .logo-wrapper {
    display: block;
    outline: none;
    border: none;
  }

  .button-wrapper {
    display: flex;
    justify-content: center;
  }

  .footer .bottom-text {
    justify-self: center;
  }

  .footer .bottom-text p {
    text-align: center;
  }
}

/* FOOTER (END) ##############################
#########################
###################
#############
####### 











/* 12. CAREERS (START) ####################################
############################################################## */


section.careers-link {
  text-align: center;
  margin-top: 50px;
  background-color: #f1f1f1;
  padding: 80px 0;
}

.careers-btn a {
  border-radius: 8px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  padding: 20px 80px;
  display: inline-block;
  max-width: 80%;
}

.careers-btn a:hover {
  background-color: #0058A4 !important;
}

/* CAREERS (END) ##############################
#########################
###################
#############
####### 











/* 13. PRIVACY POLICY (START) ####################################
############################################################## */


section.privacy h1 {
  display: inline-block;
  width: 100%;
  font-size: 32px;
  margin: 40px 0 15px 0;
}

section.privacy h2 {
  display: inline-block;
  width: 100%;
  font-size: 22px;
  margin-top: 10px;
}

section.privacy h3 {
  font-weight: 600;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  margin-top: 14px;
}

section.privacy p {
  display: inline-block;
  width: 100%;
  font-size: 15px;
  margin-bottom: 12px;
}

section.privacy .row {
  margin: 30px 10%;
}

/* PRIVACY POLICY (END) ##############################
#########################
###################
#############
####### */


.shop-item-wrap {
  cursor: pointer;
}


/* Popup */
.shop-popup .modal .modal-dialog {
  background: #fff;
  max-width: 1080px;
  width: 90%;
  display: flex;
  padding: 70px 72px 85px;
  position: relative;
}

.shop-popup .modal .modal-dialog .modal-content {
  border: none;
  box-shadow: none;
}

.shop-popup .modal .modal-dialog .modal-content .modal-body {
  padding: 0px;
}

.shop-popup .modal .modal-dialog .modal-content .modal-body .popup {
  display: flex;
}

.popup .popup-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 370px;
}

.popup .popup-image img {
  max-width: 100%;
}

.popup .popup-content {
  flex: 1;
  padding-left: 80px;
}

.popup .popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0px;
}

.popup .popup-close img {

  max-width: 100%;
}

.popup .popup-content h2 {
  font-style: Bold;
  font-size: 32px;
  line-height: 100%;
  color: #000000;
}

.popup .popup-content p {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: #333333;
  margin: 10px 0 20px;
}

.popup .price {
  font-weight: 600;
  font-size: 42px;
  line-height: 100%;
  margin-bottom: 15px;
  color: #E82C2A;
}

@media (min-width: 768px) {
  .popup .options-wrap .options:first-child {
    margin-right: 30px;
  }
}

.popup .options {
  display: flex;
  /* margin-bottom: 15px; */
  align-items: center;
}

.popup .options span {
  color: #333333;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  margin-right: 10px;
}

.popup .color-btn {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
  border: none;
}

/* 
.popup .size-btn {
  padding: 0px;
  border: none;
  margin-right: 5px;
  text-transform: uppercase;
  width: 38px;
  height: 38px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  background: #E0E0E0;
}

.popup .size-btn.active {
  background: #999;
  color: white;
} */

.popup .qty-add {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.popup .qty-btn {
  padding: 8px 15px;
  background: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

.popup .add-to-cart {
  padding: 8px 20px;
  border: 2px solid #e22626;
  background: none;
  color: #e22626;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.popup .add-to-cart:hover {
  background: #e22626;
  color: #fff;
}

.popup ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.popup ul li {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #666666;
}

@media (max-width: 767px) {
  .popup {
    width: 100%;
    flex-direction: column;

  }

  .shop-popup .modal .modal-dialog {
    padding: 60px;
    margin: 0px;
    width: 100%;
  }


  .popup .popup-content {
    padding: 30px 0px 0px;
    text-align: center;
  }

  .options-wrap {
    flex-direction: column;
  }

  .popup .popup-content p,
  .popup .popup-content h2 {
    text-align: center;
  }

  .popup .options {
    flex-direction: column;
    margin: 0px 0px 20px;
  }

  .popup .options span {
    margin: 0px 0px 10px;
  }
}

.size-options .size-btn {
  padding: 0px;
  border: none;
  margin-right: 5px;
  text-transform: uppercase;
  width: 38px;
  height: 38px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  background: #E0E0E0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

.size-options .size-btn:hover {
  background: #999;
  color: #fff;
}

.size-options input[type="radio"] {
  display: none;
}

.size-options input[type="radio"]:checked+.size-btn {
  background: #999;
  color: #fff;
}









.checkout-section {
  max-width: 1320px;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.checkout-section .title-copy h2 {
  font-size: 40px;
  color: #0058A4;
  font-weight: 700;
  margin-bottom: 20px;
}

.Billing-info h4,
.additional-info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}



.checkout-section input[type="text"],
.checkout-section input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkout-section label {
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.checkout-section .btn {
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #0059A3;
  border: none
}



/*-------show-cart start-------*/
.cart-wrap .head-cart {
  margin: 56px 0px 70px;
}

.cart-wrap .head-cart h2 {
  text-align: center;
  font-size: 48px;
  color: #0058A4;
  font-weight: 700;
  margin: 0px;
}



.cart-from-wrap {
  max-width: 1296px;
  margin: auto;
}

.cart-from-wrap .form-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;

}

/* Left Section */
.cart-from-wrap .form-wrap .cart-items {
  flex: 2;
}

.cart-from-wrap .form-wrap .cart-items h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 20px;
}

.cart-from-wrap .form-wrap .cart-items .cart-item {
  display: flex;
  align-items: flex-start;
  border: 1px solid #CACACA;
  padding: 15px;
  background: #fff;
}

@media (min-width: 768px) {
  .cart-from-wrap .form-wrap .cart-items .cart-item:last-child {
    border-top: 0px;
  }
}

.cart-from-wrap .form-wrap .item-img {
  width: 140px;
  margin-right: 15px;
}

.cart-from-wrap .form-wrap .item-img img {
  width: 100%;
  border-radius: 5px;
}


.cart-from-wrap .form-wrap .item-img .remove-btn {
  border: 2px solid #E82C2A;
  color: #E82C2A;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
  padding: 8px 10px;
  margin-top: 15px;
  display: block;
  width: 114px;
}



.cart-from-wrap .form-wrap .item-img .remove-btn:hover {
  background: red;
  color: #fff;
}




.cart-from-wrap .form-wrap .cart-items .cart-item .details-wrap {
  width: 70%;
}


.details-wrap .item-details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cart-from-wrap .form-wrap .cart-items .details-wrap p {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 0px;
}

.cart-from-wrap .form-wrap .cart-items .details-wrap p strong {
  display: block;
}

.quantity-price {
  margin: 15px 0px;
}

.quantity-price .form-group {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0px;
}

.quantity-price .form-group label {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  margin: 0px;
}

.quantity-price .form-group input {
  width: 90px;
}

.cart-from-wrap .form-wrap .cart-items .details-wrap .quantity-price .price {
  color: #0059A3;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  text-align: right;
}


/* Right Section */
.order-summary-main {
  flex: 1;
}

.order-summary-main h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 20px;
}


.order-summary-main .summary-block {
  border: 1px solid #CACACA;
  background: #fff;
}

.order-summary-main .summary-block .summary-wrap {
  padding: 20px 22px 10px;
}



.order-summary-main .summary-block .summary-wrap .summary-row {
  display: flex;
  justify-content: space-between;
}

.order-summary-main .summary-block .summary-wrap .summary-row h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  color: #333333;
  margin: 0px 0px 4px;
}

.order-summary-main .summary-block .summary-wrap .summary-row h5 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #333333;
  margin: 0px 0px 4px;
}

.order-summary-main .summary-block .summary-wrap .summary-row p {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  color: #666666;
  margin: 0px;
}

.order-summary-main .summary-block .summary-row-total {
  border-top: 1px solid #CACACA;
  /* border-bottom: 1px solid #CACACA; */
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
}

.order-summary-main .summary-block .summary-row-total p {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: #333333;
  margin: 0px;
}

.order-summary-main .summary-block .summary-row-total span {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: #0059A3;
}


.order-summary-main .checkout-paypal {
  border: 1px solid #CACACA;
  border-top: 0px;
  padding: 16px 22px;
}

.order-summary-main .checkout-paypal .checkout-btn {
  width: 100%;
  padding: 10px;
  background: #0059A3;
  border: none;
  color: #fff;
  border-radius: 5px;
  margin: 0px;
  transition: 0.3s;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.order-summary-main .checkout-paypal .checkout-btn:hover {
  background: #005fa3;
}

.order-summary-main .checkout-paypal span {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 140%;
  color: #666666;
  text-align: center;
  margin: 10px auto 12px;
  width: 100%;
  display: block;
}

.order-summary-main .checkout-paypal .pay-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.order-summary-main .checkout-paypal .pay-buttons a {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  max-width: 90px;
  background: transparent;
  text-align: center;
}

.promo {
  margin-top: 50px;
}

.promo p {
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 100%;
  margin-bottom: 15px;
}

.promo input {
  width: 100%;
  padding: 8px;
  border: 2px solid #CACACAcc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.promo button.redeem {
  border: 2px solid #666666;
  width: 114px;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  background: transparent;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #666666;

}

/* Responsive */
@media (max-width: 768px) {
  .form-wrap {
    flex-direction: column;
  }
}


/*-------show-cart end-------*/




/*-------location-flip-------*/

.location-flip {
  width: 100%;
  min-height: 286px;
  perspective: 1000px;
  position: relative;
  margin-bottom: 100px;
}

.location-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.5s;
}

.location-flip:hover .location-flip-inner {
  transform: rotateY(180deg);
}

/* Front */
.locations-item,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* Front */
.locations-item {
  z-index: 2;
}

/* Back */
.flip-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 25px;
  border-top-right-radius: 5px;
  background: url(../assets/cb-bottom-border-red.svg) no-repeat;
  background-size: cover;
}


a.find-cta {
  margin: 15px 0px 0px;
}

.flip-card-back a,
.find-cta {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #1EA5D3;
  border-radius: 6px;
  padding: 10px 16px;
  margin: 0px 0px 24px 0;
  color: #1EA5D3;
  transition: 0.3s;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  text-decoration: none
}



.flip-card-back a:hover,
.find-cta:hover {
  background: #00a0df;
  color: #fff;
}

.hours {
  text-align: center;
}

.hours p {
  margin: 0px;
  font-size: 14px;
  line-height: 140%;
  padding: 14px 20px;
  border: none;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* .checkout-section .btn:hover {
  background-color: #1b5e20;
} */

@media (max-width: 767px) {
  .cart-wrap {
    padding-bottom: 120px;
  }

  .cart-wrap .head-cart h2 {
    font-size: 36px;
  }

  .cart-from-wrap .form-wrap {
    max-width: 300px;
    gap: 0px;
  }

  .cart-from-wrap .form-wrap .cart-items .cart-item {
    flex-direction: column;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    padding: 40px 0px 52px;
    position: relative;
    margin-bottom: 40px;
  }

  .cart-from-wrap .form-wrap .item-img .remove-btn {
    position: absolute;
    bottom: 0px;
  }

  .cart-from-wrap .form-wrap .item-img {
    width: 100%;
    margin: 0px 0px 25px;
  }

  .cart-from-wrap .form-wrap .cart-items .cart-item .details-wrap {
    width: 100%;
  }

  .quantity-price {
    flex-wrap: nowrap;
    align-items: center;
  }

  .quantity-price div {
    padding: 0px;
  }

  .quantity-price .form-group input {
    width: 40px;
  }

  .cart-from-wrap .form-wrap .cart-items .details-wrap .quantity-price .price {
    font-size: 16px;
  }

  /* .checkout-promo {
    display: flex;
    flex-direction: column-reverse;
  } */
  .order-summary-main {
    display: flex;
    flex-direction: column-reverse;
  }

  .cart-wrap {
    overflow: hidden;
  }

  .promo {
    margin: 0px 0px 35px;
    position: relative;
    padding: 30px 0px;
  }

  .promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1000%;
    height: 1px;
    background: #CACACA;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .promo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1000%;
    height: 1px;
    background: #CACACA;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .order-summary-main .summary-block {
    border-left: 0px;
    border-right: 0px;
  }

  .order-summary-main .checkout-paypal {
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    padding: 30px 0px 0px;
  }

  .order-summary-main .summary-block .summary-wrap,
  .order-summary-main .summary-block .summary-row-total {
    padding: 18px 0px;
  }

  .order-summary-main .summary-block .summary-wrap .summary-row h4 {
    margin: 0px 0px 10px;
  }

}