.myBusinessUniversalScrolling {
  overflow-y: auto;
  overscroll-behavior: contain; /* stops wheel propagation */
}

#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;
}

#myBusinessBody {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 93%;
  width: 100%;
  transform-style: preserve-3d;
  perspective: 1600px;
  transition: all 0.4s ease-in-out;
  z-index: 4; /* to not get shined trough by buttons */
}

.myBusinessHeaderButtonsHolder {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

.exitMyBusinessButton {
  position: relative;
  display: flex;
  float: left;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 50px;
  height: 65px;
  width: 100px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 4px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  user-select: none;
}
.exitMyBusinessButton:hover {
  height: 70px;
}

.myBusinessSectionSwitchButtons {
  position: relative;
  display: flex;
  float: left;
  align-items: center;
  margin-top: -5px;
  margin-left: 10px;
  height: 60px;
  width: 200px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
  z-index: 3;
}
.myBusinessSectionSwitchButtons:hover {
  height: 70px;
}

.myBusinessSectionSwitchButtonsActive {
  height: 70px !important;
  letter-spacing: 2px !important;
  z-index: 1 !important; /* to not cast shadow on onther buttons */
}

.MBswitchButtonIcons {
  position: relative;
  display: flex;
  height: 35px;
  width: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.MBswitchIconsText {
  position: absolute;
  left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  height: 100%;
}

.MBswitchButtonGeneralInfoIcon {
  background-image: url("../../images/siteUsage/infoIcon.png");
}
.MBswitchButtonMapIcon {
  background-image: url("../../images/siteUsage/map.png");
}
.MBswitchButtonWorkAreaIcon {
  background-image: url("../../images/siteUsage/center_focus.png");
}
.MBswitchButtonProductIcon {
  background-image: url("../../images/siteUsage/spotlight.png");
}


.myBusinessColorTrail {
  position: absolute;
  display: block;
  top: 35%;
  left: 80%;
  height: 2px;
  width: 2px;
}

.myBusinessSectionDiv {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-top: 3%;
  height: 94%;
  width: 100%;
  border-radius: 10px;
  transition: all 0.7s ease-in-out;
}

.myBusinessInfoHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
  width: 40%;
  padding-left: 30%;
  padding-right: 30%;
  padding-bottom: 2%;
  z-index: 2; /* to cover lighting trail */
}

.myBusinessCategoryHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  z-index: 2; /* to cover lighting trail */
}

.myBusinessInputTitle {
  position: relative;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
  height: auto;
  width: auto;
  font-size: 0.8rem;
}

.myBusinessInputField {
  position: relative;
  display: flex;
  height: auto;
  width: 96%;
  padding-left: 15px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 15px;
  font-family: 'Exo', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  outline: none;
  animation: bringInMyBusinessFieldsAnim 1s ease-in-out forwards;
  opacity: 0;
}
@keyframes bringInMyBusinessFieldsAnim {
    0% {
      opacity: 0;
      transform: rotateX(360deg);
      margin-top: -100px;
    }
    1% {
      opacity: 0;
      transform: rotateX(360deg);
      margin-top: -100px;
    }
    50% {
      opacity: 1;
      margin-top: 20px;
    }
    70% {
      opacity: 1;
      margin-top: 10px;
    }
    85% {
      opacity: 1;
      transform: rotateX(0deg);
      margin-top: -10px;
    }
    100% {
      opacity: 1;
      margin-top: 0px;
    }
}
.myBusinessInputField::placeholder {
    font-weight: normal !important;
}

.myBusinessNameInput {
  font-size: 1.1rem !important;
  letter-spacing: 2px !important;
}

.myBusinessCountryCallingField {
  margin-left: 10px;
  width: 70px !important;
  text-align: center;
}

.myBusinessPhoneNumberField {
  margin-left: 10px;
}

.myBusinessCountryFlagHolder {
  position: relative;
  display: flex;
  height: 55px;
  width: 60px;
  justify-content: center;
  align-items: center;
}

.myBusinessTextareaInput {
  position: relative;
  display: flex;
  height: auto;
  width: 96%;
  padding-left: 15px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 15px;
  font-family: 'Exo', sans-serif;
  font-size: 0.9rem;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  outline: none;
  opacity: 0;
  animation: appearMedia 1.5s forwards;
}

