@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');
*, *::after, *::before{
    box-sizing: border-box;
}

.modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    z-index: 10;
    background-color: white;
    width: 60vw;
    max-width: 80%;
  }
  
  .modal.active {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .modal-header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ebad0b;
  }
  
  .modal-header .title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
  }
  
  .modal-header .close-button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
  }
  
  .modal-body {
    padding: 10px 15px;
    text-align: center;
    display: flex;
    border: #ebad0b solid 2px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    align-items: center;
    justify-content: center;
  }
  
  #overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
  }
  
  #overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .inside-body{
    max-width: 50%;
  }

  .photos{
      max-width: 60%;
      /*max-height: 20vw;*/
      margin-top: 20px;
      margin-bottom: 20px;
   }

  .modalButtons{
    background: none;
    border: none;
    color: #ebad0b;
    font-weight: bold;
  }

  .selects{
    /*border: solid 1px red;*/
    padding: 5px 0 5px;
  }

  .mainQuestions{
    padding: 15px 0 15px;
  }

  #yesApp, #tagsSpotted, #finish, #yesNeed{
    display: none;
  }

  #yesNeed, #yesSpotted{
    padding-left: 20px;
    padding-top: 10px;
  }

  #appTry{
    display: none;
    padding-top: 30px;
  }

  #activities{
    padding-top: 10px;
  }

  #otherAct{
    display: none;
  }

  #socialMediaSpotted{
    display: none;
  }

  #submit{
    background: #ebad0b;
    color: white;
    border: none;
    padding: 5px 20px 5px;
    border-radius: 5px;
  }

  #submit:hover{
    background: #dba00a;
  }

  #opening{
    padding-bottom: 20px;
  }

  select{
    border: 1px solid #ebad0b;
    background-color: #ebad0b;
    color: white;
  }

  #return{
    display: none;
  }

  #yourIP{
    display: none;
    color: transparent;
  }

  #return:hover{
    color: #dba00a;
    transition: 1s;
  }

  #photo{
    max-width: 30vw;
    max-height: 50vh;
  }

  #yourIP{
    display: block;
  }

  @media (max-width: 992px){
    #photo{
      display: none;
    }

    #container{
      font-size: 30px;
    }

    #submit{
      margin-top: 30px;
      padding: 15px 20px 15px;
      font-size: 30px;
    }

    select{
      font-size: 20px;
      min-height: 50px;
    }

    input{
      border: 3px solid #ebad0b;
      padding: 5px 15px 5px;
      font-size: 20px;
    }

    #meetings{
      padding: 220px 50px 100px;
    }

    .modalButtons{
      font-size: 23px;
    }

    .mainQuestions{
      margin-top: 50px;
    }

    input[type=checkbox]{
      -ms-transform: scale(2); /* IE */
      -moz-transform: scale(2); /* FF */
      -webkit-transform: scale(2); /* Safari and Chrome */
      -o-transform: scale(2); /* Opera */
      transform: scale(2);
    }

    .modal{
      width: 90vw;
    }

    .modal-body{
      font-size: 30px;
    }

    .photos{
      display: none;
    }

    .inside-body{
      max-width: 90%;
      padding: 30px 20px 30px;
    }
  }


