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

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background-color: #0A1C26;
  background-image: url("../img/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  padding-top: 55px;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.nav-link,
.btn,
.info-title,
.lesson-title,
.accordion-button,
.course-fee,
.debug-title {
  font-family: "Carlito", "Roboto", sans-serif !important;
}

p, span, div, li, td, th, input, textarea, select {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.accent-light {
  color: #45B7D1;
}

.text-justify {
  text-align: justify !important;
}

.transparent-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transparent-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
.transparent-box:active {
  transform: translateY(0);
}

.btn-custom {
  background-color: #2A8294 !important;
  color: #ffffff !important;
  border: 1px solid #3AA5B8 !important;
  border-radius: 10px !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
  cursor: pointer !important;
}
.btn-custom:hover, .btn-custom:focus {
  background-color: #45B7D1 !important;
  border-color: #5AC4E0 !important;
  color: #ffffff !important;
  outline: none !important;
}
.btn-custom:disabled, .btn-custom[disabled] {
  background-color: #3A4347 !important;
  color: #B0BEC5 !important;
  border-color: #3A4347 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.lazy-video {
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
  background-color: #0A1C26;
  border: 1px solid #4A7073;
}
.lazy-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.lazy-video:hover img {
  transform: scale(1.03);
}
.lazy-video button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 28px;
  color: #1A3C47;
  background-color: #45B7D1;
  box-shadow: 0 4px 12px rgba(31, 107, 107, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lazy-video button:hover {
  background-color: #1F6B6B;
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(45, 183, 209, 0.7);
}

.content-wrapper {
  flex: 1;
  padding: 10px 0;
  /* margin-left: 250px; */
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 30px 0 70px 0;
    margin-left: 0;
  }
}

.content-wrapper-personal {
  flex: 1;
  padding: 10px 0;
  margin-left: 250px;
}
@media (max-width: 768px) {
  .content-wrapper-personal {
    padding: 30px 0 70px 0;
    margin-left: 0;
  }
}

.text-content {
  background: transparent;
  padding: 20px 0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.text-content h2 {
  margin-bottom: 30px;
  font-weight: 300;
  color: #ffffff;
}

.text-content p {
  margin-bottom: 20px;
  text-indent: 20px;
  color: #ffffff;
}

.buttons-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.button-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 30px 0;
  }
  .buttons-section {
    gap: 15px;
  }
  .transparent-box {
    padding: 10px 22px;
    font-size: 1rem;
    min-height: 60px;
  }
}
.interface-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 4px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .interface-image img {
    height: auto;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 28, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 8px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-center {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  color: #45B7D1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: #45B7D1;
}

.nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 28, 38, 0.98);
  backdrop-filter: blur(15px);
  padding: 80px 20px 20px 20px;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  transition: left 0.3s ease;
  overflow-y: auto;
  z-index: 1001;
}

.nav-menu.active {
  display: flex;
  left: 0;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0 8px 0 20px;
  font-size: 1.1rem;
}

.nav-link:hover {
  color: #45B7D1;
}

.nav-link.active {
  color: #45B7D1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #B0BEC5;
  font-size: 0.85rem;
}

.user-photo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #45B7D1;
  margin: 0 2px 0 0;
}

.lang-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  margin-top: 20px;
}

.lang-separator {
  color: #4A7073;
}

