body {
  font-family: "Poppins", sans-serif;
}

.header nav li a {
  color: #000;
}

.header button.login {
  color: #000;
  border-color: #000;
}

.header .user-name {
  color: #000;
}

.header .dropdown-arrow path {
  stroke: #000;
}

.header .dropdown-arrow {
  filter: brightness(0);
}

.navbar-button.login {
  border-color: #000;
}

.hero-section {
  padding-top: 144px;
  padding-bottom: 59px;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 0 32px;
}

.hero-title {
  font-family: "Poppins-Medium", sans-serif;
  font-size: 64px;
  color: #232323;
  margin-bottom: 59px;
  text-transform: uppercase;
  line-height: 112%;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.content {
  display: grid;
  grid-template-columns: 440px 1fr;
  width: 100%;
  gap: 40px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 0 32px 167px 32px;
}

.aside {
  width: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-title {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  color: #232323;
  margin-bottom: 0;
  text-transform: none;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 653px;
  width: 100%;
}

.section-title {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #9c9c9c;
  margin-bottom: 0;
  letter-spacing: normal;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.plans-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.plans-item {
  padding: 17.5px 16px;
  height: 67px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #a5a5a5;
  width: 100%;
}

.plans-item.active {
  background: #353535;
  border: 1px solid #353535;
}

.plans-item-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #353535;
}

.plans-item.active .plans-item-title {
  color: #ffffff;
}

.plans-item-badge {
  background: #fce5d6;
  border-radius: 1000px;
  padding: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 115%;
  color: #eb7e2a;
}

.plans-item.active .plans-item-badge {
  color: #232323;
  background: #ffffff;
}

.plans-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plans-change-button {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-decoration-line: underline;
  color: #353535;
  padding: 0;
  outline: none !important;
  background: transparent;
  border: none;
  height: auto;
  justify-content: flex-start;
  width: fit-content;
  transition: all 0.3s ease;
}

.plans-change-button:hover {
  background: transparent;
  color: #353535;
  text-decoration: none;
}

.info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 32px;
}

.info-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: #fafafa;
  padding: 16px;
  border-radius: 4px;
}

.info-list-item-label {
  flex: 1;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #353535;
}

.info-list-item-value {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #353535;
  margin-bottom: 0;
}

.info-list-item-value.status {
  color: #6b7c5d;
}

.other {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.other-button {
  background: #fafafa;
  padding: 16px;
  border-radius: 4px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #bb3631;
  outline: none !important;
  justify-content: flex-start;
}

.other-button:hover {
  background: #fafafa;
  color: #bb3631;
}

.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.2s;
  z-index: 999;
}

.confirm-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.confirm-modal {
  background: white;
  border-radius: 12px;
  padding: 16px;
  max-width: 535px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s ease;
  overflow-y: auto !important;
}

.close-btn {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.confirm-modal-header {
  color: #232323;
  position: relative;
  text-align: center;
}

.confirm-modal-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.confirm-modal-body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.confirm-modal-body p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #232323;
}

.confirm-modal-body p strong {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.confirm-modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.confirm-modal-body li {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #353535;
  position: relative;
  padding-left: 32px;
}

.confirm-modal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13L9 17L19 7' stroke='%23D63B54' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.confirm-modal-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn {
  flex: 1;
}

.confirm-button {
  background: #d63b54;
  color: #f2f1f6;
  border: 1px solid #d63b54;
}

.confirm-button:hover {
  color: #f2f1f6;
  background: #c51f3a;
}

.cancel-button {
  border: 1px solid #6b7c5d;
  color: #353535;
  background: transparent;
}

.cancel-button:hover {
  color: #353535;
  background: #e3e4e1;
}

.help {
  width: 100%;
  text-align: center;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #353535;
}

.help a {
  font-family: "Poppins-Medium";
  font-weight: 500;
  color: #353535;
  text-decoration: underline;
}

.sheet {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 0;
  width: 100%;
  max-height: 90vh;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: none;
}

.confirm-modal-overlay.active .sheet {
  transform: translateY(0);
}

.drag-handle {
  width: 54px;
  height: 5px;
  background: #e2e2e2;
  border-radius: 2px;
  margin: 16px auto 8px;
  cursor: grab;
  transition: background-color 0.2s ease;
  display: none;
}

.drag-handle:active {
  cursor: grabbing;
  background: #9ca3af;
}

.drag-handle:hover {
  background: #9ca3af;
}

.sheet .confirm-modal-body {
  padding: 0px 17px 17px 17px;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}

