/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/clinic-header-image.jpeg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/clinic-header-image.jpeg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/clinic-header-image.jpeg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.form-switch .form-check-input{
    width: 6em !important;
}
.form-check-input{
    height: 3em !important;
}
.form-check-input:checked {
  background-color: #198754;
  border-color: #6c757d;
}
.text-right{
    text-align: right !important;
}
.text-left{
    text-align: left !important;
}
/**/
.bounce {
    height: 50px;
    overflow: hidden;
    position: relative;
    background: #fefefe;
    color: #333;
    /*border: 1px solid #4a4a4a;*/
}

.bounce p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    -moz-animation: bouncing-text 10s linear infinite alternate;
    -webkit-animation: bouncing-text 10s linear infinite alternate;
    animation: bouncing-text 20s linear infinite alternate;
}

@-moz-keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
    }
    100% {
        -moz-transform: translateX(-50%);
    }
}

@-webkit-keyframes bouncing-text {
    0% {
        -webkit-transform: translateX(50%);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes bouncing-text {
    0% {
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    100% {
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
.clinic-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/clinic-header-image.jpg) center center no-repeat;
    background-size: cover;
}
#tvscreen .currenttokenbox h1, h2{
    font-weight: 900 !important;
}
#tvscreen .currenttokenbox h2{
    font-size: 6rem !important;
}
#tvscreen .bg-primary{
    height: 350px;
}
#tvscreen .currenttokenbox h1{
    font-size: 22rem !important;
}
#tvscreen .nexttokenbox h1, h2{
    font-weight: 900 !important;
}
#tvscreen .nexttokenbox h2{
    font-size: 6rem !important;
}
#tvscreen .bg-primary{
    height: 350px;
}
#tvscreen .nexttokenbox h1{
    font-size: 20rem !important;
}
.tvscreen button{
    font-size: 5rem !important;
}
.tvscreen-header{
    border: 1px solid #091E3E;
}
.tvscreen-footer{
    margin-top: -2px;
    border: 1px solid #091E3E;
    background: #8996a636 !important;
}
@media only screen and (max-width: 900px) {
    #tvscreen .currenttokenbox h2 {
        font-size: 5rem !important;
    }
    #tvscreen .currenttokenbox h1 {
        font-size: 22rem !important;
    }
    #tvscreen .bg-primary {
        height: 350px;
    }
    #tvscreen .nexttokenbox h2 {
        font-size: 4rem !important;
    }
    #tvscreen .nexttokenbox h1 {
        font-size: 18rem !important;
    }
    .tvscreen button {
        font-size: 4rem !important;
    }
}
@media only screen and (max-width: 420px) {
    #tvscreen .bg-primary{
        height: 335px;
    }
    #tvscreen .currenttokenbox h2 {
        font-size: 3rem !important;
    }
    #tvscreen .currenttokenbox h1 {
        font-size: 15rem !important;
    }
    #tvscreen .nexttokenbox h2 {
        font-size: 3rem !important;
    }
    #tvscreen .nexttokenbox h1 {
        font-size: 15rem !important;
    }
    .tvscreen button {
        font-size: 2rem !important;
    }
    .bounce{
        height: 80px !important;
    }
    .bounce p{
        line-height: 35px !important;
    }
}
/* default styles here for older browsers. 
   I tend to go for a 600px - 960px width max but using percentages
*/
@media only screen and (min-width: 960px) {
    /* styles for browsers larger than 960px; */
    .frontbox{
        height: 500px!important;
    }
}
@media only screen and (min-width: 1440px) {
    /* styles for browsers larger than 1440px; */
}
@media only screen and (min-width: 2000px) {
    /* for sumo sized (mac) screens */
}
@media only screen and (max-device-width: 480px) {
    /* styles for mobile browsers smaller than 480px; (iPhone) */
    .bounce{
        height: 85px !important;
    }
    .bounce p{
        line-height: 30px !important;
    }
}
@media only screen and (device-width: 768px) {
   /* default iPad screens */
}
/* different techniques for iPad screening */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
    .bounce{
        height: 80px !important;
    }
    .bounce p{
        line-height: 35px !important;
    }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
    .bounce{
        height: 80px !important;
    }
    .bounce p{
        line-height: 35px !important;
    }
}
.glow {
  font-size: 25px;
  color: #fff;
  text-align: center;
  /*animation: glow 1s ease-in-out infinite alternate;*/
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
.imgborder{
    border: 2px solid #0a3e7f;
}
.show{
    display:block;
    visibility: visible;
}
.hide{
    display: none;
    visibility: hidden;
}
#recentTokenTable .form-check-input {
  height: 20px !important;
  width: 20px !important;
  margin-top: 0px !important;
}

