/* Variables */
:root {
  --main-color: #e3051f;
  --main-color-subtle: #fcebec;
  --main-color-hover: #ffa445;
  --secondary-color: #9d9c9c;
  --grey: #707070;
  --light-grey: #b7b7b7;
  --ultra-light-grey: #f5f5f5;
  --ultra-light-grey-rgb: 245, 245, 245;
  --max-light-grey: #dbdbdb;
  --correct-answer-color: #4caf50;
  --wrong-answer-color: #f44336;
  --progress-connector-width: 30%;
  --current-section-color: #e3051f;
  --current-progress-section-color: #099d17;
  --poi-details-color: #e3051f;
  --section-1-color: #099d17;
  --section-2-color: #e3051f;
  --section-3-color: #f98837;
  --section-4-color: #4b60db;
  --section-5-color: #db4bb2;
  --challenge-color: #ffac33;
  --current-challenge-color: #ffac33;
}

html {
  min-height: 100vh;
  height: 100vh;

  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  color: #000;

  user-select: none;
}

body {
  min-height: 100%;
  height: 100%;

  margin: 0;
  padding: 0;
  background: #fff;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

/*** Dialogs ***/
.dialog-container {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #00000066;
  z-index: 2;
}

.dialog {
  position: relative;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 1px 4px 0px #00000040;
}

/*** Dialog messages ***/
.msg-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  display: none;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.4);
  padding: 0px 15px;
  z-index: 20;
}

.msg-dialog-div {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px 20px 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  margin: 0px 34px;
  position: absolute;
}

.msg-dialog-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.msg-dialog-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 20px;
}

.msg-dialog-img {
  width: 229px;
  margin-bottom: 20px;
}

.msg-dialog-text {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

.msg-dialog-div button {
  width: 100%;
  padding: 10px 32px;
  font-family: Lato;
  font-weight: 600;
  background: white;
  color: black;
  border: 1px solid var(--main-color);
  margin-bottom: 0px;
  border-radius: 10px;
  box-shadow: 0px 1px 4px 0px #00000040;
}

.msg-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 13px;
  height: 13px;
}

.msg-dialog-label {
  width: 100%;
  text-align: left;
  margin-bottom: 6px;
  font-size: 14px;
}
