:root {
  --color-primary: #9C9CF3;
  --color-secondary: #FF0079;
  --color-tertiary: #0E045A;
  --font-serif: 'Bodoni', serif;
  --font-sans: 'Sofia', sans-serif;
  --mobile-width: 700px;
}

#melchior-drawer-wrapper {
  z-index: 1000;
  position: fixed;
  bottom: 170px;
  right: 15px;
  display: block;
}

@media screen and (max-width: 700px) {
  #melchior-drawer-wrapper {
    display: none;
  }
}

#melchior-drawer-wrapper #melchior-drawer-icon {
  background-image: url("../assets/robo_icon_round.svg");
  background-color: var(--color-secondary);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 1000;
  display: block;
  position: relative;
}

#melchior-drawer-wrapper #melchior-drawer-link {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 115px;
  height: 30px;
  background-color: var(--color-secondary);
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-family: var(--font-sans);
  text-decoration: none;
  line-height: 30px;
}

#melchior-drawer-wrapper:hover #melchior-drawer-link {
  background-color: var(--color-tertiary);
}