@charset "utf-8";
/* CSS Document */

/* Privacy Modal Overlay */
.integrated-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

/* Modal Content Box */
.privacy-modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  color: #333;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: left;
}

/* Scrollbar Styling */
.privacy-modal-content::-webkit-scrollbar {
  width: 8px;
}

.privacy-modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.privacy-modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.privacy-modal-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Modal Links */
.privacy-modal-link {
  color: #7F4FFF;
  text-decoration: underline;
}

.privacy-modal-link:hover {
  color: #7F4FFF;
}
	


/* PORTRAIT MOBILE (up to 1099px wide) */
@media only screen and (orientation: portrait) and (max-width: 1099px) {

/* Modal Title */
.privacy-modal-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

/* Modal Section Headings */
.privacy-modal-heading {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

/* Modal Paragraphs */
.privacy-modal-text {
  line-height: 1.6;
  font-size: 15px;
  margin: 15px 0;
  text-align: left;
}

/* Modal Lists */
.privacy-modal-list {
  text-align: left;
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-modal-list li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Close Button */
.privacy-modal-close-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #f0f0f0;
  color: #666;
  font-size: 16px;
  font-weight: normal;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.privacy-modal-close-btn:hover {
  background: #e0e0e0;
  color: #333;
}

/* Small Text */
.privacy-modal-small {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

}
	

/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {
	
	
/* Modal Title */
.privacy-modal-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

/* Modal Section Headings */
.privacy-modal-heading {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

/* Modal Paragraphs */
.privacy-modal-text {
  line-height: 1.6;
  font-size: 15px;
  margin: 15px 0;
  text-align: left;
}

/* Modal Lists */
.privacy-modal-list {
  text-align: left;
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-modal-list li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Close Button */
.privacy-modal-close-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #f0f0f0;
  color: #666;
  font-size: 16px;
  font-weight: normal;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.privacy-modal-close-btn:hover {
  background: #e0e0e0;
  color: #333;
}

/* Small Text */
.privacy-modal-small {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

}

/* DESKTOP (1100px and wider) */
@media only screen and (min-width: 1100px) {


/* Modal Title */
.privacy-modal-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

/* Modal Section Headings */
.privacy-modal-heading {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

/* Modal Paragraphs */
.privacy-modal-text {
  line-height: 1.6;
  margin: 15px 0;
  text-align: left;
}

/* Modal Lists */
.privacy-modal-list {
  text-align: left;
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-modal-list li {
  margin: 8px 0;
  line-height: 1.5;
}


/* Close Button */
.privacy-modal-close-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #f0f0f0;
  color: #666;
  font-size: 16px;
  font-weight: normal;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.privacy-modal-close-btn:hover {
  background: #e0e0e0;
  color: #333;
}

/* Small Text */
.privacy-modal-small {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

/* Scrollbar Styling */
.privacy-modal-content::-webkit-scrollbar {
  width: 8px;
}
	
}