/**
 * Theme Name: Child theme of TutorStarter
 * Template:   tutorstarter
 */

 /* Popup Registration form */

 .terms-modal,
 .privacy-policy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.terms-content,
.privacy-policy-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.close-terms,
.close-privacy-policy {
  color: #aaa;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.close-terms:hover,
.close-privacy-policy:hover {
  color: #000;
}
