@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/**************** Basic ****************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  line-height: normal;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.53);
  color: #000;
}

input, select, textarea, button {
  line-height: normal;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.53);
  color: #000;
}

a {
  text-decoration: none;
  color: #b7b6bb;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000;
}

.container {
  width: 100%;
  max-width: 1650px;
  padding: 0 10px;
  margin: 0 auto;
}

/***********************************/
/************* Header **************/
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #25282e;
  padding: 25px;
  z-index: 3;
}

.header-row {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.header-burger {
  width: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.header-burger span {
  width: 100%;
  height: 4px;
  background-color: #c0bfc3;
  border-radius: 6px;
}

.header-logo {
  font-weight: 700;
  font-size: 40px;
  line-height: 90%;
  color: #fff;
  text-decoration: none;
  margin-top: 5px;
}

.header-button {
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  border: 3px solid #656270;
  border-radius: 13px;
  padding: 15px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin-left: auto;
  background-color: #7364ef;
  transition: all 0.3s ease-in-out;
}

.header-button.active {
  background-color: #5348a3;
}

/**********************************/
/************** Main **************/
.main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #000;
  background-image: url('../img/main-bg.svg');
  z-index: 2;
}

.main:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #24222c;
  opacity: 0.53;
  z-index: 1;
}

.board {
  width: 100%;
  position: relative;
  z-index: 3;
}

.board-row {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 300px 0 60px;
}