.glyphicon { margin-right:10px; }
.panel-body { padding:0px; }
.panel-body table tr td { padding-left: 15px }
.panel-body .table {margin-bottom: 0px; }
.benifits-block{
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}
hr{
    margin: 1rem 0 !important;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.display-1 {
    font-size: calc(1.625rem + 4.5vw) !important;
    font-weight: 400 !important;
    line-height: 1.2;
}
.display-7{
    margin-bottom: 1rem;
}
.benifits .benifits-block{
    /*background: #A2D9F7;*/
}
.footer_social_links p{
    margin-bottom: 0 !important;
}
.modal .modal-dialog .modal-content{
    background-color: #ffffff;
}
.modal .modal-dialog{
    max-width: 33%;
}
.modal-body{
    padding:15px;
}
.modal-footer{
    padding: 10px;
}
/* Glass Effect Container */
.glass-container {
    position: relative;
    width: 35%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}
/* Heading Styling */
.glass-container h2 {
    text-align: center;
    color: #333840;
    margin-bottom: 20px;
    font-size: 1.8em;
}
/* Input Styling */
.input-field {
    width: 100%;
    padding: 12px 10px;
    margin: 15px 0;
    border: 1px solid #cfd0d1;
    outline: none;
    background: #fff;
    color: #333840;
    font-size: 1em;
    border-radius: 5px;
    transition: 0.4s ease;
}
/* Focused Input Field Effect */
.input-field:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}
/* Button Styling */
.loginbtn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border: none;
    border-radius: 5px;
    color: #fff !important;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
/* Glowing Button Hover */
.loginbtn:hover {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    box-shadow: 0 0 15px #4169e1, 0 0 15px #9bb3fb;
    transform: scale(1.05);
}
/* Placeholder Styling */
::placeholder {
    color: #333840;
    opacity: 0.9;
}
.bg-dark{
    background-color: #9BB3FB !important;
}
.bg-light{
    background-color: #E6E7EE !important;
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  justify-content: center;
  display: flex;
  background: #0B0C0D;
  z-index: 9999999;
  padding-top: 16%;
}

/* heart beat */
.heartbeatloader {
  position: absolute;
  width: 10vmin;
  height: 10vmin;
  z-index: -2;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: #FFF;
  z-index: 9999999;
  padding-top: 20%;
}
#preloader .eye {
  width: 100px;
  height: 60px;
  position: relative;
  z-index: 1;
}
#preloader .up {
  position: absolute;
  top: 0px;
  height: 100px;
  width: 100px;
  border-width: 2px;
  border-style: solid;
  border-color: black transparent transparent transparent;
  border-radius: 50%;
  z-index: 1;
}
#preloader .down {
  position: absolute;
  top: -70px;
  height: 100px;
  width: 100px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent transparent black transparent;
  border-radius: 50%;
  z-index: 1;
}
#preloader .mid {
  position: absolute;
  top: 1px;
  left: 39px;
  width: 27px;
  height: 27px;
  border: none;
  border-radius: 50%;
  background-color: black;
  z-index: 0;
  animation: eyemove 2s infinite;
}
@media only screen and (max-width: 420px) {
    .glass-container {
        width: auto;
        padding:20px;
    }
    .modal .modal-dialog{
        max-width: 96%;
    }
}
@media only screen and (device-width: 768px) {
   /* default iPad screens */
   .glass-container {
        width: 40%;
        padding:30px;
    }
    .modal .modal-dialog{
        max-width: 96%;
    }
}
@media only screen and (max-width: 1024px) {
    .glass-container {
        width: 50%;
    }
    .modal .modal-dialog{
        max-width: 96%;
    }
}
@media only screen and (device-width: 768px) {
   /* default iPad screens */
   .glass-container {
        width: 40%;
        padding:30px;
    }
    .modal .modal-dialog{
        max-width: 96%;
    }
}
@media only screen and (max-width: 390px) {
    .glass-container {
        width: auto;
        padding:20px;
    }
    .modal .modal-dialog{
        max-width: 96%;
    }
}
@media only screen and (max-width: 430px) {
    .glass-container {
        width: auto;
        padding:20px;
    }
    .modal .modal-dialog{
        max-width: 96%;
    }
}
