@font-face {
  font-family: "ProductSans";
  src: url(../fonts/ProductSans.ttf);
}
@font-face {
  font-family: "ProductSans-Bold";
  src: url(../fonts/ProductSans-Bold.ttf);
}
@font-face {
  font-family: "ProductSans-Italic";
  src: url(../fonts/ProductSans-Italic.ttf);
}
@font-face {
  font-family: "ProductSans-BoldItalic";
  src: url(../fonts/ProductSans-BoldItalic.ttf);
}

:root {
  --color-black: hsl(0, 0%, 10%);
  --color-white: hsl(0, 0%, 100%);
  --color-darken: hsl(0, 0%, 20%);
  --color-teal-100: hsl(160, 85%, 87%);
  --color-teal-200: hsl(162, 78%, 77%);
  --color-teal-300: hsl(162, 72%, 65%);
  --color-teal-400: hsl(162, 68%, 54%);
  --color-teal-500: hsl(162, 73%, 46%);
  --color-teal-600: hsl(162, 82%, 40%);
  --color-teal-700: hsl(162, 87%, 35%);
  --color-teal-800: hsl(162, 88%, 30%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 -4px 6px -1px rgba(0, 0, 0, 0.1),
  	0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  	0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  position: relative;
    min-height: 100%;
  /* overflow-y: scroll !important; */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  /* background: var(--color-white); */
  background: #f9fcfe !important; 
  overflow-x: hidden !important;
}

.body-margin{
  margin-top: 90px !important;
}


.effect-1 {
  position: absolute;
  /* top: -30%; */
  right: 0;
  width: 65%;
  height: 775px;
  z-index: -1;
  transform: rotate(160deg);
}


footer {
  padding: 0px 0 0;
  background: #2c2d79 !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
  width: 100%;
}

.menu-active{
  font-size: 10px; border-bottom: 3px solid red; margin: 0px 20px;
}
.blog-card-image-homepage{
  width: 100%;
  height: 270px !important;
  object-fit: fill;
}


/* .preloader css */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffee;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;

}

.loader {
  border: 7px solid #f3f3f3;
  border-top: 7px solid #4a3e79;
  border-radius: 50%;
  animation: spinloader 2s linear infinite;
}

