/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700;800&display=swap");

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
  background-color: #fff;
  overflow-x: hidden;
}

p,
.paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ad4d4c;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}

/*---------------------BUTTON STYLE---------------------------------- */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}

.btn:active,
.btn:hover,
.btn.focus,
.btn:focus,
.btn.active {
  outline: 0;
  box-shadow: none !important;
}

.btn:active::before,
.btn:hover::before,
.btn.focus::before,
.btn:focus::before,
.btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  color: #fff;
  background-color: #81a46a;
}

/* .btn-primary::before {
  background-color: #fff;
} */

.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ad4d4c !important;
  border-color: #ad4d4c !important;
}

.btn-outline-primary {
  color: #ad4d4c;
  background-color: transparent;
  border: 1px solid #ad4d4c;
}

.btn-outline-primary::before {
  background-color: #fff;
}

.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  color: #81a46a !important;
  background-color: #81a46a !important;
  border-color: #81a46a !important;
}

.btn-light {
  color: #81a46a;
  background-color: #fff;
  border: 1px solid #fff;
}

.btn-light::before {
  background-color: #81a46a;
}

.btn-light:active,
.btn-light:hover,
.btn-light.focus,
.btn-light:focus,
.btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

/*---------------------overlay----------------------- */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #ad4b4a;
  opacity: 0.8;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #81a46a !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #ffffff !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "EB Garamond", serif;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  /* height: 200px; */
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}

.navigation {
  background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: 0.2s ease;
  background: #e7ebe4;
}

@media (max-width: 991px) {
  .navigation {
    background: #9dbb8a;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #9dbb8a;
    max-height: calc(100vh - 80px);
  }

  .navbar-collapse.show {
    overflow-y: auto;
  }
}

/* .navbar-nav {
  /*padding-left: 50px;
  background: #ffbc3b;
  background: #f8f8f8;
} */
@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #9dbb8a;
  }
}

.nav-bg {
  background-color: #ffffff;
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

.nav-item {
  /* margin: 0 15px;*/
  position: relative;
}

@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #ad4d4c;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  pointer-events: none;
}

@media (max-width: 991px) {
  .nav-item::before {
    opacity: 0.1;
    height: 100%;
  }
}

.navbar-brand {
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
}

.nav-item:hover::before,
.nav-item.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
  color: #19182f;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #19182f;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
  background: #ad4d4c;
}

.navbar-expand-lg .navbar-nav .nav-link {
  /*padding: 40px 0px;*/
  padding: 20px 10px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: "themify";
  font-size: 11px;
  width: auto;
}

.navbar .dropdown .dropdown-menu li {
  padding-top: 10px;
}

.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}

.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}

@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}

.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}

.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 0 15px;
  padding-left: 5px;
  top: 56px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown .dropdown .dropdown-toggle,
.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: 0.2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle,
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown .dropdown .dropdown-toggle:hover,
.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  padding: 250px 0 290px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 250px 0 200px;
  }
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear 0.2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

.feature-blocks {
  margin-top: 10px;
  padding-left: 50px;
  padding-top: 40px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 50px;
  }

  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 60px;
    padding: 50px;
  }

  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: 0.3s ease;
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

.hover-shadow p {
  margin-bottom: 0;
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: 0.3s ease;
  transition-delay: 0.2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: 0.3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ad4d4c;
  font-family: "EB Garamond", serif;
  text-align: center;
  padding: 10px;
  color: #fff;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #81a46a 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.form-control {
  background: #fff;
}

.form-control:focus {
  border-color: #ad4d4c;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 90px;
}

/*----------------------footer----------------------------*/

.bg-footer {
  background-color: #ad4d4c;
}

.bg-footer-bottom {
  background-color: #953d3c;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #953d3c !important;
  color: #ffffff;
  line-height: 25px;
}

footer p {
  color: #ffffff;
}

.filter-controls li {
  cursor: pointer;
  transition: 0.1s ease;
}

.filter-controls li.active {
  font-weight: 600;
  color: #ffbc3b;
}

.filter-controls li:hover {
  color: #ffbc3b;
}

.logo img {
  height: 87px;
}

.border-btm {
  border-bottom: 5px solid #f8f8f8;
}

.about {
  background: url(../images/line-bg.jpg) no-repeat;
  background-size: cover;
}

/* .committee {
  position: relative;
  z-index: 1;
}

.committee::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: url(../images/committee-bg.jpg) no-repeat;
  z-index: -1;
  opacity: 0.3;
  background-position: bottom center;
}
 */
.bg-event {
  background: url(../images/event-bg.jpg) no-repeat;
  background-size: cover;
}

.top-header {
  background: url(../images/event-bg.jpg) no-repeat;
  background-size: cover;
  color: #ad4d4c;
  font-family: "EB Garamond", serif;
  font-size: 2.5rem;
}

@media (max-width: 575px) {
  .flag-counter {
    width: 100%;
  }

  .top-header {
    font-size: 1.5rem;
  }
}

.quick_links h3 {
  color: #ad4d4c;
}
.quick_links a {
  background: #ad4d4c;
  color: #ffff;
  padding: 5px 10px;
  border-radius: 8px;
}

/*---------------------------form-section----------------------------*/

.form-section {
  margin: 0 auto;
  overflow: hidden;
  padding: 3em 3em 3em;
  background: #ffffff;
  box-shadow: 0px 4px 42px -14px rgb(205 210 216);
  border-radius: 30px;
  text-align: left;
  position: relative;
}

.form-section1 {
  margin: 0 auto;
  overflow: hidden;
  padding: 3em 3em 3em;
  background: #ffffff;
  box-shadow: 0px 4px 42px -14px rgb(205 210 216);
  border-radius: 30px;
  text-align: left;
  position: relative;
}

