:root {
  --thm-font: "Poppins", sans-serif;
  --heading-font: "chaloops", sans-serif;
  --thm-base: #fef138;
  --thm-base-rgb: 254, 241, 56;
  --thm-white: #ffffff;
  --thm-black: #000000;
  --thm-black-rgb: 0, 0, 0;
  --thm-green: #8bc53f;
  --thm-grey: #f4f4f4;
  --thm-text: #1d1d1d;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-text);
  font-size: 16px;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
}

a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  text-shadow: 0 0 1px var(--thm-text);
}

img {
  vertical-align: middle;
  border-style: none;
}

p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--thm-text);
  font-family: var(--thm-font);
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-start {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.justify-content-sb {
  justify-content: space-between;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.w-100 {
  width: 100%;
  height: auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  /* overflow: hidden; */
  background: linear-gradient(
    180deg,
    rgba(66, 222, 212, 1) 0%,
    rgba(33, 112, 232, 1) 100%
  );
}

.main-wrapper {
  position: relative;
  width: 100%;
  max-width: 576px;
  height: 100dvh;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(66, 222, 212, 1) 0%,
    rgba(33, 112, 232, 1) 100%
  );
}

.main-bg {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.full-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-main {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
 height: calc(100% - 90px);
}

.footer-box {
  background-color: var(--thm-text);
  border-radius: 36px 36px 0 0;
  padding: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.footer-box .list-footer {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-box .list-footer li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
  text-decoration: underline;
}

.footer-box .list-footer li:first-child {
  padding-right: 6px;
}

.logo-splash-box {
    width: 100%;
    margin: 30px 0;
    
    text-align: center;
}

.logo-splash {
  width: 45%;
  height: auto;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  text-decoration: none;
  font-family: var(--heading-font);
  outline: none;
  transition: all 0.2s ease-in-out;
}

.btn:active {
  transform: scale(1.1);
  transition: 0.1s;
}

.btn-main {
  padding: 12px 25px;
  font-size: 26px;
  color: var(--thm-text);
  background: linear-gradient(to bottom, #fef138 0%, #ff8123 100%);
  border: 3px solid var(--thm-text);
  border-radius: 15px;
  box-shadow: 0 12px var(--thm-text);
  width: 100%;
  max-width: 320px;
  text-transform: uppercase;
  text-shadow: 0 0 1px var(--thm-text);
}

.btn-main:hover {
  background: linear-gradient(to bottom, #fef138 0%, #ff8123 100%);
}

.btn-main:active,
.btn-main:focus {
  background: linear-gradient(to bottom, #fef138 0%, #ff8123 100%);
  box-shadow: 0 6px var(--thm-text);
}

.btn-box {
  margin-top: 2rem;
}

.bottom-unit {
  width: 50%;
  height: auto;
  max-width: 320px;
  display: block;
  margin: 35px  auto 0px auto; 
}

.logo-splash.logo-sign {
  width: 80%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}

.logo-sign-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0 20px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--thm-font);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border: 3px solid var(--thm-text);
  border-radius: 15px;
  box-shadow: 0 12px var(--thm-text);
  text-align: center;
}

.form-control:focus {
  box-shadow: 0 6px var(--thm-text);
  transform: translateY(4px);
  outline: none;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);

  align-items: center;
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;

  width: 90%;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.8s;
  animation-name: animatetop;
  animation-duration: 0.8s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animebtn {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.modal-body {
  padding: 30px;
  min-height: 420px;
  max-width: 337px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
}

#myModal1 .modal-body {
  background-image: url(../images/convo-bg.png);
}

.modal-body h2 {
  font-size: 25px;
  margin-top: 0;
}

/* for tamil version css batch-scan */

.modal-body-tm {
  padding: 30px;
  min-height: 420px;
  max-width: 337px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
}

#myModal1 .modal-body-tm {
  background-image: url(../images/convo-bg.png);
}

.modal-body-tm h2 {
  font-size: 22px;
  margin-top: 0;
}

#myModal2 .modal-body-tm {
  max-width: 290px;
  min-height: 360px;
  background-image: url(../images/batch-modal.png);
}
/* for tamil version css batch-scan */

.inputfield {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.input {
  height: 3em;
  width: 2.3em;
  border: 3px solid var(--thm-text);
  border-radius: 8px;
  box-shadow: 0 6px var(--thm-text);
  outline: none;
  text-align: center;
  font-size: 24px;
  background-color: rgba(72, 213, 255, 0.34);
  position: relative;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.input:disabled {
  color: var(--thm-text);
}

.input:focus {
  box-shadow: 0 3px var(--thm-text);
  transform: translateY(2px);
  outline: none;
}

.btn-main.show {
  padding: 8px 16px;
  font-size: 24px;
  border: 3px solid var(--thm-text);
  border-radius: 10px;
  box-shadow: 0 6px var(--thm-text);
  width: 60%;
  margin: 0 auto;
}

.btn-main.show:active {
  box-shadow: 0 3px var(--thm-text);
  transform: translateY(2px);
}

.batch-container {
  width: 90%;
  padding: 40px 10px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.top-logo {
  width: 85%;
  margin: -40px auto 0;
  padding-bottom: 10px;
}

.camera-main {
  border: 3px solid var(--thm-text);
  border-radius: 20px;
  position: relative;
  height: 100%;
}

.img-camera {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.camera-cont {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  height: 100%;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.camera-box {
  height: calc(100% - 190px);
}

.camera-btn {
  text-align: center;
  padding: 10px;
}

.btn-cam {
  padding: 10px 15px;
  color: var(--thm-text);
  background: var(--thm-base);
  max-width: 190px;
  box-shadow: 0 6px var(--thm-text);
}

.btn-main.btn-cam:hover {
  background: var(--thm-base);
}

.btn-main.btn-cam :active {
  background: var(--thm-base);
  box-shadow: 0 3px var(--thm-text);
  transform: translateY(2px);
}

.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  /* background-color: var(--thm-base);
    border: 2px solid var(--thm-text);
    animation: animate_line 4s ease-in-out infinite; */
}

@keyframes animate_line {
  0%,
  100% {
    top: 2%;
  }

  50% {
    top: 95%;
  }
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay-element {
  position: absolute;
  width: 80px;
  /* controls the length of the borders */
  height: 80px;
  /* controls the height of the borders */
  background-image: url(../images/camera-border.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.overlay .top-left {
  top: 0;
  left: 0;
}

.overlay .top-right {
  top: 0;
  right: 0;
  transform: rotateY(180deg);
}

.overlay .bottom-left {
  bottom: 0;
  left: 0;
  transform: rotateY(0deg) rotateX(180deg);
}

.overlay .bottom-right {
  bottom: 0;
  right: 0;
  transform: rotateY(180deg) rotateX(180deg);
}

/* for camera display non */

.overlay1::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background-color: var(--thm-base);
  border: 2px solid var(--thm-text);
  animation: animate_line 4s ease-in-out infinite;
}

@keyframes animate_line {
  0%,
  100% {
    top: 2%;
  }

  50% {
    top: 95%;
  }
}

.overlay1 {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay1-element {
  position: absolute;
  width: 80px;
  /* controls the length of the borders */
  height: 80px;
  /* controls the height of the borders */
  background-image: url(../images/camera-border.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.overlay1 .top-left {
  top: 0;
  left: 0;
}

.overlay1 .top-right {
  top: 0;
  right: 0;
  transform: rotateY(180deg);
}

.overlay1 .bottom-left {
  bottom: 0;
  left: 0;
  transform: rotateY(0deg) rotateX(180deg);
}

.overlay1 .bottom-right {
  bottom: 0;
  right: 0;
  transform: rotateY(180deg) rotateX(180deg);
}

/* end of display none */

.freeze-animation::after {
  animation: none;
}

#myModal2 .modal-body {
  max-width: 290px;
  min-height: 360px;
  background-image: url(../images/batch-modal.png);
}

.batch-img {
  width: 100%;
  max-width: 150px;
  display: block;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--thm-text);
}

.btn-main.close {
  padding: 6px 15px;
  border: 3px solid var(--thm-text);
  box-shadow: 0 6px var(--thm-text);
  max-width: 130px;
}

.btn-main.close:active {
  box-shadow: 0 3px var(--thm-text);
  transform: translateY(2px);
}

.btn-batch {
  text-align: right;
  margin-top: 48px;
}

.tutorial-screen {
  position: relative;
  height: 100%;
}

.tutorial-logo {
  text-align: center;
  margin-top: -16px;
}

.tutorial-logo img.w-100 {
  max-width: 230px;
  display: inline-block;
}

.video-section {
  border: 3px solid var(--thm-text);
  border-radius: 20px;
  position: relative;
  height: calc(100% - 101px);
}

.tutorial-video {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.full-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.full-text h2 {
  font-size: 30px;
  width: 140px;
  display: block;
  margin: 0 auto;
}

.btn-action {
  padding: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--thm-text);
  background: linear-gradient(to bottom, #ff8123 0%, #fd79ae 100%);
  border: 2px solid var(--thm-text);
  border-radius: 4px;
  box-shadow: 0 3px var(--thm-text);
  width: auto;
  text-transform: uppercase;
  text-shadow: 0 0 1px var(--thm-text);
}

.btn-action:hover {
}

.video-btns {
  text-align: end;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
}

.top-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  align-items: center;
  padding-bottom: 20px;
}

.col-left,
.col-center,
.col-end {
  position: relative;
  width: 100%;
  padding-right: 5px;
  padding-left: 5px;
}

.col-left,
.col-end {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  /* flex: 0 0 12%; */
  max-width: 25%;
}

.col-center {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.box-home {
  padding: 20px;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.col-left a:first-child {
  margin-left: 0;
}

.top-bar .btn-action {
  padding: 6px;
}

.width-fix {
  position: relative;
  height: calc(100dvh - 325px);
  margin-left: -20px;
  margin-right: -20px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
}

.swiper-slide {
  width: 70%;
  padding-bottom: 6px;
}

.carousel-box {
  width: 100%;
  background-color: var(--thm-white);
  border-radius: 15px;
  border: 3px solid var(--thm-text);
  height: 100%;
  box-shadow: 0 6px var(--thm-text);
}

.carousel-box img.story-bg {
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(90deg, rgb(233 216 183) 0%, rgb(80 29 11) 52%, rgb(249 229 0) 100%);
}

.content-home {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 15px;
}

.content-home h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
}

.content-home h2 a {
  text-decoration: none;
  color: var(--thm-text);
}

.home-img {
  max-width: 160px;
  display: block;
  margin: 0 auto;
}

.box-home .camera-btn {
  padding-top: 20px;
}

.btn-home {
  padding: 10px 15px;
  color: var(--thm-text);
  background: linear-gradient(to bottom, #fef138 22%, #42ded4 100%);
  max-width: 190px;
  box-shadow: 0 6px var(--thm-text);
}

.btn-main.btn-cam.btn-home:hover {
  background: linear-gradient(to bottom, #fef138 22%, #42ded4 100%);
}

.btn-main.btn-cam.btn-home:active {
  background: linear-gradient(to bottom, #fef138 22%, #42ded4 100%);
  box-shadow: 0 6px var(--thm-text);
  transform: translateY(4px);
}

#myModal3 .modal-body {
  max-width: 320px;
  min-height: 330px;
  background-image: url(../images/view-modal.png);
  padding: 60px 62px;
}

.btn-batch.btn-view {
  text-align: center;
  margin-top: 90px;
}

#loadingScreen .modal-body {
  max-width: 290px;
  min-height: 330px;
  background-image: url(../images/batch-modal.png);
  padding: 60px 62px;
}

#loadingScreen .modal-bodys {
  max-width: 290px;
  min-height: 330px;
  background-image: url(../images/batch-modal.png);
  padding: 60px 62px;
}






.img-loading {
  width: 35%;
  display: block;
  margin: 0 auto 0.6rem;
  transform: scale(1.8);
}

/* @keyframes writing {
    0% {
        transform: translate(-50%, 0);
    }
    25% {
        transform: translate(-25%, 10%);
    }
    50% {
        transform: translate(0, 0);
    }
    75% {
        transform: translate(25%, 10%);
    }
    100% {
        transform: translate(50%, 0);
    }
} */

/* .img-loading {
    width: 50%;
    display: block;
    margin: 0 auto 1rem;
    position: relative; 
    animation: writing 3s linear infinite;
} */

.btn-main,
.btn-action {
  position: relative;
}

.btn-main img,
.btn-action img {
  position: relative;
  z-index: 0;
}

.btn-main:before,
.btn-action:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.profile-heading {
  background-image: url(../images/heading-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  background-position: center;
  padding: 10px 10px 24px 10px;
}

.profile-heading h2 {
  font-size: 30px;
  line-height: 1;
}

.profile-detail {
  position: relative;
  width: 100%;
  height: calc(100dvh - 199px);
}

.detail-container {
  height: calc(100% - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0 30px;
}

.detail-box {
  position: relative;
  width: 100%;
}

.profile-box {
  padding: 10px;
  background: linear-gradient(to bottom, #fef138 22%, #42ded4 100%);
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  width: 100%;
  text-align: center;

  /* new-css for shadow */
  color: var(--thm-text);
  background: linear-gradient(to bottom, #fef138 22%, #42ded4 100%);
  border: 2px solid var(--thm-text);
  border-radius: 8px;
  box-shadow: 0 6px var(--thm-text);
  margin-bottom: 1rem;
}

.profile-img {
  max-width: 335px;
  display: block;
  margin: 0 auto;
}

.name-box,
.profile-contact {
  margin-bottom: 0.2rem;
}

.name-box h3,
.profile-contact h3 {
  font-size: 24px;
}

.name-box label,
.profile-contact label {
  font-size: 12px;
  font-family: var(--thm-font);
}

.edit-contact a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--thm-text);
}

.history-box {
  padding: 10px;
  color: var(--thm-text);
  background: linear-gradient(to bottom, #fef138 22%, #42ded4 100%);
  border: 2px solid var(--thm-text);
  border-radius: 8px;
  box-shadow: 0 6px var(--thm-text);
  margin-bottom: 1rem;
}

.history-box a {
  color: var(--thm-text);
  font-weight: 600;
  font-family: var(--heading-font);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.3;
  display: block;
  margin-bottom: 0.3rem;
}

.time-small p {
  font-size: 12px;
  font-weight: 400;
}

.history-inside {
  height: calc(100% - 48px);
  padding: 20px 0 0;
}

.history-container {
  height: calc(100% - 20px);
  margin-right: -10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fd79ae;
  border: 2px solid var(--thm-text);
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
  width: 20px !important;
  height: 20px !important;
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fd79ae;
  background-color: rgba(253, 121, 174, 1) !important;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools {
  width: 21px;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 10px;
  border: 2px solid var(--thm-text);
  background-color: rgba(255, 255, 255, 1) !important;
  filter: "alpha(opacity=100)" !important;
  -ms-filter: "alpha(opacity=100)" !important;
}

.story-cont {
  border: 3px solid var(--thm-text);
  border-radius: 20px;
  position: relative;
  height: 100%;
  background: linear-gradient(to bottom, #fbfaee 36%, #b0f2ee 100%);
}

.story-main {
  position: relative;
  height: 100%;
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.btn-back-story {
  position: absolute;
  left: -25px;
  top: 16px;
}

.btn-back-story img {
  width: 24px;
}

.story-wrapper {
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flip-book {
  background-size: cover;
  min-width: 100% !important;
  max-width: 100% !important;
}

.page {
  border: none;
  overflow: hidden;
  background: linear-gradient(to bottom, #fbfaee 36%, #b0f2ee 100%);
  padding: 10px;
}

.page .page-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.page .page-content .page-header {
  /* font-size: 24px; */
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
}

.page.--left {
  border-right: 0;
}

.page.--right {
  border-left: 0;
}

.page.--right .page-footer {
  text-align: right;
}

.page.page-cover {
  display: flex;
  align-items: center;
  height: 100%;
}

.story-head {
  display: block;
  width: 60%;
  padding: 10px;
  margin: 0 auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: linear-gradient(to bottom, #b9c73f 36%, #fef138 100%);
  border: 2px solid var(--thm-text);
  border-bottom: none;
  text-align: center;
}

.story-head h4 {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: none;
}

/* new style implement by ujjwal */

.story-head-Top {
  display: block;
  width: 60%;
  padding: 10px;
  margin: 0 auto;
  /* border-top-left-radius: 8px;
    border-top-right-radius: 8px; */
  border-radius: 8px;
  background: linear-gradient(#b9c73f 36%, #fef138 100%);
  border: 2px solid var(--thm-text);
  /* border-bottom: none; */
  text-align: center;

  box-shadow: 0 3px var(--thm-text);
}

.story-head-Top h4 {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: none;
}
/* end to the new style  */

.story-bottom {
  display: block;
  width: 90%;
  margin: 0 auto;
  background-color: #48d5ff;
  border: 2px solid var(--thm-text);
  box-shadow: 0 6px var(--thm-text);
  padding: 10px;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
}

.story-bottom p {
  font-weight: 600;
  font-size: 15px;
}

.content-story {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.content-story p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}

.moral-box {
  height: 100%;
  background: linear-gradient(to bottom, #ff8123 0%, #fd79ae 100%);
  padding: 20px;
  border: 2px solid var(--thm-text);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.moral-box h2 {
  text-shadow: none;
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 24px;
}

.content-moral h3 {
  font-size: 36px;
  color: var(--thm-text);
}

.content-moral-tamil h3 {
  font-size: 22px;
  color: var(--thm-text);
}

.navigation-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}

.page-st {
  display: none;
}

.btn-prev,
.btn-next {
  border: none;
  background-color: transparent;
}

.btn-prev:focus,
.btn-next:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.btn-prev img {
  transform: rotate(-180deg);
}

.btn-end {
  background: linear-gradient(to bottom, #b9c73f 36%, #fef138 100%);
  border: 2px solid var(--thm-text);
  font-size: 16px;
  line-height: 1.2;
  border-radius: 4px;
  text-decoration: none;
  padding: 4px 8px;
  color: var(--thm-text);
}

.batch-text {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.batch-texts {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.batch-text.text-selfie h3 {
  font-size: 30px;
}

.btn-cheese {
  display: flex;
}

.btn-cheese .btn:first-child {
  margin-right: 4px;
}

.btn-cheese .btn-main {
  padding: 6px 15px;
  box-shadow: 0 6px var(--thm-text);
  border: 3px solid var(--thm-text);
}

.btn-cheese .btn-main:active {
  box-shadow: 0 3px var(--thm-text);
  transform: translateY(2px);
}

.preview-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.preview-btns .btn-share {
  background: linear-gradient(to bottom, #b9c73f 36%, #fef138 100%);
}

@media (max-height: 670px) {
  .btn-main {
    font-size: 20px;
    padding: 10px;
  }

  .footer-box {
    padding: 30px;
  }

  .bottom-unit {
    width: 60%;
  }

  .logo-splash.logo-sign {
    width: 60%;
  }

  .container-main {
    height: calc(100% - 80px);
  }

  .form-control {
    padding: 10px;
    font-size: 20px;
  }

  .btn-box {
    margin-top: 0rem;
  }

  .width-fix {
    height: calc(100dvh - 292px);
  }

  .profile-heading {
    padding: 10px 10px 18px 10px;
  }

  .profile-heading h2 {
    font-size: 20px;
  }

  .profile-img {
    max-width: 260px;
  }

  .name-box h3,
  .profile-contact h3 {
    font-size: 20px;
    line-height: 1;
  }

  .btn-profile img {
    width: 32px;
  }

  .content-story p {
    font-size: 20px;
    line-height: 1.2;
  }

  .content-moral h3 {
    font-size: 24px;
  }
  .content-moral-tamil h3 {
    font-size: 22px;
   
}

  .moral-box h2 {
    font-size: 18px;
  }
}

/* dropdown css */
.language-dropdown {
  position: absolute;
  top: 20px; /* Adjust this value to position the dropdown vertically */
  right: 20px; /* Adjust this value to position the dropdown horizontally */
}

.language-dropdown select {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Styling for select dropdown arrow */
.language-dropdown select::-ms-expand {
  display: none;
}

.language-dropdown select::before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* tamil version font size css detail page */
.btn-main-tm {
  font-size: 18px !important;
}

.batch-tm {
  font-size: 14px !important;
}

.batch-buttom-tm {
  font-size: 13px !important;
}

.batch-upper-tm {
  font-size: 15px !important;
}

/*  @media (max-width: 400px) {

    .story-wrapper{
        height: 300px !important;
        
    }
 } */

.text-box {
  display: inline-block;
  position: relative;
}

.text-box span {
  display: inline-block;
  position: absolute;
  opacity: 0;
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
  animation-timing-function: ease;
}

.text-box span:nth-child(1) {
  animation: rollDown 16s forwards infinite;
  text-transform: uppercase;
}

/* .text-box span:nth-child(2) {
  font-size: 20px;
  animation: rollDown2 10s forwards infinite;
  font-family: "noto-sans-tamil", sans-serif;


} */

h6.splash-heading {
    font-weight: 700;
}

/* .splash-heading {
  width: 250px;
  display: inline-flex;
} */


.timer-bottom {
  font-size: 20px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
}

.timer-box {
  margin-top: 1rem;
  background-color: #fbfaee;
  border: 3px solid var(--thm-text);
  border-radius: 15px;
  box-shadow: 0 12px var(--thm-text);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 15px;
  text-shadow: 0 0 1px var(--thm-text);
}

.countdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.time-box {
  width: 30%;
}

.time-box .time-in {
  margin-bottom: 1rem;
}

.big-text {
  display: flex;
}

.big-text span {
  display: inline-block;
  background: linear-gradient(to bottom, #fef138 22%, #42DED4 100%);
  padding: 10px 10px 6px;
  border: 2px solid var(--thm-text);
  border-radius: 6px;
  box-shadow: 0 6px var(--thm-text);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-shadow: 0 0 1px var(--thm-text);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--thm-font);
  line-height: 27px;
}

.space {
  width: 5%;
}

.space p {
  font-size: 34px;
  line-height: 54px;
  font-weight: 700;
  margin-bottom: 0;
}

.big-text span:first-child {
  margin-right: 2px;
}

.share-pack-btns {
  position: absolute;
  right: -22px;
  top: 20px;
  display: flex;
  flex-direction: column;
}

.share-pack-btns button:first-child {
  margin-bottom: 0.5rem;
}

.share-pop .btn-main {
  font-size: 20px;
  width: 100%;
}

@keyframes rollDown {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes rollDown2 {
  50% {
    opacity: 0;
  }

  67% {
    opacity: 1;
  }

  84% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-height: 670px) {
  .btn-main {
    font-size: 20px;
    padding: 10px;
  }

  .footer-box {
    padding: 30px;
  }

  .bottom-unit {
    width: 60%;
  }

  .logo-splash.logo-sign {
    width: 60%;
  }

  .container-main {
    height: calc(100% - 80px);
  }

  .form-control {
    padding: 10px;
    font-size: 20px;
  }

  .btn-box {
    margin-top: 0rem;
  }

  .width-fix {
    height: calc(100dvh - 292px);
  }

  .profile-heading {
    padding: 10px 10px 18px 10px;
  }

  .profile-heading h2 {
    font-size: 20px;
  }

  .profile-img {
    max-width: 260px;
  }

  .name-box h3,
  .profile-contact h3 {
    font-size: 20px;
    line-height: 1;
  }

  .btn-profile img {
    width: 24px;
  }

  .content-story p {
    font-size: 20px;
    line-height: 1.2;
  }

  .content-moral h3 {
    font-size: 24px;
  }

  .content-moral-tamil h3 {
    font-size: 22px;
  }

  .moral-box h2 {
    font-size: 18px;
  }
}

.d-none {
  display: none;
}

.underline {
  text-decoration: underline;
}

.batchScanlang {
  font-size: 16px;
  /* line-height: 0.; */
}
.batchScanlangEng {
    font-size: 20px;
    
  }


.d-flex{
  
  display: flex;
  gap: 10px;
  justify-content: center;
}


.objectFindModalTamil{
  display: flex;
  justify-content: center;
  align-items: center;
}




.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    /* overflow: hidden; */
    background: linear-gradient(180deg, rgba(66, 222, 212, 1) 0%, rgba(33, 112, 232, 1) 100%);
}

.main-wrapper {
    position: relative;
    width: 100%;
    max-width: 576px;
    height: 100dvh;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(66, 222, 212, 1) 0%, rgba(33, 112, 232, 1) 100%);
}

.main-bg {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
}

.full-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container-main {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: calc(100% - 100px);
}

.footer-box {
    background-color: var(--thm-text);
    border-radius: 36px 36px 0 0;
    padding: 28px;
    position: relative;
}

.footer-box .list-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-box .list-footer li a {
    text-decoration: underline;
    text-decoration-color: #F5F5F5;
    color: #F5F5F5;
    font-size: 12px;
    line-height: 1.25;
}

.footer-box .list-footer li:first-child {
    padding-right: 6px;
}

.social-links {
    padding-top: 7px;
}

.social-links a {
    text-decoration: none !important;
    margin-left: 5px;
    margin-right: 5px;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    text-decoration: none;
    font-family: var(--heading-font);
    outline: none;
    transition: all 0.2s ease-in-out;
}


.btn:active {
    transform: scale(1.1);
    transition: 0.1s;
}

.btn-main {
    padding: 12px 25px;
    font-size: 26px;
    color: var(--thm-text);
    background: linear-gradient(to bottom, #fef138 0%, #ff8123 100%);
    border: 3px solid var(--thm-text);
    border-radius: 15px;
    box-shadow: 0 12px var(--thm-text);
    width: 80%;
    max-width: 320px;
    text-transform: uppercase;
    text-shadow: 0 0 1px var(--thm-text);
}

.btn-main:hover {
    background: linear-gradient(to bottom, #fef138 0%, #ff8123 100%);

}

.btn-main:active,
.btn-main:focus {
    background: linear-gradient(to bottom, #fef138 0%, #ff8123 100%);
    box-shadow: 0 6px var(--thm-text);
}

.btn-action {
    padding: 8px;
    font-size: 22px;
    line-height: 1;
    color: var(--thm-text);
    background: linear-gradient(to bottom, #FF8123 0%, #fd79ae 100%);
    border: 2px solid var(--thm-text);
    border-radius: 6px;
    box-shadow: 0 2px var(--thm-text);
    width: auto;
    text-transform: uppercase;
    text-shadow: 0 0 1px var(--thm-text);
}

.top-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    align-items: center;
    padding-bottom: 20px;
}

.col-left,
.col-center,
.col-end {
    position: relative;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
}

.col-left,
.col-end {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-center {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.box-home {
    padding: 20px;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.col-left a:first-child {
    margin-left: 0;
}

.btn-main img,
.btn-action img {
    position: relative;
    z-index: 0;
}

.btn-back-story {
    position: absolute;
    left: -25px;
    top: 16px;
}

.btn-back-story img {
    width: 24px;
}

.share-now-container {
    position: relative;
    width: 100%;
    height: calc(100dvh - 228px);
}

.share-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    border: 4px solid #1D1D1D;
    padding: 1.5rem 1.5rem;
    background: linear-gradient(180deg, #FBFAEE 36%, #B0F2EE 100%);
    border-radius: 30px;
    box-shadow: 0 4px 0px #1D1D1D;
    height: calc(100% - 185px);
}

.share-box p {
    font-family: var(--heading-font);
    color: var(--thm-text);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.2;
    display: block;
}

.share-btn {
    font-family: var(--heading-font);
    border: 4px solid #1D1D1D;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 300;
    background: linear-gradient(180deg, #FEF138 26%, #42DED4 100%);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    max-width: 200px;
    width: 100%;
    box-shadow: 0 4px 0px #1D1D1D;
}

.trip-box {
    width: 100%;
    position: relative;
    padding-top: 1.5rem;
}

.trip-box img {
    width: 126px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-height:670px) {
    .container-main {
        height: calc(100% - 80px);
    }

    .share-now-container {
        height: calc(100dvh - 192px);
    }

    .btn-main {
        font-size: 20px;
        padding: 10px;
    }

    .footer-box {
        padding: 20px;
    }

    .btn-profile img {
        width: 24px;
    }

}

@media (max-height:600px) {
    .share-box {
        height: calc(100% - 192px);
    }

    .share-box p {
        font-size: 1.15rem;
    }

    .share-btn {
        font-size: 0.9rem;
    }

    .trip-box img {
        width: 132px;
    }
}