.loader img {
  width: 100px;
  height: 100px;
  animation: spincontent 2s linear infinite;
}

  @keyframes spinloader {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

@keyframes spincontent {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* .preloader css */

.shown{
  display: inline-block;
}

.hidden{
  display: none;
}

.f-f-ps{
  font-family: 'ProductSans' !important;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
}

.profile-pic-header{
  margin-right: 40px !important;
  min-width: 40px;
  max-width: 40px;
  width: 100%;
  min-height: 40px;
  max-height: 40px;
  height: 40px;
  object-fit: contain;
}
/* 
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
} */

@media(min-width: 768px){
  /* .column {
    height: 1400px;
  } */
}
.column .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;

}
.z-99{
  z-index: 999999 !important;
}

.z{
  z-index: 1;
}
.z-0{
z-index: -1 !important;
}

.z-1{
z-index: 1 !important;
}

.z-2{
z-index: 2 !important;
}
 

.img-pulse {
  min-width: 70px !important;
  /* width: 150px !important; */
  /* height: 100%; */
  background: #f96989;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 100px;
  font-size: 20px;
  font-family: Verdana, Geneva, sans-serif;
  text-transform: uppercase;
  animation: animate 2s linear infinite;
  transform: scale(0.8);
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .get-started-div{
    position: fixed;
    bottom: 60px;
    z-index: 99999999 !important;
    width: 90%;
    margin-left: -10px;
  }
}

@media only screen and (min-width: 768px) {
  .header {
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
    transition: all 0.35s ease-in-out;
  }
}

.account-dropdown-item:hover {
  background: #d9ebfa !important;
  border-radius: 5px;
  font-family: 'ProductSans-Bold';
  font-weight: normal;
  padding-right: 10px;
  padding-left: 10px;
}

.doctor-dropbtn {
  /* background-color: #3498DB; */
  /* color: white;
  padding: 16px;
  font-size: 16px;
  border: none; */
  cursor: pointer;
}

.doctor-dropbtn:hover, .doctor-dropbtn:focus {
  /* background-color: #2980B9; */
}

.doctor-dropdown {
  position: relative;
  display: inline-block;
}

.doctor-dropdown  {
  ::-webkit-scrollbar {
    width: 3px;
    height: 13px;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(13deg, #595959 14%, #595959 64%);
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(13deg, #595959 14%, #595959 64%);
  }
  ::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: inset 7px 10px 12px #f0f0f0;
  }
}

.doctor-dropdown-content {
  display: none;
  position: absolute;
  /* background-color: #f1f1f1; */
  min-width: 250px;
  text-overflow: ellipsis; 
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  max-height: 350px;
  overflow-x: scroll !important;
  /* background-color: #ECF9FF !important; */
}

.doctor-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.show {display: block;}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #2c2d79 !important;
  font-weight: 600 !important;
  background-color: #d9ebfa !important;
  /* letter-spacing: 0.5px; */
  font-size: 16px !important;
}
.nav-pills .nav-link.active:hover {
  color: #2c2d79 !important;
  font-weight: 600 !important;
  background-color: #d9ebfa !important;
  /* letter-spacing: 0.5px !important; */
  font-size: 16px !important;
}
.nav-pills .nav-link:hover{
  color: #2c2d79 !important;
  /* font-weight: 600 !important; */
  background-color: transparent !important;
  letter-spacing: 0px !important;
  font-size: 16px !important;
}

.nav-pills .nav-link, .nav-pills .show>.nav-link {
  color: #2c2d79 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

.tab-pane p{
  margin-bottom: -2px !important;
}

.search-button-sm{
  border: none;
  margin-right: -40px;
}



/* body {
  font-family: "ProductSans";
  background: #f9fcfe;
  overflow-x: hidden;
  font-size: 18px;
} */

h1,
h2,
h3,
h4,
h5 {
  font-family: "ProductSans-Bold";
}

p {
  font-size: 16px;
  font-family: "ProductSans";
  line-height: 26px;
}

/* li {
  font-size: 16px;
  font-family: "ProductSans";
  line-height: 30px;
} */

a {
  font-family: "ProductSans";
  color: #5f2798;
}

.navbar-light .navbar-nav .nav-link {
  color: #3f2c79;
  font-family: 'ProductSans-Bold';
  font-weight: normal;
  padding-right: 10px;
  padding-left: 10px;
}


.navbar-light .navbar-nav .nav-link:hover {
  background: #d9ebfa !important;
  border-radius: 5px;
  font-family: 'ProductSans-Bold';
  font-weight: normal;
  padding-right: 10px;
  padding-left: 10px;
}

/* .navbar-light .right-menu ul>li>a {
  padding-right: 4px;
  text-transform: capitalize;
  color: #3f2c79;
  font-family: 'ProductSans-Bold';
  font-weight: normal;
} */

.navbar-light .right-menu ul>li>a:hover {
  color: #5c5b9d;
  opacity: 1;
}

.navbar-light .right-menu ul>li a:after {
  content: '';
  width: 90%;
  height: 2px;
  position: absolute;
  bottom: 13px;
  left: 10px;
  z-index: 1;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transition: 0.8s transform cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: 0.8s transform cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.1s;
  display: none;
}

.navbar-light .right-menu ul>li:hover a:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform-origin: bottom left;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #483677;
}

/* for making scrollable nav-pills */
.nav{
  font-size: 16px;
  display: flex !important;
  overflow-x: scroll !important;
  flex-wrap: nowrap;
  
}.nav::-webkit-scrollbar {
  display: none;
}

/* for making scrollable nav-pills */

/* for making non breakable buttons */
.btn, .nav-link, button {
  white-space: nowrap;
}

.dropend a {
  white-space: nowrap;
}

/* for making non breakable buttons */

/* For Mobile Bottom Nav */
.mobile-nav{
  z-index: 2 !important;
}

#bottom-bar {
  width: 100%;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  height: 50px;
}

.bottom-bar-element {
  width: 20%;
  /* display: inline-block; */
  float: left;
  text-align: center;
  /* padding-top: 16px; */
  padding-bottom: 16px;
  color: #483677;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bottom-bar-element:hover {
  color: white !important;
}

#bottom-bar:hover .bottom-bar-element {
  color: #78909c;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-box {
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 7px 20px 8px 20px !important;
  /* padding: 11px 45px 8px 15px !important; */
  position: relative;
  background: #fff;
  border: 2px solid #3f2c79;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;  
  flex: 1;
}

.search-box.hovered,
.search-box:hover,
.search-box:active {
  border: 2px solid #3f2c79;
}
.search-box input[type="search"] {
  border: none;
  box-shadow: none;
  display: inline-block;
  padding: 0;
  background: transparent;
  font-style: italic;
}
.search-box input[type="search"]:hover,
.search-box input[type="search"]:focus,
.search-box input[type="search"]:active {
  box-shadow: none;
}

