* {
  box-sizing: border-box;
  user-select:none;
}

html, body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

:root {
  --clr-blu: rgb(0, 117, 255);
  --br-thm1: solid #cecece 1px;
  --td06s: 0.6s;
}

.shd-1 {
  box-shadow: 1px 1px 3px #2727278c;
}

.shd-2 {
  box-shadow: 0px 0px .5em #2727278c;
}

.h-fit {
  height: fit-content !important;
}

.w-fit {
  width: fit-content !important;
}

.justify-self-end {
  justify-self: end;
}
.pnt-ent-no {
  pointer-events:none;
}
.pnt-ent-auto {
  pointer-events:auto;
}
.out-br::after, .out-br::before, .in-br::after, .in-br::before {
  content: '';
  position: absolute;
  width: 1em;
  height: 51%;
  border: 1px var(--bs-border-style) var(--bs-border-color) !important;
  /*z-index: 0;*/
  left: -1px;
}

.out-br::after, .out-br::before {
  border-color: var(--bs-success) !important;
}

.in-br::after, .in-br::before {
  width: .5em;
  border-color: var(--clr-blu) !important;
}

.out-br::after, .in-br::after {
  top: 0;
  border-right: none !important;
  border-bottom: none !important;
  border-top-left-radius: 0.4em;
}

.out-br::before, .in-br::before {
  bottom: 0em;
  border-top: none !important;
  border-right: none !important;
  border-bottom-left-radius: 0.4em;
}

.otln-success {
  background: rgb(233, 255, 233) !important;
  /*border: solid green 1px;*/
}

.otln-success input {
  color: green !important;
}

.otln-primary {
  background: rgb(225, 239, 255) !important;
  /*border: solid var(--clr-blu) 1px;*/
}

.otln-primary input {
  color: var(--clr-blu) !important;
}

.scroll-animating {
  animation: scrollText 10s linear infinite;
}

@media (max-width:768px) {
  .md-scroll-animating {
    animation: scrollText 10s linear infinite;
  }
}

@keyframes scrollText {
  from {
    transform: translateX(14px);
  }
  to {
    transform: translateX(-150%);
  }
}

.day-cmd-cnt {
  left: 0;
  width: 2em;
  font-size: 10px;
  border-bottom-right-radius: 1em;
  z-index: 2;
}

