/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/index.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
.demo-site-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  animation-name: appear;
  animation-duration: 300ms;
}

.demo-site-modal-dialog {
  width: 100%;
  max-width: 550px;
  background: #fff;
  position: relative;
  margin: 0 20px;
  max-height: calc(100vh - 40px);
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: slide-in;
  animation-duration: 0.5s;
}

.demo-site-modal-close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  font-size: 23px;
  line-height: 1;
  border: none;
  background: black;
  color: #fff;
  position: absolute;
  right: 0px;
  transition: all 0.25s;
}
.demo-site-modal-close:hover {
  opacity: 0.7;
}

.demo-site-modal-cta {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  padding: 1.25rem 2rem;
  border-radius: 3px;
  margin-top: 0.625rem;
  text-decoration: none;
  transition: all 0.25s;
}
.demo-site-modal-cta:hover {
  color: #fff;
  background-color: #333333;
}

.demo-site-modal-body {
  overflow: auto;
}

.demo-site-modal-content {
  padding: 1.25rem 2rem 1.25rem 1.25rem;
  text-align: center;
}
.demo-site-modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.demo-site-modal-content p {
  margin-top: 0;
  font-size: 1.25rem;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-in {
  from {
    transform: translateY(-150px);
  }
  to {
    transform: translateY(0);
  }
}
.demo-sites-companion-optin {
  background: seagreen;
}
@media (max-width: 991px) {
  .demo-sites-companion-optin {
    padding: 0 1.25rem;
    text-align: center;
  }
}
.demo-sites-companion-optin p {
  margin: 0;
  flex-basis: 600px;
}
.demo-sites-companion-optin-container {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  display: flex;
  gap: 2rem;
  padding: 0.625rem 0;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .demo-sites-companion-optin-container {
    flex-wrap: wrap;
  }
}
.demo-sites-companion-optin-cta {
  display: flex;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.25s;
  text-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

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