.search-box .search-btn {
  position: absolute;
  font-weight: 900;
  right: 2px;
  /* top: 2px; */
  top: -2px;
  color: #3D3E84;
  border-radius: 3px;
  font-size: 21px;
  padding: 6px 10px 1px;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.faculty-count{
  margin-left: -12px;
  width: 47px !important;
  min-width: 47px !important;
  padding-top: 12px !important;
  height: 47px !important;
}

.faculty-count-sm{
  width: 35px !important;
  height: 35px !important;
}

.faculty-img-sm{
  width: 50px !important;
  height: 50px !important;
}

.faculty-margin{
  margin-left: -10px;
}

.course-doctor-image{
  height: 60px;
}

.course-banner{
  width: 100% !important;
  height: 300px !important;
  object-fit: fill;
  min-width: 100% !important;
  min-height: 300px !important;
  max-height: 350px !important;
}

.course-banner-reg{
  width: 100% !important;
  height: 250px !important;
  object-fit: fill;
  min-width: 100% !important;
  
}

.course-type{
  font-size: 14px;
  font-weight: 700;
}

.course-date{
  font-size: 12px;
  font-style: italic;
  color: #2c2d79;
}

.certificate-div{
  height: 30px !important;
  min-height: 30px !important;
}

.course-certificate-icon{
  width: 22px !important;
  height: 22px !important;
}

.course-cme-icon{
  width: 21px !important;
  height: 21px !important;
}

.seats-div{
  height: 30px !important;
  min-height: 30px !important;
}
.course-seats-icon{
  width: 23px !important;
  height: 23px !important;
}

.course-certificate{
  font-size: 12px !important;
  font-weight: 700;
  color: #7d7eaa;
}

.available-seat-text{
  font-size: 12px !important;
  font-weight: 700;
  color: #2c2d79;
}

.course-free-text{
  color: #df808b;
  font-weight: bold;
  font-size: 12px;
  font-family: 'ProductSans-Bold';
}

.course-text{
  font-size: 12px !important;
  font-weight: 700;
  color: #2c2d79;
}

.title{
  color: #2c2d79 !important;
  font-size: 30px !important;
}

.course-institute-logo{
  width: 120px;
  height: 120px;
  /* min-height: 120px; */
  max-height: 120px;
  box-shadow:#2c2d79;
}
.course-institute-logo img{
  width: 120px;
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  box-shadow:#2c2d79;
}

.course-institute-logo:hover{
  transition: 1s;
  transform: scale(1.1);
  box-shadow:#2c2d79;
}
.institute-text{
  font-size: 14px !important;
  font-weight: 600;
  color: #2c2d79;
}

.insititute-course-title{
  color: #5f2798 !important;
  font-weight: 600 !important;
}

.insititute-course-text{
  color: #7d7eaa !important;
}

.institute-banner{
  width: 100% !important;
  height: 300px !important;
  object-fit: fill;
  min-width: 100% !important;
  min-height: 300px !important;
}

.ads-card{
  height: 250px;
}

.mbl-ads-card{
  height: 360px;
}

@media(min-width:768px){
  .bottom-items {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}


.doctor-name{
  font-size: 12px !important;
  font-weight: 700;
  color: #2c2d79;
}

.doctor-about{
  font-size: 12px !important;
  color: #7d7eaa;
}

.amount-icon{
  height: 25px;
  width: 100%;
  max-height: 25px;
  object-fit: contain;
  /* object-fit: fill; */
}

.course-amount-free{
  color: #e18993 !important;
  font-family: 'ProductSans-Bold';
  font-size: 15px;
  text-transform: uppercase;
  display: inline-block;
  /* line-height: 15px; */
  vertical-align: bottom;
}

.course-price{
  color: #e18993 !important;
  font-size: 15px;
}


.course-institute-logo{
  height: 80px;
  width: 80px;
  object-fit: contain;
}


.course-ribbon {
  --f: 4px; /* control the folded part*/
  --r: 10px; /* control the ribbon shape */
  --t: 110px; /* the top offset */
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  inset: var(--t) calc(-1*var(--f)) auto auto;
  /* padding: 0 10px var(--f) calc(10px + var(--r)); */
  padding: 10px 15px;
  clip-path: 
    polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2));
  background: #BD1550;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
}

@media (min-width: 768px) {
  .featured-course-container{
    padding: 0 30px !important;
  }

  .course-title-div{
    height: 45px !important;
  }
}

@media (max-width: 768px) {
  .course-title-div{
    height: 50px !important;
  }
}

.course-title{
  font-size: 14px;
  font-weight: bold;
  color: #2c2d79;
}

.icon {
  text-align: center;
  display: inline-flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  /* border: 1px solid #7d7eaa !important; */
}

.icon-lg{
  font-size: 45px !important;
}

.icon.icon-shape {
  width: 5.5rem;
  height: 5.5rem;
}

.count, .count-hcp{
  color: red
}

/* owl-carou */


/* testimonials */
.testimonial-img{
  width: 120px !important;
  height: 120px !important;
}

@media(max-width:768px){
  .testimonial-body{
    min-height: 250px !important;
    /* max-height: 250px !important; */
    /* height: 250px !important; */
    /* height: auto !important; */
  }
}

@media(min-width:768px){
  .testimonial-body{
    min-height: 250px !important;
    /* max-height: 250px !important; */
    /* height: 250px !important; */
    /* height: auto !important; */
  }
}

blockquote {
	font-weight: 100;
	max-width: 600px;
	line-height: 1.4;
	position: relative;
	margin: 0;
	padding: .5rem;
}

blockquote:before,
blockquote:after {
	position: absolute;
	color: #f1efe6;
	font-size: 5rem;
	width: 4rem;
	height: 4rem;
}

