@charset "utf-8";
/* CSS Document */

.button_container {
  width: 96px;
  float: left;
  cursor: pointer;
  transition: opacity 0.25s ease;
  margin: 0 0 0;
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 999999999;
}
.button_container .button_toggle {
  width: 96px;
  float: left;
  margin: 0 0 0;
}
.button_container .button_line {
  width: 38px;
  height: 38px;
  float: left;
  background: #db375f;
  border-radius: 50%;
  margin: 0 0 0;
  padding: 12px 10px 12px;
}
.button_container .button_text {
  float: right;
  font-size: 16px;
  font-weight: 700;
  color: #db375f;
  letter-spacing: normal;
  line-height: 2.5;
  margin: 0 0 0;
}
.button_container.active .button_text {
  color: #ffffff;
}
.button_container.active .button_line .top {
  width: 100%;
  background: #ffffff;
  transform: rotate(45deg) translate(5px, 5px);
}
.button_container.active .button_line .middle {
  opacity: 0;
  display: none;
  background: #ffffff;
}
.button_container.active .button_line .bottom {
  width: 100%;
  background: #ffffff;
  transform: rotate(-45deg) translate(-4px, 3px);
}
.button_container .button_line span {
  width: 100%;
  height: 2px;
  float: left;
  background: #ffffff;
  border-radius: 18px;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  cursor: pointer;
  margin: 0 0 0;
  position: relative;
}
.button_container .button_line span:nth-of-type(2) {
  margin: 4px 0 4px;
}
.overlay {
  width: 100%;
  height: 0%;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
}
.overlay:after {
	content: "";
	width: 60%;
	float: right;
	background: /*url(../images/logo-pink-plain-symbol.png)*/ no-repeat right bottom / 80%;
	opacity: 0.1;
	margin: 0 0 0;
	padding: 0 0 60%;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -9;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
  animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
  animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
  animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
  animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
  animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(10) {
  animation-delay: 0.8s;
}
.overlay.open li:nth-of-type(11) {
  animation-delay: 0.85s;
}

.overlay.open li:nth-of-type(12) {
  animation-delay: 0.9s;
}

.overlay.open li:nth-of-type(13) {
  animation-delay: 0.95s;
}

.overlay.open li:nth-of-type(14) {
  animation-delay:  1s;
}

.overlay.open li:nth-of-type(15) {
  animation-delay: 1.5s;
}

.overlay.open li:nth-of-type(16) {
  animation-delay: 2s;
}
.overlay.open li:nth-of-type(17) {
  animation-delay: 2.5s;
}
.overlay.open li:nth-of-type(18) {
  animation-delay: 3s;
}
.overlay.open li:nth-of-type(19) {
  animation-delay: 3.5s;
}
.overlay.open li:nth-of-type(20) {
  animation-delay: 4s;
}
.overlay nav {
  width: 46%;
  float: right;
  transform: translateY(-50%);
  margin: 0 0 0;
  position: relative;
  top: 50%;
  right: 4%;
  z-index: 9;
  height: 90vh;
  display: flex;
  align-items: center;
  /* overflow-y: auto; */
  overflow-x: hidden;
}
.overlay ul li {
  /*height: calc(100% / 8);
  min-height: 50px;*/
  opacity: 0;
}
.overlay-back {
	width: 42%;
	height: 100%;
	float: left;
	background: url(../images/lips-thumb.png) no-repeat right center / 80%;
	margin: 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
}
.overlay-back:after {
	content: "";
	width: 41.8%;
    float: right;
	background: /*url(../images/implants-logo-shape.svg)*/ no-repeat center / 100%;
    margin: 0 0 0;
	padding: 0 0 62%;
    position: absolute;
    top: 22.1%;
    right: -5.6%;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}




/*Smartphone css*/
@media screen and (max-width: 480px) {
.button_container {
  width: 98px;
  position: fixed;
  top: 16px;
  left: 5%;
}
.button_container .button_toggle {
  width: 98px;
}
.button_container .button_text {
  font-size: 14px;
  line-height: 2.7;
}
.overlay {
  width: 100%;
  text-align: center;
  margin: 0 0 0;
}
.overlay:after {
  width: 150%;
  margin: 0 0 0;
  padding: 0 0 150%;
}
.overlay-back {
  width: 100%;
  display: none;
  margin: 0 0 0;
}
.overlay nav {
  width: 100%;
  margin: 0 0 0;
  right: 0;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.button_container {
  width: 98px;
  position: fixed;
  top: 16px;
  left: 5%;
}
.button_container .button_toggle {
  width: 98px;
}
.button_container .button_text {
  font-size: 14px;
  line-height: 2.7;
}
.overlay {
  width: 100%;
  text-align: center;
  margin: 0 0 0;
}
.overlay:after {
  width: 150%;
  margin: 0 0 0;
  padding: 0 0 150%;
}
.overlay-back {
  width: 100%;
  display: none;
  margin: 0 0 0;
}
.overlay nav {
  width: 100%;
  margin: 0 0 0;
  right: 0;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.button_container {
  width: 98px;
  position: fixed;
  top: 16px;
  left: 5%;
}
.button_container .button_toggle {
  width: 98px;
}
.button_container .button_text {
  font-size: 14px;
  line-height: 2.7;
}
.overlay {
  width: 100%;
  text-align: center;
  margin: 0 0 0;
}
.overlay:after {
  width: 150%;
  margin: 0 0 0;
  padding: 0 0 150%;
}
.overlay-back {
  width: 100%;
  display: none;
  margin: 0 0 0;
}
.overlay nav {
  width: 100%;
  margin: 0 0 0;
  right: 0;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.button_container {
  width: 38px;
  top: 14px;
  left: 3%;
}
.button_container .button_toggle {
  width: 38px;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.button_container {
  width: 38px;
  top: 20px;
  left: 3%;
}
.button_container .button_toggle {
  width: 38px;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.button_container {
  width: 38px;
  left: 3%;
}
.button_container .button_toggle {
  width: 38px;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:1241px) and (max-width:1340px) {
.button_container {
  width: 38px;
  left: 3%;
}
.button_container .button_toggle {
  width: 38px;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:1341px) and (max-width:1440px) {
.button_container {
  width: 38px;
  left: 2%;
}
.button_container .button_toggle {
  width: 38px;
}
.button_container .button_text {
  display: none;
}
}



@media screen and (max-width:767px){
.overlay nav{justify-content: flex-start;}
.button_container{border-radius: 22px;}

.button_container .button_line{width: 20px; height: 16px; padding: 0;}

.button_container .button_text{padding-right: 0;
   line-height: 1;margin-block: 14px;
  }

.button_container .button_toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

/* .button_container .scroll */




}







@media screen and (max-height:580px){

#menu-main-menu {
    height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}
.overlay nav{height: 100%;}


}