@charset "UTF-8";
/* fonts */
/* colors */
html.no-scroll {
  overflow: hidden !important;
}

/* header */
header .grid {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 0 1rem;
}
header .grid .brand {
  margin: 0;
  margin-right: auto;
}
header .grid .nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .grid .nav li {
  margin: 0;
}
header .grid .nav li a {
  font-size: 0.8125em;
  color: #e4e7eb;
}
header .grid .nav li a:hover {
  color: #83838f;
  text-decoration: none;
}

/* footer */
footer #footer-wrapper {
  padding: 1.75em 0;
}
@media (min-width: 768px) {
  footer #footer-wrapper {
    padding: 3.75em 0 1.75em;
  }
}
footer .footer-ex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  footer .footer-ex {
    flex-direction: row;
  }
}
footer .footer-ex .footer-language {
  width: 185px;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  footer .footer-ex .footer-language {
    margin-right: auto;
    margin-bottom: 0;
  }
}
footer .footer-ex .footer-language .dropdown-hover-toggle {
  padding: 8px 12px 7px;
}
footer .footer-ex .footer-language .dropdown-hover-toggle:hover {
  background-color: #504d56;
}
footer .footer-ex .footer-language .icon-flag {
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 10px;
  width: 20px;
  height: 14px;
}
footer .footer-ex .nav-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-ex .nav-footer li {
  margin: 0.5rem;
}
footer .footer-ex .nav-footer li a {
  font-size: 0.8125em;
}

/* navbar */
.navbar {
  background-color: #f1f5f9;
}
.navbar .grid {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
}
@media (min-width: 768px) {
  .navbar .grid {
    height: 64px;
  }
}
.navbar .grid .brand {
  margin: 0;
  margin-right: auto;
}
.navbar .grid .nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navbar .grid .nav li {
  line-height: 1;
  margin: 0.5rem;
}
@media (max-width: 768px) {
  .navbar .grid .nav li.hide-xs {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar .grid .nav li {
    margin: 1rem;
  }
}
@media (min-width: 992px) {
  .navbar .grid .nav li {
    margin: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .navbar .grid .nav li {
    margin: 2.5rem;
  }
}
.navbar .grid .nav li a {
  display: flex;
  padding: 0.5rem;
  font-size: 0.7125em;
  font-family: "SST W01 Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #2f353d;
  text-align: center;
}
@media (min-width: 768px) {
  .navbar .grid .nav li a {
    font-size: 0.8125em;
  }
}
.navbar .grid .nav li a:hover {
  color: #83838f;
  text-decoration: none;
}

/* buttons */
.btn {
  font-size: 15px;
  margin-top: 1rem;
  padding: 15px 20px;
}
.btn.btn-orange {
  background-color: #F25529;
}
.btn.btn-orange:hover {
  background-color: #D94C25;
}
.btn.btn-orange:active {
  background-color: #D94C25;
}
.btn.btn-orange:focus {
  outline: none;
  background-color: #D94C25;
}
.btn.btn-medium {
  font-size: 14px;
  min-width: 150px !important;
  padding: 12px 15px;
}
.btn.btn-small {
  font-size: 12px;
  min-width: 150px !important;
  padding: 12px 15px;
}

/* section-hero */
.section-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
}
@media (min-width: 768px) {
  .section-hero {
    height: 600px;
  }
  .section-hero.short {
    height: 350px;
  }
  .section-hero.short .hero-image {
    background-position: left center;
  }
  .section-hero.short .copy {
    width: 400px !important;
  }
}
.section-hero .hero-image {
  width: 100%;
  padding-bottom: 60%;
  background-color: #2f353d;
  background-image: url("../pics/hero-mobile.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .section-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-bottom: 0;
    background-image: url("../pics/hero-desktop.jpg");
  }
}
.section-hero .grid {
  position: relative;
  z-index: 5;
  padding: 1rem 0;
}
.section-hero .grid .copy {
  margin: auto;
  width: 93.75%;
  text-align: center;
}
@media (min-width: 768px) {
  .section-hero .grid .copy {
    margin: 0;
    width: 40%;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .section-hero .hero-title {
    font-size: 1.8em;
  }
}
@media (min-width: 768px) {
  .section-hero .hero-title {
    margin-bottom: 18px;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .section-hero .hero-text {
    color: #fff;
  }
}
.section-hero .eyebrow {
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section-hero .eyebrow {
    color: #fff;
  }
}

/* sections */
.section {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}
.section + .section {
  padding-top: 0;
}
.section .section-title {
  text-align: center;
}

/* section-featured */
.section-featured .featured-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .section-featured .featured-row {
    flex-direction: row;
    padding: 0;
  }
}
.section-featured .featured-row .featured-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}
.section-featured .featured-row .featured-tile.wide {
  height: 300px;
}
@media (min-width: 768px) {
  .section-featured .featured-row .featured-tile.wide {
    width: 65%;
    height: 400px;
  }
}
.section-featured .featured-row .featured-tile.narrow {
  height: 250px;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .section-featured .featured-row .featured-tile.narrow {
    margin-top: 0;
    margin-left: 1rem;
    width: 35%;
    height: 400px;
  }
}
.section-featured .featured-row .featured-tile .featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transition: opacity 0.15s linear;
}
.section-featured .featured-row .featured-tile .featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.section-featured .featured-row .featured-tile:hover .featured-image {
  opacity: 0.9;
}
.section-featured .featured-row .featured-tile .featured-caption {
  position: relative;
  padding: 1rem;
  z-index: 3;
}
@media (min-width: 768px) {
  .section-featured .featured-row .featured-tile .featured-caption {
    padding: 1.5rem;
  }
}
.section-featured .featured-row .featured-tile .featured-caption h3 {
  color: #fff;
  margin-bottom: 0;
  max-width: 500px;
}
.section-featured .featured-row .featured-tile .featured-caption h3.t3-bold {
  font-family: "SST W01 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.section-featured .featured-row .featured-tile .featured-caption p {
  color: #fff;
  padding-top: 0.2rem;
  margin-bottom: 0;
}

