@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
*,
*:after,
*:before {
  box-sizing: border-box;
}

* {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: text;
}

.no-scroll {
  overflow-y: hidden !important;
  position: static;
}

/* Disabled class */
.disabled {
  pointer-events: none;
  opacity: 0.5;
}

/*Clearfix*/
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* Float classes */
.right {
  float: right !important;
}

.left {
  float: left !important;
}

/* Hide / Show classes */
.hide {
  display: none;
}

.show {
  display: block;
}

.ellipsis {
  text-overflow: ellipsis;
  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}

.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/*responsive images*/
img {
  max-width: 100%;
}

.rounded-shadow-box,
.mapaint-image-editor .option--tile,
.mapaint-image-editor .option--drop-down,
#mapaint-editor-display {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.mapaint-content {
  -webkit-font-smoothing: antialiased;
  -apple-font-smoothing: apple-font-smoothing;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.4;
  min-height: 100%;
  position: relative;
}

.mapaint-error-display,
.mapaint-login-error,
.mapaint-building-name-empty {
  text-align: right;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mapaint-error-display span,
.mapaint-login-error span,
.mapaint-building-name-empty span {
  color: #ff5722;
}

.mapaint-btn {
  background-color: #aaa;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  padding: 12px 1.5rem;
}
.mapaint-btn:hover {
  opacity: 0.8;
}

.pswp__preloader__icn {
  opacity: 0.75;
  width: 50px;
  height: 50px;
  animation: clockwise 800ms linear infinite;
}

/* The idea of animating inner circle is based on Polymer loading indicator by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html */
.pswp__preloader__cut {
  position: relative;
  width: 25px;
  height: 50px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.pswp__preloader__donut--fake {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border: 5px solid red;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

.pswp__preloader__donut {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border: 5px solid #0085ff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
  animation: donut-rotate 1600ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}

.mapaint-image-type-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mapaint-image-type-item {
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px 10px;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}
.mapaint-image-type-item:hover {
  cursor: pointer !important;
}
.mapaint-image-type-item:hover .mapaint-image-type-item--image {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.mapaint-image-type-item:hover .mapaint-image-type-item--name {
  color: #0085ff;
}
.mapaint-image-type-item--image {
  transition: box-shadow 0.3s;
  width: 300px;
  height: 185px;
  background-size: cover;
  background-image: url("../../images/default.png");
  background-position: center center;
  border-radius: 10px;
}
.mapaint-image-type-item--name {
  transition: color 0.3s;
  font-weight: 600;
  padding: 6px;
  font-size: 0.8rem;
}

.mapaint-image-editor-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.75rem;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
  /*800px*/
}
@media (min-width: 50em) {
  .mapaint-image-editor-header {
    -ms-flex-flow: row;
    flex-flow: row;
  }
}

.mapaint-editor-actions > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
}

.mapaint-editor-actions label {
  margin-right: 10px;
}

.mapaint-editor-actions input {
  max-width: 200px;
}

.mapaint-save-btn {
  margin-left: 5px;
  background-color: #0085ff;
}

.mapaint-saveas {
  background-color: transparent;
  background-color: #f5f5f5;
  color: #0085ff;
}

.mapaint-cancel-btn {
  margin-left: 5px;
  background-color: #f5f5f5;
  color: #2d2d2d;
}

#mapaint-editor-options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  column-gap: 10px;
  /*400px*/
  /*560px*/
  /*800px*/
}
@media (min-width: 25em) {
  #mapaint-editor-options {
    width: 400px;
  }
}
@media (min-width: 35em) {
  #mapaint-editor-options {
    -ms-flex-pack: justify;
    justify-content: space-between;
    column-gap: initial;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}
@media (min-width: 50em) {
  #mapaint-editor-options {
    margin-top: 0;
  }
}