.dt-cnt .dt {
  background: linear-gradient(104deg, #e2e2e266, #d9feff69);
  color: black;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  font-size: 14px;
}

.mic-bk {
  position: relative;
  z-index: 2;
  top: -0.4rem;
}

.mic-bk.active:before {
  content: "";
  width: 50%;
  height: 50%;
  background: #0000006e;
  /*border: 5px solid #000000;*/
  border-radius: 50%;
  position: absolute;
  animation: micwave infinite 1.4s;
}

@keyframes micwave {
  0% {
    transform: scale(2, 2);
    opacity: 1;
  }
  50% {
    transform: scale(6, 6);
    opacity: 0;
  }
  100% {
    transform: scale(2, 2);
    opacity: 1;
  }
}

/* --------------------------input start ---------------------------- */
.cip-cnt1 {
  overflow: hidden;
  position: relative;
  /*background: #ffffff;*/
  align-items: center;
  height: fit-content;
  /*max-width: 350px;*/
  padding: 0.2em 0.4em;
}

.cip-cnt {
  overflow: hidden;
  position: relative;
  background: #ffffff;
  align-items: center;
  height: fit-content;
  /*max-width: 350px;*/
}

.cip-otp .cip-cnt {
  width: 3rem;
  /*height: 1rem;*/
  margin: 0 0.5rem;
  /*padding: 0.5rem !important;*/
}

.cip-otp input {
  margin: 0;
  padding: 0.5rem !important;
  text-align: center;
  font-size: 18px;
}

.cip-otp input[type=number] {
  -moz-appearance: textfield;
}

.cip-otp input[type=number]::-webkit-inner-spin-button, .cip-otp input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cip-cnt.cip1 {
  padding-top: .6em;
}

.cip-cnt input, .cip-cnt .text, .cip-cnt textarea {
  border: none;
  border-bottom: var(--br-thm1);
  border-width: 0px !important;
  background: transparent;
  padding: 0.6em 2.5em;
  width: 100%;
  z-index: 1;
}

.cip-cnt1.cip1 .text {
  /*padding: .5em;*/
  font-size: 14px !important;
}

.cip-cnt.cip1 input {
  padding: .5em;
  font-size: 14px !important;
}

.cip-cnt.cip1 textarea {
  padding: .5em !important;
  /*margin-top: .5em;*/
  font-size: 14px !important;
}

.cip-cnt.cip1 textarea {
  padding: .5em !important;
  /*margin-top: .5em;*/
  font-size: 14px !important;
}

.cip-cnt input::placeholder {
  /*color: transparent;*/
}

.cip-cnt input:focus-visible, .cip-cnt textarea:focus-visible {
  outline: none;
}

.cip-lbl1 {
  /*padding: 0;*/
  /*margin-left: 0.5em;*/
  margin-bottom: 0;
  /*translate: 0 -50%;*/
  /*top: 50%;*/
  display: block;
  /*transition: 0.2s;*/
  font-size: 13px;
  color: gray;
  /*background: white;*/
  /*transition: all 0.4s;*/
}

.cip-lbl {
  position: absolute;
  padding: 0;
  margin-left: 0.5em;
  translate: 0 -50%;
  top: 50%;
  display: block;
  transition: 0.2s;
  font-size: 13px;
  color: gray;
  /*background: white;*/
  transition: all 0.4s;
}

.cip-uline {
  border-bottom: var(--clr-blu) solid 2px;
  content: "";
  width: 0%;
  transition: all 0.2s;
}

.cip-cnt.cip1 input:-ms-input-placeholder ~ .cip-lbl, .cip-cnt.cip1 textarea:-ms-input-placeholder ~ .cip-lbl {
  /*color: var(--clr-blu);*/
  font-size: 0.70rem;
  transform: translate(0em, -76%);
}

.cip-cnt.cip1 input:-moz-placeholder-shown ~ .cip-lbl, .cip-cnt.cip1 textarea:-moz-placeholder-shown ~ .cip-lbl {
  /*color: var(--clr-blu);*/
  font-size: 0.70rem;
  transform: translate(0em, -76%);
}

.cip-cnt.cip1 input:-ms-input-placeholder ~ .cip-lbl, .cip-cnt.cip1 textarea:-ms-input-placeholder ~ .cip-lbl {
  /*color: var(--clr-blu);*/
  font-size: 0.70rem;
  transform: translate(0em, -76%);
}

.cip-cnt.cip1 input:placeholder-shown ~ .cip-lbl, .cip-cnt.cip1 textarea:placeholder-shown ~ .cip-lbl {
  /*color: var(--clr-blu);*/
  font-size: 0.70rem;
  transform: translate(0em, -76%);
}

.cip-cnt.cip1 input:focus ~ .cip-lbl, .cip-cnt.cip1 textarea:focus ~ .cip-lbl, .cip-cnt.cip1 input:valid ~ .cip-lbl, .cip-cnt.cip1 textarea:valid ~ .cip-lbl {
  /*color: var(--clr-blu);*/
  font-size: 0.70rem;
  transform: translate(0em, -76%);
}

.cip-cnt.cip1 textarea#ipmt:focus ~ .cip-lbl, .cip-cnt.cip1 textarea#inen:focus ~ .cip-lbl, .cip-cnt.cip1 textarea#ipmt:valid ~ .cip-lbl, .cip-cnt.cip1 textarea#inen:valid ~ .cip-lbl {
  transform: translate(0em, -1.4em);
  background: white;
  z-index: 1;
}

.cip-cnt input:focus ~ div svg, .cip-cnt textarea:focus ~ div svg {
  /*color: var(--clr-blu);*/
}

.shake {
  animation: shake 0.2s ease-in-out;
}

.cip-cnt input:focus ~ .cip-uline, .cip-cnt textarea:focus ~ .cip-uline {
  /*border-bottom: 2px solid #b11adc;*/
  width: 100%;
  z-index: 1;
}

@keyframes shake {
  0% {
    transform: translatex(0rem);
  }
  25% {
    transform: translatex(0.2rem);
  }
  75% {
    transform: translatex(-0.2rem);
  }
  100% {
    transform: translatex(0rem);
  }
}

.val-err {
  margin-top: -2em;
  display: none;
}

.auth-icns, .auth-icns svg {
  display: none;
}

.cip-cnt.valid .auth-icns, .cip-cnt.valid .auth-icns > :last-child {
  fill: var(--clr-grn);
  display: flex;
}

.cip-cnt.error .auth-icns, .cip-cnt.error .auth-icns > :first-child {
  fill: var(--clr-rd);
  display: flex;
}

.cip-cnt.error {
  animation: shake 0.2s ease-in-out;
}

.cip-cnt.error + .val-err, .cip-cnt-mn.error + .val-err {
  display: flex !important;
}

/* --------------------------input end ---------------------------- */