@media(min-width:768px){
  blockquote:before {
    content: '“';
    left: -2rem;
    top: -2rem;
  }
  
  blockquote:after {
    content: '”';
    right: -2rem;
    bottom: -1rem;
  }
}

@media(max-width: 768px){
  blockquote:before {
    content: '“';
    left: -1rem;
    top: -3rem;
  }
  
  blockquote:after {
    content: '”';
    right: -2rem;
    bottom: -1rem;
  }
}

cite {
	text-align: left;
}
/* testimonials */

/* smaller, dark, rounded square */
.flickity-button {
  background: #fff;
}
.flickity-button:hover {
  background: #fff;
}

.flickity-prev-next-button {
  width: 30px;
  height: 60px;
  border-radius: 5px;
}
/* icon color */
.flickity-button-icon {
  color: red;
  fill: #000;
}
/* position outside */
.flickity-prev-next-button.previous {
  left: -40px !important;
  border: 1px solid rgba(0,0,0,0.125) !important;
}
/* .flickity-prev-next-button.previous {
  left: -10px;
  border: 1px solid rgba(0,0,0,0.125);
} */
.flickity-prev-next-button.next {
  right: -40px !important;
  border: 1px solid rgba(0,0,0,0.125);
}

.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 400px;
  position: relative;
}

/* Live Dot start */
.dot{
  /* background: #f17c57fa; */
  background: #f00;
}

.circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #f00;
  margin-left: 5px;
  top: -5px;
}

.pulse {
  animation: pulse-animation 2s infinite;
}
.img-pulse {
  animation: pulse-animation 2s infinite;
}


@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(181, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
/* Live Dot end */


/* Accordion styles */
.accordion-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tabs {
  margin-top: 8px;
  /* border-radius: 8px; */
  /* padding: 8px; */
  overflow: hidden;
  /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
  /* padding: 15px; */
  padding: 12px;
  border: 2px solid #3f2c79;
  border-radius: 4px;
  color: #3f2c79;
  /* margin-bottom: 16px; */
  margin-bottom: 8px;
  font-size: 14px;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1px;
  /* padding: 1em; */
  /* background: #2c3e50; */
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 8px;
  font-size: 15px;
  /* color: #000; */
  /* Icon */
}
.tab-label::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105" !important;
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
  font-weight: 900 !important;
}
.tab-filter-content {
  margin-bottom: -15px;
  max-height: 0;
  padding: 0 1em;
  font-size: 15px;
  /* color: #2c3e50; */
  color: #2c2d79 !important;
  background: white;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  /* background: #2c3e50; */
  background: #2c2d79 !important;
  cursor: pointer;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-filter-content {
  max-height: 100vh;
  padding: 1em;
}



#sponsor-banner {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#sponsor-banner .native-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 30px;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: inset 0 0 2px 0 hsla(0, 0%, 0%, .15);
  text-decoration: none;
  line-height: 1.35;

  align-items: start;
}

#sponsor-banner .native-img {
  margin-bottom: 10px;
  height: 40px;
}

#sponsor-banner .native-tagline {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 18px;
}

#sponsor-banner .native-desc {
  font-size: 14px;
}

#sponsor-banner .native-cta {
  z-index: 10;
  margin-top: 14px;
  padding: 8px 10px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
}

.native-ad {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #ddd;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  border: 1px solid #ddd;
  color: gray;
}


/* blog start */
.blog-card-title{
  font-size: 16px;
  color: #3D3E84;
  font-family: 'ProductSans-Bold';
  text-transform: uppercase;
}

.blog-card-paragraph{
  color: #2c2d79;
  font-size: 14px;
  /* text-align: justify; */
  /* line-height: 20px; */
  height: 100px;
}

.blog-card-image{
  width: 100%;
  height: 100% !important;
  object-fit: fill;
}

.blog-thumbnail{
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
}

.blog-date{
  font-size: 12px !important;
  font-weight: 700;
  color: #7d7eaa;
}

.blog-course-title{
  height: 30px;
  font-size: 14px;
  font-weight: 600;
}

.blog-course-category{
  font-size: 10px;
  text-transform: uppercase;
}

.blog-category{
  font-size: 14px;
  text-transform: uppercase;
}

.blog-course-date{
  font-size: 10px;
  font-weight: 600;
  color: #7d7eaa;
}

@media(min-width: 768px){
  .blog-card-paragraph{
    color: #2c2d79;
    font-size: 15px;
    /* text-align: justify; */
    /* line-height: 20px; */
    /* height: 140px; */
    height: 120px;
  }
}

.blog-banner{
  width: 100% !important;
  height: 350px !important;
  object-fit: fill;
  min-width: 100% !important;
  min-height: 350px !important;
}
/* blog end */

/* profile start */
.profile-notification-card{
  min-height: 75px;
  margin: 0px 0px 40px 0px;
  padding: 15px 15px 15px 20px;
  border-radius: 10px;
  background-color: #ebf8ff;
}