.mapaint-image-editor .option {
  font-size: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 110px;
}
.mapaint-image-editor .option--title {
  font-weight: 600;
  color: #7d829a;
}
.mapaint-image-editor .option--tile {
  background-color: #f5f5f5;
  width: 110px;
  height: 110px;
  margin: 5px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 45px;
}
.mapaint-image-editor .option--tile:hover {
  cursor: pointer;
}
.mapaint-image-editor .option--tile:hover .drop-arrow {
  background-color: #0085ff;
}
.mapaint-image-editor .option--tile--minimal {
  background-image: url("../../icons/minimal.svg");
}
.mapaint-image-editor .option--tile--fullcube {
  background-image: url("../../icons/fullcube.svg");
}
.mapaint-image-editor .option--tile--residentialpark {
  background-image: url("../../icons/residentialpark.svg");
}
.mapaint-image-editor .option--tile--familyhouse {
  background-image: url("../../icons/familyhouse.svg");
}
.mapaint-image-editor .option--tile--storeyfamilyhouse {
  background-image: url("../../icons/storeyfamilyhouse.svg");
}
.mapaint-image-editor .option--tile--coopercube {
  background-image: url("../../icons/coopercube.svg");
}
.mapaint-image-editor .option--tile--saddleroof {
  background-image: url("../../icons/saddleroof.svg");
}
.mapaint-image-editor .option--tile--smallapartmenthouse {
  background-image: url("../../icons/smallapartmenthouse.svg");
}
.mapaint-image-editor .option--tile--mediterranean {
  background-image: url("../../icons/mediterranean.svg");
}
.mapaint-image-editor .option--tile--h1 {
  background-image: url("../../icons/h1.svg");
}
.mapaint-image-editor .option--tile--h2 {
  background-image: url("../../icons/h2.svg");
}
.mapaint-image-editor .option--tile--l1 {
  background-image: url("../../icons/l1.svg");
}
.mapaint-image-editor .option--tile--ny1 {
  background-image: url("../../icons/ny1.svg");
}
.mapaint-image-editor .option--tile--t1 {
  background-image: url("../../icons/t1.svg");
}
.mapaint-image-editor .option--tile--e1 {
  background-image: url("../../icons/e1.svg");
}
.mapaint-image-editor .option--name {
  text-align: center;
  font-weight: 600;
  font-size: 0.7rem;
  color: #0085ff;
}
.mapaint-image-editor .option--drop-down {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  position: absolute;
  width: 300px;
  z-index: 999;
  background: white;
  padding: 1rem 0;
  left: -85%;
  top: 130px;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*560px*/
}
@media (min-width: 35em) {
  .mapaint-image-editor .option--drop-down {
    left: -50%;
  }
}
.mapaint-image-editor .option--drop-down::before {
  content: "\A";
  border-style: solid;
  border-width: 12px;
  border-color: transparent transparent white transparent;
  position: absolute;
  top: -23px;
  left: calc(50% - 12px);
}

.mapaint-image-editor #mapaint-image-types {
  background-size: 60px;
}

