/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 34px !important;
    user-select: none;
    -webkit-user-select: none;
    padding-left: 0px !important;
}

/*Custom CSS Added*/
span.namevalidation_error {
    color: #e60a0a;
    text-align: center;
    border-radius: 6px;
    padding: 0px 5px;
    position: absolute;
    z-index: 1;
    /* left: 20%; */
    visibility: visible;
    font-size: 10px;
    right: 6%;
}

span.emailvalidation_error {
	color: #e60a0a;
    text-align: center;
    border-radius: 6px;
    padding: 3px 5px;
    position: absolute;
    z-index: 1;
    /* left: 20%; */
    visibility: visible;
    font-size: 12px;
    right: 3%;
}

span.mobilevalidation_error {
	color: #e60a0a;
    text-align: center;
    border-radius: 6px;
    padding: 3px 5px;
    position: absolute;
    z-index: 1;
    /* left: 20%; */
    visibility: visible;
    font-size: 12px;
    right: 3%;
}

span.passwordvalidation_error {
	color: #e60a0a;
    /* text-align: center; */
    border-radius: 6px;
    padding: 0px 5px;
    position: absolute;
    z-index: 1;
    /* left: 20%; */
    visibility: visible;
    font-size: 9px;
    left: 3%;
    width: 200%;
}

span.confirmpasswordvalidation_error {
	color: #e60a0a;
    /* text-align: center; */
    border-radius: 6px;
    padding: 0px 5px;
    position: absolute;
    z-index: 1;
    /* left: 20%; */
    visibility: visible;
    font-size: 9px;
    left: 3%;
    width: 100%;
}

span.contactnamevalidation_error{
	color: #e60a0a;
    border-radius: 6px;
    padding: 0px 5px;
    position: absolute;
    z-index: 1;
    visibility: visible;
    font-size: 9px;
    right: 2%;
    left: 2%;	
}

span.confirmpasswordvalidation_error1 {
    color: #e60a0a;
    border-radius: 6px;
    padding: 0px 5px;
    position: absolute;
    z-index: 1;
    visibility: visible;
    font-size: 9px;
    width: 100%;
    right: 3%;
    text-align: right;
}

.btn-pricing.customrhover{
	background: #42ad63;	
}

.btn-pricing.customrhover:hover{
	background: #fc5231;
}

.btn1 {
    font-size: 12px;
    padding: 14px 0px 14px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    border-radius: 2px;
    outline: none;
    transition: 0.15s linear;
    background: none;
    border: none;
    height: 40px;
    text-align: center;
}
.btn-block1 {
    display: block;
    width: 100%;
}

.btnlogin{
	color: #fff;
    background-color: #da0b4e;
    border-color: #da0b4e;
    height: 40px;
    padding: 10px 10px 10px;
}

.btncm{
	color: #fff;
    background-color: #50a1ff;
    border-color: #50a1ff; 
	height: 40px;
    padding: 10px 10px 10px;
}

.offcanvas {
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    z-index: 1010;
    visibility: hidden;
}

.article_body_wrap div {
    margin-bottom: 10px;
}

.article_body_wrap h4 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/*End of Custom CSS Added*/

/*Cookie Consent Begin*/
#cookieConsent {
    background-color: #1b2132;
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
    margin-bottom: 0px;
    margin-left: 75px;
    margin-right: 75px;
    border-radius: 5px;
}

#cookieConsent a {
    color: #da0b4e;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #d10c4f;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 30px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #ffffff;
    color: #da0b4e;
}
/*Cookie Consent End*/

/*Cookie Disable Begin*/
#cookieDisable {
    background-color: #1b2132;
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
    margin-top: 110px;
    margin-left: 75px;
    margin-right: 75px;
    border-radius: 5px;
}

#cookieDisable a {
    color: #da0b4e;
    text-decoration: none;
}
#closeCookieDisable {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieDisable:hover {
    color: #FFF;
}
#cookieDisable a.cookieDisableOK {
    background-color: #d10c4f;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 30px 0 10px;
}
#cookieDisable a.cookieDisableOK:hover {
    background-color: #ffffff;
    color: #da0b4e;
}
/*Cookie Disable End*/

.social-login.light ul li a.btn.connect-fb {
    color: #00ba74 !important;
}

.social-login.light ul li a.btn.connect-fb:focus, .social-login.light ul li a.btn.connect-fb:hover {
    color: #ffffff !important;
    background: #00ba74 !important;
    border: 1px solid #00ba74 !important;
}

button.btn.register-googlebtn {
  height: 40px;
  padding: 0.5em 1em;
  background: #fff;
  color: #ca3537;
  font-weight: 400;
  border: 1px solid #e0e5f3;
  border-radius: 4px;
}

button.btn.register-googlebtn:hover {
  color: #ffffff !important;
  background: #f44336 !important;
  border: 1px solid #f44336 !important;
}


/*  Toggle Switch  */

.toggleSwitch span span {
	display: none;
}