.profile-notification-card-text {
  color: #3f2c79;
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  margin: 0;
  line-height: 22px;
  width: 100%;
}

.upcoming-left-card {
  height: 100%;
  background-image: linear-gradient(79deg, #a6a7f0, #d1d2f9 );
  min-height: 295px;
  padding: 15px;
  border-radius: 7px;
  /* margin-left: -10px; */
  color: #2c2d79;
  font-size: 24px;
  font-family: 'ProductSans-Bold';
  text-align: right;
}

.upcoming-left-card .number {
  color: #ffffff85;
  /* color: red; */
  font-size: 85px;
  font-family: 'ProductSans-Bold';
  position: relative;
  bottom: 0px;
  right: 30px;
  left: 0px;
  width: 100%;
  text-align: right;
}

.finished-left-card {
  height: 100%;
  background: #2c2d79;
  min-height: 295px;
  padding: 15px;
  border-radius: 7px;
  /* margin-left: -10px; */
  color: #a6a7f0;
  font-size: 24px;
  font-family: 'ProductSans-Bold';
  text-align: right;
}

.finished-left-card .number {
  color: #ffffff85;
  /* color: red; */
  font-size: 85px;
  font-family: 'ProductSans-Bold';
  position: relative;
  bottom: 0px;
  right: 30px;
  left: 0px;
  width: 100%;
  text-align: right;
}

.finished-left-card a {
  color: #fff;
  /* color: red; */
  font-size: 15px;
  font-family: 'ProductSans-Bold';
  text-decoration: underline;
  font-weight: 600;
  /* position: relative;
  bottom: 0px;
  right: 30px;
  left: 0px;
  line-height: 0px;
  text-align: right; */
}

.profile-img-card{
  width: 115px;
  height: 115px;
  margin-top: -75px;
}
.edit-pencil {
  position: absolute;
  right: 15px;
  top: 8%;
  font-size: 18px;
}

.profile-img{
  width: 115px !important;
  height: 115px !important;
  object-fit: contain;
}

.profile-pic{
  width: 50px !important;
  height: 50px !important;
}

@media only screen and (max-width: 600px) {
  .responsive-input-group {
    background-color: lightblue !important;
    width: 100% !important;
    border-radius: 0 !important;
    border-bottom: none !important;
  }
}
/* profile end */


/* doctor start */
.doctor-img{
  width: 150px;
  height: 150px;
}

.doctor-video-img{
  width: 100px !important;
  height: 50px !important;
  padding: 2px;
}
.doctor-video-play-icon{
  width: 30px;
  height: 30px;
  margin-left: -52px;
  margin-top:30px !important;
}

@media(min-width: 414px) and (max-width: 768px){
  .doctor-video-play-icon{
    width: 30px;
    height: 30px;
    margin-left: -43px;
    margin-top:30px !important;
  }
}

@media(max-width: 414px){
  .doctor-video-play-icon{
    width: 30px;
    height: 30px;
    margin-left: -45px;
    margin-top:30px !important;
  }
}
@media(min-width: 768px){
  .doctor-video-play-icon{
    width: 30px;
    height: 30px;
    margin-left: -52px;
    margin-top:30px !important;
  }
}

/* show more institute in doctor page */
.list-institute {
  display: none;
}

#loadLess {
  display: none;
}


#loadMore:hover {
  background-color: #fff;
  color: #33739E;
}

/* show more institute in doctor page */
/* doctor end */




/* star rating start */
#full-stars-add .rating-group {
  display: inline-flex;
}
#full-stars-add .rating__icon {
  pointer-events: none;
}
#full-stars-add .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#full-stars-add .rating__input--none {
  display: none;
}
#full-stars-add .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
}
#full-stars-add .rating__icon--star {
  color: #2c2d79;
}
#full-stars-add .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#full-stars-add .rating-group:hover .rating__label .rating__icon--star {
  color: #2c2d79;
}
#full-stars-add .rating__input:hover ~ .rating__label .rating__icon--star {
  color: #ddd;
}

#full-stars-edit .rating-group {
  display: inline-flex;
}
#full-stars-edit .rating__icon {
  pointer-events: none;
}
#full-stars-edit .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#full-stars-edit .rating__input--none {
  display: none;
}
#full-stars-edit .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
}
#full-stars-edit .rating__icon--star {
  color: #2c2d79;
}
#full-stars-edit .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#full-stars-edit .rating-group:hover .rating__label .rating__icon--star {
  color: #2c2d79;
}
#full-stars-edit .rating__input:hover ~ .rating__label .rating__icon--star {
  color: #ddd;
}
/* star rating end */





/* Institute 2 */
.specialty:hover{
  border: 3px dashed #941894;
  background: #f1f1f1;
}
.specialty{
  background: #f6f6f6;
}