.demo-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-section h2 {
  color: #45B7D1;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.demo-section p {
  color: #B0BEC5;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .navbar-container {
    position: relative;
    padding: 8px 15px;
  }
  .nav-center {
    display: none;
  }
  .menu-toggle {
    font-size: 1.2rem;
    display: block;
  }
  .nav-left {
    gap: 15px;
  }
  body {
    padding-top: 70px;
  }
}
@media (max-width: 480px) {
  .nav-left, .nav-right {
    gap: 10px;
  }
  .navbar {
    font-size: 0.8rem;
  }
  .user-info {
    font-size: 0.75rem;
  }
  .nav-menu {
    padding: 70px 15px 15px 15px;
    gap: 15px;
  }
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Carlito", "Roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}
.lang-switcher .lang-btn {
  color: #B0BEC5;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 4px;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}
.lang-switcher .lang-btn:hover {
  color: #45B7D1;
}
.lang-switcher .lang-btn.lang--active {
  color: #45B7D1;
  font-weight: 700;
}
.lang-switcher .lang-separator {
  color: #4A7073;
}
.lang-switcher--mobile {
  margin-top: 10px;
  font-size: 1rem;
}
.lang-switcher--mobile .lang-btn {
  padding: 4px 8px;
}

.kd-text p {
  text-indent: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

h1 {
  font-family: "Carlito", "Roboto", sans-serif;
  color: #B0E0E6;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-family: "Carlito", "Roboto", sans-serif;
  font-weight: 700;
}

h3 {
  font-family: "Carlito", "Roboto", sans-serif;
  font-weight: 700;
}

.description {
  color: #B0BEC5;
  line-height: 1.6;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.description h3 {
  color: #45B7D1;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
}

.lesson-title {
  color: #45B7D1;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 25px;
}

.lesson-content {
  color: #B0BEC5;
  margin-left: 20px;
  margin-bottom: 15px;
}

.info-section {
  margin-top: 30px;
}

.info-title {
  color: #45B7D1;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
}

.price {
  color: #B0E0E6;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 15px 0;
}

.btn-primary {
  background-color: rgba(255, 255, 255, 0.05);
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background-color: #45B7D1;
  border-color: #45B7D1;
}

hr {
  border-color: #4A7073;
  margin: 40px 0;
}

.reg-form, .login-form, .change-form, .reset-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3A4347;
  border-radius: 8px;
}

.reg-title, .login-title, .change-title, .reset-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}

.form-label {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 4px;
  background-color: #212529;
  border: 1px solid #4A7073;
  color: #ffffff;
  padding: 10px;
  font-size: 1rem;
}
.form-control:focus {
  border-color: #45B7D1;
  outline: none;
  background-color: #212529;
  color: #ffffff;
}

select.form-control option {
  background-color: #212529;
  color: #ffffff;
  padding: 10px;
}

.btn-primary.solid {
  background-color: #1A3C47;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.btn-primary.solid .button-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #45B7D1;
  transition: color 0.3s ease;
}
.btn-primary.solid:hover {
  background-color: #2A8294;
}
.btn-primary.solid:hover .button-icon {
  color: #1F6B6B;
}
.btn-primary.solid:active, .btn-primary.solid:focus {
  background-color: #2A8294;
  color: #ffffff;
}

.link {
  color: #45B7D1;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}
.link .button-icon {
  margin-right: 8px;
  font-size: 1rem;
  color: #45B7D1;
  transition: color 0.3s ease;
}
.link:hover {
  color: #1F6B6B;
}
.link:hover .button-icon {
  color: #1F6B6B;
}

.alert {
  border-radius: 4px;
  margin-bottom: 1rem;
  padding: 10px;
  font-size: 1rem;
}
.alert.alert-success {
  background-color: #1F6B6B;
  border: 1px solid #45B7D1;
}
.alert.alert-danger {
  border: 1px solid #4A7073;
}

.debug-output {
  background: #212529;
  color: #ffffff;
  margin: 10px 0;
  border: 1px solid #45B7D1;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.debug-title {
  background: #45B7D1;
  color: #0A1C26;
  margin: 0;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

.debug-content {
  margin: 0;
  padding: 15px;
  background: #212529;
  color: #ffffff;
  overflow-x: auto;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 0 0 8px 8px;
}

.debug-separator {
  border: none;
  border-top: 1px solid #4A7073;
  margin: 0;
  opacity: 0.5;
}

footer {
  flex-shrink: 0;
  margin-top: auto;
}

footer.bg-dark {
  background-color: #0A1C26;
  border-top: 1px solid #4A7073;
  padding: 20px 0;
}
footer.bg-dark p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
footer.bg-dark .social-links .transparent-box {
  min-height: 60px;
}
footer.bg-dark .social-links .transparent-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
footer.bg-dark .social-links .transparent-box:active {
  transform: translateY(0);
}
footer.bg-dark .social-links .transparent-box .button-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #45B7D1;
  transition: color 0.3s ease;
}
footer.bg-dark .social-links .transparent-box .button-icon:hover {
  color: #1F6B6B;
}
@media (max-width: 768px) {
  footer.bg-dark .social-links .transparent-box {
    padding: 10px 22px;
    font-size: 1rem;
    min-height: 50px;
  }
}

.accordion .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}
.accordion .accordion-button {
  background-color: transparent;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px;
  font-size: 1rem;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}
.accordion .accordion-body {
  background-color: transparent;
  color: #ffffff;
  padding: 8px;
  font-size: 0.9rem;
}

.info-section {
  padding: 0 10px;
}

@media (max-width: 767.98px) {
  .info-section {
    margin-bottom: 20px;
  }
}
.accordion-button {
  font-weight: 600 !important;
  font-size: 1.2rem !important;
}

.course-fee {
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  color: white;
}

.sidebar {
  position: fixed;
  top: 55px;
  left: 0;
  width: 250px;
  height: calc(100vh - 55px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease;
}
.sidebar .info-title {
  color: #45B7D1;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.sidebar .nav-link {
  background-color: #0A1C26;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
.sidebar .nav-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #45B7D1;
}
.sidebar .nav-link.active {
  background-color: #45B7D1;
  color: #ffffff;
  border-color: #45B7D1;
}
.sidebar .nav-link .button-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    left: -100%;
    top: 0;
    height: 100vh;
    padding: 15px;
  }
  .sidebar.active {
    left: 0;
  }
  .sidebar .nav-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
  }
}