.sheet .confirm-modal-body p {
  font-size: 16px;
}

.sheet .confirm-modal-body li {
  font-size: 16px;
}

.sheet .close-btn {
  right: 17px;
}

.sheet .confirm-modal-title {
  font-size: 18px;
  margin-top: 16px;
}

.confirm-modal-overlay.active .confirm-modal {
  opacity: 1;
}

.confirm-modal-overlay:not(.active) .confirm-modal {
  opacity: 0;
}

.payment-method {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.payment-dropdown {
  position: relative;
  width: 100%;
}

.payment-dropdown-trigger {
  width: 100%;
  padding: 11.5px 16px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #a5a5a5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #a5a5a5;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  outline: none;
}

.payment-dropdown-trigger:hover {
  background: #ffffff;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.payment-text {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #a5a5a5;
  transform: translate(0, 0) !important;
  opacity: 1 !important;
  letter-spacing: 0;
}

.dropdown-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  filter: none;
}

.payment-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.payment-dropdown-menu {
  background: #ffffff;
  border: 0px solid #a5a5a5;
  border-radius: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 8px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.payment-dropdown-menu.with-border {
  border: 1px solid #a5a5a5;
}

.payment-dropdown.active .payment-dropdown-menu {
  max-height: 300px;
  padding: 12px 8px;
}

.payment-option-item {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
}

.payment-option-item:last-child {
  border-bottom: none;
}

.payment-option-item:hover {
  background: #f3d7d7;
  color: #d63b54 !important;
}

.payment-option-item:hover .payment-text {
  color: #d63b54 !important;
}

.payment-option-item:hover .payment-icon path {
  stroke: #d63b54 !important;
}

.payment-option-item.active {
  background: #f3d7d7;
  color: #d63b54 !important;
}

.payment-option-item.active .payment-text {
  color: #d63b54 !important;
}

.payment-option-item.active .payment-icon path {
  stroke: #d63b54 !important;
}

@media (max-width: 1100px) {
  .content {
    grid-template-columns: 262px 1fr;
    gap: 30px;
    padding: 0px 16px 114px 16px;
  }
  .main-content {
    max-width: 100%;
  }
  .settings__sidebar {
    width: 100% !important;
    flex-shrink: 1 !important;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-section {
    padding-top: 88px;
  }
  .plans-content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .hero-section {
    display: none;
  }
  .footer {
    display: none;
  }
  .content {
    padding: 70.5px 16px 114px 16px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px;
  }
  .main-title {
    display: none;
  }
  .section-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }
  .confirm-modal-overlay {
    background: rgba(0, 0, 0, 0.3);
    align-items: flex-end;
  }
  .confirm-modal {
    display: none;
  }
  .sheet {
    display: block;
  }
  .drag-handle {
    display: block;
  }
  .modal-buttons {
    flex-direction: column;
  }
  .btn {
    max-width: none;
    max-height: 48px;
    min-height: 48px;
    padding-bottom: 12px;
    padding-top: 12px;
  }
}
@media (min-width: 768px) {
  .confirm-modal {
    display: block;
  }
  .sheet {
    display: none;
  }
}
.change-plan-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.2s;
  z-index: 999;
  overflow-y: auto;
}

.change-plan-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.change-plan-modal-overlay .confirm-modal {
  background: white;
  border-radius: 12px;
  padding: 16px;
  max-width: 618px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.change-plan-modal-overlay .sheet {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 0;
  width: 100%;
  max-height: 90vh;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: none;
}

.change-plan-modal-overlay.active .sheet {
  transform: translateY(0);
}

.change-plan-modal-overlay .drag-handle {
  width: 54px;
  height: 5px;
  background: #e2e2e2;
  border-radius: 100px;
  margin: 12px auto 8px;
  cursor: grab;
  transition: background-color 0.2s;
  display: none;
}

.change-plan-modal-overlay .drag-handle:active {
  cursor: grabbing;
}

.change-plan-modal-overlay .drag-handle:hover {
  background: #9ca3af;
}

.change-plan-modal-overlay .plans-content {
  flex-direction: column;
  width: 100%;
  margin-bottom: 32px;
  margin-top: 16px;
}

.change-plan-modal-overlay .plans-item {
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  padding: 17.5px 16px;
  height: 67px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #a5a5a5;
  width: 100%;
}

.change-plan-modal-overlay .plans-item:hover {
  border-color: #353535;
}

.change-plan-modal-overlay .plans-item.active {
  background: #353535;
  border-color: #353535;
}

.change-plan-modal-overlay .plans-item.active:hover {
  background: #454545;
  border-color: #454545;
}

.change-plan-modal-overlay .plans-item-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #353535;
}