/* section-shortcuts */
.section-shortcuts .shortcuts-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .section-shortcuts .shortcuts-row {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
  }
}
.section-shortcuts .shortcuts-row .shortcut {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f5f9;
  transition: background 0.15s linear;
}
.section-shortcuts .shortcuts-row .shortcut:hover {
  background-color: #f3f6f9;
}
.section-shortcuts .shortcuts-row .shortcut:hover .shortcut-image {
  background-color: #6e6d75 !important;
}
.section-shortcuts .shortcuts-row .shortcut + .shortcut {
  margin-top: 1rem;
}
.section-shortcuts .shortcuts-row .shortcut.wide {
  width: 100%;
  height: 180px;
}
@media (min-width: 768px) {
  .section-shortcuts .shortcuts-row .shortcut.wide {
    width: 100%;
    height: 400px;
  }
}
.section-shortcuts .shortcuts-row .shortcut.wide .shortcut-image {
  width: 40%;
  height: 100%;
  background-color: #504d56;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background 0.15s linear;
}
@media (min-width: 768px) {
  .section-shortcuts .shortcuts-row .shortcut.wide .shortcut-image {
    width: calc(50% - 0.5rem);
    height: 100%;
  }
}
.section-shortcuts .shortcuts-row .shortcut.wide .shortcut-caption {
  width: 60%;
  padding: 1rem;
}
@media (min-width: 768px) {
  .section-shortcuts .shortcuts-row .shortcut.wide .shortcut-caption {
    width: calc(50% + 0.5rem);
  }
}
.section-shortcuts .shortcuts-row .shortcut.wide .shortcut-caption p {
  margin-bottom: 0;
}
.section-shortcuts .shortcuts-row .shortcut.narrow {
  width: 100%;
  height: 180px;
}
@media (min-width: 768px) {
  .section-shortcuts .shortcuts-row .shortcut.narrow {
    width: calc(50% - 0.5rem);
    height: 200px;
  }
  .section-shortcuts .shortcuts-row .shortcut.narrow + .narrow {
    margin-left: 1rem;
  }
}
.section-shortcuts .shortcuts-row .shortcut.narrow .shortcut-image {
  width: 40%;
  height: 100%;
  background-color: #504d56;
  background-repeat: no-repeat;
  background-position: center;
  transition: background 0.15s linear;
}
.section-shortcuts .shortcuts-row .shortcut.narrow .shortcut-caption {
  width: 60%;
  padding: 1rem;
}
@media (min-width: 768px) {
  .section-shortcuts .shortcuts-row .shortcut.narrow .shortcut-caption {
    width: 60%;
  }
}
.section-shortcuts .shortcuts-row .shortcut.narrow .shortcut-caption p {
  margin-bottom: 0;
}

