#myBusinessMainDiv {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height:100vh;
    width: 100%;
    overflow: hidden;
}

#myBusinessHeaderDiv {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 7%;
    width: 100%;
    z-index: 3;
}

#myBusinessLeftPart {
    position: relative;
    display: flex;
    align-items: center;
    width: 33%;
    height: 100%;
}
#myBusinessTitle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34%;
    height: 100%;
    font-size: 1.2rem;
}
#myBusinessRightPart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 33%;
    height: 100%;
}

#myBusinessIconDiv {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 70px;
    background-color: rgb(231 39 98);
}

.exitMyBusinessButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 10px;
    height: auto;
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
}


#myBusinessBody {
    position: relative;
    display: flex;
    height: 93%;
    width: 100%;
}

.myBusinessInfoHolder {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 60%;
    margin-left: 20%;
    border-radius: 15px;
    font-size: 0.9rem;
}

.myBusinessIntroMapImageBCK {
    position: absolute;
    display: flex;
    height: 30%;
    width: 80%;
    margin-left: 10%;
    opacity: 0;
    scale: 0;
    animation: myBusinessBringInMapBCK 1s forwards 1s;
}
.myBusinessIntroMapImageBCK img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures whole image fits */
}
@keyframes myBusinessBringInMapBCK {
  0% {
    scale: 0;
    opacity: 0;
  }
  60% {
    scale: 1;
    opacity: 1;
  }
  100% {
    margin-top: 25%;
    scale: 1;
    opacity: 1;
  }
}

.myBusinessIntroPointerImageBCK {
    position: absolute;
    display: flex;
    height: auto;
    width: 15%;
    margin-left: 50%;
    opacity: 0;
    animation: myBusinessBringInMapPointerBCK 1s ease-in-out forwards 1.8s;
    z-index: 2;
}
.myBusinessIntroPointerImageBCK img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures whole image fits */
}
@keyframes myBusinessBringInMapPointerBCK {
  0% {
    margin-top: 10%;
    opacity: 1;
  }
  50% {
    margin-top: 25%;
    opacity: 1;
  }
  60% {
    margin-top: 24%;
    opacity: 1;
  }
  70% {
    margin-top: 25%;
    opacity: 1;
  }
  80% {
    margin-top: 24%;
    opacity: 1;
  }
  100% {
    margin-top: 25%;
    opacity: 1;
  }
}

.myBusinessInfoLine1 {
  position: absolute;
  top: 40px;
  left: 250px;
  opacity: 0;
  animation: bringInBusinessInfoOne 0.8s ease-in-out forwards 1.8s;
}
@keyframes bringInBusinessInfoOne {
  0% {
    top: 40px;
    opacity: 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  100% {
    top: 50px;
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

.myBusinessInfoLine2 {
  position: absolute;
  top: 540px;
  left: 250px;
  opacity: 0;
  animation: bringInBusinessInfoTwo 0.8s ease-in-out forwards 2s;
}
@keyframes bringInBusinessInfoTwo {
  0% {
    top: 540px;
    opacity: 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  100% {
    top: 570px;
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

.myBusinessInfoLine3 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  color: #ff7e7e;
  opacity: 0;
  animation: bringInBusinessInfoThree 0.8s ease-in-out forwards 2.2s;
}
@keyframes bringInBusinessInfoThree {
  0% {
    bottom: 0px;
    opacity: 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  100% {
    bottom: 40px;
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

.createMyBusinessButtonHolder {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10%;
  height: 10%;
  width: 100%;
}

#createMyBusinessButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    animation: bringInBusinessCreateBusinessButton 0.5s ease-in-out forwards 2.2s;
    opacity: 0;
    cursor: pointer;
}
#createMyBusinessButton:hover {
  letter-spacing: 1px;
}
@keyframes bringInBusinessCreateBusinessButton {
  0% {
    opacity: 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}















/* ****************** MOBILE VERSION **************** */

@media (max-width: 768px) {

    #myBusinessHeaderDiv {
          flex-direction: column;
          height: auto;
          padding-top: 10px;
          padding-bottom: 10px;
      }
      #myBusinessLeftPart {
          width: 100%;
          margin-bottom: 10px;
      }
      #myBusinessTitle {
          width: 100%;
          margin-bottom: 10px;
      }
      #myBusinessRightPart {
          width: 100%;
          margin-bottom: 10px;
      }

      .myBusinessInfoHolder {
          position: relative;
          display: flex;
          height: 100%;
          width: 100%;
          margin-left: 0%;
          font-size: 0.8rem;
          background-color: rgb(255 255 255 / 60%);
          border-radius: 10px;
      }

      @keyframes myBusinessBringInMapBCK {
      0% {
        scale: 0;
        opacity: 0;
      }
      60% {
        scale: 1;
        opacity: 1;
      }
      100% {
        margin-top: 40%;
        scale: 1;
        opacity: 1;
      }
    }

    @keyframes myBusinessBringInMapPointerBCK {
      0% {
        margin-top: 10%;
        opacity: 1;
      }
      50% {
        margin-top: 50%;
        opacity: 1;
      }
      60% {
        margin-top: 49%;
        opacity: 1;
      }
      70% {
        margin-top: 50%;
        opacity: 1;
      }
      80% {
        margin-top: 49%;
        opacity: 1;
      }
      100% {
        margin-top: 50%;
        opacity: 1;
      }
    }

    .myBusinessInfoLine1 {
      position: absolute;
      top: 10px;
      left: 20px;
      opacity: 0;
      animation: bringInBusinessInfoOne 0.8s ease-in-out forwards 1.8s;
    }
    @keyframes bringInBusinessInfoOne {
      0% {
        top: 0px;
        opacity: 0;
        filter: blur(2px);
        -webkit-filter: blur(2px);
      }
      100% {
        top: 0px;
        opacity: 1;
        filter: blur(0px);
        -webkit-filter: blur(0px);
      }
    }

    .myBusinessInfoLine2 {
      position: absolute;
      top: 47%;
      left: 20px;
      opacity: 0;
      animation: bringInBusinessInfoTwo 0.8s ease-in-out forwards 2s;
    }
    @keyframes bringInBusinessInfoTwo {
      0% {
        top: 47%;
        opacity: 0;
        filter: blur(2px);
        -webkit-filter: blur(2px);
      }
      100% {
        top: 50%;
        opacity: 1;
        filter: blur(0px);
        -webkit-filter: blur(0px);
      }
    }

    #createMyBusinessButton {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
      width: auto;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 25px;
      padding-right: 25px;
      font-size: 1rem;
      letter-spacing: 2px;
      color: #ffffff;
      background-color: #0070f1;
      border-radius: 5px;
      cursor: pointer;
  }
}