@media (max-width: 767px) {
  .navbar-collapse {
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    box-shadow: 2px 1px 16px #000000bd;
    background: #ffffff;
    color: white !important;
    animation: w .4s ease;
    transition-duration: 0s;
    z-index: 1500;
  }
}

@media (max-width: 767px) {
  .navbar-collapse .nav-link, .navbar-collapse .drp-prp, .navbar-collapse .dropdown-item {
    padding: .6em 1.5em;
  }
}

@media (max-width: 767px) {
  .navbar-collapse .drp-prp {
    position: absolute;
    bottom: 0em;
    margin: 1em;
    padding: 0.2em;
  }
}

@media (max-width: 767px) {
  .navbar-collapse .dropdown-menu[data-bs-popper] {
    top: -250%;
    left: -100%;
  }
}

.navbar-collapse.show .bvkdrp {
  display: block !important;
}

@keyframes w {
  0% {
    right: -280px;
  }
  100% {
    right: 0px;
  }
}

.dropdown-item.active, .dropdown-item:active {
  text-decoration: none;
  color: var(--bs-dropdown-link-hover-color) !important;
  background-color: var(--bs-dropdown-link-hover-bg) !important;
}

/* bot nav */

@media (min-width: 767px) {
  .bot-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .mobh-50 {
    height: calc(100% - 74px - 50px) !important;
  }
  .mobh-50-54 {
    height: calc(100% - 74px - 50px - 50px) !important;
  }
}

.bot-nav {
  display: flex;
  position: fixed;
  width: 100%;
  height: 50px;
  bottom: 0;
  color: #333;
  border-radius: 0px;
  border: none;
  box-shadow: 0px 0px 6px rgb(0 0 0);
  z-index: 1026;
}

a.bot-nav-blocks {
  color: black;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  /*padding: 1rem;*/
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  text-decoration: none !important;
}

.bot-nav-lbl {
  font-size: 10px;
}

a.bot-nav-blocks:active {
  /*transition: 0.3s;*/
  color: #0053cf;
  background: rgb(255 255 255 / 19%);
  text-decoration: inherit;
  transform: scale(1.1);
  animation-timing-function: ease-in-out;
}

a.bot-nav-blocks:hover {
  text-decoration: inherit;
}

.bot-nav-blocks.active {
  color: #0088ff;
  background: rgb(255 255 255 / 41%);
}

/* .swiper i {
  text-shadow: 0px 0px 1px black;
} */

.thm-bg {
  background: rgb(255 255 255 / 40%);
  /*background: linear-gradient(0deg, #ff0f00, rgb(255 115 115 / 81%));*/
  backdrop-filter: blur(20px);
}
.grd1 a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5em;
  padding: 2em .5em;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 6px #cacaca;
}
.exercise li {
  padding: .8em;
  box-shadow: 1px 1px 6px #bababa;
  border-radius: .5em;
}

@media (max-width: 767px) {
  .dropdown-toggle.nav-link {
    display: none;
  }
}

@media (max-width: 767px) {
  .dropdown-menu.my-d-n {
    display: block;
    border: none;
    margin-top: .5rem !important;
    border-top: 1px solid #e9ecef;
    box-shadow: none !important;
  }
}

.hurotani {
  animation: hurot 12s ease-in-out infinite;
}

@keyframes hurot {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.wraper-horiz {
  display: flex;
  scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  overflow-x: scroll;
}

.wraper-slide {
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
}
.scrl-h-0::-webkit-scrollbar {
    height: 0;
  }
.scrl-w-0::-webkit-scrollbar {
  width: 0;
}
/* Styles for non-touch devices (hover) */
@media (hover: hover) {
  .audio-btn:hover {
    background: #00000014;
  }
}

/* Styles for touch devices (active) */
@media (hover: none) {
  .audio-btn:active {
    background: #00000014;
  }
}

.audio-btn {
  background: none;
  color: black;
  border: none;
  display: flex;
  height: fit-content;
  padding: .5em;
  pointer-events: auto;
  border-radius: 100%;
  margin-right: 0.2em;
}
.highlight-txt {
            position: relative;
    z-index: 1;
        }
        .highlight-txt:before {
    content: '';
    background: #FFEB3B;
    /* color: white; */
    /* border: solid red 1px; */
    border-radius: .3em;
    padding: 0.2 0.4em;
    /* box-shadow: 0px 0px 4px #a4a4a4; */
    width: calc(100% + 0.3em);
    height: calc(100% + 0.2em);
    position: absolute;
    left: -0.15em;
    top: -0.1em;
    z-index: -1;
        }