/*!************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/world-map/style.scss ***!
  \************************************************************************************************************************************************************************************************/
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.world-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 0 20px;
}
.world-map__title {
  width: 100%;
  max-width: 750px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.world-map__title {
  font-size: 25px;
}
@media screen and (min-width: 375px) {
  .world-map__title {
    font-size: calc(25px + 15 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .world-map__title {
    font-size: 40px;
  }
}
.world-map__title {
  line-height: 32px;
}
@media screen and (min-width: 375px) {
  .world-map__title {
    line-height: calc(32px + 20 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .world-map__title {
    line-height: 52px;
  }
}
.world-map__subtitle {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 1070px;
}
.world-map__subtitle sup {
  font-size: 18px;
}
.world-map__subtitle {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  .world-map__subtitle {
    font-size: calc(16px + 16 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .world-map__subtitle {
    font-size: 32px;
  }
}
.world-map__subtitle {
  line-height: 21px;
}
@media screen and (min-width: 375px) {
  .world-map__subtitle {
    line-height: calc(21px + 21 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .world-map__subtitle {
    line-height: 42px;
  }
}
.world-map__title, .world-map__subtitle {
  padding: 0 10px;
}
.world-map__img-wrap {
  position: relative;
  margin-top: 60px;
  padding-bottom: 20px;
  z-index: 2;
}
.world-map__img-wrap::-webkit-scrollbar {
  height: 4px;
  width: 50%;
  margin: 0 20px;
}
.world-map__img-wrap::-webkit-scrollbar-track {
  background: rgba(255, 212, 117, 0.25);
}
.world-map__img-wrap::-webkit-scrollbar-thumb {
  background: #FFD475;
  border: 1px solid #FFD475;
  border-radius: 4px;
}
.world-map:after {
  display: none;
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 212, 117, 0.17) 0%, rgba(255, 212, 117, 0) 100%);
  width: 100%;
  max-width: 320px;
  height: 100%;
  max-height: 320px;
  border-radius: 50%;
  position: absolute;
  bottom: -175px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
  z-index: 0;
}
@media (max-width: 550px) {
  .world-map {
    padding: 60px 0 20px 0;
    border-bottom: 1px solid #0d0d0d;
    border-radius: 20px;
  }
  .world-map__title {
    margin-bottom: 20px;
  }
  .world-map__img-wrap {
    width: calc(100% - 20px);
    overflow-x: scroll;
  }
  .world-map__img {
    width: 840px;
    height: 508px;
    max-width: initial;
  }
  .world-map__img-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .world-map:after {
    display: block;
  }
}