.partboxmain {
  width: 100%;
  min-height: 275px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 0px;
  margin-top: 24px;
  padding: 15px;
  position: relative;
  background-color: #ffffff;
  border: 2px solid #efdef0;
margin-bottom: 30px;
}
.partboxmain::before {
  content: " ";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 50px rgba(166, 209, 237, 0.2);
  box-shadow: 0 10px 50px rgba(166, 209, 237, 0.2);
  z-index: -2;
}
.partboxmain::after {
  content: " ";
  width: 92%;
  height: 95%;
  z-index: -3;
  position: absolute;
  top: auto;
  bottom: 1px;
  left: 22px;
  border-radius: 12px;
  background-image: -webkit-linear-gradient(350deg, #941894, #e986e9);
  background-image: -o-linear-gradient(350deg, #941894, #e986e9);
  background-image: linear-gradient(45deg, #941894, #e986e9);
  background-repeat: repeat-x;
  outline: 1px solid transparent;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.partboxmain:hover {
  text-decoration: none;
}
.partboxmain:hover::after {
  -webkit-transform: rotate(2deg) translateX(-5px) translateY(16px);
  -ms-transform: rotate(2deg) translateX(-5px) translateY(16px);
  transform: rotate(2deg) translateX(-5px) translateY(16px);
}
/* Institute 2 */



/* Trainers corner start */

#runnerlist .owl-item img {
  max-height: 150px;
  max-width: 150px;
  border: 6px solid #fff;
  box-shadow: 0px 0px 15px 5px #cecece;
  border-radius: 50%;
}

.vl {
  border-left: 2px solid #ddd;
  /* height: 500px; */
}

.colcontent {
  min-height: 325px;
}

/* trainers corner sticky ask for demo */
 .sticky-icon  {
        z-index:1;
        position:fixed;
        top:40%;
        right:0%;
        width: 220px;
        display:flex;
        flex-direction:column;
    }  
    .sticky-icon a  {
        transform:translate(90px,0px);
        border-radius:8px 0px 0px 8px;
        text-align:left;
        margin:2px;
        text-decoration:none;
        /* text-transform:uppercase; */
        font-weight: bold;
        padding:10px;
        /* font-size:22px; */
        font-family:'Oswald', sans-serif;
        transition:all 0.8s;
    }
    .sticky-icon a:hover  {
        color:#FFF;
        transform:translate(90px,0px);
    }	
    .sticky-icon a:hover i  {
        transform:rotate(360deg);
    }
    /*_icon a:hover i  {
        transform:rotate(360deg);
    }*/
    .side-demo  {
        background-color:#d62251;
        color:#FFF;
    }
                            
    .sticky-icon a i {
        background-color:#FFF;
        height:40px;
        width:40px;
        color:#000;
        text-align:center;
        line-height:40px;
        border-radius:50%;
        margin-right:20px;
        transition:all 0.5s;
    }
    .sticky-icon a i.fa-instagram  {
        background-color:#FFF;
        color:#d62251;
    }
        
    #myBtn {
        height:50px;
        display: none;
        position: fixed;
        bottom: 20px;
        right: 0px;
        z-index: 99;
        text-align:center;
        padding:10px;
        text-align:center;
        line-height:40px;
        border: none;
        outline: none;
        background-color: #1e88e5;
        color: white;
        cursor: pointer;
        border-radius: 50%;
    }
    .fa-arrow-circle-up  {
        font-size:30px;
    }

    #myBtn:hover {
    background-color: #555;
    }		
/* trainers corner sticky ask for demo */

/* Trainers corner end */


.list-bullet{
  padding-left: 1em !important;
  margin-left: 1em;
}

.notification-success {
  z-index: 9999999999999999999 !important;
  height: auto;
  padding: 10px;
  border-bottom: #0a0;
  background: rgba(75, 200, 75, 0.9);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.35);
  text-align: center;
  position: fixed;
  top: 0px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px 0px #999;
  display: none;
}

.notification-error {
  height: auto;
  padding: 10px;
  border-bottom: #ff0000;
  background: rgba(255, 0, 75, 0.8);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.35);
  text-align: center;
  position: fixed;
  top: 0px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px 0px #999;
  display: none;
}

.icon-cert {
  position: absolute;
  left: 30px;
  margin-top: -14px;
  opacity: 1;
}

.icon-cert .info-cert{
  color: #2c2d79;
  font-size: 12px;
  font-family: 'ProductSans-Italic';
visibility: hidden;
width: 200px;
text-align: center;
border-radius: 6px;
padding: 5px 0;

/* Position the tooltip */
position: absolute;
background-color: #2c2d79;
color: #fff !important;
z-index: 1;
top: -20px;
left: 18px;
}

.icon-cert:hover .info-cert{
visibility: visible;
 
}

.banner-section{
  position: relative;
}

.banner-section .popup-btn {
  position: absolute;
  top: 40%;
  background-color: #d62251;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'ProductSans-Bold';
}
.banner-section .blog-popup-btn {
  position: absolute;
  top: 40%;
  /* background-color: #fff; */
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'ProductSans-Bold';
}

.form-error{
  font-size: 12px;
  color: #d62251!important;
  font-weight: bold;
}

