/* Cookie modal */
#intro-popup-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  background-color: #0009;
  display: none;
}

.intro-popup {
  background-color: #092834;
  filter: drop-shadow(0px 0px 6px #fff2);
  padding: 20px;
  width: 100%;
}

.intro-popup .container {
  max-width: 1200px;
}

.privacy-logo {
  width: 36px;
  height: 36px;
  background-image: url(https://app.secureprivacy.ai/assets/images/logoWhite.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 20px;
  flex-shrink: 0;
}

.text-underline {
  text-decoration: underline !important;
  color: white;
}

.intro-popup p {
  font-size: 16px;
}

.intro-popup button {
  width: 100px;
  height: 42px;
}

.close-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  margin-left: 20px;
  cursor: pointer;
}

.close-icon:hover {
  opacity: 0.8;
}

.close-icon img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 576px) {
  .intro-popup .left {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .intro-popup p {
    text-align: center;
    font-size: 14px;
  }

  .privacy-logo {
    margin-bottom: 10px;
  }
}

/* Cookie Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background-color: #fefefe;
  max-width: 560px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  color: #092834;
  position: relative;
}

.modal-content .close {
  position: absolute;
  top: 2px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}

.modal-content .email-input {
  background-color: #eee;
  color: #092834;
  margin-bottom: 40px;
}

.modal-content button {
  height: 50px;
  margin-top: 20px;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  #intro-popup-wrapper {
    justify-content: flex-start;
  }
}
