/*
    - Name: "quick-exit.scss"
    - Description: "Add custom styles to quick exit button"
*/
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.block-quick-exit {
  position: fixed;
  top: 70%;
  right: 0;
  z-index: 1056;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 110px;
  padding: 10px 20px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: #a30000;
}

@media (min-width: 992px) {
  .block-quick-exit {
    top: 50%;
  }
}
.block-quick-exit::before {
  content: "\e912";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

.block-quick-exit a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.block-quick-exit a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.block-quick-exit a:hover {
  color: #fff;
}

.block-quick-exit:hover {
  background-color: #700000;
}
/*# sourceMappingURL=quick-exit.css.map */