.confirmation-card-box{
  /* color: #fff !important; */
}

.confirmation-card-box span{
  /* color: #fff !important; */
}

.confirmation-card-box div{
  /* color: #fff !important; */
}

.confirmation-card-box p{
  /* color: #fff !important; */
}

.confirmation-card-box strong{
  /* color: #fff !important; */
}

.webinar-btn i{
  width:50px; 
  height:50px;
  background-color: #f0f0f0; 
  color: #2c2d79;
  display:flex; 
  cursor: pointer; 
  align-items:center; 
  justify-content:space-around; 
  padding:11px;
  border-radius:51%;
  box-sizing:border-box;
  box-shadow: 0px 0px 3px skyblue;
}

.webinar-btn i:hover{
  background-color: #2c2d79; 
  color: #f0f0f0;
  box-shadow: 0px 0px 10px gray;
  transition: 0.3s;
}

.video-con {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px; 
  height: 0; 
  overflow: hidden;
}

.video-con iframe,
.video-con object,
.video-con embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .slot-card{
  cursor: pointer;
  border: 1px solid #2c2d79;
  border-radius: 5px;
  margin: 10px;
  padding: 15px;
  transition: .3s ease-out;
}

.slot-card.active {
  background-color: #2c2d79!important;
}

.slot-card.disable {
  border: 1px solid gray!important;
}

