@import "../fonts/glcg/stylesheet.css";

* {
  padding: 0;
  margin: 0;

  /* Vars */
  --text-main: #f6f7f8;
  --text-regular: #7b7d95;
  --text-placeholder: #2c2e3f;
  --danger: #db5461;
  --warning: #ffbf81;
  --success: #2fbf71;
  --primary: #e476fb;
  --bg-color: #1a1b26;
  --bg-second: #272838;
  font-family: "Graphik LCG";
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-color);
  font-family: "Graphik LCG";
  color: var(--text-regular);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.no-scroll {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

button {
  cursor: pointer;
}

section.main .bg-row {
  height: 900px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

section.main {
  z-index: 2;
  flex-grow: 3;
}

.background-img {
  background: url("../img/background-img.png");
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

header {
  height: 114px;
  padding: 30px 0;
}

.links li {
  display: inline;
}

.links li:not(:last-child) {
  margin-right: 25px;
}

.links li a {
  color: var(--text-regular);
  font-size: 18px;
  text-decoration: none;
}

.links li a:hover {
  color: var(--text-main);
}

.links a.active {
  color: var(--text-main);
}

.page-title {
  font-size: 36px;
  color: var(--text-main);
  font-weight: bold;
  position: relative;
  z-index: 3;
}

.title {
  height: 36px;
}

.title .water-mark {
  color: #1e1f2c;
  font-weight: 900;
  font-size: 72px;
  position: relative;
  top: -70px;
  z-index: 2;
}

.tab {
  padding: 24px 0;
  color: #4b4c63;
  font-weight: 600;
  font-size: 16px;
  margin-right: 25px;
}

.tab.active {
  border-bottom: 3px solid #e476fb;
}

.tab a {
  color: #4b4c63;
  text-decoration: none;
}

.tab.active a {
  color: var(--text-main);
}

.btn {
  font-weight: 500;
  font-size: 16px;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
}

.fit-content {
  width: fit-content;
}

.btn i {
  margin-right: 15px;
}

.btn.btn-primary {
  background: linear-gradient(90deg, #e476fb 0%, #7343df 100%);
  color: #fff;
  border: none;
  transition: opacity 0.2s ease;
}

.btn.btn-primary:hover:not(:disabled) {
  box-shadow: 0px 0px 10px rgba(237, 151, 255, 0.6);
}

.btn.btn-primary:disabled {
  cursor: default;
  opacity: 0.5;
}

.good-card {
  border-radius: 7px;
  background: url("../img/good-bg.png");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 75px;
  cursor: pointer;
  margin-bottom: 20px;
}

.good-card:hover {
  filter: drop-shadow(0px 0px 30px rgba(237, 151, 255, 0.1));
}

.good-card.active {
  filter: drop-shadow(0px 0px 30px rgba(237, 151, 255, 0.1));
}

.good-card .icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px 0 0 7px;
  background: #272838c4;
}

.good-card .icon img {
  max-width: 45px;
  height: auto;
}

.good-card .good-price {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.good-card .good-price h4 {
  font-weight: bold;
  font-size: 16px;
  color: var(--text-main);
}

.good-card .good-price p {
  margin-top: 5px;
  color: var(--primary);
  font-weight: 600;
}

.card {
  background: var(--bg-second);
  border-radius: 7px;
}

.card-lg {
  border-radius: 15px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 30px 27px;
}

.card-header {
  display: flex;
  align-items: center;
}

.donate-description-img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.card-lg .header-title h2 {
  font-weight: bold;
  font-size: 24px;
  color: var(--text-main);
}

.card-lg .header-title.header-title-payments h2 {
  text-transform: uppercase;
  font-size: 20px;
}

.card-lg .header-title p {
  margin-top: 5px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
}

.subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.tip {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 25px;
}

section.donates {
  padding: 35px 0 75px 0;
  background: #1c1d28;
  position: relative;
}

section.donates::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1920/141;
  background-image: url(../img/transit.svg);
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-100%);
}

.card-title {
  font-weight: bold;
  color: var(--text-main);
  position: relative;
  z-index: 3;
}

.monitoring-title {
  height: 24px;
}

.monitoring-title .water-mark {
  color: #2b2c3d;
  font-weight: 900;
  font-size: 48px;
  position: relative;
  top: -47px;
  z-index: 2;
}

.modal .card-subtitle {
  margin-top: 18px;
  font-size: 18px;
}

.modal .card-subtitle b {
  color: #ed97ff;
}

.modal .card-payments {
  margin-top: 24px;
}

.modal .card-payments .card-payments-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.modal .card-payments .card-payments-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
  gap: 10px 10px;
}

.modal .card-payments .card-payments-wrapper .card-payments-item {
  width: 32%;
  height: 141px;
}

.modal
  .card-payments
  .card-payments-wrapper
  .card-payments-item:hover
  input[type="radio"]:not(:checked)
  + label {
  cursor: pointer;
  transform: translateY(-5px);
}

.modal .card-payments .card-payments-wrapper .card-payments-item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1f202c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 0;

  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.modal
  .card-payments
  .card-payments-wrapper
  .card-payments-item
  input[type="radio"] {
  display: none;
}

.modal
  .card-payments
  .card-payments-wrapper
  .card-payments-item
  input[type="radio"]:checked
  + label {
  background-color: #7343df;
}

.modal
  .card-payments
  .card-payments-wrapper
  .card-payments-item
  input[type="radio"]:checked
  + label
  span {
  color: #1a1b26;
}

.modal .card-payments .card-payments-wrapper .card-payments-item img {
  width: 70px;
  height: 70px;
}

.modal .card-payments .card-payments-wrapper .card-payments-item b {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  margin-top: 9px;
}

.modal .card-payments .card-payments-wrapper .card-payments-item span {
  color: #7b7d95;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  margin-top: 6px;
  text-align: center;

  transition: color 0.2s ease-in-out;
}

.monitoring-card .card-body {
  padding: 44px 27px;
}

.monitoring-card .card-footer {
  padding: 30px 0;
  margin: 0 27px;
  border-top: 2px solid #2f3041;
}

.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-copy {
  background: #323345;
  border-radius: 7px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  flex: none;
}

section.footer {
  background: #1a1b26;
  padding: 65px 0 65px 0;
}

a:link {
  color: var(--primary);
  text-decoration: none;
}

.stat i {
  background: linear-gradient(#e476fb, #7343df);
  opacity: 0.1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 120px;
  position: absolute;
  right: 0;
}

.stat {
  display: flex;
  align-items: center;
  padding: 13px 0;
}

.stat b {
  color: var(--primary);
  font-weight: 600;
  font-size: 36px;
}

.stat p {
  font-size: 18px;
  color: var(--text-regular);
  margin-top: 10px;
}

/* Color styles */
.text-main {
  color: var(--text-main) !important;
}

.text-second {
  color: var(--text-second) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-white {
  color: #fff !important;
}

.text-regular {
  color: var(--text-regular) !important;
}

.text-primary {
  color: #ed97ff !important;
}

.text-medium {
  font-weight: 600 !important;
}

.text-500 {
  font-weight: 500 !important;
}

.donater-card {
  display: flex;
  flex-direction: column;
}

.donater-card .card-body {
  padding: 25px 53px 30px 53px;
}

.donater-card img {
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.52));
}

.donater-card .card-footer {
  flex-grow: 3;
  border-radius: 0 0 7px 7px;
  background: #323345;
  padding: 15px;
  text-align: center;
}

.donater-card .card-footer h4.nickname {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-main);
  width: 166px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gradiented {
  overflow-x: auto;
  overflow-y: hidden;
}

.gradient {
  background: linear-gradient(
    90deg,
    rgba(28, 29, 40, 0) 0%,
    rgba(28, 29, 40, 0) 0.01%,
    rgba(28, 29, 40, 0.95) 77.6%,
    #1c1d28 99.59%
  );
  width: 10%;
  position: absolute;
  right: 0;
  height: 100%;
}

.mobile-btn {
  display: none;
}

#mobile-menu {
  background: var(--bg-second);
  padding: 30px;
  position: absolute;
  z-index: 1000;
  width: 100%;
  margin-left: -7px;
  margin-right: -7px;
  top: -240px;
  transition: ease-in 0.2s;
}

