/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////           FINISH DINAMIC             //////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */

.check_dinamic_button {
  left: 0%;
  top: 33%;
  width: 100px;
  height: 80px;
  background: #0097d4;
  opacity: 0.7;
  border-radius: 2px;
}

.check_dinamic_button:hover {
  width: 115px;
  transition: 1s width;
  -moz-transition: all 1s width;
  -webkit-transition: all 1s width;
  -o-transition: all 1s width;
  transition: all1s width;
}

/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ////////////////////                ALERTS               //////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */

.popup_wrapper {
  background-color: #FFFFFF;
  width: 40%;
  border-width: 5vmin;
  border-style: solid;
  padding: 1%;
  font: normal 16px/26px base_font;
  color: #ffffff;
  box-sizing: border-box;
  text-align: center;
}

.popup_container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background: white;
  border-radius: 10px;
  border: 5px solid #9AD3DE;
  box-sizing: border-box;
}

.popup_texts_style {
  font-weight: 100;
  letter-spacing: 0.5px;
}

.popup_title {
  font-size: 40px;
  text-align: center;
  color: #666666;
  margin: 0 0 30px 0;
}

.popup_subtitle {
  text-align: center;
  margin: 0 0 30px 0;
}

.popup_paragraph {
  margin: 30px auto;
  text-align: center;
}

.popup_button {
  color: #FFFFFF;
  background: var(--additional-color);
  border: 0;
  border-radius: 2px;
  padding: 7px 15px;
  cursor: pointer;
}

.popup_button > p{
  margin-bottom: 0;
  color: white;
}

.alert_window, .alert_window_custom {
  background: rgba(100, 100, 100, 0.6);
  position: fixed;
  display: none;
  z-index: 5000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.explanation_wrapper {
  background-color: #FFFFFF;
  width: 40%;
  font: normal 16px/26px base_font;
  color: #ffffff;
  padding: 40px 20px 40px;
  box-sizing: border-box;
  text-align: center;
  overflow-y: auto;
}

.explanation_container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background: white;
  border-radius: 10px;
  border: 5px solid #9AD3DE;
  box-sizing: border-box;
}

.explanation_texts_style {
  font-weight: 100;
  letter-spacing: 0.5px;
}

.explanation_title {
  font-size: 40px;
  text-align: center;
  color: #666666;
  margin: 0 0 30px 0;
}

.explanation_subtitle {
  font-size: 34px;
  text-align: center;
  color: #666666;
  margin: 0 0 30px 0;
}

.explanation_paragraph {
  color: #666666;
  margin: 30px auto;
  text-align: center;
  font-size: 16px;
}

.explanation_button {
  background: #181818;
  ;
  background: var(--additional-color);
  border: 0;
  border-radius: 2px;
  padding: 7px 15px;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;

  &:focus {
    outline: none;
  }

  &:hover {
    background: lighten(#89BDD3, 10%);
  }
}

.alert_popup {
  background: rgba(100, 100, 100, 0.6);
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;

  >div {
    position: fixed;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 0px rgba(#000000, 0.3);
    padding: 30px 15px;
    /* Width of popup can be changed */
    width: 70%;
    max-width: 600px;
    z-index: 5001;
    @include transform(translate(-50%, -50%));
    left: 50%;
    top: 50%;
    text-align: center;
  }
}

/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ////////////////////            MEDIA QUERIES            //////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */

@media screen and (max-width: 767px) {
  .popup_wrapper {
    width: 90%;
  }

  .explanation_wrapper {
    width: 90%;
  }
}
