 body {
        font-family: 'Inter', sans-serif;
    background-color: #0c0e1f;
    background-image: radial-gradient(ellipse at top, #001a91, #000529 70%);
    margin: 0;
    padding: 0; 
    background-position: center;
    background-size: 160%;
    transition: all 0.4s ease;
      user-select: none; /* Не разрешать выделение текста */
  -webkit-user-select: none; /* Для Chrome/Safari */
  -moz-user-select: none; /* Для Firefox */
  -ms-user-select: none; /* Для IE/Edge */
  -o-user-select: none; /* Для Opera */ 
} 

a {
    cursor: pointer;
}

* {
    font-family: "Nunito", sans-serif;
    letter-spacing: 0.9px;
}

.menu_app_glav {
    padding: 20px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: -webkit-fill-available;
    align-items: center;
    position: fixed;
    background-color: #0c0e1f;
    background-image: radial-gradient(ellipse at top, #001a91, #000529 70%);
    overflow-y: auto;
    justify-content: center;
}
.menu_app {
    padding: 20px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: -webkit-fill-available;
    align-items: center;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    position: fixed;
    background-color: #0c0e1f;
    background-image: radial-gradient(ellipse at top, #001a91, #000529 70%);
    overflow-y: auto;
    padding-top: 40px;
}

.title {
 display: flex;
    height: -webkit-fill-available;

    justify-content: center;
    align-items: center;
}

  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c0e1f ;
    background-image: radial-gradient(ellipse at top, #001a91, #000529 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* Анимация спиннера */
  .spinner {
    border: 5px solid #cccccc; /* Светлая рамка */
    border-top: 5px solid #4b74e9; /* Цвет спиннера */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-top: -120px;
    animation: spin 2s linear infinite;
    transition: all 0.2s ease;
  }

  .spinner-button {
border: 4px solid #cccccc;
    border-top: 4px solid #4b74e9;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s 
linear infinite;
    transition: all 0.2s 
ease;
  }

.title {
    position: relative;
    height: 140px;
    margin: 50px auto;
}

.title img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px; /* Размер логотипа */
  z-index: 2; /* Логотип поверх кругов */
}


.pulsing-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid #0043ff;
  opacity: 0;
  animation: pulse-animation 6s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  z-index: -1;
}

/* Расчёт задержек:
   Длительность анимации = 5с
   Количество кругов = 3
   Интервал между кругами = 5с / 3 ≈ 1.666с */

.pulsing-ring:nth-child(1) {
  animation-delay: 0s; /* Первый круг — сразу */
}

.pulsing-ring:nth-child(2) {
  animation-delay: 1.666s; /* Второй круг — через 1/3 цикла */
}

.pulsing-ring:nth-child(3) {
  animation-delay: 3.333s; /* Третий круг — через 2/3 цикла */
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}


  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.title samp {
    color: #e9f5ff;
    font-weight: 600;
    font-size: 35px;
    font-family: "Science Gothic", sans-serif;
}

.title h3 {
        margin: 0px;
        font-size: 35px;
    color: #00b7f0;
}

.balans {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px 2px #000000;
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    background-color: rgb(0 8 249 / 18%);
    backdrop-filter: blur(2px);
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    z-index: 2; /* Логотип поверх кругов */
}

.balans h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 25px;
    font-weight: 900;
}

.balans_tarif {
    color: #e7e7e7;
    margin: 0px;
    font-size: 14px;
    font-weight: 700;
    padding-top: 3px;
    padding-bottom: 3px;
}

.balans_days_true {
    color: #1eff00;
    margin: 0px;
    font-size: 12.5px;
    font-weight: 700;
}

.button_pay {
    margin-top: 15px;
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 900;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: space-between;
    height: 35px;
}

.button_pay:hover{
    transition: all 0.2s ease-in-out;
    background-color: rgba(29, 249, 0, 0.589);
    border: 1px solid rgb(0, 255, 8);
}

.button_pay::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

@keyframes shimmer {
100% {
    transform: translateX(250%) skewX(-20deg);
}
}

.button_pay h1 {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    /*/text-shadow: 0 0 4px rgb(0 0 0), 0 0 10px rgb(0 0 0);/*/
    font-size: 15px;
    font-weight: 900;
}

.divais_int {
    display: flex;
}

        .divais_int {
            display: flex;
            align-items: center;
            font-family: Arial, sans-serif;
        }

        .w-2 {
    width: 0.5rem;
}
.h-2 {
    height: 0.5rem;
}

.flex {
    display: flex;
}
.mr-2 {
    margin-right: 0.5rem;
}
.relative {
    position: relative;
}

.opacity-75 {
    opacity: 0.75;
}

.bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}

.rounded-full {
    border-radius: 9999px;
}

.animate-ping {
    animation: ping 1s 
cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
75%, 100% {
    transform: scale(2);
    opacity: 0;
}
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.rounded-full {
    border-radius: 9999px;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.inline-flex {
    display: inline-flex;
}

.relative {
    position: relative;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.inline-flex {
    display: inline-flex;
}

.absolute {
    position: absolute;
}

.divais_int p {
    color: #b8b8b8;
    margin: 0px;
    font-size: 13px;
    font-weight: 700;
    padding-top: 3px;
    padding-bottom: 3px;
}
.divais_int svg {
    padding-left: 5px;
}

.divais_int span {
    color: #f7f7f7;
}

.button_pay p {
    font-size: 13px;
    background-color: rgb(0 0 0 / 38%);
    border: solid 1px #2df63375;
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 5px;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    padding: 7px 13px;
    font-weight: 800;
    margin: 0px;
}

.button_pay > div > svg {
    color: #ffff;
    height: 28px;
    display: flex;
    align-items: center;
}

.button_pay > div {
    display: flex;
    align-items: center;
    gap: 10px
}


.button_divais_setting {
    margin-top: 15px;
    background-color: rgb(0 8 249 / 18%);
    border: 1px solid rgb(47 54 255);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 900;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: space-between;
    height: 35px;
}

.button_divais_setting:hover {
    transition: all 0.2s;
    background-color: rgba(0, 8, 249, 0.836);
    border: 1px solid rgb(0, 8, 255);
}

.button_divais_setting > div > svg {
    color: #ffff;
    height: 28px;
    display: flex;
    align-items: center;
}

.button_divais_setting > div {
    display: flex;
    align-items: center;
    gap: 10px
}

.button_divais_setting h1 {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    /*/text-shadow: 0 0 4px rgb(0 0 0), 0 0 10px rgb(0 0 0);/*/
    font-size: 15px;
    font-weight: 900;
}

.button_divais_setting p {
    font-size: 14px;
    border-radius: 5px;
    color: rgba(187, 200, 255, 0.644);
    padding: 7px 7px;
    font-weight: 900;
}


.profile_help {
    margin-top: 15px;
    display: flex;
    gap: 10px
}

.profile, .help {
    background-color: rgb(0 8 249 / 18%);
    backdrop-filter: blur(2px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 900;
    width: -webkit-fill-available;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
    height: 35px;
}

.profile:hover {
    transition: all 0.2s;
    background-color: rgba(0, 8, 249, 0.836);
    border: 1px solid rgb(0, 8, 255);
}

.help:hover {
    background-color: rgba(0, 8, 249, 0.836);
    border: 1px solid rgb(0, 8, 255);
}

.profile > div > svg, .help > div > svg {
    color: #ffff;
    height: 28px;
    display: flex;
    align-items: center;
}

.profile > div, .help > div {
    display: flex;
    align-items: center;
    gap: 10px
}
.animated-element {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}


.animated-element-2 {
    opacity: 0;
    animation: fade-in-up 0.4s ease-out forwards;
}

.animated-element-1 {
    opacity: 0;
    animation: fade-in-up-1 0.4s ease-out forwards;
}

@keyframes fade-in-up {
0% {
    opacity: 0;
    transform: translateY(30px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes fade-in-up-1 {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-out {
  animation: fade-out 0.4s ease-out forwards;
}

@keyframes fade-out-1 {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

.fade-out-1 {
  animation: fade-out-1 0.4s ease-out forwards;
}


.profile h1, .help h1 {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    /*/text-shadow: 0 0 4px rgb(0 0 0), 0 0 10px rgb(0 0 0);/*/
    font-size: 15px;
    font-weight: 900;
}

.profile p, .help p {
    font-size: 14px;
    border-radius: 5px;
    color: rgba(187, 200, 255, 0.644);
    padding: 7px 7px;
    font-weight: 900;
}


.divais {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 2px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.divais h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;

}

.divais p {
    color: #a4aaaf;
    margin: 0px;
    font-size: 12.5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.divais_button {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    padding-top: 10px;
    text-align: center;
    flex-direction: column;
}

.divais_button_list {
        background: radial-gradient(circle, #006b8d 20%, #01b4ec 110%);
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 20px 0px #000000;
    border-radius: 2px;
    display: flex;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1.5px;
    height: 45px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
            border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.divais_button_add {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 2px;
    padding: 0px 10px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    height: 45px;
    box-shadow: 0 0 20px 0px #000000;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

.glav_menu {
    display: flex;
    justify-content: space-between;
}

.exit {
    background: radial-gradient(circle, #006b8d 50%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 20px 0px #000000;
    border-radius: 10px;
    display: flex;
    width: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.44px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.divais_list {
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    padding: 0px 20px;
    display: flex;
    width: max-content;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center; 
}

.divais_add_info_android {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    padding: 20px;
    margin-top: 30px;
}

.divais_add_info_android p {
    margin: 0px;
    font-size: 14px;
    color: #e7e7e7;
}

.boweload_happ_android {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 20px 0px #000000;
    border-radius: 10px;
    margin: 7px 0px;
    display: flex;
    width: calc(100% - 4px);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    height: 45px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
 
.key_happ {
    color: #9c9c9c;
    background: rgb(43 43 43);
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 10px;
    margin: 5px 0px;
    font-size: 13px;
    margin-bottom: 20px;
    overflow: hidden;
}

.key_happ_copy {
    overflow: hidden;
    display: flex;
    margin-right: 2px;
    width: -webkit-fill-available;
    justify-content: center;
}
 
.divais_add_info_android img {
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    margin: 5px 0px;
}

.divaisList {
    position: fixed;
    width: 100%;
    background: #141414e8;
    height: 100%;
    top: 0px;
    left: 0px;
    justify-content: center;
    align-items: center;
}

.divais_all_delete {
    display: flex;
    flex-direction: column;
    margin-top: -200px;
}

.divais_all_delete_1 {
    margin: 0px 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    background: #101010f8;
    border-radius: 2px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.divais_all_delete_1 h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;

}

.divais_all_delete_2 {
    margin: 0px 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.divais_all_delete_2 a {
    display: flex;
    width: -webkit-fill-available;
    justify-content: center;
    height: 45px;
    align-items: center;
        flex-direction: row-reverse;
}

.divais_all_delete_1 p {
    color: #a4aaaf;
    margin: 0px;
    font-size: 12.5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.divais_all_delete_3 {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 2px;
    display: flex;
    font-size: 13px;

    font-weight: 600;
    box-shadow: 0 0 20px 0px #000000;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 10px;
}

.divais_all_delete_4 {
    background: #101010f8;
    border-radius: 2px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    display: flex;
    font-size: 13px;
    color: #cbcbcb;
    font-weight: 600;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 15px;
}









.info_data {
    display: flex;
    flex-direction: column;
    margin-top: -200px;
    width: -webkit-fill-available;
}

.info_data_1 {
    margin: 0px 20px;
    margin-bottom: 10px;
    display: flex;

    flex-direction: column;
    background: #101010f8;
    border-radius: 3px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.info_data_1 h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;

}

.info_data_2 {
    margin: 0px 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.info_data_2 a {
    display: flex;
    width: -webkit-fill-available;
    justify-content: center;
    height: 45px;
    align-items: center;
}

.info_data_1 p {
    color: #a4aaaf;
    margin: 0px;
    font-size: 12.5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.info_data_3 {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 3px;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 0 6px 0px #000000;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}










 

.divaisList_contener {
    display: flex;
    padding: 30px;
    background: #101010f8;
    border-radius: 15px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    flex-direction: column;
    gap: 20px;
}

.divaisList_contener a {
    color: #a4aaaf;
    background: #292929;
    height: 35px;
    width: 200px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 14px;
    overflow: hidden;
    justify-content: center;
}

.list_divais {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 3px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    gap: 10px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.list_divais h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 19px;
}
 
.divais_s {
 background: radial-gradient(circle, #2f2f2f 20%, #232323 100%);
    padding: 10px;
    border-radius: 5px;
    padding-bottom: 0px;
}

.divais_s h2 {
    color: #d4d4d4;
    margin: 0px;
    font-size: 17px;
    margin-bottom: 10px;
}

.divais_s p {
    color: #818181;
    margin: 0px;
    font-size: 11px;
    margin-bottom: 10px;
    margin-top: -10px;
}

.button_delite_all_divais {
 margin-bottom: 15px;
}

.button_delite_all_divais a {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 6px 0px #000000;
    border-radius: 3px;
    margin: 10px 0px;
    display: flex;
    width: calc(100% - 4px);
    font-size: 14px;
    font-weight: 600; 
    letter-spacing: 1.4px;
    height: 45px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    
}

.settings_profile {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    gap: 10px;
}

.settings_profile a {
    display: flex;
    width: -webkit-fill-available;
    justify-content: center;
    height: 50px;
    align-items: center; 
        justify-content: center;
    align-items: center;
    background: #101010d8;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
}

.pay_balans_title {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.pay_balans_title h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 17px;
}

.pay_balans_1 {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.pay_balans_1 h4 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;
}

.pay_balans_1 p {
    color: #818181;
    margin: 0px;
    font-size: 11px;
}

.profile_data {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.profile_id {
    color: #c3c3c3;
    background: rgb(43 43 43);
    height: 35px;
    display: flex;
    margin-left: auto;
    width: max-content;
    margin-right: auto;
    padding: 0px 10px;
    border-radius: 10px;
    font-size: 13px;
    overflow: hidden;
    align-items: center;
}

.profile_button {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    color: #ffffff;
    font-size: 14px;
    padding: 15px;
    align-items: center;
}

.button_add_profil a {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
        color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 10px;
    display: flex;
    font-size: 15px;

    font-weight: 700;
    letter-spacing: 1.44px;
    height: 45px;
    box-shadow: 0 0 20px 0px #000000;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.pravila_data {
        display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    margin-top: 40px;
    border: solid 2px #162c59;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.pravila_data h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 18px;
}

.pravila_data_1 {
    padding-top: 20px;
}

.pravila_data h4 {
    color: #dddddd;
    margin: 0px;
    font-size: 16px;
    padding-bottom: 5px;
}

.pravila_data p {
    color: #9e9e9e;
    margin: 0px;
    font-size: 14px;
    margin-bottom: 20px;
}

.payment_history {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.payment_history h4 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 18px;
}

.payment_history_1 {
    display: flex;
    background: #101010d8;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
}

.block2 {
    margin-top: 0px;
    max-width: 24rem;
    width: 100%;
    margin-bottom: 20px;

}

/* Спиннер */
.spinner-border {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #00c2ffe6;
  margin-right: 10px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.payment_history_1 h2 {
    margin: 0px;
    font-size: 17px;
}

.pay_true {
    color: #00ff45;
}

.pay_false {
    color: #eb0000;
}

.payment_history_1 h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 17px;
}

.payment_history_1 p {
    color: #818181;
    margin: 0px;
    font-size: 11px;
}

.referal {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 10px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.referal h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 17px;
}

.referal p {
    color: #9e9e9e;
    margin: 0px;
    font-size: 14px;

}

.referal_2 a {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
        color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 10px;
    display: flex;
    font-size: 15px;

    font-weight: 700;
    letter-spacing: 1.44px;
    height: 45px;
    box-shadow: 0 0 20px 0px #000000;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}



.pay_block_2 {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    max-width: 26rem;
    width: 100%;
    margin-bottom: 20px;
}

.pay_block_2 > h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 21px;
    padding-left: 3px;
    font-weight: 900;
}

.pay_block_2 > p {
    color: #adadad;
    margin: 0px;
    padding-left: 3px;
    font-size: 13px;
    margin-top: 2px;
    font-weight: 600;
}

.pay_block_2 > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
}

.pay_block_2 > div > div {
    background-color: #00000080;
    padding: 15px;
    border-radius: 9px;
    cursor: pointer;
    width: calc(50% - 39px);
    margin-bottom: 2px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.pay_block_2 > div > div > h1 {
    color: #dadada;
    margin: 0px;
    font-size: 24px;
    font-weight: 900;
}

.pay_block_2 > div > div > p {
    color: #82828d;
    margin: 0px;
    font-size: 11px;
    margin-top: 2px; 
    font-weight: 700;
}

.pay_block_2 > div > div > span {
    color: #e7e7e7;
    margin: 0px;
    font-size: 15px;
    margin-top: 10px;
    display: flex;
    margin-top: 10px;
    font-weight: 900;
}


.pay_block_3 {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    max-width: 26rem;
    width: 100%;
    margin-bottom: 230px;

}

.pay_block_3 > h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 21px;
    padding-left: 3px;
    font-weight: 900;
    margin-bottom: 10px;
}

.pay_block_3 > div {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.pay_block_3 > div > div {
    background-color: #00000080;
    padding: 15px;
    border-radius: 9px;
    cursor: pointer;
    display: flex;
    width: -webkit-fill-available;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px 2px #000000;
}


.pay_block_3_2_1 h1 {
    color: #dadada;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.pay_block_3_2_1 p {
    color: #9898a3;
    margin: 0px;
    font-size: 14px;
    margin-top: 2px; 
    font-weight: 700;
}

.pay_block_3_2_2 h1 {
    color: #dadada;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.pay_block_3_2_2  {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
}

.pay_block_3_2_2 p {
    color: #9898a3;
    margin: 0px;
    font-size: 14px;
    margin-top: 2px; 
    font-weight: 600;
}

.pay_block_3_1 {
    width: 23px;
    margin: auto;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    margin-right: 20px;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}


.pay_block_2_1 {
    width: 20px;
    position: fixed;
    top: 17px;
    right: 17px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pay_block_2_2 {
    width: 20px;
    position: fixed;
    top: 17px;
    right: 17px;
    background-color: #6888ee;
    height: 20px;
    color: #ffffff;
    border-radius: 50%;
    border: 1.5px solid #6888ee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 11px 1px #6888ee;
}

.pay_block_2_2 svg {
    height: 15px;
}


.pay_block_4 {
    display: flex;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: #080a17;
    flex-direction: column;
    backdrop-filter: blur(25px);
    left: 0px;
    -webkit-backdrop-filter: blur(25px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.pay_block_4_1 {
    display: flex;
    justify-content: space-between;
    padding: 15px;
        padding-bottom: 0px;

    
}

.pay_block_4_1_1 p {
    color: #9898a3;
    margin: 0px;
    font-size: 13px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_1 h3 {
    color: #dbdbdb;
    margin: 0px;
    font-size: 15px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_1 span {
     color: #7d7d88;
    margin: 0px;
    font-size: 12px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.pay_block_4_1_2 p {
    color: #9898a3;
    margin: 0px;
    font-size: 13px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_2 h3 {
    color: #dbdbdb;
    margin: 0px;
    font-size: 25px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4 a {
    /* margin-top: 15px; */
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 16px;
    padding: 12px 20px;
    font-weight: 900;
    margin: 15px;
    margin-bottom: 30px;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.pay_block_4 a:hover{
    transition: all 0.2s ease-in-out;
    background-color: rgba(29, 249, 0, 0.589);
    border: 1px solid rgb(0, 255, 8);
}

.pay_block_4 a::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

.divais_block_1 {
    display: flex;
}

.divais_block_1 h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.divais_block_2 {
    width: -webkit-fill-available;
    display: flex;
    max-width: 26rem;
    margin-top: 15px;
}

.divais_block_2 a {
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    width: 100%;
    padding: 12px 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 25px;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.divais_block_2 a:hover{
    transition: all 0.2s ease-in-out;
    background-color: rgba(29, 249, 0, 0.589);
    border: 1px solid rgb(0, 255, 8);
}

.divais_block_2 a::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

.divais_block_3 {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    max-width: 26rem;
    gap: 10px;
}

.divais_block_3 > div {
    display: flex;
    background-color: #00000080;
    padding: 15px;
    border-radius: 9px;
    width: -webkit-fill-available;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
flex-direction: column;
    flex-direction: row;
    justify-content: space-between;
}

.divais_block_3 > div > div > h3 {
    color: #f3f3f3;
    margin: 0px;
    font-weight: 900;
    font-size: 19px;
}

.divais_block_3 > div > div > p {
    color: #95a5b3;
    font-size: 13px;
    margin: 0px;
    padding-top: 5px;
    font-weight: 500;
}

.divais_block_4 {
    width: -webkit-fill-available;
    display: flex;
    max-width: 26rem;
}


.divais_block_3 > h4 {
    margin: 0pc;
    color: #e9f5ff;
    margin-top: 5px;
    padding-left: 3px;
}

.sms_uu {
    display: flex;
    position: absolute;
    z-index: 11;
    height: 100%;
    background-color: #000000d2;
    justify-content: center;
    align-items: center;
}

.sms_uu > div {
    margin-bottom: 140px;
}

.sms_uu_1 {
    display: flex;
    flex-direction: column;
        background: #121949;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin-top: -30px;
    
    border-radius: 9px;
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    z-index: 22;
    height: max-content;
    margin: 40px;
    margin-bottom: 0px;
}

button, a {
  -webkit-tap-highlight-color: transparent; /* отключает подсветку при касании на мобильных браузерах */
  outline: none; /* убирает контур при фокусе */
  -webkit-focus-ring-color: transparent; /* убирает рамку при фокусе в некоторых браузерах */
}

.sms_uu_1  h3 {
    margin: 0pc;
    color: #e9f5ff;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 900;
    padding-left: 3px;
}

.sms_uu_1  p {
    margin: 0pc;
    color: #a0b0bd;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 3px;
    margin-bottom: 5px;
}

.sms_uu_2 {
    display: flex;
    gap: 10px
}

.sms_uu_2_1  {
    background: linear-gradient(135deg, #8199f2, #4b74e9);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px -5px rgb(75 120 233 / 70%), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    width: -webkit-fill-available;
    padding: 12px 20px;
    font-weight: 700;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: 10px 40px;
    margin-right: 0pc;
}

.sms_uu_2_1::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

.sms_uu_2_2  {
    background: #121949;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    font-size: 15px;
    width: -webkit-fill-available;
    padding: 12px 20px;
    font-weight: 700;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: 10px 40px;
    margin-left: 0px;
}

.sms_no_chanal {
    display: flex;
    position: absolute;
    z-index: 1111;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    justify-content: center;
    align-items: center;
    padding: 20px;
        background-color: #000000d2;
}

.sms_no_chanal > div {
    display: flex;
    flex-direction: column;
    background-color: rgb(0 8 249 / 36%);
    backdrop-filter: blur(2px);
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    border-radius: 9px;
    padding: 20px;
    box-shadow: 0 0 5px 2px #000000;
}

.sms_no_chanal > div > h3 {
margin: 0pc;
    color: #e9f5ff;
    margin-top: 5px;
    font-size: 25px;
    font-weight: 900;
    padding-left: 3px;
}

.sms_no_chanal > div > p {
margin: 0pc;
    color: #a0b0bd;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 800;
    padding-left: 3px;
    margin-bottom: 5px;
}

.sms_no_chanal_1 {
    background-color: #095931;
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    padding: 17px;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 15px;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
}

.sms_no_chanal_1::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}


.sms_no_chanal_1 > svg, .sms_no_chanal_2 > svg{
    margin-right: 5px;
}

@keyframes shake {
  0% { transform: translateX(0); }
  10% { transform: translateX(-5px); }
  20% { transform: translateX(5px); } 
  30% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
  60% { transform: translateX(5px); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  90% { transform: translateX(0); }
  100% { transform: translateX(0); }
}
.sms_no_chanal_2 {
    display: flex;
    font-size: 15px;
    background-color: #00000080;
    padding: 17px;
        font-weight: 700;
    border-radius: 9px;
    width: -webkit-fill-available;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background-color: rgb(0, 2, 73);
    border: 1px solid rgb(0, 8, 250);
    backdrop-filter: blur(2px);
    /* flex-direction: column; */
    flex-direction: row;
    justify-content: center;
    color: #d2dce5;
    align-items: center;
    box-shadow: 0 0 5px 2px #000000;
}

.divais {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 2px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.divais h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;

}

.divais p {
    color: #a4aaaf;
    margin: 0px;
    font-size: 12.5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.divais_button {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    padding-top: 10px;
    text-align: center;
    flex-direction: column;
}

.divais_button_list {
        background: radial-gradient(circle, #006b8d 20%, #01b4ec 110%);
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 20px 0px #000000;
    border-radius: 2px;
    display: flex;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1.5px;
    height: 45px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
            border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.divais_button_add {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 2px;
    padding: 0px 10px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    height: 45px;
    box-shadow: 0 0 20px 0px #000000;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

.glav_menu {
    display: flex;
    justify-content: space-between;
}

.exit {
    background: radial-gradient(circle, #006b8d 50%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 20px 0px #000000;
    border-radius: 10px;
    display: flex;
    width: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.44px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.divais_list {
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    padding: 0px 20px;
    display: flex;
    width: max-content;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center; 
}

.divais_add_info_android {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    padding: 20px;
    margin-top: 30px;
}

.divais_add_info_android p {
    margin: 0px;
    font-size: 14px;
    color: #e7e7e7;
}

.boweload_happ_android {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 20px 0px #000000;
    border-radius: 10px;
    margin: 7px 0px;
    display: flex;
    width: calc(100% - 4px);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    height: 45px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
 
.key_happ {
    color: #9c9c9c;
    background: rgb(43 43 43);
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 10px;
    margin: 5px 0px;
    font-size: 13px;
    margin-bottom: 20px;
    overflow: hidden;
}

.key_happ_copy {
    overflow: hidden;
    display: flex;
    margin-right: 2px;
    width: -webkit-fill-available;
    justify-content: center;
}
 
.divais_add_info_android img {
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    margin: 5px 0px;
}

.divaisList {
    position: fixed;
    width: 100%;
    background: #141414e8;
    height: 100%;
    top: 0px;
    left: 0px;
    justify-content: center;
    align-items: center;
}

.divais_all_delete {
    display: flex;
    flex-direction: column;
    margin-top: -200px;
}

.divais_all_delete_1 {
    margin: 0px 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    background: #101010f8;
    border-radius: 2px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.divais_all_delete_1 h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;

}

.divais_all_delete_2 {
    margin: 0px 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.divais_all_delete_2 a {
    display: flex;
    width: -webkit-fill-available;
    justify-content: center;
    height: 45px;
    align-items: center;
        flex-direction: row-reverse;
}

.divais_all_delete_1 p {
    color: #a4aaaf;
    margin: 0px;
    font-size: 12.5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.divais_all_delete_3 {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 2px;
    display: flex;
    font-size: 13px;

    font-weight: 600;
    box-shadow: 0 0 20px 0px #000000;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 10px;
}

.divais_all_delete_4 {
    background: #101010f8;
    border-radius: 2px;
    border: solid 2px #162c59;
    box-shadow: 0 0 20px 0px #000000;
    display: flex;
    font-size: 13px;
    color: #cbcbcb;
    font-weight: 600;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 15px;
}









.info_data {
    display: flex;
    flex-direction: column;
    margin-top: -200px;
    width: -webkit-fill-available;
}

.info_data_1 {
    margin: 0px 20px;
    margin-bottom: 10px;
    display: flex;

    flex-direction: column;
    background: #101010f8;
    border-radius: 3px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.info_data_1 h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;

}

.info_data_2 {
    margin: 0px 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.info_data_2 a {
    display: flex;
    width: -webkit-fill-available;
    justify-content: center;
    height: 45px;
    align-items: center;
}

.info_data_1 p {
    color: #a4aaaf;
    margin: 0px;
    font-size: 12.5px;
    padding-top: 3px;
    padding-bottom: 2px;
}

.info_data_3 {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 3px;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 0 6px 0px #000000;
    letter-spacing: 1.44px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}










 

.divaisList_contener {
    display: flex;
    padding: 30px;
    background: #101010f8;
    border-radius: 15px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    flex-direction: column;
    gap: 20px;
}

.divaisList_contener a {
    color: #a4aaaf;
    background: #292929;
    height: 35px;
    width: 200px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 14px;
    overflow: hidden;
    justify-content: center;
}

.list_divais {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 3px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    margin-top: 30px;
    gap: 10px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.list_divais h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 19px;
}
 
.divais_s {
 background: radial-gradient(circle, #2f2f2f 20%, #232323 100%);
    padding: 10px;
    border-radius: 5px;
    padding-bottom: 0px;
}

.divais_s h2 {
    color: #d4d4d4;
    margin: 0px;
    font-size: 17px;
    margin-bottom: 10px;
}

.divais_s p {
    color: #818181;
    margin: 0px;
    font-size: 11px;
    margin-bottom: 10px;
    margin-top: -10px;
}

.button_delite_all_divais {
 margin-bottom: 15px;
}

.button_delite_all_divais a {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
    color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    box-shadow: 0 0 6px 0px #000000;
    border-radius: 3px;
    margin: 10px 0px;
    display: flex;
    width: calc(100% - 4px);
    font-size: 14px;
    font-weight: 600; 
    letter-spacing: 1.4px;
    height: 45px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    
}

.settings_profile {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    gap: 10px;
}

.settings_profile a {
    display: flex;
    width: -webkit-fill-available;
    justify-content: center;
    height: 50px;
    align-items: center; 
        justify-content: center;
    align-items: center;
    background: #101010d8;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
}

.pay_balans_title {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.pay_balans_title h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 17px;
}

.pay_balans_1 {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.pay_balans_1 h4 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;
}

.pay_balans_1 p {
    color: #818181;
    margin: 0px;
    font-size: 11px;
}

.profile_data {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.profile_id {
    color: #c3c3c3;
    background: rgb(43 43 43);
    height: 35px;
    display: flex;
    margin-left: auto;
    width: max-content;
    margin-right: auto;
    padding: 0px 10px;
    border-radius: 10px;
    font-size: 13px;
    overflow: hidden;
    align-items: center;
}

.profile_button {
    display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    border: solid 2px #162c59;
    color: #ffffff;
    font-size: 14px;
    padding: 15px;
    align-items: center;
}

.button_add_profil a {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
        color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 10px;
    display: flex;
    font-size: 15px;

    font-weight: 700;
    letter-spacing: 1.44px;
    height: 45px;
    box-shadow: 0 0 20px 0px #000000;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.pravila_data {
        display: flex;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    margin-top: 40px;
    border: solid 2px #162c59;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.pravila_data h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 18px;
}

.pravila_data_1 {
    padding-top: 20px;
}

.pravila_data h4 {
    color: #dddddd;
    margin: 0px;
    font-size: 16px;
    padding-bottom: 5px;
}

.pravila_data p {
    color: #9e9e9e;
    margin: 0px;
    font-size: 14px;
    margin-bottom: 20px;
}

.payment_history {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.payment_history h4 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 18px;
}

.payment_history_1 {
    display: flex;
    background: #101010d8;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: solid 2px #162c59;
    box-shadow: 0 0 6px 0px #000000;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
}

.block2 {
    margin-top: 0px;
    max-width: 24rem;
    width: 100%;
    margin-bottom: 20px;

}

/* Спиннер */
.spinner-border {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #00c2ffe6;
  margin-right: 10px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.payment_history_1 h2 {
    margin: 0px;
    font-size: 17px;
}

.pay_true {
    color: #00ff45;
}

.pay_false {
    color: #eb0000;
}

.payment_history_1 h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 17px;
}

.payment_history_1 p {
    color: #818181;
    margin: 0px;
    font-size: 11px;
}

.referal {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    background: #101010d8;
    border-radius: 10px;
    gap: 10px;
    padding: 15px;
    box-shadow: 0 0 20px 0px #000000;
}

.referal h3 {
    color: #ffffff;
    margin: 0px;
    font-size: 17px;
}

.referal p {
    color: #9e9e9e;
    margin: 0px;
    font-size: 14px;

}

.referal_2 a {
    background: radial-gradient(circle, #006b8d 20%, #01b4ec 100%);
        color: #ffffff;
    border: solid 1.5px #00c2ffe6;
    border-radius: 10px;
    display: flex;
    font-size: 15px;

    font-weight: 700;
    letter-spacing: 1.44px;
    height: 45px;
    box-shadow: 0 0 20px 0px #000000;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.pay_block_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pay_block_1 h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 25px;
    font-weight: 900;
}

.pay_block_1 p {
    color: #dadada;
    margin: 0px;
    padding: 7px 10px;
    padding-bottom: 10px;
    background-color: #1d1d1d93;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 5px 2px #000000;
    margin-top: 5px;
    border-color: rgba(255, 255, 255, 0.25);
}

.pay_block_2 {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    max-width: 26rem;
    width: 100%;
    margin-bottom: 20px;
}

.pay_block_2 > h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 21px;
    padding-left: 3px;
    font-weight: 900;
}

.pay_block_2 > p {
    color: #adadad;
    margin: 0px;
    padding-left: 3px;
    font-size: 13px;
    margin-top: 2px;
    font-weight: 600;
}

.pay_block_2 > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
}

.pay_block_2 > div > div {
    background-color: #00000080;
    padding: 15px;
    border-radius: 9px;
    cursor: pointer;
    width: calc(50% - 39px);
    margin-bottom: 2px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.pay_block_2 > div > div > h1 {
    color: #dadada;
    margin: 0px;
    font-size: 24px;
    font-weight: 900;
}

.pay_block_2 > div > div > p {
    color: #82828d;
    margin: 0px;
    font-size: 11px;
    margin-top: 2px; 
    font-weight: 700;
}

.pay_block_2 > div > div > span {
    color: #e7e7e7;
    margin: 0px;
    font-size: 15px;
    margin-top: 10px;
    display: flex;
    margin-top: 10px;
    font-weight: 900;
}


.pay_block_3 {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    max-width: 26rem;
    width: 100%;
    margin-bottom: 230px;

}

.pay_block_3 > h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 21px;
    padding-left: 3px;
    font-weight: 900;
    margin-bottom: 10px;
}

.pay_block_3 > div {
    display: flex;
    gap: 15px;
    flex-direction: column;
}


.pay_block_3_2 {
    display: flex;
    width: -webkit-fill-available;
    justify-content: space-between;
}

.pay_block_3_2_1 h1 {
    color: #dadada;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.pay_block_3_2_1 p {
    color: #9898a3;
    margin: 0px;
    font-size: 14px;
    margin-top: 2px; 
    font-weight: 700;
}

.pay_block_3_2_2 h1 {
    color: #dadada;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.pay_block_3_2_2  {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
}

.pay_block_3_2_2 p {
    color: #9898a3;
    margin: 0px;
    font-size: 14px;
    margin-top: 2px; 
    font-weight: 600;
}

.pay_block_3_1 {
    width: 23px;
    margin: auto;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    margin-right: 20px;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pay_block_3_1_2{
    width: 23px;
    margin: auto;
    height: 20px;
    background-color: rgb(27 249 0 / 33%);
    border: 1.5px solid rgb(47 255 53 / 97%);
    height: 20px;
    color: #ffffff;
    border-radius: 50%;

    display: flex;
    margin-right: 20px;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 0 5px 2px #000000;
}

.pay_block_3_1_2 svg {
    height: 15px;
}

.pay_block_2_1 {
    width: 20px;
    position: fixed;
    top: 17px;
    right: 17px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pay_block_2_2 {
    width: 20px;
    position: fixed;
    top: 17px;
    right: 17px;
    background-color: #6888ee;
    height: 20px;
    color: #ffffff;
    border-radius: 50%;
    border: 1.5px solid #6888ee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 11px 1px #6888ee;
}

.pay_block_2_2 svg {
    height: 15px;
}


.pay_block_4 {
    display: flex;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: #080a17;
    flex-direction: column;
    backdrop-filter: blur(25px);
    left: 0px;
    -webkit-backdrop-filter: blur(25px);
     box-shadow: 0 0 5px 2px #000000;
}

.pay_block_4_1 {
    display: flex;
    justify-content: space-between;
    padding: 15px;
        padding-bottom: 0px;

    
}

.pay_block_4_1_1 p {
    color: #9898a3;
    margin: 0px;
    font-size: 13px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_1 h3 {
    color: #dbdbdb;
    margin: 0px;
    font-size: 15px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_1 span {
     color: #7d7d88;
    margin: 0px;
    font-size: 12px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.pay_block_4_1_2 p {
    color: #9898a3;
    margin: 0px;
    font-size: 13px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4_1_2 h3 {
    color: #dbdbdb;
    margin: 0px;
    font-size: 25px;
    margin-top: 2px; 
    font-weight: 900;
}

.pay_block_4 a::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

.divais_block_1 {
    display: flex;
}

.divais_block_1 h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;
}

.divais_block_2 {
    width: -webkit-fill-available;
    display: flex;
    max-width: 26rem;
    margin-top: 15px;
}

.divais_block_2 a {
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    width: 100%;
    padding: 12px 20px;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 25px;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.divais_block_2 a::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

.divais_block_3 {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    max-width: 26rem;
    gap: 10px;
}

.divais_block_3 > div {
    display: flex;
    background-color: #00000080;
    padding: 15px;
    border-radius: 9px;
    width: -webkit-fill-available;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
flex-direction: column;
    flex-direction: row;
    justify-content: space-between;
}

.divais_block_3 > div > div > h3 {
    color: #f3f3f3;
    margin: 0px;
    font-weight: 800;
    font-size: 19px;
}

.divais_block_3 > div > div > p {
    color: #95a5b3;
    font-size: 13px;
    margin: 0px;
    padding-top: 5px;
    font-weight: 700;
}

.divais_block_4 {
    width: -webkit-fill-available;
    display: flex;
    max-width: 26rem;
}

.divais_block_4 > a {
    display: flex;
    height: 32px;
    width: -webkit-fill-available;
    background-color: rgba(249, 0, 0, 0.33);
    border: 1px solid rgba(255, 47, 47, 0.97);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;border-radius: 9px;
    font-size: 15px;
    width: 100%;
    padding: 12px 20px;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 25px;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s;
    align-items: center;
    justify-content: center;
}

.divais_block_4 > a:hover{
    transition: all 0.2s ease-in-out;
    background-color: rgba(249, 0, 0, 0.589);
    border: 1px solid rgb(255, 0, 0);
}

.divais_block_3 > h4 {
    margin: 0pc;
    color: #ffffff;
    margin-top: 5px;
    font-weight: 900;
    padding-left: 3px;
}

.sms_uu {
    display: flex;
    position: absolute;
    z-index: 11;
    height: 100%;
    background-color: #000000d2;
    justify-content: center;
    align-items: center;
}

.sms_uu > div {
    margin-bottom: 140px;
}

.sms_uu_1 {
    display: flex;
    flex-direction: column;
        background: #121949;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin-top: -30px;
    
    border-radius: 9px;
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    z-index: 22;
    height: max-content;
    margin: 40px;
    margin-bottom: 0px;
}

button, a {
  -webkit-tap-highlight-color: transparent; /* отключает подсветку при касании на мобильных браузерах */
  outline: none; /* убирает контур при фокусе */
  -webkit-focus-ring-color: transparent; /* убирает рамку при фокусе в некоторых браузерах */
}

.sms_uu_1  h3 {
    margin: 0pc;
    color: #e9f5ff;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 900;
    padding-left: 3px;
}

.sms_uu_1  p {
    margin: 0pc;
    color: #a0b0bd;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 3px;
    margin-bottom: 5px;
}

.sms_uu_2 {
    display: flex;
    gap: 10px
}

.sms_uu_2_1  {
    background: linear-gradient(135deg, #8199f2, #4b74e9);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px -5px rgb(75 120 233 / 70%), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    width: -webkit-fill-available;
    padding: 12px 20px;
    font-weight: 700;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: 10px 40px;
    margin-right: 0pc;
}

.sms_uu_2_1::before {
    content: '';
    position: absolute;
    top: 0;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 4s infinite;
    opacity: 0.8;
    transform: translateX(-100%) skewX(-20deg);
}

.sms_uu_2_2  {
    background: #121949;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    font-size: 15px;
    width: -webkit-fill-available;
    padding: 12px 20px;
    font-weight: 700;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    color: #feffff;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: 10px 40px;
    margin-left: 0px;
}

.divais_setting_add_block_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divais_setting_add_block_1 h3 {
    color: #f4faff;
    margin: 0px;
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: 900;
}

.divais_setting_add_block_1 p {
    color: #dadada;
    margin: 0px;
    padding: 7px 10px;
    padding-bottom: 10px;
    background-color: #1d1d1d93;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 5px 2px #000000;
    margin-top: 5px;
    border-color: rgba(255, 255, 255, 0.25);
}

.divais_setting_add_block_2 {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    width: -webkit-fill-available;
    padding-top: 25px;
    padding-left: 5px;
    min-height: fit-content;
    padding-bottom: 15px;

}

.divais_setting_add_block_2 > div {
    display: flex;
    background-color: #00000080;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 100px;
    max-width: 100px;
    min-height: 100px;
    min-width: 100px;
    cursor: pointer;
    padding: 15px;
    background-color: #080a17;
    flex-direction: column;
    border-radius: 9px;
    backdrop-filter: blur(25px);
    left: 0px;
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px 2px #000000;
}

/* Для WebKit-браузеров (Chrome, Edge, Safari) */
.divais_setting_add_block_2::-webkit-scrollbar {
  width: 10px; /* Ширина полосы прокрутки */
}

.divais_setting_add_block_2::-webkit-scrollbar-track {
  background-color: #3636369a; /* Основной цвет ползунка (с прозрачностью) */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px); /* Для Safari */
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  border-radius: 6px; /* Скругление углов ползунка */
  margin: 2px; /* Отступ от краёв (чтобы border не обрезался) */
}

.divais_setting_add_block_2::-webkit-scrollbar-thumb {
  background-color: #080a17; /* Основной цвет ползунка (с прозрачностью) */
  backdrop-filter: blur(25px);
  cursor: pointer;
  -webkit-backdrop-filter: blur(25px); /* Для Safari */
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  border-radius: 6px; /* Скругление углов ползунка */
  margin: 2px; /* Отступ от краёв (чтобы border не обрезался) */
}

.divais_setting_add_block_2 > div > svg {
    color: #ffffff;
    height: 45px;
    width: 45px;
    margin-bottom: 15px;
}

.divais_setting_add_block_2 > div > p {
    color: #e7e7e7;
    margin: 0px;
    font-size: 15px;
    display: flex;
    letter-spacing: 1.2px;
    font-weight: 900;
    text-align: center;
}


.divais_setting_add_block_3 {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 65px;
    background: linear-gradient(180deg, rgba(23, 32, 116, 0.6), rgba(13, 23, 59, 0.6));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    z-index: 2; /* Логотип поверх кругов */
    box-shadow: 0 0 5px 2px #000000;
}

.divais_setting_add_block_3_1_1 {
    display: flex;
    justify-content: space-between;

    padding: 15px;
    align-items: center;
    transition: all 0.5s;
    
    -webkit-backdrop-filter: blur(25px);

    background-color: rgb(0 8 249 / 18%);
    backdrop-filter: blur(2px);
    padding: 20px;
    border: 1px solid rgb(47 54 255);
    border-left: none;
    border-right: none;

}

.divais_setting_add_block_3_1_1 > svg {
    height: 23px;
    display: none;
}

.divais_setting_add_block_3_1_1 > div {
    display: flex;
    align-items: center;
}

.divais_setting_add_block_3_1_1 > div > h3 {
    color: #ffff;
    margin: 0px;
    font-size: 18px;
    font-weight: 900;
}

.divais_setting_add_block_3_1_1 > div > svg {
    height: 23px;
    background-color: #080a17; /* Основной цвет ползунка (с прозрачностью) */
    backdrop-filter: blur(25px);
    cursor: pointer;
    border-radius: 50%;
    padding: 5px;
    margin-right: 15px;
    background-color: #3636369a; /* Основной цвет ползунка (с прозрачностью) */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); /* Для Safari */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.divais_setting_add_block_3_1_2 {
    padding: 20px;
    border-bottom: 0.5px solid rgb(47 54 255);
}
.divais_setting_add_block_3_1_2 > p {
    color: #e6e6e6;
    margin: 0px;
    font-size: 14px;
    font-weight: 900;
}

.divais_setting_add_block_3_1_2_1 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 5px;
}

.divais_setting_add_block_3_1_2_1 > a {
    background-color: #3636369a;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); /* Для Safari */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    font-weight: 900;
    margin: 0px;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    height: 25px;
    color: #feffff;
    border-radius: 9px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px 2px #000000;
}

.divais_setting_add_block_3_1_2_2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 5px;
}

.divais_setting_add_block_3_1_2_2 > a {
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    padding: 12px 20px;
    font-weight: 900;
    margin: 0px; 
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    height: 25px;
    color: #feffff;
    border-radius: 9px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divais_setting_add_block_3_1_2_1 > a > svg {
    height: 20px;
    margin-top: -3px;
}


.profil_data {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    max-width: 24rem;
    width: -webkit-fill-available;
    margin-bottom: 20px;
    flex-direction: column;
    background-color: rgb(0 8 249 / 18%);
    backdrop-filter: blur(2px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    border: 1px solid rgb(47 54 255);

    border-radius: 9px;
    padding: 20px;
     box-shadow: 0 0 5px 2px #000000;
}

.profil_data_1 {
    display: flex;
    align-items: center;
}

.profil_data_1 img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    box-shadow: 0 0 5px 2px #000000;
}

.profil_data_1 h3 {
    color: #dee0e5;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.profil_data_2 {
    display: flex;
        justify-content: space-between;
    margin-top: 22px;

    align-items: center;
}

.profil_data_2 h1 {
    color: #f1f1f1;
    margin: 0px;
    font-size: 15px;
    margin: 0px;
    font-weight: 900;
    margin-right: 12px;
}

.profil_data_2 p {
    cursor: pointer;
    color: #dddddd;
    background-color: rgb(255 255 255 / 0.2);
    padding: 10px 15px;
    padding-right: 0px;
    border-radius: 10px;
    margin: 0px;
        align-items: center;
    display: flex;
    font-size: 14px;
    margin: 0px;
    font-weight: 900;
    flex-direction: row;
    box-shadow: 0 0 11px 0px #000000;
}

.profil_data_2 svg {
    height: 19px;
    margin-left: 10px;
    margin-right: 10px;
}

.profill_button_1 {
    margin-top: 15px;
       background-color: rgb(0 8 249 / 18%);
    backdrop-filter: blur(2px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    border: 1px solid rgb(47 54 255);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    font-size: 15px;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s 
ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: space-between;
    height: 35px;
    justify-content: flex-start;
     box-shadow: 0 0 5px 2px #000000;
}

.profill_button_1:hover {
    background-color: rgba(0, 8, 249, 0.836);
    border: 1px solid rgb(0, 8, 255);
}
.profill_button_1 svg{
    color: #ffff;
    height: 30px;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.profill_button {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    gap: 5px;
    max-width: 26.5rem;
    width: -webkit-fill-available;
}

.profill_button_1 p {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-size: 15px;
    font-weight: 900;
}



.pay_balans_list_1 {
    display: flex;
}

.pay_balans_list_1 h3{
    color: #e9f5ff;
    margin: 0px;
    font-weight: 900;
    font-size: 20px;
}

.pay_balans_list_2 {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    max-width: 26rem;
    gap: 15px;
    margin-top: 40px;
}

.pay_balans_list_2 > div {
display: flex;
    background-color: #00000080;
    padding: 15px;
    border-radius: 9px;
    width: -webkit-fill-available;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px 2px #000000;
    flex-direction: row;
    justify-content: space-between;
}

.pay_balans_list_2 > div > div{
    display: flex;
    flex-direction: column;
}


.pay_balans_list_2 > div > div > h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 19px;
    font-weight: 900;

}

.pay_balans_list_2 > div > h2 {
    color: #31ff00;
    font-size: 19px;
    display: flex;
    /* padding: 0px; */
    margin: 0px;
    align-items: center;
    font-weight: 900;
}

.pay_balans_list_2 > div > div > p {
    color: #95a5b3;
    font-size: 13px;
    margin: 0px;
    padding-top: 5px;
    font-weight: 700;
}


.referal_int {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    max-width: 24rem;
    width: -webkit-fill-available;
    margin-bottom: 15px;
    flex-direction: column;
    background-color: rgb(0 8 249 / 18%);
    backdrop-filter: blur(2px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 9px;
    border: 1px solid rgb(47 54 255);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    padding: 20px;
    margin-top: 10px;
}

.referal_int h3 {
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.referal_int p {
    color: #b8bfc7;
    margin: 0px;
    font-size: 17px;
    margin-top: 12px;
    font-weight: 900;
}


.referal_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.referal_1 h3{
    color: #e9f5ff;
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
}

.referal_1 p {
    color: #dadada;
    margin: 0px;
    padding: 7px 10px;
    padding-bottom: 10px;
    background-color: #1d1d1d93;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 5px 2px #000000;
    margin-top: 5px;
    border-color: rgba(255, 255, 255, 0.25);
}

.referal_button {
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 900;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    height: 35px;
    width: -webkit-fill-available;
    max-width: 24rem;
    justify-content: center;
}


.referal_button:hover, .referal_button_2:hover{
    transition: all 0.2s ease-in-out;
    background-color: rgba(29, 249, 0, 0.589);
    border: 1px solid rgb(0, 255, 8);
}

.referal_button p {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-size: 15px;
    font-weight: 900;
}

.referal_button svg {
    color: #ffff;
    height: 30px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.referal_button_2 {
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    display: flex;
    font-size: 15px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 1.44px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    height: 35px;
    width: -webkit-fill-available;
    max-width: 24rem;
    justify-content: center;
}

.referal_button_2 p {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-size: 15px;
    font-weight: 900;
}

.referal_button_2 svg {
    color: #ffff;
    height: 30px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}


.sms_bottom {
    position: absolute;
    bottom: 0;
    display: flex;
    margin-bottom: 70px;
    width: -webkit-fill-available;
    justify-content: center;
    color: #dfdfdf;
    opacity: 0;
    display: flex;
    z-index: -100;
    transition: opacity 0.2s ease;
  }
  .sms_bottom.show {
    opacity: 1;
    z-index: 111100;
  }

.sms_bottom p {
    background-color: rgb(27 249 0 / 33%);
    border: 1px solid rgb(47 255 53 / 97%);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px 2px #000000;
    border-radius: 9px;
    padding: 12px 30px;
    font-weight: 900;
    border-radius: 9px;
    font-size: 14px;
}

.sms_bottom.show {
    opacity: 1;
  }

  .divais_block_3 > div{
    box-shadow: 0 0 5px 2px #000000;
}

.yes_d {
    background: linear-gradient(rgb(27 249 0 / 33%));
}