#mobile-menu.active {
  top: 0;
}

.mobile-links {
  list-style-type: none;
}

.mobile-links li {
  text-align: center;
}

.mobile-links li:not(:nth-last-child(1)) {
  margin-bottom: 30px;
}

.mobile-links li a {
  color: var(--text-regular);
  font-size: 18px;
  text-decoration: none;
}

.mobile-links li a:hover {
  color: var(--text-main);
}

.mobile-links a.active {
  color: var(--text-main);
}

#close-mobile {
  position: absolute;
  right: 7px;
  top: 20px;
}

.mobile-graph {
  display: none;
}

.modal-backdrop {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: visibility 0.3s ease-in;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-backdrop.fade-in {
  visibility: visible;
  animation: modal-back-fade-in 0.3s ease-in;
}

.modal-backdrop.fade-out {
  animation: modal-back-fade-out 0.3s ease-in;
}

.modal-backdrop.fade-in .modal-container {
  animation: modal-container-fade-in 0.3s ease-in;
}

.modal-backdrop.fade-out .modal-container {
  animation: modal-container-fade-out 0.3s ease-in;
}

.modal-container {
  display: flex;
  min-width: 600px;
  padding: 30px 25px;
  position: relative;
  height: fit-content;
}

.modal-container.fade-out {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  transform: translate(-50%, -50%);
  animation: modal-container-first-fade-out 0.3s ease-in !important;
}

.modal {
  width: 100%;
  z-index: 11000;
  max-width: 600px;
  background: #1a1b26;
  border-radius: 7px;
  padding: 30px 27px;
}

.modal .card-header {
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 2;
}

.input-group label {
  font-size: 14px;
  color: var(--text-placeholder);
  margin-bottom: 5px;
  display: inline-block;
}

.input {
  background: #1f202c;
  border-radius: 7px;
  width: 100%;
  border: none;
  color: var(--text-main);
  -webkit-appearance: none;
}

.input::placeholder {
  color: var(--text-placeholder);
}

.input {
  height: 55px;
  padding: 12px 21px;
  font-size: 16px;
}

.input-prepend {
  display: flex;
}

.input-prepend input {
  border-radius: 0 7px 7px 0;
  transition: opacity 0.2s ease;
}

.input-prepend input:disabled {
  opacity: 0.5;
}

.input-prepend select {
  border-radius: 0 7px 7px 0;
}

.input-prepend i {
  background: #21222d;
  height: 55px;
  width: 55px;
  font-size: 24px;
  border-radius: 7px 0 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-regular);
}

