@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #dddddd;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5f5f5f;
}

.hero-section {
  position: relative;
  background-color: #f08624;
  padding-bottom: 85px;
  min-height: 420px;
}

a {
  color: inherit;
  text-decoration: none;
}

.max-content {
  width: max-content;
}

.text-main {
  color: #f08624 !important;
}

.text-success {
  color: #20c684 !important;
}

.top-bar {
  padding: 15px 0;
}

.top-bar a,
.top-bar button {
  color: #fff;
  font-size: 17px;
  padding: 0 15px;
  font-weight: 500;
}

.top-bar .border-right a:not(:last-child) {
  border-right: 1px solid #fff;
  margin-right: 25px;
  padding-right: 20px;
}
.animation-success {
  font-size: 14px;
  width: 14px;
  height: 14px;
  padding: 2px;
  background-color: rgb(0, 211, 0);
  color: #fff;
  border-radius: 50%;
  animation: success 2.7s ease-in-out infinite;
}
@keyframes success {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(0.8);
    opacity: 0;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
}
#orderModal {
  --bs-modal-width: 570px;
}

#orderModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

#orderModal .modal-body {
  background: #fff;
}

#orderModal .modal-title {
  font-size: 24px;
  font-weight: 600;
  padding: 14px 0 10px 0;
  color: #f08624;
}

#orderModal .order-modal-favicon {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

#orderModal .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f08624;
  opacity: 1;
  font-size: 20px;
  background: none;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: none;
}

#orderModal .btn-success-inquiry {
  background-color: #f08624;
  padding: 5px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid #e07c1f;
  font-size: 17px;
}

#orderModal .input-group {
  background-color: #fff;
  border: 1px solid #f4c79d;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#orderModal .form-control {
  background-color: #fff;
  border: none;
  margin: 0;
  min-height: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #5b3a1f;
  padding-left: 12px;
}

#orderModal .input-group-text {
  font-size: 22px;
  color: #f08624;
  background-color: #fff8f2;
  border: none;
  border-right: 1px solid #f4c79d;
  min-width: 52px;
  justify-content: center;
}

#orderModal .form-control::placeholder {
  color: #9a8473;
  font-weight: 600;
}

#orderModal .form-control:focus {
  box-shadow: none;
}

#orderModal .input-group:focus-within {
  border-color: #f08624;
  box-shadow: 0 8px 18px rgba(240, 134, 36, 0.14);
  transform: translateY(-1px);
}

#orderModal .btn-success-inquiry:hover,
#orderModal .btn-success-inquiry:focus {
  background-color: #e67c13;
  border-color: #e67c13;
  color: #fff;
}

.menu-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 25px;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.menu-navbar .nav-item {
  padding: 25px 15px;
  font-weight: 600;
}

.menu-navbar .nav-link {
  font-size: 14px;
}

.menu-navbar .custom-dropdown-menu-container {
  padding-top: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 10;
}

#announcementPanel {
  display: none;
  position: absolute;
  top: 48px;
  right: 13px;
  width: 400px;
  max-height: 600px;
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

#announcementPanel .head {
  padding: 5px 10px;
  border-bottom: 1px solid #000;
}

#announcementPanel .head p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

#announcementPanel .head .small {
  font-size: 10px;
  font-weight: 500;
}

#announcementPanel ul {
  list-style: none;
  padding: 10px 10px 0 10px;
  margin: 0;
}

#announcementPanel li {
  background-color: #d9d9d994;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

#announcementPanel li .content .title {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#announcementPanel li .content .title i {
  font-size: 28px;
}

#announcementPanel li .content .description {
  font-size: 11px;
  font-weight: 500;
  color: #000000a8;
}

.btn-container {
  position: relative;
  display: inline-block;
}

.action-area {
  min-width: 0;
}

.user-btn-container {
  max-width: 200px;
  min-width: 0;
}

#userBtn.opacity-btn {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.user-icon {
  font-size: 17px !important;
  font-weight: 500 !important;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background-color: #f08624;
}

.user-info {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  min-width: 0;
  max-width: 140px;
  overflow: hidden;
}

.user-info p {
  margin: 0;
}

