/* ----- MOBILE PHONE CSS ---- */
@media (max-width: 768px) {

  #myBusinessBody {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  #myBusinessSettingsBody {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: -100px;
    left: 0px;
    height: auto;
    width: 100%;
    transition: all 0.3s 
    ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  #myBusinessContentBody {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100px;
    left: 0px;
    height: auto;
    width: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    }

  .myBusinessEditMapHolder {
    position: relative;
    display: flex;
    height: 500px;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    animation: bringInBusinesEditMap 0.5s ease-in-out 1s forwards;
  }
  @keyframes bringInBusinesEditMap {
    0% {
      opacity: 0;
      scale: 0.95;
    }
    100% {
      opacity: 1;
      scale: 1;
    }
  }

  #myBusinessSelectWAcubeFace {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    height: auto;
    width: 100%;
    transition: all 0.7s 
    ease-in-out;
    visibility: visible;
  }

  #myBusinessWorkAreaCategoriesHOLDER {
    position: relative;
    display: block;
    padding-left: 5%;
    margin-top: 20px;
    height: auto;
    width: 90%;
    overflow-y: visible;
    overflow-x: visible;
  }

  .MBmakeSpace {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  #myBusinessPhoneInputHolder {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .MBratingContentHolder {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: auto;
    width: 100%;
    margin-top: 1%;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }

  .MBcopyBusinessLinkRow {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90%;
    padding: 5%;
  }

  .MBiconAndLinkHolder {
    position: relative;
    display: flex;
    height: auto;
    width: 80%;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
  }

  .MBcopyLinkButtonHolder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    padding: 15px;
    border-radius: 10px;
  }

  .MBfieldContainer {
    
  }

  .MBPLiconHolder {
    position: relative;
    display: flex;
    height: 45px;
    width: 45px;
  }



  .MBMiddleContentHolder {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    margin-top: 1%;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .MBrightSideContentHolder {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    margin-top: 1%;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;

  }

  .showcasePresentationsHolder {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    transform-style: preserve-3d;
    perspective: 1600px; /* Enable 3D depth */
  }

  .showcaseInfoHolder {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      height: auto;
      width: 100%;
    }

  .singleBusinessPresentation {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }

}