/* section-registro */
.section-registro .registro-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: rgb(177, 88, 60);
  background: linear-gradient(-90deg, rgb(177, 88, 60) 0%, rgb(229, 135, 92) 100%);
  transition: opacity 0.15s linear;
}
.section-registro .registro-banner:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section-registro .registro-banner {
    flex-direction: row-reverse;
  }
}
.section-registro .registro-banner .registro-image {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .section-registro .registro-banner .registro-image {
    padding-right: 2rem;
    width: 60%;
  }
}
.section-registro .registro-banner .registro-caption {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 768px) {
  .section-registro .registro-banner .registro-caption {
    width: 60%;
  }
}
.section-registro .registro-banner .registro-caption h4 {
  margin-bottom: 0.5rem;
  font-family: "SST W01 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
}
.section-registro .registro-banner .registro-caption p {
  margin-bottom: 0;
  color: #fff;
}
.section-registro .banner-creators {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-image: url("../pics/creators-gradation.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: opacity 0.15s linear;
  padding: 1rem;
}
.section-registro .banner-creators:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section-registro .banner-creators {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 1rem 2rem;
  }
}
.section-registro .banner-creators .banner-creators-image {
  width: 100%;
}
@media (min-width: 768px) {
  .section-registro .banner-creators .banner-creators-image {
    width: 500px;
  }
}
.section-registro .banner-creators .banner-creators-caption {
  width: 100%;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .section-registro .banner-creators .banner-creators-caption {
    padding: 0 !important;
  }
}
.section-registro .banner-creators .banner-creators-caption h4 {
  margin-bottom: 0.5rem;
  font-family: "SST W01 Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
}
.section-registro .banner-creators .banner-creators-caption p {
  margin-bottom: 0;
  color: #fff;
}

/* section-products */
.section-products .products-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .section-products .products-row {
    padding: 0;
  }
}
.section-products .products-row .product {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: relative;
  width: calc(50% - 1rem);
  margin: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-products .products-row .product {
    width: calc(50% - 1rem);
    margin: 0.5rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .section-products .products-row .product {
    width: calc(33% - 2rem);
    margin: 1rem;
    margin-bottom: 3rem;
  }
}
.section-products .products-row .product .product-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 0.5rem 0.4rem;
  color: #fff;
  font-size: 13px;
  font-family: "SST W01 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.section-products .products-row .product .product-caption {
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .section-products .products-row .product .product-caption {
    padding: 1rem 0;
  }
}
.section-products .products-row .product .product-caption ul {
  margin-left: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-products .products-row .product .product-caption ul {
    margin-left: 1rem;
  }
}
.section-products .products-row .product .product-caption ul li {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-products .products-row .product .product-caption ul li:before {
    content: "•";
    color: #F25529;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
  }
}
.section-products .products-row .product .product-buttons {
  width: 100%;
  margin-top: auto;
}
.section-products .products-row .product .product-buttons .btn {
  margin-top: 0;
}

