@media only screen and (min-width: 769px) {
  .overlayMax {
    bottom: 20%;
  }

  .rightMenuButton {
    /* background-color: #ffffff; */
    width: fit-content;
    /* padding: 10px; */
    border-radius: 45px;
    position: fixed;
    z-index: 999;
    right: 1.8%;
    bottom: 8%;
    /* border: 1px solid #ececec; */
    box-shadow: rgba(0, 0, 0, 0.15) 0 3px 12px;
  }
}

@media only screen and (max-width: 769px) {
  .overlayMax {
    bottom: 22%;
  }

  .rightMenuButton {
    /* background-color: #ffffff; */
    width: fit-content;
    /* padding: 10px; */
    border-radius: 45px;
    position: fixed;
    z-index: 999;
    right: 10px;
    bottom: 125px;
    /* border: 1px solid #ececec; */
    box-shadow: rgba(0, 0, 0, 0.15) 0 3px 12px;
  }

  #backToTop {
    right: 15px;
    bottom: 0px;
    margin-right: 0;
  }
}

.d-flex-end {
  justify-content: flex-end;
}

.colorBlack {
  color: black !important;
}

.fontAwesome {
  font-family: "Awesome";
}

.d-font-25 {
  font-size: 25px;
}

.d-flex-down {
  flex-direction: column;
}

.d-br-5 {
  border-radius: 5px;
}

.line-initial {
  line-height: initial;
}

.rightMenuIcon {
  width: 40px;
}

.handPointer {
  cursor: pointer;
}

.overlayMaxBackground {
  display: none;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #00000063;
  height: 100%;
  z-index: 99;
}

.overlayMax::-webkit-scrollbar {
  display: none;
}

.overlayMax {
  height: 55%;
  width: 0;
  position: fixed;
  z-index: 999;
  /* top: 0; */
  right: 1%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 10px;
}

.overlayMaxOpen {
  cursor: pointer;
  z-index: 9;
  position: relative;
}

.overlayMax-content {
  position: relative;
  width: 100%;
}

.rightMenuContentHTML {
  display: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 20px 20px 20px;
}

.rightMenuTitle {
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  padding: 10px 0;
  box-sizing: border-box;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding-left: 10px;
}

.rightMenuTitle:after {
  -webkit-transform-origin: -50 50%;
  -ms-transform-origin: -50 50%;
  transform-origin: -50 50%;
  display: block;
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.rightMenuTitle.active:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: calc(50% - 4px);
}

.tab {
  overflow: hidden;
  border: 1px solid #ececec;
  background-color: #ffffff;
  border-radius: 5px;
  margin-bottom: 10px;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.tab button:hover {
  background-color: #ececec;
}

.tab button.active {
  background-color: #ececec;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.tabMenuIcon {
  width: 50px;
}
.closeButton {
  position: absolute;
  top: 5px;
  right: 5px;
}