.mapaint-image-editor .mapaint-image-type-item,
.mapaint-image-editor .mapaint-image-layer-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10px 0;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
}
.mapaint-image-editor .mapaint-image-type-item--tile,
.mapaint-image-editor .mapaint-image-layer-item--tile {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #f5f5f5;
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34px;
}
.mapaint-image-editor .mapaint-image-type-item--tile--minimal,
.mapaint-image-editor .mapaint-image-layer-item--tile--minimal {
  background-image: url("../../icons/minimal.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--fullcube,
.mapaint-image-editor .mapaint-image-layer-item--tile--fullcube {
  background-image: url("../../icons/fullcube.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--residentialpark,
.mapaint-image-editor .mapaint-image-layer-item--tile--residentialpark {
  background-image: url("../../icons/residentialpark.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--familyhouse,
.mapaint-image-editor .mapaint-image-layer-item--tile--familyhouse {
  background-image: url("../../icons/familyhouse.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--storeyfamilyhouse,
.mapaint-image-editor .mapaint-image-layer-item--tile--storeyfamilyhouse {
  background-image: url("../../icons/storeyfamilyhouse.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--coopercube,
.mapaint-image-editor .mapaint-image-layer-item--tile--coopercube {
  background-image: url("../../icons/coopercube.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--saddleroof,
.mapaint-image-editor .mapaint-image-layer-item--tile--saddleroof {
  background-image: url("../../icons/saddleroof.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--smallapartmenthouse,
.mapaint-image-editor .mapaint-image-layer-item--tile--smallapartmenthouse {
  background-image: url("../../icons/smallapartmenthouse.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--mediterranean,
.mapaint-image-editor .mapaint-image-layer-item--tile--mediterranean {
  background-image: url("../../icons/mediterranean.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--h1,
.mapaint-image-editor .mapaint-image-layer-item--tile--h1 {
  background-image: url("../../icons/h1.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--h2,
.mapaint-image-editor .mapaint-image-layer-item--tile--h2 {
  background-image: url("../../icons/h1.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--l1,
.mapaint-image-editor .mapaint-image-layer-item--tile--l1 {
  background-image: url("../../icons/l1.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--ny1,
.mapaint-image-editor .mapaint-image-layer-item--tile--ny1 {
  background-image: url("../../icons/ny1.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--t1,
.mapaint-image-editor .mapaint-image-layer-item--tile--t1 {
  background-image: url("../../icons/t1.svg");
}
.mapaint-image-editor .mapaint-image-type-item--tile--e1,
.mapaint-image-editor .mapaint-image-layer-item--tile--e1 {
  background-image: url("../../icons/e1.svg");
}
.mapaint-image-editor .mapaint-image-type-item span,
.mapaint-image-editor .mapaint-image-layer-item span {
  margin-top: 5px;
  font-size: 0.6rem;
  font-weight: 600;
  opacity: 0.7;
  text-align: center;
}

.mapaint-image-editor .option--tile--minimal .mapaint-image-type-item--tile--minimal {
  background-image: url("../../icons/minimal-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--fullcube .mapaint-image-type-item--tile--fullcube {
  background-image: url("../../icons/fullcube-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--residentialpark .mapaint-image-type-item--tile--residentialpark {
  background-image: url("../../icons/residentialpark-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--familyhouse .mapaint-image-type-item--tile--familyhouse {
  background-image: url("../../icons/familyhouse-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--storeyfamilyhouse .mapaint-image-type-item--tile--storeyfamilyhouse {
  background-image: url("../../icons/storeyfamilyhouse-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--coopercube .mapaint-image-type-item--tile--coopercube {
  background-image: url("../../icons/coopercube-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--saddleroof .mapaint-image-type-item--tile--saddleroof {
  background-image: url("../../icons/saddleroof-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--smallapartmenthouse .mapaint-image-type-item--tile--smallapartmenthouse {
  background-image: url("../../icons/smallapartmenthouse-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--mediterranean .mapaint-image-type-item--tile--mediterranean {
  background-image: url("../../icons/mediterranean-active.svg");
  background-color: #0085ff;
}

.mapaint-image-editor .option--tile--e1 .mapaint-image-layer-item--tile--e1,
.mapaint-image-editor .option--tile--t1 .mapaint-image-layer-item--tile--t1,
.mapaint-image-editor .option--tile--h1 .mapaint-image-layer-item--tile--h1,
.mapaint-image-editor .option--tile--h2 .mapaint-image-layer-item--tile--h2,
.mapaint-image-editor .option--tile--l1 .mapaint-image-layer-item--tile--l1,
.mapaint-image-editor .option--tile--ny1 .mapaint-image-layer-item--tile--ny1 {
  background-color: #0085ff;
}

#mapaint-edit-display {
  width: 100%;
  z-index: 1;
}

#mapaint-editor-display {
  background-color: #f5f5f5;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
#mapaint-editor-display .loader-pos {
  position: absolute;
}

.drop-arrow {
  background-color: #7d829a;
  background-image: url("../../icons/arrow.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 22px;
  background-position: center 8px;
  background-repeat: no-repeat;
  background-size: 10px;
  pointer-events: none;
}

#layer-color {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  border-radius: 22px;
}

#mapaint-layer-colors {
  background-image: url("../../icons/color.svg");
  background-size: 32px;
}
#mapaint-layer-colors .option--drop-down {
  min-height: 100px;
  width: 227px;
  padding: 11px 0 0;
  -ms-flex-direction: column;
  flex-direction: column;
  left: -58px;
  /*560px*/
}
@media (min-width: 35em) {
  #mapaint-layer-colors .option--drop-down {
    left: -18px;
  }
}
#mapaint-layer-colors .option--drop-down--scrollable-colors-container {
  max-height: 190px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 11px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#mapaint-layer-colors .option--drop-down--color-range-slider {
  width: 100%;
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"] {
  background: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  padding: 16px 11px;
  border: none;
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]:focus {
  outline: none;
}

#mapaint-layer-colors .option--drop-down--color-range-slider input[type="text"] {
  outline: none;
  border:1px solid black;
  margin:10px;
  width: 90%;
}

#mapaint-layer-colors .option--drop-down--color-range-slider .dropdown-heading {
  margin-left:10px;
  margin-bottom:0px;
  font-weight:bold;
}

#mapaint-layer-colors .option--drop-down--color-range-slider #color-message {
  margin-left:10px;
  margin-bottom:10px;

}


#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -6px;
  border: 3px solid #0085ff;
  height: 24px;
  width: 24px;
  border-radius: 12px;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-moz-range-thumb {
  border: 3px solid white;
  height: 24px;
  width: 24px;
  border-radius: 12px;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-ms-thumb {
  border: 3px solid white;
  height: 24px;
  width: 24px;
  border-radius: 12px;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background: rgb(169,185,197);
  /* background: linear-gradient(
    90deg,
    rgb(169,185,197),   
    rgb(240,221,204) 15%,
    rgb(217,215,204) 27%,
    rgb(225,169,145) 38%,
    rgb(203, 166, 114) 49%,
    rgb(158, 161, 159) 62%,
    rgb(106, 109, 111) 74%,
    rgb(107, 96, 74) 85%,
    rgb(217, 228, 221) 95%
  ); */
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background: rgb(169,185,197);
  /* background: linear-gradient(
    90deg,
    rgb(169,185,197) 5%,
    rgb(240,221,204) 15%,
    rgb(217,215,204) 27%,
    rgb(225,169,145) 38%,
    rgb(203, 166, 114) 49%,
    rgb(158, 161, 159) 62%,
    rgb(106, 109, 111) 74%,
    rgb(107, 96, 74) 85%,
    rgb(217, 228, 221) 95%
  ); */
}
#mapaint-layer-colors .option--drop-down--color-range-slider input[type="range"]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background: rgb(169,185,197);
  /* background: linear-gradient(
    90deg,
    rgb(169,185,197) 5%,
    rgb(240,221,204) 15%,
    rgb(217,215,204) 27%,
    rgb(225,169,145) 38%,
    rgb(203, 166, 114) 49%,
    rgb(158, 161, 159) 62%,
    rgb(106, 109, 111) 74%,
    rgb(107, 96, 74) 85%,
    rgb(217, 228, 221) 95%
  ); */
}
#mapaint-layer-colors .mapaint-layer-color-item {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin: 0 5px 6px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#mapaint-layer-colors .mapaint-layer-color-item:nth-child(6n) {
  margin: 0 0 6px 0;
}
#mapaint-layer-colors .mapaint-layer-color-item--active {
  border: 2px solid rgba(45, 45, 45, 0.4);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}
#mapaint-layer-colors .mozaik-bg,
#mapaint-layer-colors #achat,
#mapaint-layer-colors #almatorta,
#mapaint-layer-colors #americano,
#mapaint-layer-colors #apatit,
#mapaint-layer-colors #bazalt,
#mapaint-layer-colors #berill,
#mapaint-layer-colors #bor,
#mapaint-layer-colors #brandy,
#mapaint-layer-colors #calvados,
#mapaint-layer-colors #cappuccino,
#mapaint-layer-colors #cseresznye,
#mapaint-layer-colors #csokolade,
#mapaint-layer-colors #dio,
#mapaint-layer-colors #ezust,
#mapaint-layer-colors #fagylalt,
#mapaint-layer-colors #frappe,
#mapaint-layer-colors #grafit,
#mapaint-layer-colors #granit,
#mapaint-layer-colors #halva,
#mapaint-layer-colors #karmell,
#mapaint-layer-colors #konyak,
#mapaint-layer-colors #krem,
#mapaint-layer-colors #lapisz,
#mapaint-layer-colors #latte,
#mapaint-layer-colors #macchiato,
#mapaint-layer-colors #malachit,
#mapaint-layer-colors #mandula,
#mapaint-layer-colors #marcipan,
#mapaint-layer-colors #marvany,
#mapaint-layer-colors #mez,
#mapaint-layer-colors #mokka,
#mapaint-layer-colors #muffin,
#mapaint-layer-colors #opal,
#mapaint-layer-colors #piskota,
#mapaint-layer-colors #praline,
#mapaint-layer-colors #szezam,
#mapaint-layer-colors #tejkaramell,
#mapaint-layer-colors #tiramisu,
#mapaint-layer-colors #truffel,
#mapaint-layer-colors #vanilia,
#mapaint-layer-colors #whisky,
#mapaint-layer-colors #zafir {
  background-image: url("../../images/mozaik_szinek.png");
  background-size: 1260px;
}
#mapaint-layer-colors #achat {
  background-position-x: 0;
}
#mapaint-layer-colors #almatorta {
  background-position-x: -30px;
}
#mapaint-layer-colors #americano {
  background-position-x: -60px;
}
#mapaint-layer-colors #apatit {
  background-position-x: -90px;
}
#mapaint-layer-colors #bazalt {
  background-position-x: -120px;
}
#mapaint-layer-colors #berill {
  background-position-x: -150px;
}
#mapaint-layer-colors #bor {
  background-position-x: -180px;
}
#mapaint-layer-colors #brandy {
  background-position-x: -210px;
}
#mapaint-layer-colors #calvados {
  background-position-x: -240px;
}
#mapaint-layer-colors #cappuccino {
  background-position-x: -270px;
}
#mapaint-layer-colors #cseresznye {
  background-position-x: -300px;
}
#mapaint-layer-colors #csokolade {
  background-position-x: -330px;
}
#mapaint-layer-colors #dio {
  background-position-x: -360px;
}
#mapaint-layer-colors #ezust {
  background-position-x: -390px;
}
#mapaint-layer-colors #fagylalt {
  background-position-x: -420px;
}
#mapaint-layer-colors #frappe {
  background-position-x: -450px;
}
#mapaint-layer-colors #grafit {
  background-position-x: -480px;
}
#mapaint-layer-colors #granit {
  background-position-x: -510px;
}
#mapaint-layer-colors #halva {
  background-position-x: -540px;
}
#mapaint-layer-colors #karmell {
  background-position-x: -570px;
}
#mapaint-layer-colors #konyak {
  background-position-x: -600px;
}
#mapaint-layer-colors #krem {
  background-position-x: -630px;
}
#mapaint-layer-colors #lapisz {
  background-position-x: -660px;
}
#mapaint-layer-colors #latte {
  background-position-x: -690px;
}
#mapaint-layer-colors #macchiato {
  background-position-x: -720px;
}
#mapaint-layer-colors #malachit {
  background-position-x: -750px;
}
#mapaint-layer-colors #mandula {
  background-position-x: -780px;
}
#mapaint-layer-colors #marcipan {
  background-position-x: -810px;
}
#mapaint-layer-colors #marvany {
  background-position-x: -840px;
}
#mapaint-layer-colors #mez {
  background-position-x: -870px;
}
#mapaint-layer-colors #mokka {
  background-position-x: -900px;
}
#mapaint-layer-colors #muffin {
  background-position-x: -930px;
}
#mapaint-layer-colors #opal {
  background-position-x: -960px;
}
#mapaint-layer-colors #piskota {
  background-position-x: -990px;
}
#mapaint-layer-colors #praline {
  background-position-x: -1020px;
}
#mapaint-layer-colors #szezam {
  background-position-x: -1050px;
}
#mapaint-layer-colors #tejkaramell {
  background-position-x: -1080px;
}
#mapaint-layer-colors #tiramisu {
  background-position-x: -1110px;
}
#mapaint-layer-colors #truffel {
  background-position-x: -1140px;
}
#mapaint-layer-colors #vanilia {
  background-position-x: -1170px;
}
#mapaint-layer-colors #whisky {
  background-position-x: -1200px;
}
#mapaint-layer-colors #zafir {
  background-position-x: -1230px;
}

