/*
 *  Document   : extra_pages.css
 *  Author     : RedStar Theme
 *  Description: this style sheet for extra page like login, logout, page_404, page_500 etc.. 
 
 			[Table of contents]
 			
 			1. BODY 
 			2. FORM TITLE
 			3. LOGIN FORM
 			4. CUSTOM CHECKBOX
 			5. PAGE 404
 			6. LOCK SCREEN
 */
 @import url("https://fonts.googleapis.com/css?family=Josefin+Sans:400,500,600,700|Roboto:400,500,700|Sen:400,700,800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
}

/*---------------------------------------------*/
a {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #fff;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #fff;}
input:-moz-placeholder { color: #fff;}
input::-moz-placeholder { color: #fff;}
input:-ms-input-placeholder { color: #fff;}

textarea::-webkit-input-placeholder { color: #fff;}
textarea:-moz-placeholder { color: #fff;}
textarea::-moz-placeholder { color: #fff;}
textarea:-ms-input-placeholder { color: #fff;}

label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-size: 13px;
  color: #e5e5e5;
  line-height: 1.5;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;  
}
.page-background{
	/* background-image: url('../../img/bg-01.jpg'); */ background-color:#fafafa;
}
.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.9);
}

.wrap-login100 {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 37px 55px 37px 55px;
  background: #9152f8;
  background: -webkit-linear-gradient(top, #007bff, #5992d0);
  background: -o-linear-gradient(top, #007bff, #5992d0);
  background: -moz-linear-gradient(top, #007bff, #5992d0);
  background: linear-gradient(top, #007bff, #5992d0);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-logo {
  font-size: 60px; 
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #2f94a5;
  margin: 0 auto;
}

.login100-form-title {
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;

  display: block;
}
.login100-form-logo img{
	width: 125px;
    border-radius: 50%;
    box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.2);
}
.login-logo img{
	width: 80px;
    border-radius: 50%;
    box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.2);
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 30px;
}

.input100 {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px 0 38px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.focus-input100::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus {
  padding-left: 5px;
}

.input100:focus + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}


/*==================================================================
[ Restyle Checkbox ]*/

.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-size: 13px;
  color: #fff;
  line-height: 1.2;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #555555;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  font-size: 16px;
  color: #555555;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;
  background: #9152f8;
  background: -webkit-linear-gradient(bottom, #ecedf1, #e6e1e8);
  background: -o-linear-gradient(bottom, #ecedf1, #e6e1e8);
  background: -moz-linear-gradient(bottom, #ecedf1, #e6e1e8);
  background: linear-gradient(bottom, #ecedf1, #e6e1e8);
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 10px 0px rgba(213, 208, 214, 0.5);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  color: #443f3f;
}

.login100-form-btn:hover:before {
  opacity: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 55px 15px 37px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}
.p-b-34 {padding-bottom: 34px;}
.p-t-27 {
    padding-top: 27px;
}
.p-b-20{
	padding-bottom: 20px;	
}
.p-t-90 {
    padding-top: 90px;
}
.p-t-50 {
    padding-top: 50px;
}
.p-t-30 {
    padding-top: 30px;
}
.form-404{
   text-align: center;
}
.content-404 {
	color: #fff;
	font-size: 14px;
	padding: 30px;
}
.form404-title{
	font-size: 50px;
	color: #fff;
}
.txt-locked{
	color: #fff;
    font-size: 18px;
    padding: 10px 0px;
}
.txt-small-heading {
    color: #fff;
    font-size: 18px;
    padding: 15px 0px;
}
@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}



/*--------23/11/2020-By-PP--------*/
.loginWrap{background-color:#ffffff;box-shadow:-1px -1px 5px rgba(219, 219, 219, 0.9), 5px 5px 20px rgba(191, 207, 223, 0.9), -5px -5px 10px rgba(248, 248, 248, 0.9);border-radius:5px;}
.loginWrap .leftPanel{border-top-left-radius:5px;border-bottom-left-radius:5px;border-top-right-radius:0;border-bottom-right-radius:0;display:flex;flex-flow:column;justify-content:flex-start;align-items:center;padding:37px 55px 37px 55px;}
.loginWrap .leftPanel p{color:#000000;font-size:18px;text-align:center;font-weight:400;letter-spacing:0;
display:flex;font-family:"Josefin Sans", sans-serif;margin-bottom:15px;}
.loginWrap .rightPanel{border-top-left-radius:0px;border-bottom-left-radius:0px;border-top-right-radius:5px;border-bottom-right-radius:5px;}
.loginWrap .rightPanel .wrap-input100{border-bottom:1px solid rgba(255,255,255,0.7);}
.loginWrap .rightPanel .input100{color:#ffffff;padding:0;font-family:'Montserrat', sans-serif;font-weight:500;font-size:14px;}
.loginWrap .rightPanel input::-webkit-input-placeholder{color:rgba(255,255,255,0.7);}
.loginWrap .rightPanel input:-moz-placeholder{color:rgba(255,255,255,0.7);}
.loginWrap .rightPanel input::-moz-placeholder{color:rgba(255,255,255,0.7);}
.loginWrap .rightPanel input:-ms-input-placeholder{color:rgba(255,255,255,0.7);}
.loginWrap .login100-form-btn{font-family:"Josefin Sans", sans-serif;}

.loginWrap .leftPanel .instructData .login100-form-btn{background:-webkit-linear-gradient(top, #007bff, #5992d0);background:-o-linear-gradient(top, #007bff, #5992d0);background:-moz-linear-gradient(top, #007bff, #5992d0);
  background:linear-gradient(top, #007bff, #5992d0);color:#ffffff;}
.loginWrap .leftPanel .instructData .login100-form-btn:hover{background:-webkit-linear-gradient(top, #007bff, #5992d0);background:-o-linear-gradient(top, #007bff, #5992d0);background:-moz-linear-gradient(top, #007bff, #5992d0);
background:linear-gradient(top, #007bff, #5992d0);color:#ffffff;}
.loginWrap .leftPanel .instructData .login100-form-btn:before{content:none;}

.loginWrap .rightPanel .login100-form-title{font-family:"Josefin Sans", sans-serif;text-transform:capitalize;color:#ffffff;}

.tablesWrapper .card{border:0;border-radius:0;padding:0;}
.tablesWrapper .card-head{background:-webkit-linear-gradient(top, #007bff, #5992d0);background:-o-linear-gradient(top, #007bff, #5992d0);background:-moz-linear-gradient(top, #007bff, #5992d0);background:linear-gradient(top, #007bff, #5992d0);padding:15px;}
.tablesWrapper .card-head h4{font-family:"Josefin Sans", sans-serif;text-transform:capitalize;font-size:22px;text-align:center;color:#ffffff;margin:0;font-weight:500;}
.tablesWrapper .card-body{padding:0;}
.tablesWrapper table{margin:0;}
.tablesWrapper table tr th,
.tablesWrapper table tr td{border:1px solid #eeeeee;text-align:center;}
.tablesWrapper table tr th{font-family:"Josefin Sans", sans-serif;font-size:16px;color:#000000;background-color: #f1f1f1;border:1px solid #fafafa;font-weight:500;}
.tablesWrapper table tr td{font-family:'Montserrat', sans-serif;font-weight:500;font-size:13px;color:#444444;letter-spacing:0.5px;}
.tablesWrapper table tr:nth-child(even){background-color:#fafafa;}
.instructNote{text-align:center;padding:10px 0 25px;}
.instructNote h4{font-size:26px;margin:0;font-family:"Josefin Sans", sans-serif;color:#000000;font-weight:500;}
.instructionPage{background-color:#ffffff;padding:40px 50px 50px;margin-bottom:20px;}
.instructionWrapper .card-body p{font-family:'Montserrat', sans-serif;color:#555555;font-size:15px;letter-spacing:0.5px;line-height:30px;font-weight:400;}
.instructionWrapper .card-body p strong{color:#000000;}
.instructionWrapper .card-body img{margin-bottom:20px;}
.instructionWrapper .ctaWrap{width:100%;margin:20px auto 0;text-align:center;}
.instructionWrapper .ctaWrap a{background:-webkit-linear-gradient(top, #007bff, #5992d0);background:-o-linear-gradient(top, #007bff, #5992d0);background:-moz-linear-gradient(top, #007bff, #5992d0);
  background:linear-gradient(top, #007bff, #5992d0);color:#ffffff;border:0;height:auto;padding:15px 40px 12px;
  border-radius:30px;font-family:"Josefin Sans", sans-serif;text-transform:capitalize;}
.instructionWrapper .ctaWrap a:before{content:none;}
.page-footer{background:-webkit-linear-gradient(top, #007bff, #5992d0);background:-o-linear-gradient(top, #007bff, #5992d0);background:-moz-linear-gradient(top, #007bff, #5992d0);background:linear-gradient(top, #007bff, #5992d0);color:#ffffff;font-family:"Josefin Sans", sans-serif;text-align:center;padding:25px 0 20px;font-weight:500;
letter-spacing:0.5px;}
.instructionPage .instructImg{width:40%;}
.FacebookPostWrap{display:flex;align-items:center;justify-content:center;padding:0;} 
.noticeBoard{}
.noticeBoard h1{font-family:"Josefin Sans", sans-serif;font-size:22px;text-align:center;font-weight:700;}
.noticeBoard .NoiceList{height:375px;overflow-y:hidden;}
.noticeBoard .NoiceList div{font-size:14px;line-height:24px;color:#000000;font-weight:400;letter-spacing:0.1px;}

.LatestNewsWrapper{width:100%;margin:0 auto;padding:60px 0 20px;background-color:#ffffff;}
ul.latestNewsListing{display:flex;flex-flow:row wrap;justify-content:space-between;}
ul.latestNewsListing li{width:33%;}
ul.latestNewsListing li .youtubeVideoWrap{padding:0px 12px;}
ul.latestNewsListing li .youtubeVideoWrap iframe{width:100%!important;height:340px;}
.LatestNewsWrapper .titleWrap{width:100%;margin:0 auto;text-align:center;margin-bottom:50px;position:relative;padding-bottom:25px;}
.LatestNewsWrapper .titleWrap:after{content:"";background-color:#095285;position:absolute;width:50px;height:2px;bottom:0px;text-align: center;left:0;right:0;margin:0 auto;}
.LatestNewsWrapper .titleWrap h1,
.LatestNewsWrapper .titleWrap h2{font-family:"Josefin Sans", sans-serif;font-size:32px;font-weight:600;letter-spacing:0px;color:#000000;}
.LatestNewsWrapper .titleWrap span{font-family:"Josefin Sans", sans-serif;color:#095285;letter-spacing:1px;font-size:14px;}

.telegramPopup .modal-header{border:none;padding:15px;}
.telegramPopup .modal-header .close{padding:0;margin:0;position:absolute;right:10px;top:10px;opacity:1;text-shadow:none;color:#ffffff;}
.telegramPopup .modal-header .close:not(:disabled):not(.disabled):focus, 
.telegramPopup .modal-header .close:not(:disabled):not(.disabled):hover{color:#ffffff;}
.telegramPopup .modal-content{background-image:linear-gradient(30deg, #0063e4, #00e5ad);}
.telegramPopup .modal-content .modal-body{padding:5px 20px 30px;}
.telegramPopup .modal-content form{background-color:#ffffff;box-shadow:0px 0px 12px rgba(0,0,0,0.3);padding:20px 35px 30px;}
.telegramPopup .modal-content form .title h2{text-transform:uppercase;color:#0f68a4;text-align:center;font-size:24px;font-weight:bold;margin:0 0 20px;}
.telegramPopup .modal-content form ul li{height:65px;margin-bottom:15px;}
.telegramPopup .modal-content form .form-field input{background-color:#7ff1d7;width:100%;border:0;border-radius:0;outline:none;box-shadow:none;height:46px;padding:5px 10px;font-size: 14px;color:#000000;}
.telegramPopup .modal-content form .form-field span{text-transform:uppercase;display:block;text-align:right;color: #b8e7d7;font-size:14px;margin-top:1px;}
.telegramPopup .modal-content form ul .btnWrap{height:auto;margin:0;text-align:center;}
.telegramPopup .modal-content form ul .btnWrap .btnSubmit{background-image:linear-gradient(220deg, #0063e4, #00e5ad);box-shadow:none;border:0;text-align: center;padding:14px 45px 12px;font-size:18px;text-transform:uppercase;color:#ffffff;letter-spacing:1px;border-radius:0px;line-height:18px;margin:0;}
.telegramPopup .modal-content form .form-field input::-webkit-input-placeholder{font-size:18px;color:#59dfbc;text-transform:uppercase;font-weight:bold;}
.telegramPopup .modal-content form .form-field input::-moz-placeholder{font-size:18px;color:#59dfbc;text-transform:uppercase;font-weight:bold;}
.telegramPopup .modal-content form .form-field input:-ms-input-placeholder{font-size:18px;color:#59dfbc;text-transform:uppercase;font-weight:bold;}
.telegramPopup .modal-content form .form-field input:-moz-placeholder{font-size:18px;color:#59dfbc;text-transform:uppercase;font-weight:bold;}

@media(max-width:1199px){
  .fb_iframe_widget,
  .fb_iframe_widget span,
  .fb_iframe_widget iframe,
  .FacebookPostWrap iframe{width:300px!important;}

}
@media(max-width:991px){
  .loginFacebook{margin-right:0;display:flex;}
  .loginFacebook .col-lg-4{margin:20px 0 0;}
  ul.latestNewsListing li .youtubeVideoWrap iframe{height:210px;}
}
@media(max-width:767px){
  .loginWrap .row{flex-direction:column-reverse;}
  .loginWrap .leftPanel{background-color:#ffffff;border-top-left-radius:0px;border-bottom-left-radius:5px;border-top-right-radius:0px;border-bottom-right-radius:5px;}
  .loginWrap .rightPanel{width:100%;border-top-left-radius:5px;border-bottom-left-radius:0px;border-top-right-radius:5px;border-bottom-right-radius:0px;}
  .loginWrap .leftPanel p{font-size:18px;margin-bottom:20px;}
  .tablesWrapper table{margin-bottom:20px;}
  .login100-form-logo{height:90px;width:90px;}
  .login100-form-logo img{width:90px;}
  .tablesWrapper .card-head h4{font-size:18px;}
  .instructNote h4{font-size:22px;}
  .instructionPage{padding:15px 20px 25px;margin-top:20px;}
  .instructionPage .instructImg{width:80%;}
  .loginFacebook{margin:0;}
  .noticeBoard .NoiceList{height:240px;}
  ul.latestNewsListing{justify-content:center;}
  ul.latestNewsListing li{width:60%;margin:0 0 10px;}
}
@media(max-width:575px){
  .tablesWrapper .col-md-6{padding:0;}
  .tablesWrapper .card-head h4{font-size:16px;}
  .wrap-login100{padding:25px 15px 35px 15px;}
  .loginWrap .leftPanel{padding:35px 15px;}
  .instructionWrapper .card-body p{font-size:14px;line-height:26px;}
  ul.latestNewsListing li{width:100%;}
  ul.latestNewsListing li .youtubeVideoWrap iframe{height:280px;}
}
@media(max-width:390px){
  ul.latestNewsListing li .youtubeVideoWrap iframe{height:190px;}
}
@media(max-width:340px){
  .loginWrap .row{margin:0;}
}