.globe_main_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.globe__placeholder {
  border-radius: 6px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  height: 600px;
  width: 600px;
}

.globe__container {
  overflow: hidden;
  position: relative;  
  display: block;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  transform: scale(3);
  transform-origin: 0 0;
}

.globe__container,
.globe {
  width: 600px;
  height: 600px;  
}

.globe {
  overflow: hidden;
  position: relative;  
  display: block;
  margin: 0;
  padding: 0;
  top: 0; 
  left: 0;
}

.globe__worldmap,
.globe__worldmap__front,
.globe__worldmap__back,
.globe__sphere,
.globe__outer_shadow,
.globe__reflections__bottom,
.globe__inner_shadow,
.globe__reflections__top,
.globe__outer_shadow {
  position: absolute; 
  display: block; 
  margin: 0; 
  right: auto; 
  bottom: auto;  
}

.globe__sphere,
.globe__outer_shadow,
.globe__reflections__bottom,
.globe__inner_shadow,
.globe__reflections__top {
  left: 0; 
  top: 0; 
  width: 600px; 
  height: 600px;
  background-position: 0 0; 
  background-repeat: no-repeat;
}
.globe__outer_shadow {
  left: 0; 
  top: 186px; 
  width: 200px; 
  height: 30px;
  background-position: 0 0; 
  background-repeat: no-repeat;
  display: none;
}

.globe__worldmap {
  left: 0; top: 0; width: 200px; height: 200px; overflow: hidden;
  border-radius: 50%;
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.globe__worldmap__front,
.globe__worldmap__back {
  left: 0; top: 0; width: 3000px; height: 600px; overflow: hidden;
  background-image: url(../globe_images/worldmap_2x.svg);
  background-repeat: no-repeat;
}


@media (max-width: 700px) {
    .globe__container {
        transform: scale(1.5) !important;
    }
}

@media (max-width: 700px) {
    .globe__placeholder,
    .globe__container,
    .globe,
    .globe__sphere,
    .globe__outer_shadow,
    .globe__reflections__bottom,
    .globe__inner_shadow,
    .globe__reflections__top {
        width: 300px !important;
        height: 300px !important;
    }
}

.globe__sphere { background-image: url(../globe_images/sphere.svg);}
.globe__outer_shadow { background-image: url(../globe_images/outer_shadow.svg);}
.globe__reflections__top { background-image: url(../globe_images/reflections.svg);}
.globe__reflections__bottom { background-image: url(../globe_images/reflections.svg);}
.globe__inner_shadow { background-image: url(../globe_images/inner_shadow.svg);}
.globe__worldmap__front { background-position: 0px 0px;}
.globe__worldmap__back { background-position: 0px -200px;}