.mapaint-user-images-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: start;
  align-items: flex-start;
}
.mapaint-user-images-container .mapaint-button-actions {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mapaint-user-images--item {
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px 20px;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.33% - 20px);
  max-width: 400px;
  min-width: 280px;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.mapaint-user-images--item--image-container {
  position: relative;
}
.mapaint-user-images--item--header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}
.mapaint-user-images--item--header--icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: 25px;
  background-position: center center;
  margin-right: 5px;
  background-repeat: no-repeat;
}
.mapaint-user-images--item--header--name {
  color: #0085ff;
  font-weight: 600;
  font-size: 0.85rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -ms-flex: 1;
  flex: 1;
}
.mapaint-user-images--item--header--actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.mapaint-user-images--item--header--actions a {
  cursor: pointer;
  margin: 0 2px;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.mapaint-user-images--item--header--actions a:hover {
  opacity: 1;
}
.mapaint-user-images--item--image {
  overflow: hidden;
  transition: box-shadow 0.4s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.mapaint-user-images--item--image img {
  max-width: 100%;
}
.mapaint-user-images--item--image:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.mapaint-user-images--item--footer {
  position: relative;
  margin: 10px 0;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}
.mapaint-user-images--item--footer--item {
  position: relative;
  margin-right: 10px;
  width: 100%;
}
.mapaint-user-images--item--footer--item:last-of-type {
  margin-right: 0;
}
.mapaint-user-images--item--footer--item--image {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background-color: #f5f5f5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-size: 26px;
  background-position: center center;
  background-repeat: no-repeat;
}
.mapaint-user-images--item--footer--item--image > div {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 14px;
}
.mapaint-user-images--item--footer--item--name {
  color: #0085ff;
  display: block;
  font-weight: 600;
  font-size: 0.65rem;
  width: 100%;
  text-align: center;
}
.mapaint-user-images--item--footer--item--layer {
  color: #7d829a;
  display: block;
  font-weight: 600;
  font-size: 0.65rem;
  width: 100%;
  margin-top: 5px;
  white-space: nowrap;
  text-align: center;
}
.mapaint-user-images--item--default {
  margin-top: 2rem;
}
.mapaint-user-images--item--default--image {
  box-shadow: none;
  transition: box-shadow 0.4s;
}
.mapaint-user-images--item--default:hover .mapaint-user-images--item--default--image {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

#mapaint-user-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 1rem;
}
#mapaint-user-menu .menu-item {
  margin-right: 1.6rem;
}
#mapaint-user-menu .menu-item a {
  font-weight: 600;
  font-size: 1rem;
}

