.cf7modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.fade:not(.cf7modal-hide) {
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}
.cf7modal-title{
   margin: 0;
}
.cf7modal-close{
   cursor: pointer;
}
.cf7modals-link{
   cursor: pointer;
}
.cf7modals-link > mark{
  padding: 0;
}

.cf7modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
}
.cf7modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.cf7modal-backdrop.show {
  opacity: 1;
}
.cf7modal.fade .cf7modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
.cf7modal.show .cf7modal-dialog {
  transform: none;
}

.cf7modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem;
  pointer-events: none;
}
.cf7modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1.75rem * 2);
}

.cf7modal-content {
  pointer-events: auto;
}
.cf7modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
}

@media (min-width: 576px) {
  .cf7modal-dialog {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
}

.cf7modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
}

.cf7modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.cf7modal-placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.cf7modal-input-placeholder,
.cf7modal-button-placeholder {
   padding: 0.375rem 0.75rem;
   font-size: 1rem;
   font-weight: 400;
   line-height: 1.5;
}
.cf7modal-input-placeholder{
   display: block;
}
.cf7modal-button-placeholder {
   display: inline-block;
}

.cf7modal-placeholder-100{
   width: 100%;
}
.cf7modal-50{
   width: 50%;
   display: inline-block;
}
.cf7modal-50:first-child {
   padding-right: 15px;
}

.cf7modal-50:last-child {
   padding-left: 15px;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.cf7modal-placeholder-glow .cf7modal-placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