.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 28, 38, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1002;
}
.sidebar-toggle:hover {
  background-color: rgb(10, 28, 38);
  color: #45B7D1;
}
.sidebar-toggle .button-icon {
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .sidebar-toggle {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sidebar-toggle {
    display: flex;
  }
}

.list-group {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.list-group-item {
  background-color: #3A4347;
  border: 1px solid #4A7073;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.list-group-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

#lessonsAccordion .alert-info {
  --bs-alert-bg: transparent !important;
}

#paymentsAccordion .alert-info {
  --bs-alert-bg: transparent !important;
}

.custom-row {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}

.custom-image {
  float: left;
  width: 40%;
  margin-right: 20px;
}
.custom-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: block;
}

.custom-text {
  width: auto;
  margin-left: 0;
  text-align: justify;
  padding: 0;
}
.custom-text p {
  margin-bottom: 20px;
  text-indent: 20px;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .custom-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .custom-image {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .custom-text {
    width: 100%;
  }
  .custom-image img {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
}
.vimeo-player-section iframe {
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 16/9;
}

.timecode-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.timecode-buttons button {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.timecode-buttons button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #45B7D1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #45B7D1;
}
.timecode-buttons button:focus {
  outline: none;
  border-color: #45B7D1;
}
.timecode-buttons button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .timecode-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .timecode-buttons button {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
.video-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}
.video-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.video-card .vimeo-player-section iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

.btn-timecode {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 6px !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #ffffff !important;
  padding: 4px 10px !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  line-height: 1.4 !important;
  text-align: left !important;
  display: inline-block !important;
  max-width: 100% !important;
}
.btn-timecode:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #45B7D1 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #45B7D1 !important;
}
.btn-timecode:focus {
  outline: none !important;
  border-color: #45B7D1 !important;
}
.btn-timecode:active {
  transform: translateY(0);
}
.btn-timecode:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .btn-timecode {
    width: 100% !important;
    padding: 8px 10px !important;
    font-size: 0.85rem !important;
    display: block !important;
  }
  .video-card {
    padding: 15px;
  }
}
.description {
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1.5;
  padding: 0;
}

.lazy-vimeo-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0A1C26;
  border-radius: 8px;
}
.lazy-vimeo-container .vimeo-placeholder {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.lazy-vimeo-container .vimeo-placeholder:hover {
  transform: scale(1.02);
}
.lazy-vimeo-container .vimeo-placeholder:hover img {
  opacity: 0.8;
}
.lazy-vimeo-container .vimeo-placeholder img {
  transition: opacity 0.3s ease;
}
.lazy-vimeo-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.vimeo-placeholder div {
  transition: all 0.3s ease;
}
.vimeo-placeholder div:hover {
  background: rgb(69, 183, 209) !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  box-shadow: 0 0 20px rgba(69, 183, 209, 0.5);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.fa-spinner {
  animation: pulse 1.5s ease-in-out infinite;
}

.accordion-button {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
}
@media (max-width: 768px) {
  .accordion-button span:first-of-type {
    flex: 1 1 100% !important;
    min-width: unset !important;
  }
  .accordion-button span:nth-of-type(2) {
    flex: 1 1 100% !important;
    margin-top: 4px !important;
  }
  .accordion-button span:last-of-type {
    flex: 1 1 100% !important;
    margin-top: 8px !important;
  }
  .accordion-button .renewal-btn-inline {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
  }
}
@media (min-width: 769px) {
  .accordion-button span:first-of-type {
    flex: 1 1 auto !important;
    min-width: 200px !important;
  }
  .accordion-button span:nth-of-type(2) {
    flex: 0 0 auto !important;
  }
  .accordion-button span:last-of-type {
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }
}

audio.kedr-audio-player {
  accent-color: #45B7D1;
  background: #1A3C47;
  border-radius: 8px;
  padding: 4px 8px;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