.mapaint-print-container {
  display: none;
}
.mapaint-print-container .print-container .print-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.mapaint-print-container .print-container .image-name {
  color: #0085ff;
  font-weight: 600;
  font-size: 1.2rem;
}
.mapaint-print-container .print-container .image-type {
  color: #7d829a;
  font-weight: 600;
  font-size: 1rem;
}
.mapaint-print-container .print-container .print-image {
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  max-width: 960px;
}
.mapaint-print-container .print-container .print-image img {
  width: 100%;
  max-width: 100%;
}
.mapaint-print-container .print-container .mapaint-user-images--item--footer--item {
  max-width: 190px;
}
.mapaint-print-container .print-container .mapaint-user-images--item--footer--item--layer,
.mapaint-print-container .print-container .mapaint-user-images--item--footer--item--name {
  font-size: 0.9rem;
}

@media print {
  .mapaint-print-container {
    display: block !important;
  }
}

.mapaint-registration-container input[type="submit"]:disabled {
  background-color: #aaa;
}

.highcharts-figure,
.highcharts-data-table table {
  min-width: 310px;
  margin: 1rem auto 4rem auto;
}

/*

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #EBEBEB;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}
.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}
.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
  padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}
.highcharts-data-table tr:hover {
  background: #f1f7ff;
}*/

.custom-width {
  width: 200px;
  text-align: center;
}
.custom-width p {
  width: auto;
  text-align: center;
}

.accent {
  accent-color: red;
}

input {
  width: 300px;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
  input[type='range'] {
    overflow: hidden;
    width: 80px;
    -webkit-appearance: none;
    background-color: #9a905d;
  }
  
  input[type='range']::-webkit-slider-runnable-track {
    height: 10px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: -1px;
  }
  
  input[type='range']::-webkit-slider-thumb {
    width: 10px;
    -webkit-appearance: none;
    height: 10px;
    cursor: ew-resize;
    background: #434343;
    box-shadow: -80px 0 0 80px #43e5f7;
  }

}
/** FF*/
input[type="range"]::-moz-range-progress {
background-color: #43e5f7; 
}
input[type="range"]::-moz-range-track {  
background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
background-color: #43e5f7; 
}
input[type="range"]::-ms-fill-upper {  
background-color: #9a905d;
}