.hotkey-dialog {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hotkey-dialog > h3 {
  font-size: 18px;
}
.hotkey-dialog__table {
  width: 100%;
  margin-top: 15px;
}
.hotkey-dialog__table td > span:first-child {
  margin-right: 8px;
}
.hotkey-dialog__table td > span:last-child {
  font-family: monospace;
}
.main-content-and-sidebar {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  display: flex;
}
.main-content-container {
  position: relative;
  flex-grow: 1;
}
.sidebar-container {
  height: 100%;
  width: 216px;
  position: relative;
}
.viewport-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.viewport-container > div {
  width: 100%;
  height: 100%;
}
.arc-tool-button > div {
  font-size: 10px;
}
.adjust-scale-overlay {
  position: absolute;
}
.adjust-scale-overlay > form {
  position: absolute;
  left: 20px;
  top: -20px;
  width: 178px;
  height: 67px;
  border-radius: 4px;
  line-height: 40px;
  padding: 6px;
  background: #f8f8f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  vertical-align: middle;
}
.adjust-scale-overlay > form::before {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #f8f8f9;
  position: absolute;
  top: 13px;
  left: -10px;
  content: "";
  z-index: 1;
}
.adjust-scale-overlay > form > label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.5px;
}
.adjust-scale-overlay__input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.adjust-scale-overlay__input > input {
  width: 94px;
  height: 32px;
  border-radius: 4px;
  border: solid 1px #3b4775;
  outline: none;
  font-size: 12px;
  padding-left: 8px;
}
.adjust-scale-overlay__input > input:hover,
.adjust-scale-overlay__input > input:active,
.adjust-scale-overlay__input > input:focus {
  cursor: text;
  outline: none;
  border: solid 1px #5371fa;
}
.adjust-scale-overlay__input button {
  width: 64px;
  height: 32px;
}
/*
HTML5 Reset :: style.css
----------------------------------------------------------
We have learned much from/been inspired by/taken code where offered from:
Eric Meyer					:: http://meyerweb.com
HTML5 Doctor				:: http://html5doctor.com
and the HTML5 Boilerplate	:: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}
/* Handle box-sizing while better addressing child elements:
http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
*/
img,
object,
embed {
  max-width: 100%;
}
/*
Note: keeping IMG here will cause problems if you're using foreground images as sprites.
 In fact, it *will* cause problems with Google Maps' controls at small size.
If this is the case for you, try uncommenting the following:
#map img {
	max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}
/* we use a lot of ULs that aren't bulleted.
don't forget to restore the bullets within content. */
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  font-weight: bold;
  vertical-align: bottom;
}
td {
  font-weight: normal;
  vertical-align: top;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
input[type="radio"] {
  vertical-align: text-bottom;
}
input[type="checkbox"] {
  vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}
.ie6 input {
  vertical-align: text-bottom;
}
select,
input,
textarea {
  font: 99% sans-serif;
}
table {
  font-size: inherit;
  font: 100%;
}
small {
  font-size: 85%;
}
strong {
  font-weight: 600;
}
td,
td img {
  vertical-align: top;
}
/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
/* hand cursor on clickable elements */
.clickable,
label,
input[type="button"],
input[type="submit"],
input[type="file"],
button {
  cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}
/* make buttons play nice in IE */
button,
input[type="button"] {
  width: auto;
  overflow: visible;
}
/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* prevent BG image flicker upon hover
(commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
@font-face {
  font-family: "Geomanist";
  src: url(css/6b48aef2413cb768e31406b8a5511970.woff2) format("woff2"), url(css/e7f87eb652c9d954fa3ac7f9e9256795.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Geomanist";
  src: url(css/52cccba5687b0cfeafe20ce28ff04db8.woff2) format("woff2"), url(css/d54e25af9e0384c9b45ae9f5d1158e4c.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Geomanist";
  src: url(css/eaf3cfee27cb7013ab84779df7141bff.woff2) format("woff2"), url(css/968604957b5fbdd638741ae8c6639c0b.woff) format("woff");
  font-weight: 700;
}
body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  font-family: "Geomanist", "Open Sans", sans-serif;
}
#openfpc-view {
  width: 100%;
  height: 100%;
}
.hovering-on-thing {
  cursor: pointer;
}
.selection-box-overlay {
  position: absolute;
  background: rgba(173, 216, 230, 0.25);
  border: 1px solid #ADD8E6;
  opacity: 25%;
  width: 50px;
  height: 50px;
  visibility: hidden;
  z-index: 100;
}
.transform-box-overlay {
  display: block;
  position: absolute;
  border: 1px solid #ffffff;
  opacity: 0.5;
  z-index: 9;
  margin-left: -1px;
  margin-top: -1px;
}
.transform-box-overlay .corner {
  margin-left: -6px;
  margin-top: -6px;
  height: 11px;
  width: 11px;
  border-radius: 6px;
  background-color: #7b99fa;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.transform-box-overlay .corner.corner-2 {
  left: 100%;
}
.transform-box-overlay .corner.corner-3 {
  left: 100%;
  top: 100%;
}
.transform-box-overlay .corner.corner-4 {
  top: 100%;
}
.cursor-hint-overlay {
  position: absolute;
  opacity: 0.6;
  font-size: 10px;
  padding: 2px 4px;
  background-color: #ccd0d4;
}
div[tabindex="-1"]:focus {
  outline: 0;
}
.header-bar__toolbar {
  display: flex;
  align-items: center;
}
.header-bar__toolbar .toolbar__group {
  display: flex;
  align-items: center;
}
.header-bar__toolbar .toolbar__group .tool:not(:first-child),
.header-bar__toolbar .toolbar__group .dropdown:not(:first-child),
.header-bar__toolbar .toolbar__group .object-tool:not(:first-child) {
  margin-left: 2px;
}
.header-bar__toolbar .toolbar__group .tool:not(:last-child),
.header-bar__toolbar .toolbar__group .dropdown:not(:last-child),
.header-bar__toolbar .toolbar__group .object-tool:not(:last-child) {
  margin-right: 2px;
}
.header-bar__toolbar .toolbar__divider {
  width: 1px;
  height: 28px;
  margin: 0 8px;
  background-color: #979797;
}
.header-bar__toolbar .toolbar__tooltip {
  margin-top: 6px !important;
  padding: 8px 12px !important;
  background-color: #17234D !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.33 !important;
}
.header-bar__toolbar .toolbar__tooltip.show {
  opacity: 1 !important;
}
.header-bar__toolbar .tool {
  width: 37px;
  height: 34px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header-bar__toolbar .tool svg,
.header-bar__toolbar .tool svg * {
  fill: #313f4c;
}
.header-bar__toolbar .tool:hover {
  background-color: #e3e7fe;
}
.header-bar__toolbar .tool--is-selected {
  background-color: #5371fa;
}
.header-bar__toolbar .tool--is-selected svg,
.header-bar__toolbar .tool--is-selected svg * {
  fill: #ffffff;
}
.header-bar__toolbar .tool--is-selected:hover {
  background-color: #5371fa;
}
.header-bar__toolbar .tool--is-selected:hover svg,
.header-bar__toolbar .tool--is-selected:hover svg * {
  fill: #ffffff;
}
.header-bar__toolbar .object-tool {
  width: 37px;
  height: 34px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header-bar__toolbar .object-tool:hover {
  background-color: #e3e7fe;
}
.header-bar__toolbar .object-tool--is-selected {
  background-color: #5371fa;
}
.header-bar__toolbar .object-tool--is-selected:hover {
  background-color: #5371fa;
}
.header-bar__toolbar .object-tool__format-svg svg,
.header-bar__toolbar .object-tool__format-svg svg * {
  stroke: #313f4c;
}
.header-bar__toolbar .object-tool__format-svg--is-selected svg,
.header-bar__toolbar .object-tool__format-svg--is-selected svg * {
  stroke: #ffffff;
}
.header-bar__toolbar .object-tool__format-svg--is-selected:hover svg,
.header-bar__toolbar .object-tool__format-svg--is-selected:hover svg * {
  stroke: #ffffff;
}
.header-bar {
  height: 128px;
  background-color: #f8f8f9;
  box-shadow: 0 2px 4px 0 rgba(151, 157, 170, 0.4), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 0.5px #DBDEE0;
  display: flex;
  flex-direction: column;
}
.header-bar .header-bar__header {
  height: 75px;
  padding: 16px 22px 0 41px;
  display: flex;
  justify-content: space-between;
}
.header-bar .header-bar__header .header__text {
  display: flex;
  flex-direction: column;
}
.header-bar .header-bar__header .header__text span {
  display: flex;
  align-items: center;
  color: #808991;
}
.header-bar .header-bar__header .header__text span svg {
  height: 12px;
  margin-left: 5px;
  cursor: pointer;
}
.header-bar .header-bar__header .header__text h2 {
  height: 14px;
  font-size: 12px;
}
.header-bar .header-bar__header .header__text .info-svg-replacement {
  border: 1px solid #808991;
  color: #808991;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  font-size: 9px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-left: 4px;
  margin-top: 3px;
}
.header-bar .header-bar__header .header__text h1 {
  height: 28px;
  padding-top: 5px;
  font-size: 22px;
  font-weight: 300;
}
.header-bar .header_bar__divider {
  margin: 0.5px 0;
  border-bottom: solid 1px #979797;
}
.header-bar .header-bar__toolbar {
  height: 50px;
  z-index: 60;
  box-shadow: 0 2px 4px 0 #979daa66, 0 2px 4px 0 #0000001a;
}
.header-bar .header-bar__toolbar h1 {
  font-size: 24px;
  line-height: 38px;
  color: #17234d;
  margin: 0;
  padding: 0 0 0 10px;
  height: 38px;
}
.header-bar .header-bar__toolbar .menubar {
  padding-left: 10px;
  height: 30px;
  line-height: 30px;
  display: block;
}
.header-bar .header-bar__toolbar .header-btn {
  display: inline-block;
  font-weight: 500;
  padding: 0 8px;
  color: #17234d;
  background: #a1aacf;
  margin-right: 8px;
  cursor: pointer;
}
.header-bar .header-bar__toolbar .toolbar {
  padding-left: 10px;
  height: 30px;
  line-height: 30px;
  display: block;
}
.edit-panel-container {
  height: 100%;
  padding: 15px 24px;
  background-color: #f8f8f9;
}
.edit-panel-container .form-group {
  margin-bottom: 16px;
}
.edit-panel-container h1 {
  margin-bottom: 24px;
  font-size: 18px;
}
.edit-panel-container label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.5px;
}
.edit-panel-container button {
  width: 100px;
  height: 32px;
}
.edit-panel-container .dropdown__menu-button {
  height: 32px;
  margin-top: 5px;
  padding-left: 16px;
  background-color: #ffffff;
  border: solid 1px #3b4775;
}
.edit-panel-container .dropdown__menu-button:hover {
  color: #000000;
  background-color: #ffffff;
}
.edit-panel-container .dropdown__menu-button:hover .svg-replacement {
  fill: #000000;
}
.edit-panel-container .dropdown__menu-container {
  border: solid 1px #5371fa;
}
.edit-panel-container .dropdown__option--is-selected {
  color: #ffffff;
  background-color: #5371fa;
}
.edit-panel-container .dropdown__option:hover {
  color: #ffffff;
  background-color: #2b49fa;
}
.edit-panel-container .dropdown--is-open .dropdown__menu-button {
  color: #000000;
  background-color: #ffffff;
  border: solid 1px #5371fa;
}
.edit-panel-container .dropdown--is-open .dropdown__menu-button .svg-replacement {
  fill: #000000;
}
.save-dialog__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 90%;
}
.save-dialog__contents > p {
  margin: 10px 0;
}
.save-dialog__contents button {
  width: 200px;
  height: 32px;
  margin-top: 20px;
  color: #ffffff;
  background-color: #cb5599;
  border-color: #cb5599;
}
.save-dialog__contents__btn-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.options-dialog-content {
  height: calc(100vh - 200px);
  width: 100%;
  position: relative;
  overflow-y: scroll;
}
.theme-config-form {
  margin-top: 1em;
}
.theme-config-form fieldset fieldset legend {
  font-size: 18px;
  font-weight: 600;
}
.theme-config-form fieldset fieldset .form-group {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.theme-config-form fieldset fieldset .form-group label {
  font-weight: 500;
}
.theme-config-form fieldset fieldset .form-group .github-picker {
  margin-top: 0.5em;
}
.dropdown {
  font-size: 14px;
  position: relative;
  z-index: 10;
}
.dropdown__menu-button {
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.dropdown__menu-button:hover {
  color: #ffffff;
  background-color: #2b49fa;
}
.dropdown__menu-button:hover svg {
  fill: #ffffff;
}
.dropdown__menu-button svg {
  width: 10px;
  height: 5px;
  margin-left: 4px;
  fill: #000000;
  transform: rotate(180deg);
}
.dropdown__menu-container {
  width: 130px;
  border-radius: 4px;
  background-color: #f8f8f9;
  box-shadow: 0 2px 4px 0 rgba(151, 157, 170, 0.4);
  position: absolute;
  height: 0;
  visibility: hidden;
}
.dropdown__menu-container .dropdown__option:first-child {
  border-top: 0.5px solid #dbdee0;
  border-radius: 4px 4px 0 0;
}
.dropdown__menu-container .dropdown__option:first-child:hover {
  border-color: #5371fa;
}
.dropdown__menu-container .dropdown__option:last-child {
  border-bottom: 0.5px solid #dbdee0;
  border-radius: 0 0 4px 4px;
}
.dropdown__menu-container .dropdown__option:last-child:hover {
  border-color: #5371fa;
}
.dropdown__option {
  padding: 8px 12px 8px 16px;
  border-radius: 0;
  border-right: 0.5px solid #dbdee0;
  border-left: 0.5px solid #dbdee0;
  cursor: pointer;
}
.dropdown__option--with-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown__option--with-icon svg {
  width: 18px;
  height: 12px;
}
.dropdown__option:hover {
  color: #ffffff;
  background-color: #5371fa;
  border-color: #5371fa;
}
.dropdown__option:hover svg {
  fill: #ffffff;
}
.dropdown__divider {
  width: 100%;
  height: 1px;
  background-color: #979797;
}
.dropdown--is-open .dropdown__menu-button {
  color: #ffffff;
  background-color: #2b49fa;
}
.dropdown--is-open .dropdown__menu-button svg {
  fill: #ffffff;
}
.dropdown--is-open .dropdown__menu-container {
  height: auto;
  visibility: visible;
}
.dropdown__submenu {
  position: absolute;
  top: 100px;
  left: 130px;
  border-radius: 4px;
  background-color: #f8f8f9;
  box-shadow: 0 2px 4px 0 rgba(151, 157, 170, 0.4);
  height: 0;
  width: 0;
  visibility: hidden;
}
.dropdown__submenu--is-open {
  height: auto;
  width: 111px;
  visibility: visible;
}
.dropdown__submenu .dropdown__option:first-child {
  border-radius: 4px 4px 0 0;
}
.dropdown__submenu .dropdown__option:last-child {
  border-radius: 0 0 4px 4px;
}
.dropdown__submenu__suboptions-menu {
  position: absolute;
  top: 100px;
  left: 241px;
  border-radius: 4px;
  background-color: #f8f8f9;
  box-shadow: 0 2px 4px 0 rgba(151, 157, 170, 0.4);
  height: 0;
  width: 0;
  visibility: hidden;
}
.dropdown__submenu__suboptions-menu--is-open {
  height: auto;
  width: 111px;
  visibility: visible;
}
.dropdown__submenu__suboptions-menu .dropdown__option:first-child {
  border-radius: 4px 4px 0 0;
}
.dropdown__submenu__suboptions-menu .dropdown__option:last-child {
  border-radius: 0 0 4px 4px;
}
.boundary-tools {
  display: flex;
  align-items: center;
}
.boundary-tools .boundary-tool:not(:first-child) {
  margin-left: 2px;
}
.boundary-tools .boundary-tool:not(:last-child) {
  margin-right: 2px;
}
.boundary-tools .boundary-tool {
  width: 37px;
  height: 34px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.boundary-tools .boundary-tool:hover {
  background-color: #e3e7fe;
}
.boundary-tools .boundary-tool--is-selected {
  color: #ffffff;
  background-color: #5371fa;
}
.boundary-tools .boundary-tool--is-selected:hover {
  color: #ffffff;
  background-color: #5371fa;
}
.boundary-tools .boundary-tool canvas {
  border-radius: 2px;
}
.boundary-tools .boundary-tool__label {
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: 0.3px;
}
.text-input {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #3b4775;
  font-family: Geomanist;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding-left: 10px;
}
.text-input::-webkit-inner-spin-button,
.text-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.text-input::-webkit-input-placeholder {
  color: #d1d9ed;
}
.text-input::-moz-placeholder {
  color: #d1d9ed;
}
.text-input.is-disabled:hover,
.text-input.is-disabled:active,
.text-input.is-disabledt:focus {
  background-color: #46527f;
  color: #d1d9ed;
  cursor: default;
}
.text-input.is-disabled:hover::-webkit-input-placeholder,
.text-input.is-disabled:active::-webkit-input-placeholder,
.text-input.is-disabledt:focus::-webkit-input-placeholder {
  color: #d1d9ed;
}
.text-input.is-disabled:hover::-moz-placeholder,
.text-input.is-disabled:active::-moz-placeholder,
.text-input.is-disabledt:focus::-moz-placeholder {
  color: #d1d9ed;
}
.single-unit-input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  background-color: #46527f;
  border-radius: 4px;
}
.single-unit-input__main-arrow {
  background-color: #46527f;
  border-left: 2px;
  width: 10px;
}
.single-unit-input__main-arrow .svg-replacement {
  transform: rotateX(360deg);
  width: 6px;
}
.number-input__container {
  display: flex;
  align-self: normal;
}
.number-input .svg-replacement {
  fill: #17234d;
  height: 6px;
  width: 10px;
  visibility: hidden;
  transition: all 0.25s ease;
}
.number-input:hover .svg-replacement {
  visibility: visible;
}
.number-input__input {
  padding-top: 1px;
  width: 100%;
}
.number-input__input input {
  min-width: 8px;
  max-width: 26px;
  background-color: #46527f;
  border: none;
  outline: none;
  padding: 0;
  color: #d1d9ed;
  font-family: "Geomanist", "Open Sans", sans-serif;
  font-size: 12px;
  text-align: center;
}
.number-input__input input::selection {
  background: rgba(123, 153, 250, 0.996);
}
.number-input__input input::-moz-selection {
  background: #7b99fa;
}
.number-input__input input:hover,
.number-input__input input:active,
.number-input__input inputt:focus {
  margin: 0 auto;
  cursor: text;
  outline: none;
}
.number-input__input input::-webkit-input-placeholder {
  color: #d1d9ed;
}
.number-input__input input::-moz-placeholder {
  color: #d1d9ed;
}
.number-input__spacing input {
  max-width: 20px;
}
.number-input__top,
.number-input__bottom {
  cursor: pointer;
  display: flex;
  font-size: 4px;
  position: relative;
  right: -119px;
  justify-content: flex-end;
  width: 30px;
}
.number-input__top {
  top: 12px;
}
.number-input__top_custom-width-length {
  border-radius: 3px 0px 0px;
}
.number-input__bottom {
  top: -15px;
}
.number-input__bottom .svg-replacement {
  transform: rotateX(180deg);
}
.number-input__bottom_custom-width-length {
  border-radius: 0px 0px 0px 3px;
}
.number-input.is-disabled {
  cursor: not-allowed;
}
.number-input.is-disabled * {
  cursor: not-allowed;
}
.number-input.is-disabled svg {
  visibility: hidden;
}
.number-input.is-disabled .number-input__top:hover,
.number-input.is-disabled .number-input__bottom:hover {
  background-color: none;
}
.number-input.has-no-buttons .number-input__input {
  height: 40px;
}
.number-input__reset-button {
  align-items: center;
  background-color: #586593;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1px;
  vertical-align: middle;
  width: 16px;
}
.number-input__reset-button:hover {
  background-color: #303c6b;
  cursor: pointer;
}
.number-input__reset-button .svg-replacement {
  fill: #d1d9ed;
  height: 6px;
}
.number-input--resettable .number-input__top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 0;
}
.number-input--resettable .number-input__bottom {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.degrees-input__input.text-input {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #3b4775;
  font-family: Geomanist;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding-left: 10px;
}
.degrees-input__input.text-input::-webkit-inner-spin-button,
.degrees-input__input.text-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.degrees-input__input.text-input.is-disabled {
  opacity: .4;
}
button {
  border-radius: 3px;
  background: #5371fa;
  font-size: 14px;
  color: #ffffff;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
button:hover {
  background: #2b49fa;
}
/**
* Rangeslider
*/
.slider {
  height: 4px;
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
  background: #a3c1fa;
}
.slider .slider__tick {
  position: absolute;
  top: -5px;
  left: 50%;
  border-left: 2px solid #979797;
  height: 14px;
}
.slider .slider__thumb {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: #7b99fa;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 -1px 3px rgba(0, 0, 0, 0.4);
}
.slider .slider__thumb:focus {
  outline: none;
}

/*# sourceMappingURL=index.css.map*/