.toggleSwitch {
	display: inline-block;
	height: 18px;
	position: relative;
	overflow: visible;
	padding: 0;
	cursor: pointer;
	width: 300px;
	background-color: #fafafa;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 34px;
}

.toggleSwitch * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.toggleSwitch label,
.toggleSwitch>span {
	line-height: 20px;
	height: 20px;
	vertical-align: middle;
}

.toggleSwitch input:focus~a,
.toggleSwitch input:focus+label {
	outline: none;
}

.toggleSwitch label {
	position: relative;
	z-index: 3;
	display: block;
	width: 100%;
}

.toggleSwitch input {
	position: absolute;
	opacity: 0;
	z-index: 5;
}

.toggleSwitch>span {
	position: absolute;
	left: 0;
	width: calc(100% - 6px);
	margin: 0;
	text-align: left;
	white-space: nowrap;
	margin: 0 3px;
}

.toggleSwitch>span span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: block;
	width: 50%;
	margin-left: 50px;
	text-align: left;
	font-size: 0.9em;
	width: auto;
	left: 0;
	top: -1px;
	opacity: 1;
	width: 40%;
	text-align: center;
	line-height: 34px;
}

.toggleSwitch a {
	position: absolute;
	right: 50%;
	z-index: 4;
	display: block;
	top: 3px;
	bottom: 3px;
	padding: 0;
	left: 3px;
	width: 50%;
	background-color: #4caf50;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toggleSwitch>span span:first-of-type {
	color: #FFF;
	opacity: 1;
	left: 0;
	margin: 0;
	width: 50%;
}

.toggleSwitch>span span:last-of-type {
	left: auto;
	right: 0;
	color: #999;
	margin: 0;
	width: 50%;
}

.toggleSwitch>span:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: -2px;
	/* background-color: #fafafa;
	border: 1px solid #ccc; */
	border-radius: 30px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.toggleSwitch input:checked~a {
	left: calc(50% - 3px);
}

.toggleSwitch input:checked~span:before {
	/* border-color: #0097D1;
	box-shadow: inset 0 0 0 30px #0097D1; */
}

.toggleSwitch input:checked~span span:first-of-type {
	left: 0;
	color: #999;
}

.toggleSwitch input:checked~span span:last-of-type {
	/* opacity: 1;
	color: #fff;	 */
	color: #FFF;
}


/* Switch Sizes */

.toggleSwitch.large {
	width: 60px;
	height: 27px;
}

.toggleSwitch.large a {
	width: 27px;
}

.toggleSwitch.large>span {
	height: 29px;
	line-height: 28px;
}

.toggleSwitch.large input:checked~a {
	left: 41px;
}

.toggleSwitch.large>span span {
	font-size: 1.1em;
}

.toggleSwitch.large>span span:first-of-type {
	left: 50%;
}

.toggleSwitch.xlarge {
	width: 80px;
	height: 36px;
}

.toggleSwitch.xlarge a {
	width: 36px;
}

.toggleSwitch.xlarge>span {
	height: 38px;
	line-height: 37px;
}

.toggleSwitch.xlarge input:checked~a {
	left: 52px;
}

.toggleSwitch.xlarge>span span {
	font-size: 1.4em;
}

.toggleSwitch.xlarge>span span:first-of-type {
	left: 50%;
}


/*  End Toggle Switch  */

/* added 09-03-2022 - image crop */
.cropArea {
	background: #EEE;
	overflow: hidden;
	height: 300px;
	margin: 10px 20px;
	overflow: auto;
	max-height: 600px;
}
/* end added 09-03-2022 - image crop */


/* added 14-09-2022 - assign exam multiselect */
select[multiple] + .btn-group {
  display: block;
  width: 100%;
  height: 34px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
}

select[multiple]+.btn-group .multiselect {
  width: 100%;
  border: 0;
  background-color: #fff;
  text-align: left;
}

select[multiple]+.btn-group .multiselect .caret {
  float: right;
  margin-top: 8px;
}

.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow: auto;
}

/*Switch Style*/
.switch-field {
	display: flex;
	margin-bottom: 36px;
	overflow: hidden;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 8px 16px;
	margin-right: -1px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #4caf50;
	box-shadow: none;
}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}

/* This is just for CodePen. */

.form {
	max-width: 600px;
	/* font-family: "Lucida Grande", Tahoma, Verdana, sans-serif; */
	font-weight: normal;
	line-height: 1.625;
	margin: 8px auto;
	padding: 16px;
}

.switch-field.studentdashboard {
    margin-bottom: -20px;
}

.tooltipx {
  /* position: relative; */
  display: inline-block;
  /* border-bottom: 1px dotted black; */
}

.tooltipx .tooltiptext {
	visibility: hidden;
    /* width: 300px; */
    background-color: #fff;
    color: #000;
    text-align: left;
    border-radius: 5px;
    padding: 2px 20px 2px;
    position: absolute;
    z-index: 999;
    /* bottom: 0px; */
    margin-left: 10px;
    /* left: 105%; */
}

.tooltipx:hover .tooltiptext {
  visibility: visible;
}