.myBusinessLogoSelectionHolder {
  position: relative;
  display: flex;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  overflow: hidden;
  border-style: solid;
  border-width: 2px;
}

/*  work categories */


.myBusinessSelectedWorkCategoryHolder {
  position: relative;
  display: flex;
  height: 130px;
  width: auto;
  margin-left: 30px;
}

.myBusinessWorkCategoryCard {
  position: relative;
  display: flex;
  flex-direction: column;
  float: left;
  height: 100px;
  width: 300px;
  border-style: solid;
  border-width: 2px;
  border-top-left-radius: 25px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 25px;
  transition: all 0.2s ease-in-out;
  user-select: none;
  cursor: pointer;
}
.myBusinessWorkCategoryCard:hover .myBusinessCategoryImageHolder {
  scale: 1.25;
  opacity: 1;
}


.myBusinessCategoryTitle {
  position: relative;
  display: block;
  height: auto;
  margin-top: 10px;
  width: 90%;
  padding-left: 5%;
  padding-right: 2%;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.myBusinessCategoryImageHolder {
  position: relative;
  display: flex;
  justify-content: center;
  float: left;
  margin-top: 10px;
  margin-left: 10px;
  height: 57px;
  width: 75px;
  transition: all 0.3s ease-in-out;
  opacity: 0.9;
  z-index: 2;
}

.workCategoryImage {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.smallCategoryDesc {
  position: relative;
  display: block;
  float: left;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 10px;
  height: auto;
  width: auto;
  font-size: 0.8rem;
}

.myBusinessCategoriesListHolder {
  position: relative;
  display: block;
  height: 98%;
  width: 45%;
  border-radius: 10px;
}

.myBusinessCategoriesHeader {
  position: relative;
  display: flex;
  height: 20%;
  width: 96%;
  padding-left: 2%;
  padding-right: 2%;
  user-select: none;
}

.myBusinessCategoriesSplitedHeader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  width: 100%;
  user-select: none;
}

.myBusinessCategoryAreaTitle {
  position: relative;
  display: flex;
  height: auto;
  margin-left: 5%;
  width: 95%;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.myBusinessCategoryAreaSubTitle {
  position: relative;
  display: flex;
  height: auto;
  margin-left: 10%;
  width: 90%;
  font-size: 1rem;
  letter-spacing: 2px;
}

.myBusinessCategoriesList {
  position: relative;
  display: block;
  height: 79%;
  width: 95%;
  overflow-x: hidden;
  overflow-y: scroll;
  transform-style: preserve-3d;
  perspective: 1600px;
}

.myBusinessCategoryCardListAdition {
  float: left;
  margin-top: 10px;
  margin-left: 20px;
}
.myBusinessCategoryCardListAnimation {
  animation: listSingleWAcategorySpawn 0.8s ease forwards;
}
@keyframes listSingleWAcategorySpawn {
  from {
    transform: translate(var(--dx), var(--dy)) rotateY(360deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.myBusinessCategoryCardListAdition:hover {
  scale: 1.1;
  z-index: 3;
}

.myBusinessCategoryCardUserSelectedAnimation {
  animation: selectedWAcategorySpawn 0.5s ease-in-out forwards;
}
@keyframes selectedWAcategorySpawn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    margin-top: -10px;
  }
  80% {
    opacity: 1;
    margin-top: 10px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

.myBusinessMainButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 25px;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

/* map settings */

.myBusinessMAPSettingsWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 95%;
  width: 60%;
}

.myBusinessMapCoordinatesHolder {
  position: relative;
  display: flex;
  height: 50px;
  width: 80%; /* same as myBusinessMapBox */
  font-size: 0.8rem;
}

#myBusinessEchoLongitude {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  width: 100%;
}

#myBusinessEchoLatitude {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
  width: 100%;
}

.myBusinessSettingsMapBox {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 85%;
  width: 100%;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  overflow: hidden;
}

.myBusinessMapBox {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 80%;
  opacity: 0;
}

.myBusinessMapAppearAnim {
  animation: myBusinessMapAppearEffect 1s ease-in-out forwards;
}
@keyframes myBusinessMapAppearEffect {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#editBusinessMap {
  position: relative;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.MBonOffSwitch {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  height: 25px;
  width: 100px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-style: solid;
  border-width: 1px;
}

.myBusinessCountryFlag {
  position: relative;
  display: flex;
  height: 30px;
  width: auto;
}
.myBusinessCountryFlag img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#myBusinessMapPointerCircle {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none; /* so it doesn’t block clicks */
  transform: translate(-50%, -85%);
  display: none; /* hidden until hover */
  z-index: 1000;
}

.longitudeUpdatedAnim {
  animation: longitudeUpdatedKeys 0.5s ease-in-out none;
}
@keyframes longitudeUpdatedKeys {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
    opacity: 0;
  }
  55% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.latitudeUpdatedAnim {
  animation: latitudeUpdatedKeys 0.5s ease-in-out none;
}
@keyframes latitudeUpdatedKeys {
 0% {
    margin-top: 0px;
  }
  50% {
    margin-top: -20px;
    opacity: 0;
  }
  55% {
    margin-top: 20px;
    opacity: 0;
  }
  100% {
    margin-top: 0px;
    opacity: 1;
  }
}

.myBusinessMapLevelHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 20%;
}

.myBusinessMapLevelSelectHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 25%;
  width: 89%;
  padding-left: 10%;
  margin-bottom: 3px;
  border-style: solid;
  border-width: 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  user-select: none;
}
.myBusinessMapLevelSelectHolder:hover {
  scale: 1.05;
  z-index: 3;
}

.myBusinessMapLevelSelectEDHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 25%;
  width: 88%;
  padding-left: 10%;
  margin-bottom: 3px;
  border-style: solid;
  border-width: 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 2;
  user-select: none;
}

.myBusinessMapLevelsAppearAnim {
  animation: myBusinessMapLevelsAppearEffect 0.4s ease-in-out forwards;
}
@keyframes myBusinessMapLevelsAppearEffect {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  90% {
    opacity: 1;
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.myBusinessMapLevelTitle {
  position: relative;
  display: flex;
  align-items: center;
  width: 80%;
  font-size: 1rem;
  letter-spacing: 2px;
}

.levelZoomNumber {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  font-size: 1.5rem;
  font-weight: bold;
}

.myBusinessEchoLevelVisible {
  position: relative;
  display: block;
  font-size: 0.8rem;
}

.echoLevelZoomPercentage {
  position: relative;
  display: block;
  margin-top: 20px;
  height: auto;
  width: 100%;
  font-size: 1.5rem;
}

.myBusinessMapLevelIllustrationHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 25%;
  width: 100%;
  border-bottom-right-radius: 10px;
  opacity: 0;
}

.myBusinessMapLevelIllustrationLevelDef {
  position: relative;
  display: flex;
  height: 50%;
  width: 10%;
}

.myBusinessMapLevelIllustrationLevelSel {
  position: relative;
  display: flex;
  height: 50%;
  width: 30%;
}

.myBusinessMapLevelIllustrationFlagHolder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75%;
  width: 100%;
  margin-top: 10%;
  margin-bottom: 15%;
}

