/* [project]/src/css/Header.css [app-client] (css) */
.Header {
  height: var(--header-height);
  background-color: #00000040;
  outline: 1px solid #ffffff1a;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.Header .Wrapper {
  width: var(--max-width);
  justify-content: space-between;
  align-items: center;
}

.ProjectName {
  font-size: 1.5rem;
}

.Header a {
  font-size: 1rem;
  font-weight: 400;
}

.NavLinks {
  gap: 3rem;
  display: flex;
}

.HeaderButtons {
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  display: flex;
}

.HeaderButtons.mobile {
  display: none;
}

.LanguageSwitch {
  align-items: center;
  margin: 0 10px;
  display: flex;
}

.LanguageSelect {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 14px;
  transition: border-color .2s;
}

.LanguageSelect:hover {
  border-color: #999;
}

.LanguageSelect:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px #007bff40;
}

@media (width <= 768px) {
  .Header .Wrapper {
    padding: 0 20px;
  }

  .ProjectName {
    font-size: 1.2rem;
  }

  .NavLinks.desktop, .HeaderButtons.desktop {
    display: none;
  }

  .HeaderButtons.mobile {
    display: flex;
  }

  .HeaderButtons {
    gap: 5px;
  }

  .StyledButton {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .LanguageSwitch {
    margin: 0 5px;
  }

  .LanguageSelect {
    padding: 3px 6px;
    font-size: 12px;
  }
}

@media (width <= 480px) {
  .ProjectName {
    font-size: 1rem;
  }

  .HeaderButtons {
    gap: 3px;
  }

  .StyledButton {
    padding: 6px 12px;
    font-size: .8rem;
  }
}


/* [project]/src/css/Button.css [app-client] (css) */
.StyledButton {
  font-weight: 400;
  font-size: inherit;
  cursor: pointer;
  opacity: 1;
  background: none;
  border: none;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  transition: all .3s;
  display: flex;
  transform: scale(1);
}

.StyledButton.SelectButton {
  justify-content: space-between;
  min-width: 280px;
}

.StyledButton:hover {
  opacity: .9;
  transform: scale(1.05);
}

.StyledButton:active {
  opacity: 1;
  transform: scale(.95);
}

.StyledButton.default {
  color: var(--color-black);
  background-color: #fff;
  padding: 20px 24px;
}

.StyledButton.default-outlined {
  outline: 1px solid var(--color-white);
  padding: 20px 24px;
}

.StyledButton.default-outlined.disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.StyledButton.default-outlined.disabled:hover {
  opacity: .5;
  transform: none;
}

.StyledButton.purple-outlined {
  outline: 1px solid var(--color-purple);
  color: var(--color-purple);
}

.StyledButton.purple {
  background-color: var(--color-purple);
}

.StyledButton.gray {
  background-color: var(--color-gray);
  padding: 20px 32px;
  font-weight: 300;
}

.StyledButton.gray-outlined {
  outline: 1px solid var(--color-gray);
  padding: 20px 32px;
  font-weight: 300;
}

.StyledButton.green {
  background-color: var(--color-green);
  color: #000;
  padding: 10px 7px;
  font-weight: 500;
}

.StyledButton.green-outlined {
  outline: 1px solid var(--color-green);
  color: #fff;
  padding: 10px 7px;
  font-weight: 500;
}

.StyledButton.yellow {
  background-color: var(--color-yellow);
  color: #000;
  padding: 10px 7px;
  font-weight: 500;
}

.StyledButton.yellow-outlined {
  outline: 1px solid var(--color-yellow);
  color: #fff;
  padding: 10px 7px;
  font-weight: 500;
}

.StyledButton.red {
  background-color: var(--color-red);
  color: #000;
  padding: 10px 7px;
  font-weight: 500;
}

.StyledButton.red-outlined {
  outline: 1px solid var(--color-red);
  color: #fff;
  padding: 10px 7px;
  font-weight: 500;
}

.StyledButton.add_balance {
  background: #6366f180;
  outline: 1px solid #ffffff80;
}

.StyledButton.add_balance:hover {
  background: #6366f1bf;
  box-shadow: 0 0 10px #9092da;
}

.StyledButton.buy_history {
  background: radial-gradient(114.67% 155.9% at 10.16% -14.67%, #ffffff1a 0%, #6366f11a 100%);
  outline: 1px solid #ffffff80;
}

.StyledButton.buy_history:hover {
  background: radial-gradient(114.67% 155.9% at 10.16% -14.67%, #ffffff40 0%, #6366f140 100%);
  box-shadow: 0 0 10px #9092da;
}

@media (width <= 1024px) {
  .StyledButton {
    padding: 10px 20px;
    font-size: .95rem;
  }

  .StyledButton.default, .StyledButton.default-outlined {
    padding: 16px 20px;
  }

  .StyledButton.gray, .StyledButton.gray-outlined {
    padding: 16px 24px;
  }
}

@media (width <= 768px) {
  .StyledButton {
    padding: 10px 20px;
    font-size: .9rem;
  }

  .SelectButton.SelectButton {
    min-width: 100%;
    padding: 10px 12px;
  }

  .StyledButton.default, .StyledButton.default-outlined {
    padding: 16px 20px;
  }

  .StyledButton.gray, .StyledButton.gray-outlined {
    padding: 16px 24px;
  }

  .StyledButton:hover {
    transform: scale(1.03);
  }
}

@media (width <= 480px) {
  .StyledButton {
    border-radius: .8rem;
    padding: 8px 16px;
    font-size: .8rem;
  }

  .StyledButton.default, .StyledButton.default-outlined {
    padding: 12px 16px;
  }

  .StyledButton.gray, .StyledButton.gray-outlined {
    padding: 12px 20px;
  }

  .StyledButton:hover {
    transform: scale(1.02);
  }
}


/* [project]/src/css/utils/SelectButton.css [app-client] (css) */
.SelectWrapper {
  display: inline-block;
  position: relative;
}

.button-content {
  align-items: center;
  gap: 8px;
  display: flex;
}

.flag-icon {
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.Dropdown {
  background-color: var(--color-dark-gray);
  opacity: 0;
  z-index: 100;
  pointer-events: none;
  border: 1px solid #ffffff1a;
  border-radius: 1rem;
  width: 100%;
  max-height: 0;
  margin-top: 10px;
  transition: all .3s;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
}

.Dropdown.show {
  opacity: 1;
  pointer-events: auto;
  scrollbar-width: thin;
  max-height: 300px;
  overflow-y: auto;
}

.DropdownItem {
  cursor: pointer;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  transition: all .2s;
  display: flex;
}

.DropdownItem:hover {
  background-color: #ffffff1a;
}

.DropdownItem.selected {
  color: var(--color-purple);
  background-color: #6366f133;
}

@media (width <= 1024px) {
  .SelectWrapper {
    width: 100%;
  }

  .SelectWrapper button {
    width: 100%;
    font-size: .9rem;
  }

  .Dropdown {
    border-radius: .75rem;
    margin-top: 8px;
  }

  .DropdownItem {
    padding: 10px 16px;
    font-size: .9rem;
  }

  .flag-icon {
    width: 18px;
    height: 18px;
  }
}

@media (width <= 768px) {
  .SelectWrapper button {
    padding: 8px 12px;
    font-size: .85rem;
  }

  .Dropdown {
    border-radius: .5rem;
    margin-top: 6px;
  }

  .DropdownItem {
    padding: 8px 14px;
    font-size: .85rem;
  }

  .flag-icon {
    width: 16px;
    height: 16px;
  }
}

@media (width <= 480px) {
  .SelectWrapper button {
    padding: 6px 10px;
    font-size: .8rem;
  }

  .Dropdown {
    border-radius: .4rem;
    margin-top: 4px;
  }

  .DropdownItem {
    padding: 6px 12px;
    font-size: .8rem;
  }

  .flag-icon {
    width: 14px;
    height: 14px;
  }
}


/* [project]/src/app/globals.css [app-client] (css) */
@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("/fonts/Inter_24pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

html {
  overscroll-behavior-y: none;
  scrollbar-width: thin;
  overflow-y: scroll;
}

body {
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --color-black: #000;
  --color-white: #fff;
  --color-purple: #6366f1;
  --color-gray: #17171f;
  --color-dark-gray: #15151c;
  --color-green: #31ffc8;
  --color-dark-green: #0dff0066;
  --color-yellow: #fdba74;
  --color-red: #ff3135;
  --color-dark-red: #f006;
  background: var(--color-black);
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
}

h1, h2, span, button, a, li {
  color: var(--color-white);
  font-family: Inter, sans-serif;
}

h1 {
  margin: 0;
  font-weight: 600;
}

h2 {
  margin: 0;
  font-weight: 500;
}

span, li {
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

a :visited {
  color: inherit;
}

.Wrapper {
  max-width: var(--max-width);
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
}


/* [project]/src/app/properties.css [app-client] (css) */
:root {
  --max-width: 1520px;
  --max-width-slick: 1520;
  --header-height: 100px;
  --initial-width: 1900px;
  --dashboard-width: 1200px;
  --dashboard-top: 40px;
  --sidebar-width: 250px;
  overflow-x: hidden;
}

@media (width <= 1536px) {
  :root .Wrapper {
    margin: 0 1rem;
  }

  :root .Dashboard {
    margin: var(--dashboard-top) 2rem 0 auto;
  }

  :root .dashSidebar {
    margin: var(--dashboard-top) 1rem 0 0;
  }

  :root .vmHelper {
    gap: .5rem;
  }
}

@media (width <= 1200px) {
  :root .ServiceOffers {
    grid-template-columns: repeat(3, 1fr);
  }

  :root .GridSetup {
    grid-template-columns: 1fr;
  }

  :root .BillingContinue {
    flex-direction: column;
  }
}

@media (width <= 900px) {
  :root .ServiceOffers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 600px) {
  :root .ServiceOffers {
    grid-template-columns: 1fr;
  }

  :root .dashSidebar {
    min-width: unset;
  }
}

@media (width <= 768px) {
  :root {
    --header-height: 80px;
  }
}

@media (width <= 480px) {
  :root {
    --header-height: 60px;
  }
}


/* [project]/src/app/index.css [app-client] (css) */
.Home {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Hello {
  height: calc(100vh - var(--header-height)  + 200px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  display: flex;
  position: relative;
  top: -150px;
}

.Greetings {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 739px;
  display: flex;
}

h2 .gradiented {
  background: linear-gradient(91.47deg, #6366f1 0%, #1e1e2f 100%);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.Greetings h1 {
  font-size: 4rem;
}

.Greetings h2 {
  font-size: 3rem;
  font-weight: 300;
}

.Greetings span:not(.gradiented) {
  opacity: .75;
  margin-top: 1.5rem;
}

.GreetingsButtons {
  gap: 10px;
  display: flex;
}

.HomeBackground {
  z-index: -1;
  width: 1920px;
  height: 1080px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50px);
}

.shell-right {
  position: relative;
  transform: translate(320px, 100px);
}

.shell-left {
  position: relative;
  top: 500px;
  transform: translate(-500px);
}

.InfoBlock {
  backdrop-filter: blur(50px);
  border-radius: 40px;
  outline: 1px solid #ffffff3d;
  flex-direction: column;
  gap: 3rem;
  width: 50%;
  padding: 60px;
  display: flex;
}

.HomeInfo {
  height: fit-content;
  display: flex;
  position: relative;
}

.HomeInfo .Wrapper {
  gap: 20px;
}

.HomeInfo .InfoList {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.HomeInfo .InfoList li {
  list-style-position: inside;
}

.HomeInfo .InfoList li::marker {
  color: #ffffff4d;
}

.backgroundInfo {
  background-color: var(--color-dark-gray);
  border-radius: 60px;
  width: 100%;
  max-width: 100vw;
  margin-bottom: 80px;
  position: relative;
}

.backgroundInfo .HomeInfo, .backgroundInfo .Service {
  top: -200px;
}

.InfoHead {
  max-width: 411px;
}

.InfoHead h2 {
  font-size: 2rem;
}

.InfoHead span {
  opacity: .5;
}

.blur1 {
  background: radial-gradient(100% 827.01% at 0 0, #d322ff03 0%, #a69aff33 50%, #69ebff03 100%);
}

.blur2 {
  background: radial-gradient(425.45% 1039.04% at 0 0, #62626203 0%, #fff3 50%, #00000003 100%);
}

.Service {
  display: flex;
  position: relative;
}

.Service .Wrapper {
  flex-direction: column;
  display: flex;
}

.ServiceSelect {
  gap: 20px;
  width: 100%;
  margin: 53px 0;
  display: flex;
  position: relative;
}

.ServiceSelect button {
  width: 100%;
}

.ServiceOffers {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  transition: all .3s;
  display: grid;
}

.ServiceOffers.changing {
  opacity: 0;
  transform: translateY(20px);
}

.NoServicesMessage {
  text-align: center;
  background: #1e1e2f80;
  border: 1px solid #ffffff1a;
  border-radius: 2rem;
  flex-direction: column;
  grid-column: 1 / -1;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  animation: .5s forwards fadeIn;
  display: flex;
}

.NoServicesMessage h2 {
  background: linear-gradient(91.47deg, #6366f1 0%, #1e1e2f 100%);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.NoServicesMessage p {
  opacity: .7;
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.ServiceCard {
  outline: 1px solid var(--color-white);
  opacity: .75;
  cursor: pointer;
  border-radius: 2rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 60px 40px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s, box-shadow .3s;
  animation: .3s forwards fadeIn;
  display: flex;
  position: relative;
  transform: translateY(0);
  box-shadow: 0 0 #6366f100;
}

.ServiceCard > * {
  z-index: 1;
  position: relative;
}

.ServiceCard:before {
  content: "";
  opacity: 0;
  z-index: 0;
  background: linear-gradient(149.96deg, #1e1e2f 0%, #6366f1 100%);
  border-radius: 2rem;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.ServiceCard:hover {
  opacity: 1;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px #6366f133;
}

.ServiceCard:hover:before {
  opacity: 1;
}

.ServiceCard:active {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #6366f14d;
}

.activeCard {
  background: linear-gradient(149.96deg, #1e1e2f 0%, #6366f1 100%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ServiceCard .ServiceHead h1 {
  opacity: .4;
  text-transform: uppercase;
  font-size: 1rem;
}

.ServiceCard .ServiceHead span {
  font-size: 40px;
}

.ServiceCard .ServiceStats {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.ServiceCard .ServiceStats span {
  gap: 1rem;
  display: flex;
}

.ServiceCard .ServiceStats img {
  width: 24px;
}

.ServiceCard .ServiceOffer {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.ServiceCard .ServiceOffer span {
  font-weight: 400;
}

@media (width <= 1024px) {
  .ServiceOffers {
    grid-template-columns: repeat(2, 1fr);
  }

  .NoServicesMessage {
    padding: 40px 15px;
  }

  .NoServicesMessage h2 {
    font-size: 1.8rem;
  }

  .NoServicesMessage p {
    font-size: 1.1rem;
  }

  .InfoBlock {
    gap: 2rem;
    width: 70%;
    padding: 40px;
  }

  .InfoHead h2 {
    font-size: 1.8rem;
  }

  .InfoHead span {
    font-size: .9rem;
  }

  .InfoList li {
    font-size: 1rem;
  }

  .ServiceSelect {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ServiceSelect button {
    padding: 8px 16px;
    font-size: .9rem;
  }

  .ServiceCard .ServiceHead span {
    font-size: 32px;
  }

  .backgroundInfo {
    border-radius: 40px;
  }
}

@media (width <= 768px) {
  .ServiceCard {
    padding: 30px 20px;
  }

  .ServiceCard:hover {
    transform: translateY(-5px);
  }

  .NoServicesMessage {
    padding: 30px 10px;
  }

  .NoServicesMessage h2 {
    font-size: 1.5rem;
  }

  .NoServicesMessage p {
    font-size: 1rem;
  }

  .InfoBlock {
    gap: 1.5rem;
    width: 90%;
    padding: 30px;
  }

  .InfoHead h2 {
    font-size: 1.5rem;
  }

  .InfoHead span {
    font-size: .8rem;
  }

  .InfoList li {
    font-size: .9rem;
  }

  .InfoBlock button {
    padding: 10px 20px;
    font-size: .9rem;
  }

  .ServiceSelect {
    flex-direction: column;
    gap: 8px;
  }

  .ServiceSelect button {
    width: 100%;
    padding: 10px 12px;
    font-size: .85rem;
  }

  .ServiceCard .ServiceHead span {
    font-size: 28px;
  }

  .ServiceCard .ServiceStats img {
    width: 20px;
  }

  .ServiceCard .ServiceOffer button {
    padding: 8px 24px;
    font-size: 16px;
  }

  .backgroundInfo {
    border-radius: 30px;
    margin-bottom: 60px;
  }

  .Service {
    top: -150px;
  }

  .HomeBackground, .shell-right, .shell-left {
    display: none;
  }
}

@media (width <= 480px) {
  .ServiceCard {
    padding: 20px 15px;
  }

  .ServiceCard:hover {
    transform: translateY(-3px);
  }

  .NoServicesMessage {
    padding: 20px 10px;
  }

  .NoServicesMessage h2 {
    font-size: 1.3rem;
  }

  .NoServicesMessage p {
    font-size: .9rem;
  }

  .InfoBlock {
    gap: 1rem;
    width: 95%;
    padding: 20px;
  }

  .InfoHead h2 {
    font-size: 1.2rem;
  }

  .InfoHead span {
    font-size: .7rem;
  }

  .InfoList li {
    font-size: .8rem;
  }

  .InfoBlock button {
    padding: 8px 16px;
    font-size: .8rem;
  }

  .ServiceSelect {
    margin: 30px 0;
  }

  .ServiceSelect button {
    padding: 8px 10px;
    font-size: .8rem;
  }

  .ServiceCard .ServiceHead span {
    font-size: 24px;
  }

  .ServiceCard .ServiceStats img {
    width: 18px;
  }

  .ServiceCard .ServiceOffer button {
    border-radius: 16px;
    padding: 6px 16px;
    font-size: 14px;
  }

  .ServiceCard .ServiceOffer span {
    font-size: .9rem;
  }

  .backgroundInfo {
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .Service {
    top: -120px;
  }

  .ServiceCard .ServiceHead h1, .ServiceCard .ServiceStats span {
    font-size: .9rem;
  }
}

.WhyUs {
  gap: 40px;
  display: flex;
  position: relative;
}

.dialog-backdrop {
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: #0006;
  justify-content: center;
  align-items: center;
  animation: .2s ease-out fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.dialog-container {
  outline: 1px solid var(--color-gray);
  background: #000000b2;
  border-radius: 20px;
  padding: 40px;
  animation: .2s ease-out slideIn;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* [project]/src/components/utils/toast/toast.module.css [app-client] (css) */
.toast-module__phHR2W__toastContainer {
  z-index: 9999;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
}

.toast-module__phHR2W__toast {
  color: #fff;
  background-color: #111;
  border-radius: 8px;
  align-items: flex-start;
  padding: 16px;
  animation: .3s forwards toast-module__phHR2W__slideIn;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px #00000040;
}

.toast-module__phHR2W__toast.toast-module__phHR2W__exit {
  animation: .3s forwards toast-module__phHR2W__slideOut;
}

.toast-module__phHR2W__toast.toast-module__phHR2W__success {
  border-left: 4px solid #10b981;
}

.toast-module__phHR2W__toast.toast-module__phHR2W__error {
  border-left: 4px solid #ef4444;
}

.toast-module__phHR2W__toast.toast-module__phHR2W__info {
  border-left: 4px solid #3b82f6;
}

.toast-module__phHR2W__toast.toast-module__phHR2W__warning {
  border-left: 4px solid #f59e0b;
}

.toast-module__phHR2W__toastContent {
  flex: 1;
  margin-right: 12px;
}

.toast-module__phHR2W__toastTitle {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.toast-module__phHR2W__toastMessage {
  font-size: 14px;
  line-height: 1.5;
}

.toast-module__phHR2W__closeButton {
  cursor: pointer;
  color: #aaa;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  transition: background-color .2s;
  display: flex;
}

.toast-module__phHR2W__closeButton:hover {
  color: #fff;
  background-color: #ffffff1a;
}

.toast-module__phHR2W__progressBar {
  background-color: #fff3;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.toast-module__phHR2W__success .toast-module__phHR2W__progressBar {
  background-color: #10b981;
}

.toast-module__phHR2W__error .toast-module__phHR2W__progressBar {
  background-color: #ef4444;
}

.toast-module__phHR2W__info .toast-module__phHR2W__progressBar {
  background-color: #3b82f6;
}

.toast-module__phHR2W__warning .toast-module__phHR2W__progressBar {
  background-color: #f59e0b;
}

@keyframes toast-module__phHR2W__slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-module__phHR2W__slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (width <= 640px) {
  .toast-module__phHR2W__toastContainer {
    max-width: none;
    left: 10px;
    right: 10px;
  }
}


/*# sourceMappingURL=src_babad042._.css.map*/