
html {
  font-size: 90%;
}

body {
  font-family: "Poppins", sans-serif;
}
.tooltip-inner {
  font-size: 0.9rem;
  padding: 4px 8px; /* Optional: adjust padding */
  z-index:999999999999;
}
.tooltip {
  z-index: 99999999999 !important; /* Or even higher if needed */
}
/*//////////////////////////////////////////////////////////////////
[ 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: linear-gradient(to right, #fff4ea, #f8f9fa);
  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 ]*/
.input100-page{
text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    height: 40px;
    border-radius: 12px;
	box-shadow: 0px 0px 10px 2px #dee2e6;
}

.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;
    border-radius: 12px;
	box-shadow: 0px 0px 10px 2px #dee2e6;
}

.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 #ffffffd4;
    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: #ffffffd4;
    padding: 6px;
    width: 100%;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #ccc;
    padding-bottom: 6px;
    margin-bottom: 0px;
    animation: blinkBorder 1s infinite;
	margin-bottom:10px;
}
.label-input100 {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    padding-left: 5px;
    font-weight: bold;
}


@keyframes blinkBorder {
    0% {
        border-bottom-color: #ccc;
    }
    50% {
        border-bottom-color: transparent;
    }
    100% {
        border-bottom-color: #ccc;
    }
}


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%;
}




/* Root variables for easy customization */
:root {
  --footer-glow: 0 0 20px rgba(75, 108, 183, 0.7);
  --icon-primary: #ffffff;
  --icon-glow: 0 0 15px rgba(255, 255, 255, 0.7);
  --icon-hover: #ffffff;
  --icon-active: #ffffff;
  --ripple-color: rgba(255, 255, 255, 0.25);
  --border-radius: 1.25rem;
  --transition-speed: 0.4s;
  --glow-color: rgba(255, 255, 255, 0.9);
}

/* Premium footer design with glassmorphism effect */
.footer_bottom_app_options {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Modern layout */
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* Premium entrance animation */
  animation: footerRiseUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  transform-origin: bottom center;
  /* Border effect */
  border: 1px solid rgba(255, 255, 255, 0.18);
 box-shadow: 0px 0px 5px 2px #f8f9fa;
	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: 999;
 border-top-left-radius: 13px;
  border-top-right-radius: 13px; 
}

/* Premium entrance animation */
@keyframes footerRiseUp {
  0% {
    transform: translateY(150%) scale(0.8);
    opacity: 0;
  }
  70% {
    transform: translateY(-5%) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Footer items with floating effect */
.app_footer_item {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 0.6rem; /* Increased from 0.5rem */

  /* Subtle floating animation */
  animation: floatingIcon 6s ease-in-out infinite;
}

/* Staggered floating for visual interest */
.app_footer_item:nth-child(1) {
  animation-delay: 0s;
}
.app_footer_item:nth-child(2) {
  animation-delay: 1s;
}
.app_footer_item:nth-child(3) {
  animation-delay: 0.5s;
}
.app_footer_item:nth-child(4) {
  animation-delay: 1.5s;
}
.app_footer_item:nth-child(5) {
  animation-delay: 0.75s;
}

@keyframes floatingIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.25rem);
  }
}

/* Premium icon container */
.app_footer_item a {
  color: var(--icon-primary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0.6rem; /* Increased from 0.5rem */
  border-radius: 50%;
  transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon styling with glow effect - increased size */
.app_footer_item i {
  font-size: 2.2rem !important; /* Increased from 1.9rem */
  filter: drop-shadow(var(--icon-glow));
  transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.footer-icon-image {
	filter: drop-shadow(var(--icon-glow));
	height:2.2rem;
	 transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



/* NEW: Sequential glowing zoom animation for icons */
.app_footer_item:nth-child(1) i {
  animation: glowZoom 5s infinite;
  animation-delay: 0s;
}
.app_footer_item:nth-child(2) i {
  animation: glowZoom 5s infinite;
  animation-delay: 1s;
}
.app_footer_item:nth-child(3) i {
  animation: glowZoom 5s infinite;
  animation-delay: 2s;
}
.app_footer_item:nth-child(4) i {
  animation: glowZoom 5s infinite;
  animation-delay: 3s;
}
.app_footer_item:nth-child(5) i {
  animation: glowZoom 5s infinite;
  animation-delay: 4s;
}
.app_footer_item:nth-child(6) i {
  animation: glowZoom 5s infinite;
  animation-delay: 5s;
}
@keyframes glowZoom {
  0%,
  20%,
  100% {
    transform: scale(1);
    filter: drop-shadow(var(--icon-glow));
  }
  5%,
  15% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 20px var(--glow-color));
  }
}

/* Specific icon adjustments - increased size */
.app_footer_item .fas.fa-calendar-alt,
.app_footer_item .fa.fa-calendar-alt {
  font-size: 2.3rem !important; /* Increased from 2rem */
}

/* Remove the previous tooltip style since we're using Bootstrap tooltips */
.app_footer_item a::before {
  display: none;
}

/* Premium hover effects */
.app_footer_item:hover a {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-0.5rem);
}

.app_footer_item:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.9));
}