.flagInMBLevelIllustration {
  position: relative;
  display: block;
  height: 36px;
  width: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.myBusinessSelectedMapLevelAnim {
  animation: myBusinessSelectedMapLevelKeys 0.5s forwards;
}
@keyframes myBusinessSelectedMapLevelKeys {
  0% {
    opacity: 0.5;
    scale: 1.2;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.myBusinessMapCircleTargetingInProgressAnim {
  animation: myBusinessMapCircleTargetingInProgressKeys 0.7s infinite;
}
@keyframes myBusinessMapCircleTargetingInProgressKeys {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0.1;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

/* ----------- VISIT CARD SECTION */

.myBusinessVisitCardBody {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.myBusinessVisitCardTemplatesWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 30%;
  width: 100%;
}

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

.myBusinessVisitCardTitle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10%;
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-style: italic;
  font-weight: bold;
}

.myBusinessVisitCardSettingsWrapper {
  position: relative;
  display: block;
  height: auto;
  width: calc(100% - 552px); /* - 2 times card width because of two div implementation */
}

.myBusinessVisitCardWrapper {
  position: relative;
  display: flex;
  height: auto;
  width: 276px;
  align-items: center;
  transform-style: preserve-3d;
  perspective: 1700px;
}

.myBusinessVisitCardEdited {
  position: relative;
  display: block;
  margin-top: 50px;
  height: 143px;
  width: 276px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  animation: myBusinessVisitCardAppearKeys 0.5s ease-in-out forwards;
}

@keyframes myBusinessVisitCardAppearKeys {
  0% {
    opacity: 0;
    margin-top: 50px;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    margin-top: -20px;
  }
  90% {
    opacity: 1;
    margin-top: 10px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

.myBusinessVisitCardBackgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
}

.myBusinessVisitCardBusinessLogoHolder {
  position: absolute;
  top: 5px;
  left: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
  user-select: none;
  z-index: 2;
}

.myBusinessWhiteVisitCardQRcodeIcon {
  position: absolute;
  top: 7px;
  right: 10px;
  height: 35px;
  width: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
  user-select: none;
  z-index: 2;
}

.myBusinessVisitCardBusinessName {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 45%;
  left: 5%;
  height: 50px;
  width: 90%;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  user-select: none;
}

.myBusinessVisitCardEchoVisitCard {
  position: absolute;
  bottom: 5px;
  left: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.myBusinessVisitCardCustomText {
  position: absolute;
  background: none;
  border: none;
  outline: none;
  bottom: 5px;
  right: 15px;
  font-size: 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  text-align: end;
  width: 180px;
  overflow: hidden;
}

.myBusinessCreateVisitCardButton {
  position: relative;
  display: flex;
  padding-top: 14px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 25px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  user-select: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  animation: bringInMyBusinessButtonKeys 1s ease-in-out 0.2s forwards;
}
@keyframes bringInMyBusinessButtonKeys {
    0% {
      opacity: 0;
      transform: rotateX(360deg) translateY(50px);
    }
    1% {
      opacity: 0;
      transform: rotateX(360deg) translateY(50px);
    }
    50% {
      opacity: 1;
      transform: rotateX(100deg) translateY(30px);
    }
    70% {
      opacity: 1;
      transform: translateY(30px);
    }
    85% {
      opacity: 1;
      transform: translateY(60px);
    }
    100% {
      opacity: 1;
      transform: rotateX(0deg) translateY(50px);
    }
}

.myBusinessCardTemplatesHolder {
  position: relative;
  display: flex;
  height: auto;
  width: 100%;
  justify-content: space-evenly;
  transition: all 0.5s ease-in-out;
}

.myBusinessSingleVisitCardTemplate {
  position: relative;
  display: block;
  height: 143px;
  width: 276px;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: rotateY(360deg);
}

.appearMyBusisnessVisitCard {
  animation: myBusinessVisitTemplateCardsAppearKeys 0.5s ease-in-out forwards;
}
@keyframes myBusinessVisitTemplateCardsAppearKeys {
  0% {
    opacity: 0;
    transform: rotateX(30deg) rotateY(90deg) rotateZ(10deg);
  }
  90% {
    opacity: 1;
    transform: rotateX(0deg) rotateY(-20deg) rotateZ(0deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
}

#myBusinessVCbckSettingsIcon {
  position: absolute;
  top: 0px;
  right: 230px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

#myBusinessVCbusinessNameColorIcon {
  position: absolute;
  top: calc(50% - 15px);
  right: 170px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

#myBusinessVCechoVisitCardIcon {
  position: absolute;
  top: calc(100% - 30px);
  right: 100px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

#myBusinessVCqrcodeColorIcon {
  position: absolute;
  top: 0px;
  left: 50px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

#myBusinessVCcustomTextColorIcon {
  position: absolute;
  top: calc(100% - 30px);
  left: 50px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.myBusinessVisitCardFontSelectorIcon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 150px;
  margin-left: 5px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* ---------- WORK SHOWCASE //////////////////////////////////////// */

.myBusinessWorkShowBody {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 98%;
  width: 100%;
  transition: all 0.7s ease-in-out;
  transform-style: preserve-3d;
  perspective: 1600px;
}

.myBusinessWorkshowListHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 24%;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  overflow: hidden;
}

.myBusinessWorkshowListContent {
  position: relative;
  display: block;
  height: 90%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  transform-style: preserve-3d;
  perspective: 1600px;
}

.myBusinessAddNewWorkshowButton {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 9%;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 1%;
  letter-spacing: 1px;
  cursor: pointer;
}

.myBusinessPlusNewWorkShow {
  position: relative;
  font-size: 2.5rem;
  transition: all 0.2s ease-in-out;
}

.myBusinessEchoNewWorkShow {
  position: relative;
  margin-left: 15px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.myBusinessWorkshowSmallInfo {
  position: relative;
  display: inline;
  height: auto;
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 2px;
}

.myBusinessAddNewWorkshowButton:hover .myBusinessPlusNewWorkShow {
  transform: rotateZ(90deg);
}

.myBusinessWorkshowFormBody {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 5px;
  height: 100%;
  width: 24%; 
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  opacity: 1;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}

.myBusinessStartWorkshowForm {
  animation: myBusinessStartWorkshowFormBodyKeys 0.5s ease-in-out none;
}
@keyframes myBusinessStartWorkshowFormBodyKeys {
  0% {
    width: 0%;
    opacity: 0.2;
  }
  90% {
    width: 25%;
    opacity: 1;
  }
  100% {
    width: 24%;
    opacity: 1;
  }
}

.myBusinessSemiFoldWorkshowForm {
  animation: myBusinessSemiFoldWorkshowFormBodyKeys 0.3s ease-in-out forwards;
}
@keyframes myBusinessSemiFoldWorkshowFormBodyKeys {
  50% {
    width: 25%;
    opacity: 0.2;
  }
  100% {
    width: 22%;
    opacity: 0.2;
  }
}

.myBusinessExpandWorkshowForm {
  animation: myBusinessExpandWorkshowFormBodyKeys 0.3s ease-in-out forwards;
}
@keyframes myBusinessExpandWorkshowFormBodyKeys {
  90% {
    width: 25%;
    opacity: 1;
  }
  100% {
    width: 24%;
    opacity: 1;
  }
}

.myBusinessFullFoldNewWorkshowForm {
  animation: myBusinessFullFoldNewWorkshowFormBodyKeys 0.3s ease-in-out forwards;
}
@keyframes myBusinessFullFoldNewWorkshowFormBodyKeys {
  0% {
    width: 24%;
    opacity: 1;
  }
  20% {
    width: 27%;
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}

.myBusinessCardCloseButton {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  z-index: 3;
  user-select: none;
}
.myBusinessCardCloseButton:hover {
  transform: rotateZ(90deg);
}

.myBusinessWorkshowTitleFormInput {
  position: relative;
  display: block;
  height: auto;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 15px;
  padding-bottom: 13px;
  font-size: 1rem;
  letter-spacing: 1px;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.myBusinessWorkshowTitleFormInput:focus {
  padding-top: 20px;
  padding-bottom: 15px;
}

.myBusinessWorkshowFormTITLEholder {
  position: relative;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  height: auto;
  width: 100%;
  opacity: 0;
  animation: myBusinessWorkshowFormTITLEappearKeys 0.5s ease-in-out forwards;
}
@keyframes myBusinessWorkshowFormTITLEappearKeys {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  90% {
    transform: translateX(-20px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.myBusinessWorkshowFormTIMEholder {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  transform: translateX(-20px);
  opacity: 0;
  animation: myBusinessWorkshowFormTIMEappearKeys 0.3s ease-in-out 0.2s forwards;
}
@keyframes myBusinessWorkshowFormTIMEappearKeys {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  90% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.myBusinessWorkshowFormPRICEholder {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 5%;
  padding-right: 5%;
  width: 90%;
  transform: translateX(-10px);
  opacity: 0;
  animation: myBusinessWorkshowFormPRICEappearKeys 0.3s ease-in-out 0.3s forwards;
}
@keyframes myBusinessWorkshowFormPRICEappearKeys {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  90% {
    transform: translateX(20px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.myBusinessWorkshowFormTitle {
  position: relative;
  display: flex;
  height: auto;
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.myBusinessWorkshowInputField {
  position: relative;
  display: flex;
  height: auto;
  width: 100px;
  padding-left: 15px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 12px;
  font-family: 'Exo', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.myBusinessWorkshowInputField:focus {
  padding-top: 20px;
  padding-bottom: 15px;
}

.MBWorkshowDescription {
  position: relative;
  display: flex;
  height: auto;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 10px;
  padding-bottom: 5px;
  font-family: 'Exo', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.MBWorkshowDescription:focus {
  padding-top: 15px;
  padding-bottom: 10px;
}

.FTcreateShowcaseButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 200px;
  font-size: 0.9rem;
  border-radius: 25px;
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
}

.FTupdateShowcaseButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 200px;
  font-size: 0.9rem;
  border-radius: 25px;
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
}

.FTdeleteShowcaseButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 200px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 25px;
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
  animation: myBusinessWorkshowInListingAppearKeys 0.5s ease-in-out forwards;
}
.FTdeleteShowcaseButton:hover {
  letter-spacing: 3px;
}

.myBusinessWorkshowMediaBody {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 5px;
  height: 100%;
  width: 45%;
  padding-left: 2%;
  padding-right: 2%;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  z-index: 3;
}


.myBusinessStartWorkshowMedia {
  animation: myBusinessStartWorkshowMediaKeys 0.6s ease-in-out none;
}
@keyframes myBusinessStartWorkshowMediaKeys {
  0% {
    width: 0%;
    opacity: 0.2;
  }
  90% {
    width: 48%;
    opacity: 1;
  }
  100% {
    width: 45%;
    opacity: 1;
  }
}

.myBusinessFullFoldWorkshowMediaForm {
  animation: myBusinessFullFoldWorkshowMediaFormKeys 0.4s ease-in-out forwards;
}
@keyframes myBusinessFullFoldWorkshowMediaFormKeys {
  20% {
    width: 48%;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}

.myBusinessSemiFoldWorkshowMediaBody {
  animation: myBusinessSemiFoldWorkshowMediaBodyKeys 0.3s ease-in-out forwards;
}
@keyframes myBusinessSemiFoldWorkshowMediaBodyKeys {
  100% {
    width: 43%;
    opacity: 0.2;
  }
}

.myBusinessExpandWorkshowMediaBody {
  animation: myBusinessExpandWorkshowMediaBodyKeys 0.3s ease-in-out forwards;
}
@keyframes myBusinessExpandWorkshowMediaBodyKeys {
  0% {
    width: 43%;
  }
  90% {
    width: 46%;
    opacity: 1;
  }
  100% {
    width: 45%;
    opacity: 1;
  }
}

.myBusinessWorkshowMediaTitle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5%;
  padding-top: 15px;
  padding-bottom: 10px;
  width: 100%;
  font-size: 1.1rem;
}

.myBusinessAddMediaButton {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: fit-content;
  width: 40%;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-left: 2%;
  font-size: 1rem;
  border-top-left-radius: 25px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 25px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  user-select: none;
}
.myBusinessAddMediaButton:hover {
  letter-spacing: 1px;
  border-radius: 25px;
}
.myBusinessAddMediaButtonAppearAnim {
  animation: myBusinessAddMediaButtonAppearKeys 0.5s ease-in-out forwards;
}
@keyframes myBusinessAddMediaButtonAppearKeys {
  0% {
    width: 20%;
    opacity: 0;
  }
  80% {
    width: 42%;
    opacity: 1;
  }
  100% {
    width: 40%;
    opacity: 1;
  }
}

.myBusinessButtonDissapearAnim {
  animation: myBusinessButtonDissapearKeys 0.3s ease-in-out forwards;
}
@keyframes myBusinessButtonDissapearKeys {
  80% {
    width: 2%;
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}

.myBusinessAddMediaIconHolder {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
}

.MBmediaDivRow {
  position: relative;
  align-items: center;
  display: flex;
  height: 10%;
  width: 100%;
  user-select: none;
}

.myBusinessEchoNoOfWAitems {
  position: relative;
  display: flex;
  align-items: end;
  height: 50%;
  width: auto;
  margin-left: 20px;
  transition: all 0.2s ease-in-out;
}

.myBusinessWorshowMediaPreviewHolder {
  position: relative;
  display: block;
  height: 60%;
  width: 100%;
  border-radius: 10px;
  transform-style: preserve-3d;
  perspective: 1600px;
}

.nonoAnim {
  animation: nonoKeys 0.7s ease-in-out none;
}
@keyframes nonoKeys {
  20% {
    transform: translateX(0px);
    scale: 0.9;
  }
  40% {
    transform: translateX(-20px);
    scale: 0.9;
  }
  60% {
    transform: translateX(20px);
    scale: 0.9;
  }
  80% {
    transform: translateX(0px);
    scale: 0.9;
  }
  100% {
    transform: translateX(0px);
    scale: 1;
  }
}



/* ---- listing worshows */

.myBusinessSingleWorkshowInList {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  height: 120px;
  width: 95%;
  padding-top: 10px;
  padding-bottom: 5px;
  cursor: pointer;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  animation: myBusinessWorkshowInListingAppearKeys 0.5s ease-in-out forwards;
}
@keyframes myBusinessWorkshowInListingAppearKeys {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  20% {
    transform: translateY(50px);
    opacity: 1;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
    opacity: 1;
  }
  90% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.myBusinessSingleWorkshowInList:hover {
  z-index: 3;
}

.myBusinessSingleWorkshowInListSelected {
  z-index: 2;
  width: 98% !important;
}

.myBusinessSingleWorkshowTitle {
  position: relative;
  display: flex;
  height: auto;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.1rem;
  letter-spacing: 2px;
  overflow: hidden;
}

.MBworshowPresentationThumbHolder {
  position: relative;
  display: flex;
  margin-left: 7px;
  margin-top: 20px;
  height: 70px;
  width: 80px;
  border-radius: 6px;
  overflow: hidden;
  animation: myBusinessWorkshowInListingAppearKeys 1s ease-in-out forwards;
  border-style: solid;
  border-width: 1px;
}

.MBworshowPresentationContentDiv {
  position: relative;
  display: flex;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  height: 120px;
  width: 170px;
  border-radius: 6px;
  overflow: hidden;
  animation: myBusinessWorkshowInListingAppearKeys 1s ease-in-out forwards;
  border-style: solid;
  border-width: 1px;
  cursor: pointer; /* because it opens large preview */
  transition: all 0.2s ease-in-out;
}
.MBworshowPresentationContentDiv:hover {
  scale: 1.2;
  z-index: 5;
}

.MBworshowPresentationContentDiv:hover .myBusinessRemovePreviewItemButton {
  height: 15%;
  padding-top: 3%;
  padding-bottom: 2%;
}


.myBusinessRemovePreviewItemButton {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 0px;
  right: 0px;
  height: 0%;
  padding-top: 0%;
  padding-bottom: 0%;
  width: auto;
  padding-left: 2%;
  padding-right: 3%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-bottom-left-radius: 12px;
  overflow: hidden;
}
.myBusinessRemovePreviewItemButton:hover {
  border-radius: 0px;
  justify-content: center;
  padding: 0%;
  height: 100% !important;
  width: 100% !important;
  font-size: 2rem;
}

.removeWorkshowPreviewItemAnim {
   animation: myBusinessMediaPreviewDisapearKeys 0.5s ease-in-out forwards;
}
@keyframes myBusinessMediaPreviewDisapearKeys {
  0% {
    transform: rotateZ(0deg);
    opacity: 1;
  }
  20% {
    transform: rotateZ(-25deg);
    opacity: 1;
  }
  40% {
    transform: rotateZ(25deg);
  }
  100% {
    transform: rotateZ(-100deg);
    opacity: 0;
    scale: 0;
  }
}

.MBYTLoadingPlaceholder {
  position: relative;
  display: flex;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  height: 120px;
  width: 170px;
  border-radius: 6px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  animation: myBusinessWFPresentationLoadingKeys 1s ease-in-out infinite;
}
@keyframes myBusinessWFPresentationLoadingKeys {
  0% {
    opacity: 0;
    scale: 1;
  }
  50% {
    opacity: 1;
    scale: 0.5;
  }
  100% {
    opacity: 0;
    scale: 0;
  }
}

#updateDeleteWorkshowSwitch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  height: 30px;
  width: 100px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-radius: 25px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
#updateDeleteWorkshowSwitch:hover {
  letter-spacing: 2px;
} 

.myBusinessPostNewsButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  height: 70%;
  width: 40%;
  opacity: 1;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-top-left-radius: 25px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.myBusinessPostNewsButton:hover {
  letter-spacing: 3px;
  border-radius: 25px;
}