.change-plan-modal-overlay .plans-item.active .plans-item-title {
  color: #ffffff;
}

.change-plan-modal-overlay .plans-item-badge {
  background: #fce5d6;
  border-radius: 1000px;
  padding: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 115%;
  color: #eb7e2a;
}

.change-plan-modal-overlay .plans-item.active .plans-item-badge {
  color: #232323;
  background: #ffffff;
}

.change-plan-modal-overlay .payment-dropdown {
  margin-top: 8px;
  margin-bottom: 32px;
}

.change-plan-modal-overlay .payment-dropdown-trigger {
  width: 100%;
  padding: 11.5px 16px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #a5a5a5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #a5a5a5;
  transition: all 0.2s ease;
  outline: none;
}

.change-plan-modal-overlay .payment-dropdown-menu {
  background: #ffffff;
  border: 0px solid #a5a5a5;
  border-radius: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 8px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.change-plan-modal-overlay .payment-dropdown-menu.with-border {
  border: 1px solid #a5a5a5;
}

.change-plan-modal-overlay .payment-dropdown.active .payment-dropdown-menu {
  max-height: 300px;
  padding: 12px 8px;
}

.change-plan-modal-overlay .payment-option-item {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
}

.change-plan-modal-overlay .payment-option-item:hover {
  background: #f3d7d7;
  color: #d63b54 !important;
}

.change-plan-modal-overlay .payment-option-item:hover .payment-text {
  color: #d63b54 !important;
}

.change-plan-modal-overlay .payment-option-item:hover .payment-icon path {
  stroke: #d63b54 !important;
}

.change-plan-modal-overlay .payment-option-item.active {
  background: #f3d7d7;
  color: #d63b54 !important;
}

.change-plan-modal-overlay .payment-option-item.active .payment-text {
  color: #d63b54 !important;
}

.change-plan-modal-overlay .payment-option-item.active .payment-icon path {
  stroke: #d63b54 !important;
}

@media (max-width: 767px) {
  .change-plan-modal-overlay {
    background: rgba(0, 0, 0, 0.3);
    align-items: flex-end;
  }
  .change-plan-modal-overlay .confirm-modal {
    display: none;
  }
  .change-plan-modal-overlay .sheet {
    display: block;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .change-plan-modal-overlay.active .sheet {
    transform: translateY(0);
  }
  .change-plan-modal-overlay .drag-handle {
    display: block;
  }
  .change-plan-modal-overlay .sheet .confirm-modal-header {
    padding: 0 17px;
  }
  .change-plan-modal-overlay .sheet .confirm-modal-body {
    padding: 0px 17px 17px 17px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
  }
  .change-plan-modal-overlay .sheet .confirm-modal-title {
    font-size: 18px;
    line-height: 27px;
    margin-top: 16px;
  }
  .change-plan-modal-overlay .sheet .close-btn {
    right: 17px;
  }
  .change-plan-modal-overlay .sheet .confirm-modal-buttons {
    flex-direction: column;
    margin-top: 0px;
  }
  .confirm-modal-overlay .sheet .confirm-modal-buttons {
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 0px;
  }
  .change-plan-modal-overlay .sheet .btn {
    max-width: none;
    padding: 11px 16px !important;
  }
  .change-plan-modal-overlay .sheet .section-title {
    font-size: 14px;
    line-height: 21px;
  }
  .change-plan-modal-overlay .sheet .plans-content {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .change-plan-modal-overlay .sheet .payment-dropdown {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .change-plan-modal-overlay .sheet .help {
    margin-top: 16px;
  }
}
.change-plan-modal-overlay .confirm-modal-body {
  gap: 0px !important;
}

#toast-container {
  position: fixed;
  top: 120px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  #toast-container {
    right: 15px;
  }
}
#toast-container .toast-message {
  color: #fff;
  font-family: "Poppins-Medium";
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  animation: fadein 0.3s;
  transition: all 0.3s ease;
}

#toast-container .toast-error {
  background-color: #D63B54;
}

#toast-container .toast-success {
  background-color: green;
}

#toast-container .toast-info {
  background-color: yellow;
}

#toast-container .toast-close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
}

#toast-container.show {
  opacity: 1;
  transform: translateY(0);
}

#toast-container.hidden {
  display: none;
}

.toast-message-close {
  margin-left: 15px;
  cursor: pointer;
  font-size: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner-overlay.hidden {
  display: none !important;
}
.spinner-overlay .spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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