/* buy-links */
.buy-links {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .buy-links {
    flex-direction: row;
  }
}
.buy-links a {
  display: flex;
  align-items: center;
  padding: 0.2rem;
}
@media (min-width: 768px) {
  .buy-links a {
    padding: 0.5rem;
  }
}
.buy-links a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.buy-links a img {
  width: auto;
  height: 30px;
}

/* section-online */
.section-online {
  background-color: #f1f5f9;
}
.section-online .online-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .section-online .online-list {
    margin-left: -1rem;
    margin-right: -1rem;
    justify-content: start;
  }
}
.section-online .online-list .store {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 1rem;
  margin: 0.5rem;
  width: calc(50% - 1rem);
  text-align: center;
}
@media (min-width: 768px) {
  .section-online .online-list .store {
    width: calc(33% - 2rem);
    margin: 1rem;
  }
}
.section-online .online-list .store .logo {
  width: 80%;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-online .online-list .store .logo {
    width: 150px;
  }
}
.section-online .online-list .store .title {
  color: #2f353d;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section-online .online-list .store .title {
    margin-bottom: 1rem;
  }
}
.section-online .online-list .store .btn {
  margin-top: 0;
}

/* section-filters */
.section-filters .filters-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #f1f5f9;
}
@media (min-width: 768px) {
  .section-filters .filters-row {
    justify-content: center;
  }
}
.section-filters .filters-row button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 25%;
  margin: 0.5rem;
  font-family: "SST W01 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 0.7rem;
  color: #2f353d;
  line-height: 1.1;
  text-transform: uppercase;
  border: none;
  padding: 0;
  padding-bottom: 0.3rem;
  background-color: #f1f5f9;
  transition: background 0.15s linear;
}
@media (min-width: 768px) {
  .section-filters .filters-row button {
    flex-direction: row;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    width: 20%;
    padding-bottom: 0;
  }
}
.section-filters .filters-row button:hover {
  background-color: #fff;
}
.section-filters .filters-row button.active {
  background-color: #fff;
}
.section-filters .filters-row button img {
  margin: 0.3rem 0;
}
.section-filters .filters-row button span {
  margin-top: 0.3rem;
}
@media (min-width: 768px) {
  .section-filters .filters-row button span {
    margin: 0.3rem 1rem 0 0.5rem;
  }
}