.table {
  width: 938px;
  max-width: 1100px;
  position: relative;
  border-radius: 45px;
  background: #25282edd;
  border: 3px solid #6a727c;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.table-top {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.table-top__start {
  min-width: 165px;
  padding: 10px 25px;
  border: 3px solid #6a727c;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;

  font-weight: 500;
  font-size: 25px;
  color: #c0bfc3;
  background: rgba(72, 77, 84, 1);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.table-top__start.active {
  background-color: #22242b;
}

.table-top__start > img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

.table-top__start > span {
}

.table-top__clear {
  min-width: 165px;
  padding: 10px 25px;
  border: 3px solid #6a727c;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;

  font-weight: 500;
  font-size: 25px;
  color: #c0bfc3;
  background: rgba(72, 77, 84, 1);
  cursor: pointer;
  margin-left: auto;
  transition: all 0.2s ease-in-out;
}

.table-top__clear.active {
  background-color: #22242b;
}

.table-top__clear > img {
  width: 40px;
  height: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

.table-top__clear > span {

}

.table-top__drop {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.table-top__drop > img {
  width: 100%;
  height: 100%;
}

.table-content {
  width: 100%;
  max-height: 400px;
  border-radius: 20px;
  border: 3px solid #6a727c;
  margin-top: 30px;
  padding: 10px 5px;
}

.table-content__scrollbar {
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  position: relative;
}

.table-content-status {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  color: #b7b6bb;
  padding-bottom: 5px;
  border-bottom: 3px solid #6a727c 
}
.table-content-status > div {
  flex-shrink: 0;
  padding-left:50px;
  padding-right:50px;
}

.table-content__info {
  height: 2000px;
}

/*  */
.table-content__info-row {
  flex-direction: column;
  display: flex;
  align-items: center;
  padding-top: 5px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #b7b6bb;
  margin-bottom: 10px;
  border-bottom: 1px solid #6a727c;
}
.table-content__info-row:first-child {
  padding-top: 15px;
}
.table-content__info-row > .info-main {
  white-space: nowrap;
  margin-top: 10px;
  display: flex;
}
.table-content__info-row > .info-main > .info-left,
.table-content__info-row > .info-main > .info-right {
  flex: 1;
  margin: 0 10px;
}
.table-content__info-row > .info-main > .info-left > * {
  margin-top: 5px;
  margin-bottom: 5px;
}

/*******************************/
/************ Modals ***********/
.settings {
  width: 1130px;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: -100%;
  border-right: 3px solid #6a727c;
  transition: all 0.4s ease-in-out;
  background-image: url('../img/setting-bg.svg');
  background-color: #131217;
  z-index: 15;
}

.settings.active {
  left: 0;
}

.settings-top {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 25px 13px 25px;
  gap: 40px;
  background: #25282e;
}

.settings-top__close {
  width: 40px;
  position: absolute;
  left: 25px;
  top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.settings-top__close span {
  width: 100%;
  height: 4px;
  background-color: #c0bfc3;
  border-radius: 6px;
}

.setting-top__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  color: #fff;
  margin-top: 15px;
}

.settings-content {
  width: 100%;
  position: relative;
  display: flex;
  padding: 40px 65px;
  flex-direction: row-reverse;
  gap: 30px;
  justify-content: space-between;
}

.settings-block {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px 40px 20px 40px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
  gap: 82px;
}

.settings-block__item {
  max-width: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.settings-block__item > p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 10px;
}

.settings-block__item > label {
  width: 100%;
  position: relative;
}

.settings-block__item > label > input {
  text-align: center;
  font-size: x-large;
  width: 100%;
  border: 3px solid #6a727c;
  background-color: #484d54;
  border-radius: 10px;
  color: #b7b6bb;
  padding: 5px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

input:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

.settings-block__info {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.settings-block__info:hover ~ .settings-block__info-content {
  opacity: 1;
  z-index: 1;
}

.settings-block__info-content {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 170px;
  padding: 14px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.53);
  background: #484d54;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.settings-block__info-content:hover {
  opacity: 1;
  z-index: 1;
}

.settings-block__info-content > h5 {

  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.settings-block__info-content > p {

  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}

.settings-block__telegram {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
}

.settings-block__telegram > p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 10px;
}

.settings-block__telegram > label {
  width: 100%;
  max-width: 250px;
  position: relative;
}

.settings-block__telegram > label > input {
  text-align: center;
  width: 100%;
  border: 3px solid #6a727c;
  background-color: #484d54;
  border-radius: 10px;
  color: #b7b6bb;
  font-size: x-large;
  padding: 5px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.logs {
  flex-shrink: 0;
  width: 643px;
  min-width: 600;
  max-width: 850px;
  margin-left: 3%;
  position: relative;
  border-radius: 45px;
  padding: 15px;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  z-index: -10;
  transition: all 0.3s ease-in-out;
  background: #25282edd;
  border: 3px solid #6a727c;
}

.logs.active {
  opacity: 1;
  z-index: 10;
}

.logs-buttons {
  margin-left: 15px;
  width: 100%;
  display: flex;
  padding-top: 20px;
}

.logs__button__check {
  margin-left: 5%;
  width: 43px;
  height: 41px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.logs__button__trash {
  margin-left: 5%;
  width: 43px;
  height: 41px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.logs__button__upload {
  margin-left: 5%;
  width: 43px;
  height: 41px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.logs__button {
  width: 346px;
  height: 47px;
  margin-right: 5px;
  padding: 5px 10px;
  border: 3px solid #6a727c;
  border-radius: 13px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 21px;
  color: #c0bfc3;
  background: rgba(72, 77, 84, 0.84);
}

.logs__button::-moz-placeholder {
  color: #c0bfc3;
}

.logs__button::placeholder {
  color: #c0bfc3;
}

.logs__button > img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
  object-fit: cover;
}

.logs__button > span {
}

.logs-content {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  margin-top: 20px;
  padding: 5px 0 5px 18px;
}

.logs-content__scrollbar {
  width: 100%;
  max-height: 380px;
  overflow-y: auto;
  position: relative;
}

.logs-content__info {
  height: 3000px;
  padding-right: 10px;
}

/* Mine code */
.logs-content__info-titles {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-right: 20px;
}
.logs-content__info-titles > div {
  display: flex;
  align-items: center;
  gap: 25px;
}
.logs-content__info-titles > div .logs-content__items {
  width: 60px;
}

.logs-content__items {
  text-align: center;
  font-size: 18px;
  color: #fff;
  pointer-events: none;
}
.logs-content__items.flex-auto {
  flex: 1 1 auto;
  font-size: 25px;
}

.logs-content__info-row {
  padding-top: 10px;

  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #b7b6bb;

  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logs-content__info-row h4 {
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex: 1 1 auto;
  height: 65px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-self: center;
  justify-content: center;
  font-size: 16px;
  border: 3px solid #6a727c;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.logs-content__info-row h4.selected {
  background-color: #484d54;
}

.logs-content__info-row ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.logs-content__info-row ul li {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 40px;
}
.logs-content__info-row ul li input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  width: 100%;
  border: 3px solid #6a727c;
  background: #25282edd;
  border-radius: 10px;
  color: #b7b6bb;
  padding: 5px;
}

/* Mine code */
*::-webkit-scrollbar {
  width: 10px;
}

/* Handle */
*::-webkit-scrollbar-thumb {
  background: #929197;
  border-radius: 10px;
  height: 91px;
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
  background: #8a898c;
}

.key {
  max-width: 470px;
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  margin: auto;
  transition: all 0.3s ease-in-out;
  z-index: -10;
  opacity: 0;
}

.key.active {
  z-index: 10;
  opacity: 1;
}

.key-block {
  width: 100%;
  max-width: 470px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 25px;
  border: 3px solid #656270;
  background: rgba(53, 51, 64, 0.9);
}

.key-block > p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #b7b6bb;
  margin-bottom: 10px;
}

.key-block > label {
  width: 100%;
  max-width: 250px;
  position: relative;
}

.key-block > label > input {
  width: 100%;
  border: 3px solid #656270;
  background-color: #4b4856;
  border-radius: 10px;
  color: #b7b6bb;
  font-size: 16px;
  padding: 10px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.key-block__info {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.key-block__info:hover ~ .key-block__info-content {
  z-index: 1;
  opacity: 1;
  pointer-events: unset;
}

.key-block__info-content {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 170px;
  padding: 14px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.53);
  background: rgba(75, 72, 86, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.key-block__info-content:hover {
  opacity: 1;
  z-index: 1;
  pointer-events: unset;
}

.key-block__info-content > h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #b7b6bb;
  white-space: nowrap;
}

.key-block__info-content > p {
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #b7b6bb;
  margin-top: 5px;
}

.wrap-input {
  position: relative;
}
.wrap-input .icon {
  position: absolute;
  top: 55%;
  left: 10px;
  transform: translate(0, -50%);
  height: 35px;
}

.input {
  height: 40px;
  text-align: center;
  font-size: 16px;
  width: 100%;
  border-radius: 10px;
  color: #abadb0;
  padding: 5px;
  font-weight: 500;
  font-size: x-large;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: 3px solid #6a727c;
  background-color: #484d54;
}
.input::-moz-placeholder {
  color: #898690;
}
.input::placeholder {
  color: #abadb0;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
}

.sticker {
  width: 500px;
  height: 475px;
  padding: 17px 32px 39px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
}
.sticker__container {
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sticker__title {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
}
.sticker__logs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.sticker__logs_btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticker__logs_btn img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.sticker__logs_btn.btn-sticker-add {
  width: 35px;
}
.sticker__logs_btn.btn-sticker-remove {
  width: 28px;
}
.sticker__logs .wrap-input {
  flex: 1 1 auto;
}
.sticker__logs .wrap-input .input {
  font-size: 18px;
}

.sticker__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 260px;
  overflow-y: auto;
  gap: 15px;
  padding-right: 20px;
}
.sticker__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-right: 10px;
}
.sticker__item_content {
  border-radius: 10px;
  border: 3px solid #6a727c;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 16px;
  color: #b7b6bb;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  flex: 1 1 auto;
  text-align: center;
}
.sticker__item_content.selected {
  background-color: #484d54;
}
.sticker__item > ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticker__item > ul li {
  width: 60px;
  height: 40px;
  position: relative;
}
.settings-content__right {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.settings-content__left {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.proxy-list {
  width: 500px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
}
.proxy-list__container {
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.proxy-list__title {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
}
.proxy-list__logs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.proxy-list__logs_btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proxy-list__logs_btn img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.proxy-list__logs_btn.btn-proxy-add {
  width: 35px;
}
.proxy-list__logs_btn.btn-proxy-remove {
  width: 28px;
}
.proxy-list__logs .wrap-input {
  flex: 1 1 auto;
}
.proxy-list__logs .wrap-input .input {
  font-size: 18px;
}
.proxy-list__titles {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.proxy-list__titles h5,
.proxy-list__titles h6 {
  text-align: center;
  color: #fff;
  font-weight: 500;
}
.proxy-list__titles h5 {
  font-size: 25px;
}
.proxy-list__titles h6 {
  font-size: 20px;
}
.proxy-list__titles .flex-auto {
  flex: 1 1 auto;
}
.proxy-list__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 260px;
  overflow-y: auto;
  gap: 15px;
  padding-right: 20px;
}
.proxy-list__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-right: 10px;
}
.proxy-list__item_content {
  border-radius: 10px;
  border: 3px solid #6a727c;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 16px;
  color: #b7b6bb;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  flex: 1 1 auto;
  text-align: center;
}
.proxy-list__item_content.selected {
  background-color: #484d54;
}
.proxy-list__item > ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proxy-list__item > ul li {
  width: 60px;
  height: 40px;
  position: relative;
}

.settings-block1 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px 40px 20px 40px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
  gap: 82px;
}

.settings-block1__item {
  max-width: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.settings-block1__item > p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 10px;
}

.settings-block1__item > label {
  width: 100%;
  position: relative;
}

.settings-block1__item > label > input {
  text-align: center;
  font-size: x-large;
  width: 100%;
  border: 3px solid #6a727c;
  background-color: #484d54;
  border-radius: 10px;
  color: #b7b6bb;
  padding: 5px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.settings-block1__info {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.settings-block1__info:hover ~ .settings-block1__info-content {
  opacity: 1;
  z-index: 1;
}

.settings-block1__info-content {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 170px;
  padding: 14px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.53);
  background: #484d54;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.settings-block1__info-content:hover {
  opacity: 1;
  z-index: 1;
}

.settings-block1__info-content > h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.settings-block1__info-content > p {
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}

.settings-block__sticker-price {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
}

.settings-block__sticker-price > p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 10px;
}

.settings-block__sticker-price > label {
  width: 100%;
  max-width: 250px;
  position: relative;
}

.settings-block__sticker-price > label > input {
  text-align: center;
  width: 100%;
  border: 3px solid #6a727c;
  background-color: #484d54;
  border-radius: 10px;
  color: #b7b6bb;
  font-size: x-large;
  padding: 5px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.settings-block__sticker-price__info {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.settings-block__sticker-price__info:hover ~ .settings-block__sticker-price__info-content {
  opacity: 1;
  z-index: 1;
}

.settings-block__sticker-price__info-content {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 170px;
  padding: 14px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.53);
  background: #484d54;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.settings-block__sticker-price__info-content:hover {
  opacity: 1;
  z-index: 1;
}

.settings-block__sticker-price__info-content > h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.settings-block__sticker-price__info-content > p {
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}

.prices {
  display: flex;
  border: 3px solid #6a727c;
  font-weight: 500;
  font-size: 23px;
  line-height: 100%;
  color: #b7b6bb;
  border-radius: 10px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.price {
  padding: 11px 22px 5px 19px;
  cursor: pointer;
}
.price:nth-child(1) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.price:nth-child(3) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.price.active {
  background-color: #484d54;
}
.price:nth-child(2) {
  border-right: 3px solid #6a727c;
  border-left: 3px solid #6a727c;
}

.settings-block3 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px 40px 20px 40px;
  border-radius: 25px;
  border: 3px solid #6a727c;
  background: #25282edd;
  gap: 82px;
}

.settings-block3__item {
  max-width: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.settings-block3__item > p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 10px;
}

.settings-block3__item > label {
  width: 100%;
  position: relative;
}

.settings-block3__item > label > input {
  text-align: center;
  font-size: x-large;
  width: 100%;
  border: 3px solid #6a727c;
  background-color: #484d54;
  border-radius: 10px;
  color: #b7b6bb;
  padding: 5px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.settings-block3__info {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.settings-block3__info:hover ~ .settings-block3__info-content {
  opacity: 1;
  z-index: 1;
}

.settings-block3__info-content {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 170px;
  padding: 14px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.53);
  background: #484d54;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.settings-block3__info-content:hover {
  opacity: 1;
  z-index: 1;
}

.settings-block3__info-content > h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.settings-block3__info-content > p {
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}

.proxy-list__switcher {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.proxy-switch {
  display: flex;
  border: 3px solid #6a727c;
  font-weight: 500;
  font-size: 23px;
  line-height: 100%;
  color: #b7b6bb;
  border-radius: 10px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.proxy-switch__onoff {
  padding: 11px 22px 5px 19px;
  cursor: pointer;
}
.proxy-switch__onoff:nth-child(1) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.proxy-switch__onoff:nth-child(2) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.proxy-switch__onoff.active {
  background-color: #484d54;
}
.proxy-switch__onoff:nth-child(1) {
  border-right: 3px solid #6a727c;
}
