.CodeMirror {
  height: 100%;
}
/*
 needed for proper display of <img/> and <hr/> for HTMLEditor.js (react-draft-wysiwyg)
 */
figure {
  margin: 0;
}
/*
 needed for the google maps dropdown, managed by the google maps sdk itself
 */
.pac-container {
  z-index: 2000;
}
/*
 required for calc(100%) apparently
 */
html,
body,
#root {
  height: 100%;
}
a {
  text-decoration: none;
  color: #0279b7;
}
/**
* Force scrollbars to be visible
* https://gist.github.com/IceCreamYou/cd517596e5847a88e2bb0a091da43fb4
 */
.force-show-scrollbars ::-webkit-scrollbar-track:vertical {
  border-left: 1px solid #e7e7e7;
  box-shadow: 1px 0 1px 0 #f6f6f6 inset, -1px 0 1px 0 #f6f6f6 inset;
}
.force-show-scrollbars ::-webkit-scrollbar-track:horizontal {
  border-top: 1px solid #e7e7e7;
  box-shadow: 0 1px 1px 0 #f6f6f6 inset, 0 -1px 1px 0 #f6f6f6 inset;
}
.force-show-scrollbars ::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: #fafafa;
  width: 16px;
}
.force-show-scrollbars ::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #7f7f7f;
  border-color: transparent;
  border-style: solid;
  border-radius: 20px;
  border-width: 5px 3px 4px 4px;
  /* Workaround because margins aren't supported */
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.force-show-scrollbars ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.trailer-container {
  padding: 16px;
}
.resettedSelect label {
  top: 0px;
  position: relative;
}
@-webkit-keyframes transitionPreview {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% 100%;
  }
}
@keyframes transitionPreview {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: 50% 100%;
  }
}

