.intentContainer {
 position: fixed;
 width: 100%;
 height: 100%;
 background: rgba(6, 6, 6, 0.8);
 top: 0;
 left: 0;
 min-height: 100%;
 z-index: 999999;
 justify-content: center;
 align-items: center;
 display: none;
}
.intentContainer.active {
 display: flex;
}
@keyframes fadeIn {
 from {
  opacity: 0;
 }
 to {
  opacity: 1;
 }
}
.intentWrapper {
 animation: fadeIn 1s ease-in-out;
 background: #ffffff;
 box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
 border-radius: 10px;
 padding: 37px;
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 max-width: 90%;
}
.intentClose {
 position: absolute;
 font-style: normal;
 font-weight: normal;
 font-size: 23px;
 line-height: 37px;
 display: flex;
 align-items: center;
 text-align: center;
 color: #000;
 right: 15px;
 top: 4px;
 cursor: pointer;
}
.intentTitle {
 font-style: normal;
 font-weight: bold;
 font-size: 28px;
 line-height: 128%;
 align-items: center;
 text-align: center;
 color: #000000;
 margin: auto;
 max-width: 500px;
 margin-top: 20px;
 font-family: "freight-sans-pro";
}
.btn-container.text-center {
 margin: auto;
 margin-top: 25px;
}
.intentContainer .btn.btn-custom {
 line-height: 50px !important;
 color: white !important;
}