/* section-wtb */
@media (min-width: 768px) {
  .section-wtb p {
    margin-bottom: 0;
  }
}
.section-wtb .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section-wtb .row .col {
  width: 50%;
}
.section-wtb .select-regions {
  appearance: none;
  box-sizing: border-box;
  background: #fff url("../pics/angle.svg") no-repeat right center;
  border-radius: 0;
  border: 1px solid #F1F5f9;
  display: block;
  padding: 0 60px 0 15px;
  margin-top: 10px;
  height: 44px;
  width: auto;
}
.section-wtb .select-box {
  position: relative;
  display: block;
  width: 100%;
  margin-left: auto;
  color: #706c7a;
}
@media (min-width: 768px) {
  .section-wtb .select-box {
    width: 400px;
  }
}
.section-wtb .select-box__current {
  position: relative;
  cursor: pointer;
  outline: none;
}
.section-wtb .select-box__current:focus + .select-box__list {
  opacity: 1;
  animation-name: none;
}
.section-wtb .select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.section-wtb .select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}
.section-wtb .select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.section-wtb .select-box__value {
  display: flex;
}
.section-wtb .select-box__input {
  display: none;
}
.section-wtb .select-box__input:checked + .select-box__input-text {
  display: block;
}
.section-wtb .select-box__input-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 15px;
  background-color: #F1F5f9;
}
.section-wtb .select-box__list {
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  animation-name: HideList;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  z-index: 19999;
}
.section-wtb .select-box__option {
  display: block;
  padding: 10px 15px;
  margin: 0;
  background-color: #fff;
}
.section-wtb .select-box__option:hover, .section-wtb .select-box__option:focus {
  color: #546c84;
  background-color: #F1F5f9;
}
@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@media (max-width: 768px) {
  .section-wtb .store-filters {
    flex-direction: column-reverse;
  }
  .section-wtb .store-filters .col {
    width: 100%;
  }
}
.section-wtb .store-filters .store-results {
  margin-top: 1rem;
  margin-bottom: 0;
}
.section-wtb .section-map {
  margin-top: 20px;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .section-wtb .section-map {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.section-wtb .section-map .stores-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .section-wtb .section-map .stores-list {
    margin-right: 10px;
    margin-left: -10px;
    width: 380px;
    height: 500px;
  }
}
.section-wtb .section-map .stores-list .store {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
.section-wtb .section-map .stores-list .store:hover {
  background-color: #f1f5f9;
}
.section-wtb .section-map .stores-list .store:hover .store-arrow i {
  border-color: #2f353d;
}
.section-wtb .section-map .stores-list .store.active {
  background-color: #f1f5f9;
}
.section-wtb .section-map .stores-list .store.active .store-arrow i {
  border-color: #2f353d;
}
.section-wtb .section-map .stores-list .store .title {
  display: inline-block;
  margin-bottom: 0;
  line-height: 1.2;
  color: #2f353d;
}
.section-wtb .section-map .stores-list .store .btn {
  margin-top: 0;
  min-width: auto !important;
}
.section-wtb .section-map .stores-list .store[data-type=SS] .title {
  color: #f25529;
}
.section-wtb .section-map .stores-list .store .separator {
  display: block;
  height: 5px;
}
.section-wtb .section-map .stores-list .store .store-arrow {
  display: block;
  margin-left: 10px;
  margin-right: 10px;
}
.section-wtb .section-map .stores-list .store .store-arrow i {
  display: block;
  width: 32px;
  height: 32px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  transform: rotate(45deg);
  transition: border-color 0.15s ease;
}
.section-wtb .section-map .stores-map {
  display: flex;
  flex: 2;
  background-color: #F1F5f9;
}
.section-wtb .section-map .stores-map iframe {
  height: 200px !important;
}
@media (min-width: 768px) {
  .section-wtb .section-map .stores-map iframe {
    height: 500px !important;
  }
}
.section-wtb .carousel-cell {
  width: 100%;
}
.section-wtb .cities-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.section-wtb .cities-row .cities-item {
  display: flex;
  flex-direction: column;
  width: 48%;
  background-color: #f1f5f9;
  padding: 15px;
  text-align: center;
  color: #2f353d;
}
@media (min-width: 768px) {
  .section-wtb .cities-row .cities-item {
    width: 24%;
  }
}
.section-wtb .cities-row .cities-item:hover {
  background-color: #e8edf3;
}
.section-wtb .cities-row .cities-item:focus {
  outline: none !important;
}

/* tippy */
.tippy-box[data-theme~=light] {
  color: #26323d;
  box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
  background-color: #2f353d;
  text-align: center;
  padding: 0.5em;
}
@media (min-width: 768px) {
  .tippy-box[data-theme~=light] {
    padding: 1em;
  }
}
.tippy-box[data-theme~=light] .tippy-content {
  padding: 0 !important;
}

.tippy-box[data-theme~=light][data-placement^=top] > .tippy-arrow:before {
  border-top-color: #2f353d;
}

.tippy-box[data-theme~=light][data-placement^=bottom] > .tippy-arrow:before {
  border-bottom-color: #2f353d;
}

.tippy-box[data-theme~=light][data-placement^=left] > .tippy-arrow:before {
  border-left-color: #2f353d;
}

.tippy-box[data-theme~=light][data-placement^=right] > .tippy-arrow:before {
  border-right-color: #2f353d;
}

.tippy-box[data-theme~=light] > .tippy-backdrop {
  background-color: #2f353d;
}

.tippy-box[data-theme~=light] > .tippy-svg-arrow {
  fill: #2f353d;
}

/*# sourceMappingURL=onde-comprar.css.map */
