/* Desktop Styles */
.facebook360-card-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  backdrop-filter: blur(2px);
}

.facebook360-card-modal-container.show {
  opacity: 1;
  pointer-events: auto;
}

.facebook360-card-modal {
  width: 50%;
  max-height: 94%;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
}

.facebook360-card-modal h1 {
  font-style: normal;
  font-weight: bold;
  position: relative;
  font-size: 20px;
  line-height: 42px;
  color: #091e42;
}

.facebook360-stacks ul li {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
  color: #6b778c;
  list-style-type: disc;
  margin-right: 32px;
}

.facebook360-stacks ul li:first-child {
  color: #344563;
  font-weight: 500;
  list-style: none;
}

.facebook360-card-modal .facebook360-image-holder {
  width: 100%;
}

.facebook360-image-holder img {
  width: 100%;
  max-height: 400px;
}

.facebook360-card-modal p {
  opacity: 0.8;
}

.facebook360-card-modal .technologies ul li {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #6070ff;
  padding: 4px;
  background: #ebebff;
  border-radius: 8px;
  margin-right: 8px;
}

.facebook360-card-modal button {
  border: none;
  cursor: pointer;
  font-size: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  opacity: 0.5;
}

.facebook360-contents {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 10px;
}

.facebook360-description {
  width: 60%;
  margin: 0 10px;
}

.facebook360-contents .network {
  display: flex;
  justify-content: space-around;
  padding: 10px 10px;
  margin-bottom: 10px;
  height: min-content;
}

.facebook360-contents .network i {
  color: #6070ff;
}

.see-live {
  margin-right: 10px;
}

.see-source {
  margin-right: 10px;
}

.facebook360-contents .network a {
  border: 1px solid #6070ff;
  border-radius: 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px;
}

.facebook360-contents .network svg {
  width: 20px;
  height: 20px;
  color: #6070ff;
}

.facebook360-contents .network a span {
  color: #6070ff;
  margin-right: 6px;
  position: static;
}

.facebook360-card-modal button:hover {
  opacity: 1;
}

/* Media Queries for Desktop Screen - All scrren sizes within the range of 992px and below. */

@media (max-width: 992px) {
  .facebook360-card-modal {
    width: 90%;
    max-width: 90%;
    height: 90%;
    padding: 30px 20px;
  }

  .facebook360-card-modal h1 {
    font-style: normal;
    font-weight: bold;
    position: relative;
    font-size: 15px;
    line-height: 30px;
    color: #091e42;
  }

  .facebook360-card-modal .technologies ul li {
    font-size: 10px;
  }

  .facebook360-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 10px;
  }

  .facebook360-contents .network {
    padding: 10px 10px;
    margin-top: 20px;
    height: min-content;
  }

  .facebook360-description {
    width: 100%;
    margin: 0 10px;
    font-size: 10px;
    margin-bottom: 20px;
  }

  .facebook360-contents .network a span {
    font-size: 10px;
  }
}