.slot-heading{
  color: #2c2d79;
  padding: 10px 0px 10px 0px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.slot-card.active .slot-heading{
  color: white;
}

.slot-card.disable .slot-heading{
  color: gray!important;
}

.slot-date{
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #2c2d79;
}

.date-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c2d79;
  color: white;
  font-weight: bold;
  font-size: 22px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.slot-card.active .date-icon{
  color: #2c2d79;
  background-color: white;
}

.slot-card.disable .date-icon{
  color: white;
  background-color: gray!important;
}

.slot-text{
  color: #2c2d79;
  padding: 15px 0px 15px 0px;
  font-weight: 500;
  font-size: 14px;
}

.slot-card.active .slot-text{
  color: white!important;
}

.slot-card.disable .slot-text{
  color: gray!important;
} */

/* 
.slot-card .fa {
  color: #2c2d79;
}

.slot-card.active .slot-text{
  color: white!important;
} */
.slot{
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-card.active{
  border-radius: 4px;
  border: 1px solid #d62251;
}

.slot-card{
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: center;
  align-items: center;
  height: 130px;
}

.slot-down{
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-down .slot-down-sec{
  border-radius: 5px;
  background-color: #d62251;
  width: 75%;
  padding: 5px;
}

.slot-card.current-slot .slot-down-sec{
  border-radius: 5px;
  background-color: #0a0;
  width: 75%;
  padding: 5px;
}

.slot-card.expired-slot .slot-down-sec{
  border-radius: 5px;
  background-color: #8c8c8c;
  width: 75%;
  padding: 5px;
}

.slot-up .slot-txt{
  font-size: 12px;
  color: #2c2d79;
}

.slot-down .slot-txt{
  font-size: 12px;
  color: white;
}

/* .slot-card.active .slot-down-sec{
  background-color: white;
  border: 1px solid #d62251;
}

.slot-card.active .slot-down .slot-txt{
  color: #2c2d79!important;
} */

.slot-card.expired .slot-down-sec{
  background-color: #c7c5c5;
}

.slot-card.expired .slot-down .slot-txt{
  color: #2c2d79!important;
}

.slot-more{
  /* border: 1px solid #2c2d79; */
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 130px;
  border-radius: 4px;
  cursor: pointer;
  align-items: baseline;
}

.slot-more .slot-txt{
  color: #2c2d79;
  width: 100%;
  font-size: 13px;
}

.slot-more .slot-icon {
  color: #2c2d79;
  width: 100%;
  min-height: 45px;
  background-color: #2c2a8412;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom_pop{
  display: none;
  padding: 15px;
  box-shadow: 0px 1px 10px #cef0ff !important;
  border-radius: 5px;
  width: 500px;
  /* width: 450px; */
  position: absolute;
  z-index: 999999;
  background-color: white;
}

.fc-icon {
  color: white!important;
}

.btn-verify{
  color: #f00;
  font-size: 0.9rem;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  
  border-top-color: rgb(63, 44, 121);
  border-top-style: solid;
  border-top-width: 1.6px;
  border-right-color: rgb(63, 44, 121);
  border-right-style: solid;
  border-right-width: 1.6px;
  border-bottom-color: rgb(63, 44, 121);
  border-bottom-style: solid;
  border-bottom-width: 1.6px;
  /*border-left-color: rgb(63, 44, 121);
  border-left-style: solid;
  border-left-width: 1.6px;*/
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  
  cursor:pointer;
  }

.verify-text{
  line-height: 1.5;
}

.verify-border{
  border-radius:0;
}

.verify-modal{
  height: 450px;
}

.verify-con{
  margin: 20px;
}

.btn-otp{
  margin-top: 16px;
  height: 42px;
}

.btn-resend{
  height: 42px;
}

.otp-message{
  color: red;
  font-size: small;
}

.countdown-container{
  height: 50px;
  /* background-color: #006699; */
  background-image: linear-gradient(#f14976, #d11547 );
  border: #f14976;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px #b25d73;
  padding: 10px;
  border-radius: 2px;
  
}

.countdown-text{
  font-size: 12px;
}

.verify-color{
  color: red;
  
}

.responsive-iframe {
  width: 100%;
  height: 80%;
  max-height: 500px;
  min-height: 350px;
} 

.spin-icon{
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {transform: rotate(360deg);}
}



/* lms */
@media only screen and (max-width: 600px) {
  .oops-img {width: 50px;}
  .popper-img {width: 50px;}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .oops-img {width: 50px;}
  .popper-img {width: 50px;}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .oops-img {width: 100px;}
  .popper-img {width: 100px;}
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .oops-img {width: 150px;}
  .popper-img {width: 150px;}
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .oops-img {width: 150px;}
  .popper-img {width: 150px;}
}
/* lms */


/* form-otp-input */ 
.form-otp-input{
  text-align: center;
  width: 10%;
  font-weight: bold;
  font-size: 24px;
  height: 50px;
}

@media only screen and (max-width: 768px) {
  .form-otp-input{
    font-size: 18px;
    width: 13%;
  }  
}

/* form-otp-input */

.cursor-pointer{
  cursor: pointer !important;
}

.sign-icon{
  padding: 10px 15px 10px 15px; 
  border:1px solid #464789; 
  background-color: #464789; 
  border-style: double; 
  color:#ffffff; 
  border-radius: 40px;
  font-size: 17px;
  z-index: 1;
}

.sign-up-btn{
  padding: 5px 40px 5px 50px;
  border: 2px solid #4647897c;
  background-color: #4647897c;
  border-style: double;
  color: white;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  font-weight: bold;
  margin: 0px 0px 0px -35px;
  cursor: pointer;
}

.log-in-btn{
  padding: 5px 50px 5px 40px;
  border: 2px solid #4647897c;
  background-color: #4647897c;
  border-style: double;
  color: white;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  font-weight: bold;
  margin: 0px -35px 0px 0px;
  cursor: pointer;
}

.sign-up-btn.active{
  border: 2px solid #464789;
  background-color: #464789;
  transition: left 1s ease-in-out;
}

.log-in-btn.active{
  border: 2px solid #464789;
  background-color: #464789;
  transition: right 1s ease-in-out;
}

.login-option-btn{
  font-size: 17px;
}

.login-option-btn{
  font-size: 15px;
}

.login-submit-btn{
  padding: 10px 15px 10px 15px;
  margin-bottom: 20px;
  border-radius: 5px !important;
  border: 2px solid #d62251 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  min-width: 100px !important;
  display: inline-block !important;
  width: 100%;
  text-align: center !important;
  float: none !important;
  font-family: "ProductSans-Bold" !important;
  background: #d62251 !important;
}

.login-alert{
  font-size: 14px;
  padding: 10px;
}

.resend-text{
  font-size: 14px;
  font-weight: 600;
}

.login-div{
  width: 0%;
  display: none;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;

}

.signup-div{
  width: 0%;
  display: none;
  transition: left 1s ease-in-out;
  -webkit-transition: left 1s ease-in-out;
  transition: right 1s ease-in-out;
  -webkit-transition: right 1s ease-in-out;
}

.login-div.active{
  width: 100%;
  display: block;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.signup-div.active{
  width: 100%;
  display: block;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

/* highlighting the inctive btn css  */
.highlight-inactive-btn {
  display: grid;
  place-content: center;
  color: white;
  text-shadow: 0 1px 0 #000;
  --border-angle: 0turn;
  --main-bg: conic-gradient( from var(--border-angle), #a5a6c6,#a5a6c6 5%,#a5a6c6 60%,#a5a6c6 95%);
  border: solid 3px transparent;
  border-radius: 2em;
  --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #2c2d6a, #464789 99%, transparent);
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
}
@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
.box:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

/* highlighting the inctive btn css  */

@media(max-width: 768px){
  .log-in-btn{
    font-size:13px!important;
    padding: 5px 25px 5px 25px!important;
    margin: 0px -20px 0px 0px!important;
    font-weight: 500;
  }

  .sign-up-btn{
    font-size:13px!important;
    padding: 5px 25px 5px 25px!important;
    margin: 0px 0px 0px -20px!important;
    font-weight: 500;
  }

  .login-option-btn{
    font-size: 14px;
  }

  .login-alert{
    font-size: 12px;
    padding: 7px;
  }

  .login-submit-btn{
    padding: 7px 10px 7px 10px!important;
  }

  .login-div .form-label{
    font-size: 12px!important;
  }

  .resend-text{
    font-size: 12px!important;
  }
}

.note-align-center {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}