



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	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;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	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: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*---------------------------------------------*/
.container {
	max-width: 800px;
}





/*//////////////////////////////////////////////////////////////////
[ webapp ]*/

.container-webapp100 {
  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: #a64bf4;
  background: -webkit-linear-gradient(to right, #8e2de2, #4a00e0);
  background: -o-linear-gradient(to right, #8e2de2, #4a00e0);
  background: -moz-linear-gradient(to right, #8e2de2, #4a00e0);
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  
}

.wrap-webapp100 {
  width: 500px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 42px 55px 45px 55px;
  box-shadow: 0px 0px 10px 2px #fffcfc; 
}
.wrap-app {
  width: 98%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 12px 12px 12px 12px;
}

/*------------------------------------------------------------------
[ Form ]*/

.webapp100-form {
  width: 100%;
}

.webapp100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 20px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 20px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 13px;
  margin-bottom: 27px;
}

.label-input100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  padding-left: 5px;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Poppins-Medium;
  font-size: 18px;
  color: #333333;
  line-height: 1.2;
  padding: 0 5px;
}

.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: #7f7f7f;
}


/*---------------------------------------------*/
input.input100 {
  height: 30px;
}
input.finput {
  height: 40px;
}

.formsection {
    transition: all ease-in-out 0.3s;
    box-shadow: -1px -1px 3px 2px #f09819d4;
    border-radius: 16px;
    margin-bottom: 18px;
    margin-top: 7px;
    margin-left: 3px;
    margin-right: 3px;
    background: #fff;
}

.form_section_header {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    background: #f09819d4;
    padding: 6px;
    width: 100%;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #f09819;
    padding-bottom: 6px;
    margin-bottom: 13px;
	
}
.label-input100 {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    padding-left: 5px;
    font-weight: bold;
}