/*
.form-section h2 {
  color: #4caf50;
  font-size: 28px;
}
 
.form-section h3 {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 15px;
  color: #ff9800;
  border-bottom: 1px solid #ff9800;
  padding: 0 0 5px;
  position: relative;
  z-index: 1;
}

.form-section h3::before {
  content: "";
  width: 33%;
  height: 4px;
  left: 0;
  bottom: -2px;
  position: absolute;
  z-index: -1;
  background-color: #ff9800;
}

.form-section h3.text-center::before {
  left: 50%;
  transform: translateX(-50%);
} */

.form-section input[type="text"],
.form-section input[type="number"],
.form-section input[type="email"],
.form-section input[type="date"],
.form-section textarea,
.form-section select {
  border-radius: 8px;
  padding: 8px;
}

.form-section1 input[type="text"],
.form-section1 input[type="number"],
.form-section1 input[type="email"],
.form-section1 textarea,
.form-section1 select {
  border-radius: 8px;
  padding: 8px;
}

.form-section.viewpage .form-control,
.form-section.viewpage .form-select {
  background: #f5f5f5;
  border: none;
  outline: none;
}

.form-section li {
  margin: 0 0 1rem;
}

.profile-bar a {
  background: #f1f8ff;
  padding: 5px 15px;
  border-radius: 33px;
  font-size: 14px;
}

.form-section label {
  margin: 0 0 5px 0;
  font-size: 15px;
  font-weight: 500;
}

.error {
  color: #f00;
}

/*--------------------------INNER PAGE--------------------*/
.innerpage h4 {
  text-align: center;
}

.inner-title {
  background-color: #32394f;
}

/*--------------------------LOGIN FORM---------------------------*/

.join-us-inner p {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

/*--------------------------MEMBERSHIP FORM---------------------- */

.join-us-inner .member-text {
  font-weight: 700;
  font-size: 20px;
}

.login h3 {
  margin-bottom: 10px;
}

.foundation img {
  border: 1px solid #e7e4e4;
  border-radius: 10px;
}

/*  */
.membership-detail h4 b {
  font-size: 25px;
  color: #32394f;
}

.bank-details h4 {
  padding: 7px;
  background-color: #953d3c;
  color: #ffff;
  font-size: 23px;
  margin-bottom: 0;
  text-align: start;
}

.contact {
  border: 1px solid #eeee;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgb(100 100 111 / 17%) 0px 7px 29px 0px;
}

.quick-link ul li i {
  padding-right: 5px;
  color: #f79e27;
}

.quick-link ul li a {
  color: #ffff;
}

.quick-link h3 {
  color: #ffff;
}

.quick-link ul {
  padding-left: 0 !important;
  line-height: 30px;
}

/*==============================================
==================PROFILE BOX===================
==============================================*/

.profile-box {
  text-align: center;
  padding: 1rem 0;
}

.profile-box .profile-img {
  --extra: 20;
  /* --bg-diff: #f3f3f3; */
  --bg-diff: #fafffb;
  --off-extra: 2;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
  max-width: fit-content;
  margin-bottom: calc(var(--extra) * 1px);
}

.profile-img::after,
.profile-img::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.profile-img::before {
  width: calc((100 + var(--extra)) * 1%);
  height: calc((100 + var(--extra)) * 1%);
  top: calc((var(--extra) / 2) * -1%);
  left: calc((var(--extra) / 2) * -1%);
  background: linear-gradient(to right, #ad4d4c, #5a2221, #ad4d4c);
  border-radius: 100%;
}

.profile-img::after {
  width: calc(var(--extra) * 1%);
  height: calc((100 + var(--extra)) * 1%);
  background: var(--bg-diff);
  top: calc((var(--extra) / 2) * -1%);
  left: 50%;
  transform: translate(-50%, 0);
}

.profile-box .profile-img img {
  width: 150px;
  border-radius: 100%;
  padding: 5px;
  background: var(--bg-diff);
  box-shadow: 0px 5px 10px rgb(0 0 0/65%);
}

.profile-box p {
  color: #2c3e50;
  margin-bottom: 0;
}

.profile-box p b {
  color: var(--green-clr);
}

.profile-box .btn-cv {
  background: #20292812;
  border-radius: 5px;
  padding: 3px 10px;
  margin-top: 10px;
}

.profile-box a i {
  margin-left: 7px;
  color: var(--green-clr);
}

.profile-box a:hover i {
  transform: rotate(360deg);
  display: inline-block;
  transition: 0.5s;
}

/*  */
.annual-conf img {
  border: 1px solid #eee;
  box-shadow: 5px 5px 5px #0000003b;
}

.innerpage {
  background-color: var(--bs-gray-100);
}

.login li {
  margin-bottom: 20px;
}

/*notification*/

.notification {
  position: fixed;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 60%);
  width: 100%;
  height: 100%;
  z-index: 9;
}

.notify-box-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.notify-box {
  width: 460px;
  max-width: 90%;
  margin: auto;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  font-size: 16px;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.code {
  width: 35%;
}
.code1 {
  width: 60%;
}

.login-menu li {
  margin: 0;
  padding: 0;
}

.login-menu li a {
  padding: 1em;
  border-bottom: 1px solid #f8f8f8;
  display: block;
  margin: 0;
  color: #505050;
  font-size: 18px;
  transition: 0.3s ease all;
}

.login-menu li:last-child a {
  border: none;
}

.login-menu li a i {
  margin: 0 12px 0 0;
  color: #ad4d4c;
  transition: 0.3s ease all;
}

.login-menu li a:hover {
  color: #fff;
  background-color: #ad4d4c;
}

.login-menu li a:hover i {
  color: #fff;
}