.user-name {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-balance {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 12px;
}

.dropdown-arrow {
  font-size: 20px !important;
  transition: transform 0.3s;
  color: #f08624;
}

.user-menu {
  display: none;
  position: absolute;
  top: 48px;
  right: 13px;
  width: 220px;
  max-height: 600px;
  overflow-y: auto;
  list-style: none;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.user-menu li {
  padding: 5px 15px;
  border-radius: 6px;
}

.user-menu li:hover {
  background-color: #e7e7e7;
}

.user-menu li:last-child:hover {
  background-color: #fff;
}

.user-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.user-menu li button {
  border: none;
}

.user-menu li a span,
.user-menu li button span {
  font-weight: 500;
  text-align: left;
  border: none;
}

.user-menu li a i,
.user-menu li button i {
  line-height: 1;
  font-size: 24px;
  font-weight: 500;
}

.rotated {
  transform: rotate(180deg);
}

.success-btn-balance {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  padding: 7px;
  width: 100%;
  border-radius: 10px;
  color: #22c55e;
  background-color: #bbf7d0;
}

.custom-dropdown-menu {
  position: relative;
}

.custom-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid white;
  z-index: 2;
}

.custom-dropdown-menu.corporate::before {
  right: 36%;
}

.custom-dropdown-menu.free::before {
  right: 49%;
}

.custom-dropdown-menu.services::before {
  right: 63%;
}

.custom-dropdown-menu.corporate .item {
  box-shadow: 0px 0px 10px 4px #1555c140;
}

.menu-navbar .nav-item .custom-dropdown-menu {
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  background: white;
}

.menu-navbar .nav-item .custom-dropdown-menu li {
  list-style: none;
}

.menu-navbar .nav-item .custom-dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.menu-navbar .nav-item .custom-dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

.menu-navbar .nav-item:hover .custom-dropdown-menu-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-menu .header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #fff;
  border-radius: 3px;
}

.custom-dropdown-menu .header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 35px;
  font-weight: 400;
  width: 50px;
  height: 50px;
  color: #fff;
  margin-bottom: 15px;
}

.custom-dropdown-menu .body .item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ebedf5;
  border-radius: 13px;
  transition: all 0.1s linear;
}
.custom-dropdown-menu .body .item:hover {
  transform: scale(1.01);
  background-color: #dce0ec;
}

.custom-dropdown-menu .body .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 28px;
  font-weight: 400;
  width: 47px;
  height: 47px;
  color: #fff;
  margin-right: 12px;
}

.custom-dropdown-menu .body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-dropdown-menu .body .item .content .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.custom-dropdown-menu .body .item .content .free-badge {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;
  color: #12a150;
  padding: 2px 20px;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-50%);
  background-color: #a2e9c1;
  border: 1px solid #ebedf5;
}

.login-btn {
  display: flex;
  align-self: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  background-color: #f08624;
  margin-right: 18px;
}

.login-btn i {
  font-size: 17px;
  font-weight: 500;
}

.login-btn:hover {
  color: #fff;
  background-color: #f08624;
}

.opacity-btn {
  display: flex;
  align-self: center;
  justify-content: center;
  color: #000;
  font-weight: 600;
  background-color: #ffffff52;
  margin-right: 13px;
}

.opacity-btn i {
  font-size: 17px;
  font-weight: 600;
}

.opacity-btn:hover {
  color: #000;
  font-weight: 600;
  background-color: #ffffff;
}

.cart-count {
  margin-left: 3px;
  font-size: 14px;
  display: inline-block;
  background-color: #f08624;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.accountment-count {
  position: absolute;
  top: -20%;
  font-size: 12px;
  background-color: #f08624;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.custom-dropdown-menu .platforms-grid-container {
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  padding: 15px 0;
}

.platforms-grid-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  padding:20px 15px 40px 15px;
}

.platforms-grid-container .grid-item {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(to bottom, #8f8f8f40 0%, #9797976e 50%, #afafaf 100%);
  display: flex;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.platforms-grid-container .grid-content {
  flex: 1;
  border-radius: 18px;
  background: radial-gradient(circle at top center, #ffffff 0%, #dbdee3 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.platforms-grid-container .grid-item {
  transition: all 0.3s;
  transform: translate(0px, 0px);
}
.platforms-grid-container .grid-item:hover {
  transform: translate(0px, -4px);
}

.platforms-grid-container .grid-item .icon {
  font-size: 35px;
  margin-bottom: 4px;
}

.platforms-grid-container .grid-item .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 16px;
  margin-top: 15px;
  margin-bottom: 4px;
  color: #2b3846;
}

.platforms-grid-container .grid-item .subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.corporate-bg {
  background: linear-gradient(to bottom, #f08624, #d97312);
}

.corporate-text {
  color: #f08624;
}

/* Keep all Company Menu item labels at the same size */
.custom-dropdown-menu.corporate .body .item .content .title,
.custom-dropdown-menu.menu .item .submenu .submenu-item {
  font-size: 15px;
  line-height: 1.4;
}

.instagram-bg {
  background: linear-gradient(to bottom, #ef0a6a, #b6359c);
}

.instagram-text {
  color: #bb3498;
}

.instagram-border-color {
  border-color: #bb3498 !important;
}

.tiktok-bg {
  background: linear-gradient(to bottom, #010101, #ff0050);
}

.tiktok-text {
  color: #000;
}

.tiktok-border-color {
  border-color: #000 !important;
}

.twitter-bg {
  background: linear-gradient(to bottom, #1da1f2, #0d8ddb);
}

.twitter-text {
  color: #28a5d8;
}

.twitter-border-color {
  border-color: #28a5d8 !important;
}

.facebook-bg {
  background: linear-gradient(to bottom, #1773ea, #004bad);
}

.facebook-text {
  color: #1773ea;
}

.facebook-border-color {
  border-color: #1773ea !important;
}

/* ✅ Discord */
.discord-bg {
  background: linear-gradient(to bottom, #f08624, #d97312);
}
.discord-text {
  color: #f08624;
}
.discord-border-color {
  border-color: #f08624 !important;
}

/* ✅ Snapchat */
.snapchat-bg {
  background: linear-gradient(to bottom, #f7c600, #ffd600);
}
.snapchat-text {
  color: #f7c600;
}
.snapchat-border-color {
  border-color: #f7c600 !important;
}

/* ✅ LinkedIn */
.linkedin-bg {
  background: linear-gradient(to bottom, #0077b5, #004182);
}
.linkedin-text {
  color: #0077b5;
}
.linkedin-border-color {
  border-color: #0077b5 !important;
}

/* ✅ Google */
.google-bg {
  background: linear-gradient(to bottom, #db4437, #f44251);
}
.google-text {
  color: #db4437;
}
.google-border-color {
  border-color: #db4437 !important;
}

/* ✅ Threads */
.threads-bg {
  background: linear-gradient(to bottom, #000000, #444444);
}
.threads-text {
  color: #000000;
}
.threads-border-color {
  border-color: #000000 !important;
}

/* ✅ YouTube */
.youtube-bg {
  background: linear-gradient(to bottom, #ff0000, #cc0000);
}
.youtube-text {
  color: #ff0000;
}
.youtube-border-color {
  border-color: #ff0000 !important;
}

/* ✅ Gmail */
.gmail-bg {
  background: linear-gradient(to bottom, #d93025, #b1271d);
}
.gmail-text {
  color: #d93025;
}
.gmail-border-color {
  border-color: #d93025 !important;
}

/* ✅ Spotify */
.spotify-bg {
  background: linear-gradient(to bottom, #1db954, #1aa34a);
}
.spotify-text {
  color: #1db954;
}
.spotify-border-color {
  border-color: #1db954 !important;
}

/* ✅ Telegram */
.telegram-bg {
  background: linear-gradient(to bottom, #0088cc, #006699);
}
.telegram-text {
  color: #0088cc;
}
.telegram-border-color {
  border-color: #0088cc !important;
}

/* ✅ Twitch */
.twitch-bg {
  background: linear-gradient(to bottom, #9146ff, #772ce8);
}
.twitch-text {
  color: #9146ff;
}
.twitch-border-color {
  border-color: #9146ff !important;
}

/* ✅ WhatsApp */
.whatsapp-bg {
  background: linear-gradient(to bottom, #25d366, #128c7e);
}
.whatsapp-text {
  color: #25d366;
}
.whatsapp-border-color {
  border-color: #25d366 !important;
}

/* ✅ SEO (mavi-yeşil geçiş gibi) */
.seo-bg {
  background: linear-gradient(to bottom, #00c9a7, #0052d4);
}
.seo-text {
  color: #00c9a7;
}
.seo-border-color {
  border-color: #00c9a7 !important;
}

/* ✅ Kick */
.kick-bg {
  background: linear-gradient(to bottom, #52e01f, #32a10d);
}
.kick-text {
  color: #52e01f;
}
.kick-border-color {
  border-color: #52e01f !important;
}
form label {
  font-size: 14px;
  font-weight: 600;
}

.input-group {
  border-radius: 25px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}

.textarea-input {
  align-items: start;
}

.input-group-text {
  font-size: 18px;
  padding-left: 15px;
  background-color: #fff;
  border-color: #fff;
  margin-right: 0px;
}

.form-control {
  padding: 10px;
  padding-left: 0px;
  background-color: #fff;
  border-color: #fff;
}

.form-control:focus {
  box-shadow: none;
  border-color: #fff;
}

.form-control::placeholder {
  color: #2f2c2c9e;
  font-size: 15px;
  font-weight: 600;
}

.form-control.iti__tel-input {
  overflow: hidden;
  width: 100%;
  border-radius: 25px;
  border: 1px solid #d9d9d9;
}

.iti--allow-dropdown {
  width: 100%;
}

.iti__selected-country-primary {
  background-color: transparent !important;
}

.success-badge {
  color: #20c684;
  background-color: #c9f1e1;
  border-radius: 9px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
}

.primary-badge {
  background-color: rgba(191, 219, 254, 1);
  color: rgba(0, 91, 196, 1) !important;
  border-radius: 9px;
}

.custom-dropdown-menu-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-menu.menu::before {
  right: 10%;
}

.nav-menu .custom-dropdown-menu {
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  background: white;
}

.custom-dropdown-menu.menu .item {
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  padding: 20px 10px;
}

.custom-dropdown-menu.menu .body {
  gap: 10px;
}

.custom-dropdown-menu.menu .item .title {
  margin-bottom: 0;
}

.custom-dropdown-menu.menu .submenu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.custom-dropdown-menu.menu .submenu-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
  font-size: 15px;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px;
}

.custom-dropdown-menu.menu .item .submenu .submenu-item i {
  font-size: 26px;
  font-weight: 400;
  margin-right: 10px;
}

.custom-dropdown-menu.menu .item.open .submenu {
  max-height: 300px;
  overflow-y: auto;
  padding: 0 5px;
}

.custom-dropdown-menu.menu .item .submenu-toggle i {
  transition: transform 0.3s;
  transform: rotate(0deg);
}

.custom-dropdown-menu.menu .item.open .submenu-toggle i {
  transform: rotate(180deg);
}

.notification-container {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 320px;
  z-index: 9999;
  transition: bottom 0.3s ease;
}

.notification {
  color: #fff;
  background: #f08624;
  border-radius: 15px;
  padding: 10px 15px;
  margin-top: 10px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.notification p {
  display: flex;
  align-items: center;
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 17px;
}

.notification i {
  font-size: 22px;
  margin-right: 10px;
}

.notification .description {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .custom-dropdown-menu .platforms-grid-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }

  .platforms-grid-container {
    gap: 40px;
  }
}

@media (max-width: 1199px) {
  .navbar-brand img {
    width: 130px;
  }

  .menu-navbar .nav-item {
    font-size: 14px;
    padding: 25px 5px;
  }
}

@media (max-width: 991px) {
  .action-group i.ri-search-line:before {
    margin-left: -3px;
  }
  .main-header {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .notification-container {
    bottom: 90px;
  }

  .platforms-grid-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .top-header .border-right {
    display: none;
  }

  .top-header .action-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu-navbar {
    padding: 20px 15px;
  }

  .cart-count {
    position: absolute;
    top: 13%;
    font-size: 13px;
    background-color: #f08624;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 767px) {
  .platforms-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .custom-dropdown-menu.menu::before {
    right: 12.5%;
  }
}

@media (max-width: 405px) {
  .platforms-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

#notificationOneModal {
  --bs-modal-width: 570px;
}

#notificationOneModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}

#notificationOneModal .modal-body {
  background: linear-gradient(270deg, #c96b0f 0%, #f08624 50%, #c96b0f 100%);
}

#notificationOneModal .modal-title {
  font-size: 20px;
  font-weight: 600;
  padding: 14px 0 10px 0;
  color: #fff;
}

#notificationOneModal .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 1;
  font-size: 20px;
  background: none;
  background-color: #f0862485;
  border-radius: 50%;
  box-shadow: none;
}

#notificationOneModal .modal-desc {
  text-align: center;
  font-size: 13px;
  color: #ffffffb2;
  padding: 0 40px;
}

#notificationOneModal .btn-success-show {
  color: #fff;
  background-color: #17c964;
  border-radius: 25px;
  padding: 3px 15px;
}

#notificationTwoModal {
  --bs-modal-width: 570px;
}

#notificationTwoModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}

#notificationTwoModal .modal-body {
  background-color: #f08624;
  padding: 10px 0;
}

#notificationTwoModal .modal-title {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  padding: 14px 0 10px 0;
  color: #fff;
}

#notificationTwoModal .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 1;
  font-size: 20px;
  margin-right: 10px;
  background: none;
  background-color: #f0862485;
  border-radius: 50%;
  box-shadow: none;
}

#notificationTwoModal .modal-desc {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 80px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  color: #fff;
  font-size: 17px;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 10s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
