table.qsm-quiz-table {
  border: 1px solid #000; /* 1px solid black border around the table */
  width: 100%;
}
table.qsm-quiz-table {
  border-collapse: collapse;
}

table.qsm-quiz-table {
  border: 1px solid #000; /* 1px solid black border around the entire table */
}
table.qsm-quiz-table tr {
	padding: 10px;
}
table.qsm-quiz-table th, table.qsm-quiz-table td {
  border: 1px solid #333; /* 1px solid dark gray border for table headers and cells */
  text-align: center;
}
table.qsm-quiz-table th, table.qsm-quiz-table td {
  border-top: 1px solid #000; /* 1px solid black border on the top of the cells */
  border-bottom: 1px solid #000; /* 1px solid black border on the bottom of the cells */
  border-left: 1px solid #000; /* 1px solid black border on the left of the cells */
  border-right: 1px solid #000; /* 1px solid black border on the right of the cells */
  padding: 15px;
}
.qsm-quiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 15px;
}



.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
  padding: 45px;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  /*border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);*/
  border-radius: 6px;
 /* -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);*/
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
	overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
  background: #fff;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.13);
  z-index: 99;
}
.bg-overlay {
  opacity: 0.8;
  background: rgba(239, 239, 240,0.8);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -12px;
  right: 6px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #000;
  font-weight: 800;
}

@media screen and (min-width:800px){
	.custom-model-main:before {
	  content: "";
	  display: inline-block;
	  height: auto;
	  vertical-align: middle;
	  margin-right: -0px;
	  height: 100%;
	}
}
@media screen and (max-width:799px){
  .custom-model-inner{margin-top: 45px;}
}
.pop-up-content-wrap {
	
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.pop-up-content-wrap a {
	border: 1px solid #000;
	padding: 7px 15px;
	text-decoration: none;
}
.pop-up-content-wrap input {
	
	padding: 15px 20px;
}

/* SEND EMAIL*/

.custom-model-main-email {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open-email {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner-email {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
  padding: 45px;
}
.custom-model-wrap-email {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  /*border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);*/
  border-radius: 6px;
 /* -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);*/
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.model-open-email .custom-model-inner-email {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
  background: #fff;
}
.model-open-email .bg-overlay-email {
  background: rgba(0, 0, 0, 0.13);
  z-index: 99;
}
.bg-overlay-email {
  /*background: #fff;*/
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn-email {
  position: absolute;
  right: 0;
  top: -12px;
  right: 6px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #000;
  font-weight: 800;
}

@media screen and (min-width:800px){
  .custom-model-main-email:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}
@media screen and (max-width:799px){
  .custom-model-inner-email{margin-top: 45px;}
}
.pop-up-content-wrap-email {
  
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/

}
.pop-up-content-wrap-email a {
  border: 1px solid #000;
  padding: 7px 15px;
  text-decoration: none;
}
.pop-up-content-wrap-email input {
  
  padding: 15px 20px;
}

.qsm-email-buttons {
  margin: 15px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;

}
.wp-editor-tabs .wp-switch-editor.switch-html {
  display: none;
}