@font-face {
  font-family: "Dosis";
  src: url("/editor/assets/fonts/Dosis-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Dosis";
  src: url("/editor/assets/fonts/Dosis-Bold.ttf") format("truetype");
  font-weight: bold;
}
html,
body {
  font-family: "Dosis" !important;
}

html,
body,
.cw-canvas {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cw-button {
  position: absolute;
  z-index: 1030;
  right: 16px;
  bottom: 16px;
  border: none;
  border-radius: 2px;
  height: 32px;
  width: 32px;
}
.cw-progress-bar {
  position: relative;
  background-image: url("/editor/assets/loading/mapa-final-full.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 1s;
}

#myProgress {
  width: 50%;
  background-color: #ddd;
  margin-bottom: 5vh;
}

#myBar {
  width: 50%;
  height: 30px;
  background-color: #04aa6d;
}

.cw-text-information-download {
  font-weight: bold;
  font-size: 38px;
  color: #fff;

  display: flex;
  align-items: flex-end;
}

.cw-status-progress-bar {
  position: relative;
  width: 50%;
  height: 50px;
  border: 3px solid #fff;
  padding: 2px;
  border-radius: 2px;

  margin-bottom: 3vh;
}
.cw-status-progress-bar-text {
  position: absolute;
  color: #454545;
  font-weight: bold;
  display: flex;
  font-size: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.cw-status-progress-bar-bg {
  position: relative;
  height: 100%;
  border-radius: 2px;
  background-size: 100%;
  background: #fff linear-gradient(to bottom, #fff, #fff);
  text-align: center;
}

.cw-status-progress-bar-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: linear-gradient(
    45deg,
    #ccc 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    #ccc 50%,
    #ccc 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0)
  );
  background-size: 30px 30px;
  opacity: 0.1;
  animation: animationProgressSales 3s infinite linear;
}

@keyframes animationProgressSales {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 30px 100%;
  }
}