textarea.input100 {
  min-height: 110px;
  padding-top: 9px;
  padding-bottom: 13px;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-webapp100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-webapp100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.webapp100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #8e2de2;
  background: -webkit-linear-gradient(left, #8e2de2, #4a00e0,#8e2de2, #4a00e0, );
  background: -o-linear-gradient(left, #8e2de2, #4a00e0,#8e2de2, #4a00e0, );
  background: -moz-linear-gradient(left, #8e2de2, #4a00e0,#8e2de2, #4a00e0, );
  background: linear-gradient(left, #8e2de2, #4a00e0,#8e2de2, #4a00e0, );
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.webapp100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;

  font-family: Poppins-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.wrap-webapp100-form-btn:hover .webapp100-form-bgbtn {
  left: 0;
}

.webapp100-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.webapp100-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-webapp100 {
    padding: 32px 15px 35px 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: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular;
  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: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}



/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 40px;
  outline: none;
  position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: Poppins-Medium;
  font-size: 14px;
  color: #333333;
  line-height: 1.2;
  padding-left: 5px ;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow::before {
  content: '';
  display: block;
  
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid #999999;
  margin-bottom: 2px;
}

.select2-selection__arrow::after {
  content: '';
  display: block;
  
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #999999;
}

/*------------------------------------------------------------------
[ Dropdown option ]*/
.select2-container--open .select2-dropdown {
  z-index: 1251;
  border: 0px solid #e5e5e5;
  border-radius: 0px;
  background-color: white;

  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.select2-dropdown--above {top: -30px;}
.select2-dropdown--below {top: 8px;}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background: #a64bf4;
  background: -webkit-linear-gradient(to right, #e38b0c, #ffc107);
  background: -o-linear-gradient(to right, #e38b0c, #ffc107);
  background: -moz-linear-gradient(to right, #e38b0c, #ffc107);
  background: linear-gradient(to right, #e38b0c, #ffc107);
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background: #e38b0c;
  background: -webkit-linear-gradient(to right, #e38b0c, #ffc107);
  background: -o-linear-gradient(to right, #e38b0c, #ffc107);
  background: -moz-linear-gradient(to right, #e38b0c, #ffc107);
  background:linear-gradient(to right, #e38b0c, #ffc107);
  color: white;
}

.select2-results__options {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
}





.app-navbar {
  z-index: 9;
  display: block;
  overflow: hidden;
  position: fixed;
  top:0px;
  width: 100%;
 border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: -1px 4px 0px 1px #00000005;
  overflow: hidden;
  padding: 6px 6px 6px 6px;

 
}
.application-form-title {
	
    display: block;
    font-family: Poppins-Bold;
    font-size: 30px;
	-webkit-background-clip: text;
 /*  -webkit-text-fill-color: transparent; */
    line-height: 1.2;
    text-align: center;
    padding-bottom: 0px;
	
}
.dashborad_item_tittle {
	margin-top:2px;
    display: block;
    font-family: Poppins-Bold;
    font-size: 15px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 2px;
}
.text_shadow{
text-transform: uppercase;
text-shadow: 2px 2px black;
}

#banner-box {

	margin-top:55px;
    position: fixed;
    width: 100%;
    z-index: 8;
}
.banner-info 
{
    text-align: center;
    background-repeat:no-repeat;
     background: #fff;
     border-radius:8px;
         margin-top:10px;
		margin-bottom:0px;
		margin-left:10px;
		margin-right:10px;
		padding-top:10px;
		padding-bottom:10px;
}



#info-box {

	margin-top:51px;
    position: fixed;
    width: 100%;
    z-index: 88;
}

.info-section
{
    text-align: center;
    background-repeat:no-repeat;
background:#f8f9fa;
     border-radius:8px;
         margin-top:10px;
		margin-bottom:0px;
		margin-left:10px;
		margin-right:10px;
		padding-top:2px;
		padding-bottom:2px;
}

#contents-section {

	margin-top:80px;
    position: fixed;
    width: 100%;
    z-index: 8;
	

}

.page-contents
{
overflow-y:auto;
height:82vh;
overflow-x:hidden;
     border-radius:8px;
         margin-top:10px;
		margin-bottom:0px;
		margin-left:0px;
		margin-right:0px;
		padding-top:2px;
		padding-bottom:2px;
	padding-left: 4px;padding-right: 4px;	
}


#menu-box {
 
	margin-top:39vh;
    position: fixed;
    width: 100%;
    z-index: 1;
}



.menu-info 
{
    text-align: center;
    background-repeat:no-repeat;
     background: #fff;
     border-radius:8px;
		margin-bottom:0px;
		margin-left:10px;
		margin-right:10px;

		padding-bottom:10px;
}

.play-box {

	margin-top:0px;
    position: fixed;
    width: 100%;
    z-index: 8;
}
.play-box-rotate {
    right: 120px;
    z-index: 8;
    position: fixed;
    top: 45%;
    left: 35%;
    width: 40em;
    height: 20em;
    margin-top: -9em;
    margin-left: -15em;

    transform: rotate(
90deg
);
}





.play-info 
{
     position:relative;
         margin-top:0px;
		margin-bottom:0px;
		margin-left:0px;
		margin-right:0px;
		padding-top:0px;
		padding-bottom:10px;
}

#video-comment-box {
 
	margin-top:300px;
    position: fixed;
    width: 100%;
    z-index: 1;
}
#video-comment-box-live {
 
	margin-top:35px;
    position: fixed;
    width: 100%;
    z-index: 1;
}



.video-comment-info 
{
    background-repeat:no-repeat;
     background: #fff;
     border-radius:8px;
		margin-bottom:0px;
		margin-left:10px;
		margin-right:10px;

		padding-bottom:10px;
}


.footer_bottom_app_options {
	margin-top:10%;
	padding-top: 7px;
	padding-bottom: 7px;
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;

   color: white;
   text-align: center;
    clear: both;
 z-index: 8;
 border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

@media all and (max-width: 340px) and (min-width: 250px) {
 .app_footer_item{
	padding-left:5px;
	padding-right:5px;
}
#small{
	display:none;
}
}

.app_footer_item{
	padding-left:10px;
	padding-right:10px;
}
.popup_header{
font-size: 20px;
  font-weight: bold;
  text-align:center;
}
.app_popup_overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;

  padding-right:6px;
  padding-left:6px;
}
.app_popup_overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup_app_section {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 50%;
  position: relative;
  transition: all 1s ease-in-out;
}

.popup_app_section .close {
  position: absolute;
    top: 1px;
    right: 10px;
    transition: all 200ms;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #f00;
}
.close_red {
    position: absolute;
    top: -10px;
    right: 5px;
    transition: all 200ms;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #f8f9fa;
}
.close_white {
    position: absolute;
    top: -10px;
    right: 5px;
    transition: all 200ms;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #d00000;
}

.popup_app_section .close:hover {
  color: #06D85F;
}
.popup_app_section .body_content {
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  text-align:center;
  margin-top:0px;
}

@media screen and (max-width: 700px){

  .popup_app_section{
    width: 95%;
  }
}


  @media (max-height: 640px) {
#app-menu
 {
	  height:100%; 
 }
  .popup_app_section{
	 height:93%; 

 }	 
 
.body_content {
	 height:93%; 
overflow-y:scroll;	 
 }	 
 
 }
   @media (max-height: 640px) {
#app-menu
 {
	  height:100%; 
 }
  .popup_app_section{
	 height:93%; 

 }	 
 
.body_content {
	 height:93%; 
overflow-y:scroll;	 
 }	 
 
 }
 
 
    @media (max-height: 1400px) {
#app-menu
 {
	  height:100%; 
 }
  .popup_app_section{
	 height:95%; 

 }	 
 
.body_content {
	 height:95%; 
overflow-y:auto;	 
 }	 
 
 }
 
.popup_app_section .body_content_form {
  max-height: 100%;
  overflow: auto;
  margin-top:10px;
}
  @media (max-height: 1000px) {
	 

.body_content_form {
 height:93%; 
overflow-y:auto;	 
 }	 
 
 }


/* width */
::-webkit-scrollbar {
  width:2px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to right, #aaa, #777777);
;
}

.cts-media-app-form-bgbtn-yellow {
background: linear-gradient(to right, #8e2de2, #4a00e0);
position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-cts-media-app-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-cts-media-app-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.cts-media-app-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.cts-media-app-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;

  font-family: Poppins-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.wrap-cts-media-app-form-btn:hover .cts-media-app-form-bgbtn {
  left: 0;
}

.cts-media-app-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.cts-media-app-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-cts-media-app {
    padding: 30px 15px 30px 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: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  pointer-events: none;

  font-family: Poppins-Regular;
  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: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

.menu_header {
    text-align: center;
    color: white;
    font-size: 17px;
    font-weight: bolder;
    text-shadow: rgb(160 160 160 / 25%) -4px -3px 0px;
    opacity: 1;
}

.model_header {
    text-align: center;
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    font-size: 17px;
    font-weight: bolder;
    text-shadow: rgb(160 160 160 / 25%) -4px -3px 0px;
    opacity: 1;
}
.app-install 
{
    z-index:88;
    position: absolute;
    top: 14%;
    left: 47%;
    margin-top: -50px;
    margin-left: -50px;
    width: 200px;
height: 100px;
}

.app-info {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-bottom:12px;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*
html, body {
  height:100%;
  width:100%;
  margin:0;
  display:flex;
  align-items:center;
  justify-content: center;
}  */
canvas {
  position:absolute;
  height:100%;
  width:100%;
 /* background:#f2f2f2; */
}


/*   cookie   */
.cc-revoke, .cc-window {
    position: absolute;
	background:#00000075;
	margin-right: auto;
    margin-left: auto;
	border-radius:12px;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica,Calibri,Arial,sans-serif;
    font-size: 13px;
    top: 45%;
	left: 2%;
    line-height: 1.5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999;	 
    width:30em;
    height:18em;
    border: 1px solid #ccc;
    background-color: #f3f3f3;
}
 .cc-color-override--1565766192.cc-window {
    color: rgb(51, 51, 51);
    background-color: #00000075;
} 
.cc-message {
	color:white;
	font-weight:bold;
}
.cc-link
{
	color:white;
	font-weight:bold;
}
.cc-window.cc-floating {

    max-width: 95%;

}
/*   cookie   */
.loginlogo{
height:120px;
width:120px;
box-shadow: 0px 0px 9px 7px #eee;
border-radius:50%;
margin-bottom:10px;
}