body {
  background-color: var(--tg-theme-bg-color);
  color: var(--tg-theme-text-color);
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

#second_section,
#setting_section {
  display: none;
}

#title {
  text-align: center;
}

#count_container {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 20px;
  /* outline: thin solid red; */
}

.count_input {
  text-align: center;
  width: 90px;
  font-size: 20px;
  border-radius: 2px;
  border: none;
  outline: 2px solid black;
  color: var(--tg-theme-text-color);
  background-color: var(--tg-theme-bg-color);
  height: 50px;
}
.count_input:focus {
  outline: 2px solid #147c96;
}

.count_input_white {
  outline: 2px solid white;
}

.count_btn {
  cursor: pointer;
  height: 40px;
  width: 50px;
  border: none;
  border-radius: 2px;
  background-color: var(--tg-theme-bg-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

#minus_btn {
  outline: 2px solid #ec5c5c;
  background-image: url(./assets/minus.png);
}
#plus_btn {
  outline: 2px solid #5cec63;
  background-image: url(./assets/plus.png);
}

#save_btn_container {
  /* outline: thin solid red; */
  display: flex;
  column-gap: 20px;
  justify-content: center;
  align-items: center;
}

.memory_count_btn {
  font-family: "Space Mono", monospace;
  cursor: pointer;
  border: none;
  color: var(--tg-theme-text-color);
  background-color: var(--tg-theme-bg-color);
  transition: .5s
}

#delete_count_btn:hover {
  color: #ec5c5c;
}

#save_count_btn:hover {
  color: #5cec63;
}

.user_container {
  list-style-type: none;
  margin: 0 30px;
  padding: 0;
  display: flex;
  column-gap: 20px;
  /* outline: thin solid red; */
}

.user_item {
  /* outline: thin solid blue; */
  width: 25%;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

#version {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.platform_tdesktop {
  background-image: url(./assets/desktop.png);
}
.platform_android {
  background-image: url(./assets/android.png);
}
.platform_ios {
  background-image: url(./assets/apple.png);
}

.theme_light {
  background-image: url(./assets/sun.png);
}
.theme_dark {
  background-image: url(./assets/dark.png);
}

.premium_yes {
  background-image: url(./assets/yes.png);
}
.premium_no {
  background-image: url(./assets/no.png);
}

.user_desc {
  /* outline: thin solid #00ff15; */
  font-size: 10px;
  width: 25%;
  text-align: center;
}

.buttons_container {
  display: grid;
  grid-template-areas:
    "one one two"
    "thr thr two"
    "for for for"
    "six fiv fiv";
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(40px, auto);
  gap: 4px;
  margin: 30px 10px 0 10px;
}

#open_link_btn {
  grid-area: one;
}
#open_telegram_link_btn {
  grid-area: two;
}
#request_contact {
  grid-area: thr;
}
#show_alert {
  grid-area: for;
}
#confirm_age {
  grid-area: fiv;
}
#open_popup {
  grid-area: six;
}

.simple_btn {
  border: none;
  color: #3a3a3a;
  background-color: #dadddf;
}

.simple_btn_light {
  color: #e2e2e2;
  background-color: #585858;
}