* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #224941 url("bg.jpg") no-repeat center center/cover;
  min-height: 100vh;
  color: #fff;
  font-family: sans-serif;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

select {
  min-width: 100px;
  min-height: 10px;
  /* border-radius: 20px; */
  padding: 5px 10px;
  border: none;
  outline: none;
  background: #2B5D54;
  color: #fff;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  font-size: 1.2em;
}

select:focus {
  min-width: 100px;
  min-height: 10px;
  /* border-radius: 20px; */
  padding: 5px 10px;
  border: none;
  outline: none;
  background: #2B5D54;
  color: #fff;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  font-size: 1.2em;
}

button {
  border: none;
  outline: none;
  min-width: 100px;
  min-height: 10px;
  padding: 5px 10px;
  margin-top: 10px;
  /* background: #2B5D54; */
  /* color: #fff; */
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  font-size: 1.2em;
}

select option {
  outline: none;
  border: none;
  border-radius: 20px;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  height: 300px;
  width: 300px;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.circle {
  background-color: #010f1c;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.gradient-circle {
  background: conic-gradient(#55b7a4 0%, #4ca493 40%, #fff 40%, #fff 60%, #336d62 60%, #2a5b52 100%);
  height: 320px;
  width: 320px;
  z-index: -2;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
}

span.pointer {
  /*z-index: 999;*/
  background-color: white;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: block;
  /*z-index: 999;*/
}

.pointer-container {
  /*z-index: 999;*/
  /*background-color: blue;*/
  position: absolute;
  top: -40px;
  left: 140px;
  width: 20px;
  height: 190px;
  -webkit-animation: rotate 7.5s linear forwards infinite;
          animation: rotate 7.5s linear forwards infinite;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.container.grow {
  -webkit-animation: grow 3s linear forwards;
          animation: grow 3s linear forwards;
}

@-webkit-keyframes grow {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes grow {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.container.shrink {
  -webkit-animation: shrink 3s linear forwards;
          animation: shrink 3s linear forwards;
}

@-webkit-keyframes shrink {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes shrink {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.container.shrink2 {
  -webkit-animation: shrink 4s linear forwards;
          animation: shrink 4s linear forwards;
}

.container.grow2 {
  -webkit-animation: grow 4s linear forwards;
          animation: grow 4s linear forwards;
}

@media (max-width: 412px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    height: 300px;
    width: 300px;
    position: relative;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    top: -80px;
  }
  select {
    position: relative;
    top: 10px;
    min-height: 10px;
    /* border-radius: 20px; */
    padding: 5px 10px;
    border: none;
    outline: none;
    background: #2B5D54;
    color: #fff;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
  }
  h1 {
    margin-top: 70px;
    font-size: 3em;
  }
  p {
    margin-top: -20px;
  }
  select:focus {
    border: none;
    outline: none;
    background: #2B5D54;
    color: #fff;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
  }
  select option {
    outline: none;
    border: none;
    border-radius: 20px;
  }
  #text {
    position: relative;
    top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */