.container-fluid {
  padding: 0;
}

#mainContent {
  padding-bottom: 50px;
  min-height: 55vh;
}

body {
  background: transparent url("/images/website/bg.svg") repeat;
  font-size: 18px;
  color: #5f5f5f;
  line-height: 35px;
}
body.fixed > .container-fluid {
  padding-top: 120px;
}
body.fixed #mainMenu {
  position: fixed;
  top: 0;
  left: 0;
  margin: 20px 30px 0 30px;
  width: calc(100vw - 60px);
  border-radius: 20px;
  padding: 10px 0;
}

h1 {
  padding: 20px 0 30px 0;
  font-weight: bold;
  font-size: 2.5rem;
  color: #5f5f5f;
}

h2 {
  padding: 0 0 20px 0;
  font-weight: bold;
  font-size: 1.5rem;
  color: #5f5f5f;
}

.form-check input {
  margin-top: 10px;
}

.badge.text-bg-light {
  border: 1px solid #dfdfdf;
  border-radius: 15px;
}

.text-black {
  font-weight: 500;
}

.mw-200 {
  max-width: 200px;
}

#userCount {
  max-width: 200px;
}
#userCount .btn {
  padding-right: 10px !important;
  padding-left: 10px !important;
}
#userCount .btn .material-symbols-outlined {
  margin: 0;
}

.btn {
  line-height: 44px;
  border-radius: 30px;
  background: #ff7ba0;
  color: #fff !important;
  border: 2px solid transparent;
  padding-right: 25px !important;
  padding-left: 25px !important;
  transition: all 0.2s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.btn.btn-reversed {
  background: #3a4654;
}
.btn:hover {
  background: #3a4654;
}
.btn:hover.btn-reversed {
  background: #ff7ba0;
}
.btn.btn-border {
  background: transparent;
  border-color: #cfb976;
  color: #5f5f5f !important;
}
.btn.btn-border:hover {
  border-color: #ff7ba0;
}
.nav .btn {
  background: #ff7ba0;
}
.nav .btn:hover {
  border: 2px solid #cfb976;
  background: transparent;
  line-height: 34px;
}
.btn.btn-dark {
  background: #3a4654;
  border: 1px solid #36414e;
}
.btn.btn-dark:hover {
  background: #4f5f72;
}
.input-group-append .btn, .input-group-prepend .btn {
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.input-group-append .btn span, .input-group-prepend .btn span {
  margin-top: 6px;
}
.btn .material-symbols-outlined {
  float: left;
  font-size: 32px;
  margin: 6px 5px 0 -5px;
}

.material-symbols-outlined {
  font-weight: lighter;
}

.pink {
  color: #ff7ba0;
}

.gold {
  color: #cfb976;
}

a {
  color: #cfb976;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
a:hover {
  text-decoration: none;
  color: #ff7ba0;
}

@keyframes feature {
  0% {
    transform: rotate(90deg) translateY(0);
  }
  50% {
    transform: rotate(90deg) translateY(10px);
  }
  100% {
    transform: rotate(90deg) translateY(0);
  }
}
#features .list-group-item {
  background: transparent;
  border: 0;
  color: #5f5f5f;
}
#features .list-group-item:hover {
  color: #cfb976;
  transform: translateX(5%);
}
#features .list-group-item:nth-child(1) .feature_item {
  animation: feature 2s ease-in-out 0s infinite;
}
#features .list-group-item:nth-child(2) .feature_item {
  animation: feature 2s ease-in-out 0.2s infinite;
}
#features .list-group-item:nth-child(3) .feature_item {
  animation: feature 2s ease-in-out 0.4s infinite;
}
#features .list-group-item:nth-child(4) .feature_item {
  animation: feature 2s ease-in-out 0.6s infinite;
}
#features .list-group-item:nth-child(5) .feature_item {
  animation: feature 2s ease-in-out 0.8s infinite;
}
#features .list-group-item:nth-child(6) .feature_item {
  animation: feature 2s ease-in-out 1s infinite;
}
#features .list-group-item:nth-child(7) .feature_item {
  animation: feature 2s ease-in-out 1.2s infinite;
}
#features .list-group-item:nth-child(8) .feature_item {
  animation: feature 2s ease-in-out 1.4s infinite;
}
#features .list-group-item:nth-child(9) .feature_item {
  animation: feature 2s ease-in-out 1.6s infinite;
}

.feature_item {
  width: 18px;
  height: 32px;
  border-radius: 4px/2px;
  display: inline-block;
  line-height: 32px;
  text-align: center;
  color: #fff;
  margin: 0 10px 0 0;
  transform: rotate(90deg);
  position: relative;
  top: 9px;
}
.feature_item:before, .feature_item:after {
  background: inherit;
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  content: "";
}
.feature_item:before {
  transform: rotate(60deg);
}
.feature_item:after {
  transform: rotate(-60deg);
}
.feature_item .material-symbols-outlined {
  display: inline-flex;
  vertical-align: top;
  margin: 4px 0 0 -11px;
  position: absolute;
  z-index: 2;
  transform: rotate(-90deg);
}
.feature_item.feature_green {
  background: #3a4654;
}
.feature_item.feature_red {
  background: #ff7ba0;
}
.feature_item.feature_yellow {
  background: #cfb976;
}

.appFrame {
  width: 100%;
  height: auto;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  margin: 0 0 30px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.appFrame img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 5px;
}

#headerBackground {
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(#535d6a, #2e3a4a);
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 16% 100%, 0% 75%);
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}

#headerImage {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/images/salon.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 16% 100%, 0% 75%);
  width: 100%;
  height: 100%;
  opacity: 0.15;
  transition: all 0.2s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}

#mainMenu {
  background-size: cover;
  padding: 30px 0;
  height: auto;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  transition: all 0.2s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
#mainMenu nav {
  justify-content: center;
}
#mainMenu #home {
  width: 160px;
  height: 60px;
  display: block;
  padding: 0;
  border-radius: 0;
}
#mainMenu #home:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  left: auto;
  background-color: transparent;
  background-image: url("/images/glamworx.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#mainMenu #home.petworx:before {
  background-image: url("/images/petworx.svg");
}
#mainMenu a {
  color: #5f5f5f;
  text-decoration: none;
  padding: 0 5px;
  margin: 0 10px;
  font-weight: bold;
  line-height: 44px;
  position: relative;
}
#mainMenu a.nav-link {
  line-height: 60px;
}
#mainMenu a.nav-link:after {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  transition: all 0.2s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
#mainMenu a.nav-link:hover:after, #mainMenu a.nav-link.active:after {
  width: 100%;
  left: 0;
}
#mainMenu .nav-item {
  position: relative;
}
#mainMenu .nav-item .list-group {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  opacity: 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 0;
  transition: all 0.2s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
#mainMenu .nav-item .list-group a {
  border: 0;
  color: #3a4654;
  background: transparent;
  font-size: 16px;
  font-weight: normal;
  padding: 0 25px;
}
#mainMenu .nav-item .list-group a .material-symbols-outlined {
  position: absolute;
  top: 15px;
  left: 0;
  color: #cfb976;
  font-weight: bold;
  font-size: 16px;
}
#mainMenu .nav-item .list-group a:hover {
  background: transparent;
  color: #ff7ba0;
}
#mainMenu .nav-item .list-group a:hover .material-symbols-outlined {
  color: #ff7ba0;
}
#mainMenu .nav-item:hover .list-group {
  display: block;
  opacity: 1;
}
#mainMenu #login {
  background: #ff7ba0;
  margin: 5px 0 0 0;
  height: 48px;
  font-weight: normal;
}
#mainMenu #login:hover {
  background: transparent;
  color: #5f5f5f !important;
  border-color: #cfb976;
}
#mainMenu #register {
  margin: 5px 0 0 15px;
  background: transparent;
  border-color: #cfb976;
  height: 48px;
  font-weight: normal;
}
#mainMenu #register:hover {
  border-color: #ff7ba0;
}

@media only screen and (max-width: 1200px) {
  #headerBackground {
    height: 100%;
    clip-path: none !important;
  }

  #headerImage {
    height: 100%;
    clip-path: none !important;
  }

  #mainContent {
    padding-top: 100px;
  }

  #mainMenu {
    height: auto !important;
    padding: 20px 0 !important;
    position: fixed;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
  }
  #mainMenu #menu-cta {
    flex-wrap: wrap;
  }
  #mainMenu #menu-cta .btn {
    flex-grow: 1;
    margin: 5px 20px;
  }
  #mainMenu #toggleMenu {
    border: 0;
    background: transparent;
    color: #5f5f5f;
    margin: 7px 20px 0 0;
    padding: 0;
    position: relative;
    right: 0;
  }
  #mainMenu #toggleMenu span {
    font-size: 40px;
    font-weight: normal;
  }
  #mainMenu #wrapNav {
    overflow: hidden;
    max-height: 0;
    transition: all 0.2s ease-in-out;
    -ms-transition: all 0 ease-in-out;
  }
  #mainMenu #wrapNav nav {
    padding: 0;
  }
  #mainMenu a:not(.btn) {
    text-align: center;
    line-height: 45px;
    margin: 0;
  }
  #mainMenu #home {
    margin: 0 0 0 25px;
    width: 100%;
    height: 60px;
  }
  #mainMenu #home:before {
    background-position: left center;
  }
  #mainMenu:before {
    width: 140%;
    left: -20%;
  }
  #mainMenu .nav-item .list-group {
    display: block;
    opacity: 1;
    position: relative;
    background: transparent;
    backdrop-filter: none;
    top: 0;
    border-radius: 0;
    padding: 10px;
    box-shadow: none;
  }
  #mainMenu .nav-item .list-group a {
    line-height: 32px;
  }
  #mainMenu .nav-item .list-group a .material-symbols-outlined {
    top: 9px;
    left: 15px;
  }
  #mainMenu.open {
    padding-bottom: 80px;
  }
  #mainMenu.open #headerBackground, #mainMenu.open #headerImage {
    clip-path: none !important;
  }
  #mainMenu.open #wrapNav {
    max-height: 1000px !important;
  }

  nav {
    margin: 10px 0 0 0;
    padding: 0 0 40px 0;
    justify-content: center;
    flex-direction: column;
  }
}
#content {
  padding: 15px 0;
}
#content .feature-benefits {
  list-style: none;
}
#content .card {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  border: 0;
  background: rgba(255, 255, 255, 0);
  border-radius: 25px;
}
#content .card .card-header {
  background: #cfb976;
}
#content .card .card-header {
  border-radius: 25px 25px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
#content .card .card-body {
  text-align: center;
  color: #5f5f5f;
  padding-top: 50px;
  min-height: 220px;
}
#content .card .card-body .list-group, #content .card .card-body .list-group-item, #content .card .card-body .table td {
  background: transparent;
}
#content .card .card-body .mb-3, #content .card .card-body .form-check {
  text-align: left;
}
#content .card .card-body .city {
  display: none;
}
#content .price {
  font-size: 40px;
}
#content .valuta {
  font-size: 40px;
}
#content .colImage {
  width: 100%;
  height: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1200px) {
  #content {
    padding-right: 15px;
    padding-left: 15px;
  }
  #content p {
    line-height: 40px;
    text-align: justify;
  }
}
#widgetModal {
  background: transparent;
  backdrop-filter: blur(3px);
}
#widgetModal .modal-body, #widgetModal .modal-content {
  background: transparent;
  border: 0;
  padding: 0;
}
#widgetModal #appointmentFrame {
  width: 100%;
  border: 0;
  height: 660px;
  margin: 0;
  display: block;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#fixedWidgetButton {
  position: absolute;
  bottom: 0;
  left: calc(100vw - 240px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#fixedWidgetButton:hover {
  background-color: #252d36;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
}
#fixedWidgetButton img {
  height: 25px;
  width: auto;
  display: inline;
  margin: -4px 2px 0 -5px;
}

#cookieConsent {
  position: absolute;
  margin: 0 auto;
  left: 20px;
  bottom: 0;
  background: #fff;
  color: #5f5f5f;
  border-radius: 25px;
  padding: 5px 40px 5px 20px;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#cookieConsent a {
  color: #cfb976;
}
#cookieConsent a:hover {
  color: #ff7ba0;
}
#cookieConsent #closeCookieConsent {
  position: absolute;
  top: 11px;
  right: 10px;
  cursor: pointer;
}
#cookieConsent #closeCookieConsent:hover {
  color: #ff7ba0;
}

#fixedButtons {
  width: 100vw;
  position: fixed;
  bottom: 20px;
  padding: 0 20px;
}

@media only screen and (max-width: 1200px) {
  footer {
    padding-bottom: 80px;
  }

  #cookieConsent {
    position: relative;
    width: 100%;
    left: 0;
  }

  #fixedWidgetButton {
    bottom: auto;
    top: -50px;
    left: calc(100vw - 210px);
  }
}
footer {
  background: #ff7ba0;
  color: #fff;
}
footer a {
  color: #3a4654;
}
footer a:hover {
  color: #cfb976;
}
footer .footerImage {
  height: 70px;
  width: auto;
}

body.fixed #mainMenu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  z-index: 5;
}

#mainMenu .nav .nav-link.active,
#mainMenu .nav .nav-link:active {
  color: #ff7ba0 !important;
}

/* List group active color to match $secondaryColor (e.g., feature siderail and lists) */
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #ff7ba0;
  border-color: #ff628e;
  color: #fff;
}

#featureMenu {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
#featureMenu .list-group-item {
  background: transparent;
  border: 0;
  padding: 12px 16px;
}
#featureMenu .list-group-item:hover:not(.active) {
  background: rgba(0, 0, 0, 0.03);
}
#featureMenu .list-group-item.active, #featureMenu .list-group-item.active:hover, #featureMenu .list-group-item.active:focus {
  background-color: #ff7ba0;
  color: #fff;
  border: 0;
}

/*# sourceMappingURL=site.css.map */