/* Active state with 3D press effect */
.app_footer_item:active a {
  transform: translateY(-0.25rem) scale(0.95);
  background: rgba(255, 255, 255, 0.25);
}

.app_footer_item:active i {
  transform: scale(0.9);
}

/* Premium ripple effect */
.app_footer_item a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--ripple-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.app_footer_item a:active::after {
  animation: premiumRipple 0.8s cubic-bezier(0, 0.5, 0.25, 1);
}

@keyframes premiumRipple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.7;
  }
  100% {
    width: 10rem;
    height: 10rem;
    opacity: 0;
  }
}

/* Custom styling for Bootstrap tooltips */
.tooltip {
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tooltip.show {
  opacity: 1;
}

.tooltip .tooltip-inner {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.tooltip .tooltip-arrow::before {
  border-top-color: rgba(0, 0, 0, 0.8);
}

/* Animation class for tooltips */
.tooltip-animated {
  animation: tooltipFade 0.5s ease-in-out;
}

@keyframes tooltipFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Enhanced notification bell animation */
.faa-ring.animated-bell {
      position: relative;
      display: inline-block;
    }

    .faa-ring.animated-bell::before {
      content: '';
      position: absolute;
      top: -0.25rem;
      right: -0.25rem;
      width: 0.625rem;
      height: 0.625rem;
      background: #ff3e3e;
      border-radius: 50%;
      border: 2px solid white;
      animation: pulse 1.5s infinite;
      z-index: 2;
    }

    .faa-ring.animated-bell i {
      font-size: 2rem;
      animation: enhancedRing 2s ease infinite;
      position: relative;
      z-index: 1;
    }

    @keyframes enhancedRing {
      0%, 100% { transform: rotate(0); }
      5% { transform: rotate(15deg); }
      10% { transform: rotate(-15deg); }
      15% { transform: rotate(15deg); }
      20% { transform: rotate(-15deg); }
      25% { transform: rotate(8deg); }
      30% { transform: rotate(-8deg); }
      35% { transform: rotate(0); }
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0.8; }
      100% { transform: scale(1); opacity: 1; }
    }

/* Active menu item indicator */
.app_footer_item.active a {
  background: rgba(255, 255, 255, 0.2);
}

.app_footer_item.active a::before {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.app_footer_item.active i {
  transform: scale(1.1);
}


  .app_footer_item {
    padding: 0 0.25rem;
  }
  
  .app_footer_item i {
    font-size: 1.625rem !important;
  }
  
  .app_footer_item a::before {
    display: none; /* Hide labels on very small screens */
  }
}





/*------------------------------------------------------------------
[ 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;
    border-radius: 12px;
	box-shadow: 0px 0px 10px 2px #dee2e6;
  height: 40px;
  outline: none;
  position: relative;
    border-radius: 12px;
	box-shadow: 0px 0px 10px 2px #dee2e6;
}

/*------------------------------------------------------------------
[ 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;
}

@media all and (max-width: 550px) and (min-width: 200px) {
#banner-box {
	margin-top:55px;
    position: fixed;
    width: 100%;
    z-index: 8;
}
 .slider, .slide {
    height: 31vh;
  }
 .slide .slide__img img {
  width: 100%;
  height: 31vh;
 }  
#menu-box {
margin-top: 40vh;
height: 55vh;
overflow-y: auto;
overflow-x: hidden;
}
}
@media all and (max-width: 3000px) and (min-width: 551px) {
#banner-box {
	margin-top:55px;
    position: fixed;
    width: 50%;
    z-index: 8;
}
 .slider, .slide {
    height: 82vh;
  }
 .slide .slide__img img {
  width: 100%;
  height: 82vh;
 }  
#menu-box {
	margin-top:55px;
height: 82vh;
overflow-y: auto;
overflow-x: hidden;
}	
}	


}
#menu-box {
    position: fixed;
    width: 100%;
    z-index: 1;
overflow-x: hidden;	
}

body{
	overflow-x:hidden;
}
.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:60px;
    position: fixed;
    width: 100%;
    z-index: 88;
}

.info-section
{
    text-align: center;
    background-repeat:no-repeat;
    background:#f8f9fa;
    border-radius:8px;
    margin-top:5px;
	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-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;
}



.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:4px;
}

/* 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:822222222228;
    position: absolute;
    bottom: 5%;
    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;
}