/* Other attributes */
.container {
  max-width: 1280px;
  padding: 0;
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

.htp-steps {
  background: url("../img/htp-bg.png");
  padding-bottom: 35px;
  background-position: center;
  background-size: cover;
}

.htp-step h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-main);
}

.htp-step .subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-regular);
}

.htp-step .tip {
  min-height: 75px;
}

.btn-primary-second {
  background: linear-gradient(90deg, #e476fb21 0%, #7343df24 100%);
  color: #e476fb !important;
}

.htp-img {
  position: absolute;
  right: 0;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 50px;
}

section.instruction {
  padding: 50px 0;
}

.step-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-regular);
  margin-bottom: 5px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 22px;
  min-height: 65px;
}

.step-card .card-body {
  padding: 20px 20px 25px 20px;
}

.step-card-img {
  width: 100%;
  height: auto;
  border-radius: 7px 7px 0 0;
}
/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #272838, 0%;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #35374a, 0%;
  border-radius: 7px;
}

.gradeinted::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.gradiented::-webkit-scrollbar-track {
  background: #272838, 0%;
}

/* Handle */
.gradiented::-webkit-scrollbar-thumb {
  background: #35374a, 0%;
  border-radius: 3px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.cursor-pointer {
  cursor: pointer;
}

.mr-0 {
  margin-right: 0;
}

.mr-15px {
  margin-right: 15px;
}

.mr-20px {
  margin-right: 20px;
}

.mr-30px {
  margin-right: 30px;
}

.mr-35px {
  margin-right: 35px;
}

.mr-10px {
  margin-right: 10px;
}

.mr-5px {
  margin-right: 5px;
}

.ml-5px {
  margin-left: 5px;
}

.mt-5px {
  margin-top: 5px;
}

.mt-15px {
  margin-top: 15px;
}

.mt-20px {
  margin-top: 20px;
}

.mt-25px {
  margin-top: 20px;
}

.mt-30px {
  margin-top: 29px;
}

.mt-60px {
  margin-top: 60px;
}

.mt-40px {
  margin-top: 20px;
}

.mt-10px {
  margin-top: 10px;
}

.mt-14px {
  margin-top: 14px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-6px {
  margin-bottom: 6px;
}

.bottom-30px {
  bottom: 30px;
  position: absolute;
}

.fs-18 {
  font-size: 18px !important;
  position: relative;
  top: -1.51px;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-36 {
  font-size: 36px !important;
  position: relative;
  top: -1.51px;
}

.fs-14 {
  font-size: 14px !important;
}

.pr-5px {
  padding-right: 5px !important;
}

.pr-20px {
  padding-right: 20px !important;
}

.pl-5px {
  padding-left: 5px !important;
}

.pl-20px {
  padding-left: 20px !important;
}

.pt-20px {
  padding-top: 20px;
}

.top {
  top: 155px;
  position: relative;
}

.b-none {
  border: none;
}

.p-0 {
  padding: 0;
}

.p-15px {
  padding: 15px !important;
}

.m-0 {
  margin: 0;
}

.t--15 {
  position: relative;
  top: -1.55px;
}

.overflow-y-h {
  overflow-y: hidden;
}

.width-fit {
  width: fit-content !important;
}

.flat {
  background: transparent;
  border: none;
}

.alert.alert-danger {
  background: #dc464633;
  color: #ff7777;
  border-radius: 7px;
  padding: 17px 25px;
  margin-top: 25px;
  margin-right: 10px;
}

/* Подвал */
footer {
  padding: 50px 0 25px;
}

.footer-top-data {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-info-data,
.footer-info-links {
  list-style: none;
}

.footer-info-data li {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.footer-info-data li span,
.footer-info-links li a:hover {
  color: #e476fb;
}

.footer-info-links {
  margin-left: -50px;
}

.footer-info-links li {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 14px;
}

.footer-info-links li a {
  color: var(--text-main);
  text-decoration: underline;
}

.footer-payments {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-payment-item {
  display: flex;
  width: 75px;
  height: 28px;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
  background: #272838;
}

.footer-copyright {
  margin-top: 25px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.top-cut {
  display: flex;
  flex-direction: column;
  gap: 25px;
  top: -20px;
}

.slider {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;

  border-radius: 15px;
  background: var(--bg-second);
  box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.15);
}

.slider-controls {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.slider-control {
  width: 30px;
  height: 5px;
  border-radius: 17px;
  background: var(--text-regular);
  box-shadow: 0px 4px 10px 0px rgba(39, 40, 56, 0.65);
  border: none;
}

.slider-control.active {
  background: var(--text-main);
}

.slider-timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #7b7d95;
  z-index: 2;
}

.slider-timeline-thumb {
  height: 100%;
  width: 100%;
  background-color: var(--text-main);
}

.slider-timeline-thumb.animation {
  animation: slider-thumb-grow 4s ease-in-out;
}

.slider-content {
  position: relative;
  padding: 30px 24px;
  display: none;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.slider-content.active {
  display: block;
  animation: slider-content-fade-out 0.5s ease-in;
  animation-delay: 3.5s;
}

.slider-content-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;

  animation: slider-content-bg-fade-in 1s ease-in-out;
}

.slider-content-bg-left {
  position: absolute;
  top: -44px;
  left: -90px;
}

.second .slider-content-bg-left {
  top: -115px;
  left: -75px;
}

.slider-content-bg-right {
  position: absolute;
  top: 10px;
  right: -20px;
}

.second .slider-content-bg-right {
  top: 60px;
  right: 0;
}

.slider-content-title,
.slider-content-subtitle {
  color: var(--text-main);
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.slider-content-data {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 3;
  animation: slider-content-data-fade-in 1s ease-in-out;
}

.slider-content-title span {
  color: #ed97ff;
}

.slider-content-subtitle {
  font-size: 24px;
}

.slider-content-image {
  position: absolute;
  bottom: -90px;
  right: 40px;
  z-index: 1;

  animation: slider-content-image-fade-in 1s ease-in-out;
}

.second .slider-content-image {
  bottom: -80px;
  right: 77px;
}

.slider-content-social {
  position: absolute;
  bottom: 46px;
  left: 24px;
  display: flex;
  gap: 10px;
  z-index: 2;

  animation: slider-social-fade-in 1s ease-in-out;
}

.p-11 {
  padding: 11px;
}

.notifications {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 40px;
  right: 20px;
  width: 100%;
  max-width: 360px;
  z-index: 1000;
}

.notification {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background-color: rgba(138, 42, 42, 0.7);
  color: #ff7777;
  padding: 17px 25px;
  border-radius: 7px;
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  overflow: hidden;

  animation: noti-fade-in 0.3s ease;
}

.notification.fade-out {
  position: relative;
  transform: translateX(150%);
  max-height: 0px;
  padding: 0 25px;
  margin-bottom: 0px;
  animation: noti-fade-out 0.4s ease;
}

.notification img {
  width: 40px;
}

.notification p {
  color: #fff;
  margin-top: 4px;
}

.notification button {
  position: absolute;
  background-color: transparent;
  border: 0;
  padding: 0;
  opacity: 0.5;
  top: 8px;
  right: 8px;
  font-size: 24px;
}

.notification button i {
  color: #fff !important;
}

.notification .time-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #7b7d95;
  z-index: 2;
}

.notification .time-line .time-line-thumb {
  height: 100%;
  width: 100%;
  background-color: var(--text-main);
  animation: noti-thumb-grow 6s ease-in-out;
}

@media (max-width: 480px) {
  .notifications {
    max-width: 100%;
    top: 0;
    right: 0;
  }

  .notification {
    border-radius: 0;
    margin-bottom: 0;
  }

  .notification.fade-out {
    animation: noti-fade-out-mobile 0.4s ease;
  }
}

@keyframes noti-thumb-grow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes noti-fade-out {
  from {
    transform: translateX(0);
    max-height: 500px;
    padding: 17px 25px;
    margin-bottom: 16px;
  }
  60% {
    transform: translateX(150%);
    max-height: 500px;
    padding: 17px 25px;
    margin-bottom: 16px;
  }
  to {
    transform: translateX(150%);
    max-height: 0px;
    padding: 0 25px;
    margin-bottom: 0;
  }
}

@keyframes noti-fade-out-mobile {
  from {
    transform: translateX(0);
    max-height: 500px;
    padding: 17px 25px;
  }
  60% {
    transform: translateX(150%);
    max-height: 500px;
    padding: 17px 25px;
  }
  to {
    transform: translateX(150%);
    max-height: 0px;
    padding: 0 25px;
  }
}

@keyframes noti-fade-in {
  from {
    transform: translateX(150%);
  }
  60% {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slider-content-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slider-content-bg-fade-in {
  from {
    transform: translateX(200%);
  }
  70% {
    transform: translateX(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slider-content-image-fade-in {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slider-content-data-fade-in {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slider-social-fade-in {
  from {
    transform: translateY(200px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slider-thumb-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes modal-container-fade-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-container-fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes modal-back-fade-in {
  from {
    background: transparent;
    backdrop-filter: blur(0px);
  }
  to {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
  }
}

@keyframes modal-back-fade-out {
  from {
    display: flex;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
  }
  to {
    display: flex;
    background: transparent;
    backdrop-filter: blur(0px);
  }
}

@keyframes modal-container-first-fade-out {
  from {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    visibility: visible;
    opacity: 0;
    transform: translate(-50%, -150%);
  }
}
