.float__bnr {
  position: fixed;
  bottom: -68px;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: ease all 0.5s;
}
.float__bnr.fix__floatbnr {
  bottom: 0;
}
.float__bnr-list {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
.float__bnr-list li {
  backdrop-filter: blur(3px);
  width: 20%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: ease all 0.5s;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
}
.float__bnr-link-button {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.float__bnr-img {
  width: 20px;
  height: 20px;
}
.float__bnr-small {
  font-size: 10px;
  color: #003461;
  font-weight: 400;
}
.float__bnr-list li.float__bnr-blue {
  background: #aad4e4;
  height: 68px;
  border-radius: 0px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.float__bnr-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255 255 255 / 50%);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
  display: none;
}
.float__bnr-background.draw__active {
  opacity: 1;
  display: block;
}
.float__bnr-hidearea {
  display: none;
}
.float__bnr-hidearea.draw__active {
  display: block;
}
.float__bnr-drawer {
  display: none;
}
.float__bnr-drawer.draw__active {
  display: block;
}
.float__bnr-hidearea {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100vw;
  height: calc(100% - 60px);
  z-index: 9999;
  touch-action: manipulation;
}
.float__bnr-bgblack {
  /*  background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(3px); */
  width: 100%;
  height: 100%;
  padding: 16px 0 0;
  position: relative;
  display: flex;
}
.float__bnr-drawer {
  width: calc(100% - 32px);
  height: auto;
  /* background: rgb(233 233 233 / 90%); */
  /* padding: 40px 24px; */
  margin: auto auto 0;
  position: relative;
  /* border-radius: 5px; */
  max-width: 344px;
  /* max-height: calc(100vh - 76px); */
  /* overflow-y: auto; */
  padding-bottom: 18px;
}
.float__bnr-drawer-inner {
  /* width: calc(100% - 32px); */
  /* height: auto; */
  background: rgb(233 233 233 / 90%);
  padding: 40px 16px 8px;
  /* margin: auto auto 0; */
  /* position: relative; */
  border-radius: 5px;
  /* max-width: 344px; */
  max-height: calc(100dvh - 94px);
}
.float__bnr-drawer-wrap {
  padding: 0 8px 40px;
  overflow-y: auto;
  max-height: calc(100dvh - 142px);
}
.float__bnr-logo {
  display: block;
  max-width: 236px;
  margin: 0 auto 32px;
  width: 100%;
}
.float__bnr-clinic-icon-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
.float__bnr-clinic-icon-link,
.float__bnr-medical-information-link {
  display: flex;
  width: 33%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 3px 3px 8px 0px #0000001f;
  min-height: 88px;
  max-width: 88px;
  padding: 4px;
}
.float__bnr-clinic-link-text {
  color: #003461;
  font-size: 14px;
}
.float__bnr-clinic-icon-link-img {
  width: 33px;
  height: auto;
}
.float__bnr-clinic-text-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.float__bnr-clinic-text-links a {
  color: #444;;
}
.float__bnr-clinic-text-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 3px 3px 8px 0px #0000001f;
  height: 48px;
}
.float__bnr-btmarrow {
  position: absolute;
  bottom: 0px;
  left: calc(20% - 8px);
  height: 18px;
  width: 20%;
}
.float__bnr-clinic-information .float__bnr-btmarrow {
  left: calc(60% - 8px);
}
.float__bnr-medical-information .float__bnr-btmarrow {
  left: calc(80%);
}
.float__bnr-btmarrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 16px solid rgb(233 233 233 / 90%);
  border-bottom: 0;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.float__bnr-submenu___::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: rgb(233 233 233 / 90%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  transform: rotate(-45deg);
  transform-origin: top left;
  position: absolute;
  left: 10%;
  top: -10px;
  opacity: 0;
  transition: 0.5s;
}
.float__bnr-submenu.float__show::before {
  opacity: 1;
}
.float__bnr-medical-information-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.float__bnr-medical-information-link-img {
  width: 48px;
  height: 48px;
}
.float__bnr-medical-information-link {
  width: calc(50% - 8px);
  max-width: 100%;
}
.float__bnr-medical-information-link-text {
  line-height: 1.2;
  text-align: center;
}
.float__bnr-medical-information-link-text-wrap {
  background-color: #003461;
}
.float__bnr-medical-information-link-text-wrap
  .float__bnr-medical-information-link-text {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .float__bnr,
  .float__bnr-background {
    display: none;
  }
}
