﻿@font-face {
  font-family: Montserrat-VariableFont_wght;
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Righteous-Regular;
  src: url("../fonts/Righteous-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: RubikMonoOne-Regular;
  src: url("../fonts/RubikMonoOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgb(46, 54, 46);
    box-shadow: 0 0 0 0 rgb(46, 54, 46);
  }
  70% {
    -moz-box-shadow: 0 0 0 5px rgb(46, 54, 46);
    box-shadow: 0 0 0 5px rgb(46, 54, 46);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgb(46, 54, 46);
    box-shadow: 0 0 0 0 rgb(46, 54, 46);
  }
}
nav.navbar {
  background: rgba(25, 30, 27, 0.5);
}
nav.navbar .container-fluid {
  justify-content: space-between;
  height: 64px;
}
nav.navbar .container-fluid .navbar-brand {
  margin-right: 0;
  width: 68px;
  height: 68px;
}
nav.navbar .container-fluid .navbar-brand img {
  width: 100%;
}
nav.navbar .container-fluid .balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-right: 25px;
  text-decoration: none;
  color: #50cd89;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
}
nav.navbar .container-fluid .balance.mobile {
  display: none;
}
@media (max-width: 991px) {
  nav.navbar .container-fluid .balance.mobile {
    display: flex !important;
  }
}
nav.navbar .container-fluid .balance .sum {
  border-radius: 8px;
  padding: 4px 7px;
  background: #1c3238;
}
@media (max-width: 991px) {
  nav.navbar .container-fluid .navbar-collapse {
    display: none !important;
  }
}
nav.navbar .container-fluid .navbar-collapse .navbar-nav {
  color: #FFFFFF;
  margin: 0 auto;
}
nav.navbar .container-fluid .navbar-collapse .navbar-nav .nav-item {
  margin-right: 40px;
}
nav.navbar .container-fluid .navbar-collapse .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
nav.navbar .container-fluid .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .dropdown-toggle::after {
  content: none;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .personal-area {
  font-size: 30px;
  color: #50cd89;
  background: #1c3238;
  border-radius: 100%;
  padding: 8px 15px;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .dropdown-menu {
  background: #171918;
  top: 75px;
  left: -160px;
  width: 230px;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .dropdown-menu li {
  margin-bottom: 5px;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .dropdown-menu li .dropdown-item {
  text-align: center;
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 19px;
  font-weight: 400;
  text-transform: none;
  padding: 7px 12px;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .dropdown-menu li .dropdown-item:hover {
  color: #50cd89;
  background: #1c3238;
}
nav.navbar .container-fluid .navbar-collapse .dropdown .dropdown-menu li .dropdown-item i {
  margin-right: 5px;
}
nav.navbar .container-fluid .navbar-collapse .sign-in {
  font-family: "Righteous-Regular";
  font-size: 19px;
  font-weight: 400;
  text-transform: none;
  color: #50cd89;
  background: #1c3238;
  border-radius: 10px;
  padding: 8px 15px;
  text-decoration: none;
}
nav.footer {
  display: none;
  position: fixed;
  left: 0;
  bottom: 15px;
  z-index: 10;
  width: 100%;
  height: 65px;
}
@media (max-width: 991px) {
  nav.footer {
    display: block !important;
  }
}
nav.footer .footer-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0 20px;
  background: rgba(25, 30, 27, 0.5);
  border-radius: 20px;
}
nav.footer .footer-nav .nav-item {
  font-size: 25px;
  display: block;
  height: 100%;
  width: 60px;
}
nav.footer .footer-nav .nav-item .nav-link {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
nav.sidebar-balance {
  background: #151521;
  position: fixed;
  right: -330px;
  top: 0;
  bottom: 0;
  z-index: 9999;
  width: 330px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
nav.sidebar-balance.active {
  right: 0;
}
nav.sidebar-balance .header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #CDCDDE;
  font-family: "Righteous-Regular";
  font-size: 38px;
  font-weight: 700;
  text-transform: none;
  border-bottom: 1px solid #2B2B40;
  padding: 25px;
  padding-left: 40px;
}
nav.sidebar-balance .header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 4px;
  border-radius: 0;
  height: 25px;
  background-color: #50cd89;
}
nav.sidebar-balance .header .close-sidebar {
  font-size: 20px;
  color: #CDCDDE;
  cursor: pointer;
}
nav.sidebar-balance .body form .sidebar-body-item {
  padding: 25px;
  padding-left: 40px;
  padding-bottom: 0;
}
nav.sidebar-balance .body form .sidebar-body-item.last-body-item {
  border-top: 1px solid #2B2B40;
}
nav.sidebar-balance .body form .sidebar-body-item.last-body-item .create-invoice {
  width: 100%;
  font-family: "Righteous-Regular";
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  background: #212E48;
  color: #009EF7;
  border: none;
  border-radius: 8px;
  padding: 15px 10px;
  transition: all 0.3s;
}
nav.sidebar-balance .body form .sidebar-body-item.last-body-item .create-invoice:hover {
  background: #009EF7;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 15px 10px;
}
nav.sidebar-balance .body form .sidebar-body-item .title {
  color: #CDCDDE;
  font-family: "Righteous-Regular";
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 15px;
}
nav.sidebar-balance .body form .sidebar-body-item .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
nav.sidebar-balance .body form .sidebar-body-item .form-group .ico {
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 4px 13px;
  background: #1e1e2d;
  font-size: 36px;
  color: #92929F;
}
nav.sidebar-balance .body form .sidebar-body-item .form-group input {
  width: 100%;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #92929F;
  padding: 19px 16px;
  background: #1e1e2d;
  border: 0;
  border-left: 2px solid #323248;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  outline: none;
}
nav.sidebar-balance .body form .sidebar-body-item .form-group input::placeholder {
  color: #565674;
}
nav.sidebar-balance .body form .sidebar-body-item .form-group input::-webkit-outer-spin-button, nav.sidebar-balance .body form .sidebar-body-item .form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency {
  margin: 0;
  padding: 0;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency .concurrency-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency .concurrency-item .ico {
  background: #392F28;
  border-radius: 8px;
  padding: 2px;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency .concurrency-item .ico img {
  width: 60px;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency .concurrency-item .text {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency .concurrency-item .form-check-input {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
nav.sidebar-balance .body form .sidebar-body-item .concurrency .concurrency-item .form-check-input:checked {
  background-color: #009EF7;
}

main .about-us {
  background: url("../images/about-us_bg.png") 0 0 repeat #1b1b2a;
  padding-top: 120px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  main .about-us .tagline {
    flex-direction: column !important;
    text-align: center !important;
    margin-bottom: 50px !important;
  }
  main .about-us .tagline .photo {
    display: none !important;
  }
  main .about-us .tagline .rows {
    justify-content: center;
  }
  main .about-us .widgets {
    gap: 40px !important;
  }
}
main .about-us .tagline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}
main .about-us .tagline .logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .about-us .tagline .logo .title {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}
main .about-us .tagline .logo .description {
  color: #50cd89;
  font-family: "Righteous-Regular";
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}
main .about-us .tagline .photo img {
  width: 100%;
  border-radius: 60px;
}
main .about-us .tagline .rows {
  display: flex;
}
main .about-us .tagline .rows .tariff-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Righteous-Regular";
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  background: #1c3238;
  color: #50cd89;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
}
main .about-us .tagline .rows .tariff-btn:hover {
  background: #50cd89;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
}
main .about-us .widgets {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 150px;
}
@media (max-width: 751px) {
  main .about-us .widgets {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 655px) {
  main .about-us .widgets {
    max-width: 50%;
    margin: auto;
    justify-content: flex-start !important;
    gap: 15px !important;
  }
}
@media (max-width: 475px) {
  main .about-us .widgets {
    max-width: 75% !important;
  }
}
@media (max-width: 333px) {
  main .about-us .widgets {
    max-width: 100% !important;
  }
}
main .about-us .widgets .widget-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
main .about-us .widgets .widget-item .ico {
  color: #FFFFFF;
  background: #35454f;
  padding: 12px 17px;
  border-radius: 50px;
  font-size: 21px;
}
main .about-us .widgets .widget-item .info .title {
  color: #50cd89;
  font-family: "Righteous-Regular";
  font-size: 23px;
  font-weight: 600;
  text-transform: none;
}
main .about-us .widgets .widget-item .info .description {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
main .location {
  padding-top: 100px !important;
}
main .location .counties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
@media (max-width: 925px) {
  main .location .counties {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 620px) {
  main .location .counties {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
main .location .counties .country-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: #389964;
  border-radius: 8px;
}
main .location .counties .country-item img {
  width: 60px;
}
main .location .counties .country-item .name {
  font-family: "Righteous-Regular";
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}
main .prices {
  padding-top: 50px !important;
}
main .prices .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
@media (max-width: 1025px) {
  main .prices .cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 690px) {
  main .prices .cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
main .prices .cards .card-item {
  border-radius: 10px;
  background: #1b1b23;
  transition: transform 0.3s ease;
}
main .prices .cards .card-item:hover {
  transform: translateY(-2.5%);
  transition: transform 0.3s ease;
}
main .prices .cards .card-item .header {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #2B2B40;
}
main .prices .cards .card-item .header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 4px;
  border-radius: 0;
  height: 25px;
  background-color: #50cd89;
}
main .prices .cards .card-item .header .title {
  color: #FFFFFF;
  text-align: center;
  font-family: "Righteous-Regular";
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}
main .prices .cards .card-item .header .price {
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translate(0, -50%);
  color: #FFFFFF;
  background: #50cd89;
  padding: 5px 10px;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-top-left-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
main .prices .cards .card-item .body .body-item {
  padding: 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #2B2B40;
}
@media (max-width: 345px) {
  main .prices .cards .card-item .body .body-item .info .name {
    font-size: 15px !important;
  }
  main .prices .cards .card-item .body .body-item .info .total {
    width: 64px !important;
    font-size: 14px !important;
  }
}
main .prices .cards .card-item .body .body-item .ico {
  color: #CDCDDE;
  background: #272735;
  padding: 10px 14px;
  border-radius: 10px;
  margin-right: 15px;
}
main .prices .cards .card-item .body .body-item .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
main .prices .cards .card-item .body .body-item .info .name {
  flex-grow: 1;
  color: #CDCDDE;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
main .prices .cards .card-item .body .body-item .info .name a {
  margin-left: 6px;
  color: #CDCDDE;
}
main .prices .cards .card-item .body .body-item .info .total {
  color: #ffc700;
  background: #392f28;
  padding: 10px;
  border-radius: 8px;
  width: 75px;
  text-align: center;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
main .prices .cards .card-item .footer {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .prices .cards .card-item .footer .buy-server {
  text-decoration: none;
  font-family: "Righteous-Regular";
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
  background: #212e48;
  color: #009ef7;
  border: none;
  border-radius: 6px;
  padding: 15px 35px;
  transition: all 0.2s;
}
main .prices .cards .card-item .footer .buy-server:hover {
  background: #009ef7;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 15px 35px;
}
main .support {
  padding-top: 50px !important;
}
main .support .support-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 715px) {
  main .support .support-inner img {
    display: none !important;
  }
  main .support .support-inner .contact-block {
    width: 100% !important;
  }
}
@media (max-width: 375px) {
  main .support .support-inner .contact-block .title {
    font-size: 26px !important;
  }
  main .support .support-inner .contact-block .description {
    font-size: 16px !important;
  }
}
main .support .support-inner img {
  width: 30%;
  border-radius: 50%;
}
main .support .support-inner .contact-block {
  width: 50%;
  background: #1b1b23;
  padding: 36px;
  text-align: center;
  border-radius: 8px;
}
main .support .support-inner .contact-block .title {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 36px;
  font-weight: 600;
  text-transform: none;
}
main .support .support-inner .contact-block .description {
  margin-bottom: 25px;
  color: #50cd89;
  font-family: "Righteous-Regular";
  font-size: 26px;
  font-weight: 600;
  text-transform: none;
}
main .support .support-inner .contact-block .telegram {
  text-decoration: none;
  font-family: "Righteous-Regular";
  font-size: 26px;
  font-weight: 600;
  text-transform: none;
  background: #36ABDD;
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  padding: 12px 17px;
}
main .faq {
  margin-bottom: 110px !important;
  padding-top: 50px !important;
}
main .faq .faq-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  main .faq .faq-inner {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
main .faq .faq-inner .faq-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 3px dashed #bd9919;
  background: #392F28;
  border-radius: 8px;
  padding: 24px;
}
main .faq .faq-inner .faq-item .ico {
  position: relative;
  color: #ffdc61;
  background: #755D1C;
  padding: 11px 16px;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 22px;
}
main .faq .faq-inner .faq-item .info {
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
main .faq .faq-inner .faq-item .info .question {
  color: #FFFFFF;
  font-size: 18px;
}
main .faq .faq-inner .faq-item .info .answer {
  color: #92929F;
}

main.account {
  width: 650px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: #151521;
  border-radius: 8px;
}
@media (max-width: 700px) {
  main.account {
    width: 500px !important;
  }
}
@media (max-width: 520px) {
  main.account {
    width: 375px !important;
  }
}
@media (max-width: 400px) {
  main.account {
    width: 305px !important;
    padding: 0 !important;
  }
  main.account .title {
    font-size: 20px;
  }
  main.account .text {
    padding: 20px;
  }
}
main.account .title {
  text-align: center;
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 26px;
  font-weight: 600;
  text-transform: none;
  padding: 15px;
  margin-bottom: 10px;
}
main.account .rools {
  font-family: "Righteous-Regular";
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  border: 3px dashed #bd9919;
  color: #bd9919;
  background: #392F28;
  border-radius: 8px;
  padding: 24px;
  margin: 20px;
  margin-top: 0 !important;
}
main.account form .form-group {
  padding: 0 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
main.account form .form-group .ico {
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 4px 13px;
  background: #1e1e2d;
  font-size: 36px;
  color: #92929F;
}
main.account form .form-group input {
  width: 100%;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #92929F;
  padding: 19px 16px;
  background: #1e1e2d;
  border: 0;
  border-left: 2px solid #323248;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  outline: none;
}
main.account form .form-group input::placeholder {
  color: #565674;
}
main.account form .form-group .btn-submit {
  width: 100%;
  font-family: "Righteous-Regular";
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  background: #212e48;
  color: #009ef7;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  transition: all 0.3s;
}
main.account form .form-group .btn-submit:hover {
  background: #009ef7;
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
}
main.account .text {
  padding: 25px 20px;
  text-align: center;
  color: #565674;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
main.account .text a {
  margin-left: 5px;
  color: #009ef7;
  text-decoration: none;
}
main.profile {
  padding-top: 120px !important;
}
main.profile .user-info {
  color: #FFFFFF;
  text-align: center;
  font-family: "Righteous-Regular";
  font-size: 30px;
  font-weight: 600;
  text-transform: none;
}
main.profile .btns-block {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  gap: 10px;
}
main.profile .btns-block .btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  background: #FFFFFF;
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  padding: 10px 25px;
}
main.profile .btns-block .btn-back {
  background: #d50c2d;
}
main.profile .btns-block .btn-admin {
  background: #0c67d5;
}
main.profile .btns-block .btn-change-password {
  background: rgba(56, 153, 100, 0.7411764706);
}
main.profile .history .history-item {
  margin-bottom: 20px;
  overflow-x: auto;
}
@media (max-width: 535px) {
  main.profile .history .history-item .title {
    font-size: 26px !important;
  }
}
main.profile .history .history-item .title {
  text-align: center;
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 38px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 15px;
}
main.profile .history .history-item .table {
  text-align: center;
  vertical-align: middle;
}
main.profile .history .history-item .table tr {
  border-bottom: 1px solid #2B2B40 !important;
}
main.profile .history .history-item .table tr th,
main.profile .history .history-item .table tr td {
  background: #1b1b23;
}
main.profile .history .history-item .table tr th {
  color: #389964;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
}
main.profile .history .history-item .table tr td {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
main.profile .history .history-item .table tr td .gold-style {
  display: inline-flex;
  margin: auto;
  color: #ffc700;
  background: #392f28;
  padding: 5px;
  border-radius: 4px;
}
main.profile .history .history-item .table tr td .blue-style {
  display: inline-flex;
  margin: auto;
  color: #009ef7;
  background: #212e48;
  padding: 5px;
  border-radius: 4px;
}
main.profile .history .history-item .table tr td.status .status-result {
  margin: auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
main.profile .history .history-item .table tr td.status .status-result.good {
  background: #1c3238;
}
main.profile .history .history-item .table tr td.status .status-result.good .dot {
  background: #00ff74;
}
main.profile .history .history-item .table tr td.status .status-result.bad {
  background: #3a2434;
}
main.profile .history .history-item .table tr td.status .status-result.bad .dot {
  background: #f1416c;
}
main.profile .history .history-item .table tr td.status .status-result .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
main.profile .history .history-item .table tr td img {
  width: 60px;
}
main.profile .statistics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-bottom: 80px !important;
}
@media (max-width: 535px) {
  main.profile .statistics .header {
    font-size: 26px !important;
  }
}
@media (max-width: 530px) {
  main.profile .statistics .statistics-inner {
    width: 100%;
    flex-direction: column !important;
    gap: 20px !important;
  }
  main.profile .statistics .statistics-inner .statistic-item {
    width: 100% !important;
  }
}
main.profile .statistics .header {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 38px;
  font-weight: 600;
  text-transform: none;
}
main.profile .statistics .statistics-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
main.profile .statistics .statistics-inner .statistic-item {
  display: flex;
  flex-direction: column;
  background: #1b1b23;
  padding: 20px;
  border-radius: 8px;
}
main.profile .statistics .statistics-inner .statistic-item .info {
  display: flex;
  align-items: center;
  gap: 15px;
}
main.profile .statistics .statistics-inner .statistic-item .info .pre-header {
  color: #389964;
  font-family: "Righteous-Regular";
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
}
main.profile .statistics .statistics-inner .statistic-item .info .responce {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}

.server {
  padding-top: 110px !important;
}
.server .header {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 38px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 35px;
}
.server .hc-create-server {
  padding-right: 350px;
}
@media (max-width: 1124px) {
  .server .hc-create-server {
    padding-right: 0 !important;
  }
  .server .hc-create-server .create-server-item .body.last-body {
    padding-bottom: 200px !important;
  }
  .server .hc-create-server .result {
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
  }
  .server .hc-create-server .result .stages {
    display: none !important;
  }
}
.server .hc-create-server .create-server-item {
  margin-bottom: 15px;
}
.server .hc-create-server .create-server-item .header {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-bottom: 15px;
}
.server .hc-create-server .create-server-item .header .ico {
  background: #d50c2d;
  border-radius: 100%;
  padding: 0px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.server .hc-create-server .create-server-item .header .title {
  font-size: 23px;
}
.server .hc-create-server .create-server-item .body {
  border-left: 2px dashed #d50c2d;
  padding-left: 45px;
  padding-bottom: 60px;
  margin-left: 15px;
}
.server .hc-create-server .create-server-item .body.last-body {
  border-left: 2px dashed transparent;
}
@media (max-width: 991px) {
  .server .hc-create-server .create-server-item .body.last-body {
    padding-bottom: 300px !important;
  }
}
.server .hc-create-server .create-server-item .body .description {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 25px;
}
.server .hc-create-server .create-server-item .body .list-location {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 744px) {
  .server .hc-create-server .create-server-item .body .list-location {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 485px) {
  .server .hc-create-server .create-server-item .body .list-location {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.server .hc-create-server .create-server-item .body .list-location .location-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #262626;
  padding: 15px;
  border-radius: 9px;
  border: 1px solid #3d3d3d;
  cursor: pointer;
  transition: all 0.3s;
}
.server .hc-create-server .create-server-item .body .list-location .location-item:hover {
  border: 1px solid #595959;
  background: #303030;
}
.server .hc-create-server .create-server-item .body .list-location .location-item.active {
  border: 1px solid #D50C2D;
  background: #303030;
}
.server .hc-create-server .create-server-item .body .list-location .location-item.active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: 22px;
  height: 22px;
  background: #D50C2D;
  border-radius: 50%;
  z-index: 3;
}
.server .hc-create-server .create-server-item .body .list-location .location-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  display: inline-block;
  transform: rotate(45deg);
  height: 8px;
  width: 5px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  z-index: 4;
}
.server .hc-create-server .create-server-item .body .list-location .location-item .flag {
  opacity: 0.8;
}
.server .hc-create-server .create-server-item .body .list-location .location-item .flag img {
  width: 55px;
}
.server .hc-create-server .create-server-item .body .list-location .location-item .info {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.server .hc-create-server .create-server-item .body .list-location .location-item .info .location-description {
  font-size: 14px;
}
.server .hc-create-server .create-server-item .body .os-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 650px) {
  .server .hc-create-server .create-server-item .body .os-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 460px) {
  .server .hc-create-server .create-server-item .body .os-list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.server .hc-create-server .create-server-item .body .os-list .os-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #262626;
  padding: 15px;
  border-radius: 9px;
  border: 1px solid #3d3d3d;
  cursor: pointer;
  transition: all 0.3s;
}
.server .hc-create-server .create-server-item .body .os-list .os-item:hover {
  border: 1px solid #595959;
  background: #303030;
}
.server .hc-create-server .create-server-item .body .os-list .os-item:hover .bottom .form-select {
  background-color: #303030;
}
.server .hc-create-server .create-server-item .body .os-list .os-item.active {
  border: 1px solid #D50C2D;
  background: #303030;
}
.server .hc-create-server .create-server-item .body .os-list .os-item.active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: 22px;
  height: 22px;
  background: #D50C2D;
  border-radius: 50%;
  z-index: 3;
}
.server .hc-create-server .create-server-item .body .os-list .os-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  display: inline-block;
  transform: rotate(45deg);
  height: 8px;
  width: 5px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  z-index: 4;
}
.server .hc-create-server .create-server-item .body .os-list .os-item.active .bottom .form-select {
  background: #303030;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .top {
  height: 75px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #3d3d3d;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .top .os-logo img {
  width: 50px;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .top .title {
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .bottom {
  padding-top: 15px;
  width: 100%;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .bottom .form-select {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #262626;
  border: 1px solid #3d3d3d;
  box-shadow: none;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .bottom .form-select option {
  height: 20px;
}
.server .hc-create-server .create-server-item .body .os-list .os-item .bottom .form-select option:hover {
  background-color: #3D3D3D;
}
@media (max-width: 780px) {
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header {
    display: none !important;
  }
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #8a8a8a;
  border-radius: 12px;
  padding: 0 15px;
  margin-bottom: 20px;
}
@media (max-width: 780px) {
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header .mobile,
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-body .mobile {
    display: none !important;
  }
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header .active,
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-body .active {
    max-width: 20% !important;
  }
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header .name,
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-body .name {
    max-width: 30% !important;
  }
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header .price,
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-body .price {
    max-width: 50% !important;
  }
}
@media (max-width: 488px) {
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header .name,
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-body .name {
    max-width: 50% !important;
  }
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-header .price,
  .server .hc-create-server .create-server-item .body .list-available-server .available-server-body .price {
    max-width: 30% !important;
  }
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .active,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .active {
  max-width: 3%;
  flex-grow: 0.1;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .name,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .name {
  max-width: 13%;
  flex-grow: 1;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .vcpus,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .ram,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .ssd,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .traffic,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-header .price,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .vcpus,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .ram,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .ssd,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .traffic,
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .price {
  max-width: 16%;
  flex-grow: 0.5;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body {
  color: #FFFFFF;
  background: #262626;
  border: 2px solid #3d3d3d;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body:hover {
  border: 2px solid #595959;
  background: #303030;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body.active {
  border: 2px solid #D50C2D;
  background: #303030;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body.active .active .form-check-input {
  border: 1px solid #d50c2d;
  background: #622e34;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .active .form-check-input {
  border: 1px solid #595959;
  background-color: #262626;
  box-shadow: none;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .vcpus span {
  color: #FFFFFF;
  background: #595959;
  margin-left: 5px;
  padding: 4px;
  border-radius: 8px;
  text-transform: none;
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .price {
  color: hsl(350deg, 87%, 53%);
}
.server .hc-create-server .create-server-item .body .list-available-server .available-server-body .price span {
  font-size: 12px;
  text-transform: none;
}
.server .hc-create-server .create-server-item .body .server-name {
  max-width: 450px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: hsl(0deg, 0%, 15%);
  border: 1px solid hsl(0deg, 0%, 35%);
}
.server .hc-create-server .create-server-item .body .server-name:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.server .hc-create-server .create-server-item .body .server-name:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.server .hc-create-server .create-server-item .body .server-name .number {
  color: #FFFFFF;
  background: #d50c2d;
  padding: 4px 12px;
  border-radius: 100%;
}
.server .hc-create-server .create-server-item .body .server-name .main-input-group {
  position: relative;
  width: 100%;
}
.server .hc-create-server .create-server-item .body .server-name .main-input-group .title {
  color: #8a8a8a;
  position: absolute;
  top: 2px;
  left: 11px;
  font-family: "Righteous-Regular";
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.server .hc-create-server .create-server-item .body .server-name .main-input-group .title span {
  color: #d50c2d;
}
.server .hc-create-server .create-server-item .body .server-name .main-input-group input {
  width: 100%;
  padding: 10px;
  padding-top: 20px !important;
  border-radius: 8px;
  color: hsl(0deg, 0%, 93%);
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  background: #212121;
  border: 2px solid #595959;
  outline: none;
}
.server .hc-create-server .create-server-item .body .server-name .main-input-group input:focus {
  border: 2px solid #d50c2d;
}
.server .hc-create-server .result {
  background: #262626;
  position: fixed;
  top: 90px;
  right: 0;
  z-index: 5;
  width: 350px;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-radius: 7px;
}
@media (max-width: 991px) {
  .server .hc-create-server .result {
    padding-bottom: 90px !important;
  }
}
.server .hc-create-server .result .stages {
  margin-bottom: 20px;
}
.server .hc-create-server .result .stages .stages-inner {
  list-style: none;
  margin: 0;
  padding: 0;
}
.server .hc-create-server .result .stages .stages-inner .stages-item {
  padding: 5px 25px;
  cursor: pointer;
}
.server .hc-create-server .result .stages .stages-inner .stages-item:hover {
  background: #303030;
}
.server .hc-create-server .result .stages .stages-inner .stages-item .stages-link {
  text-decoration: none;
  color: #EDEDED;
  font-family: "Righteous-Regular";
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
.server .hc-create-server .result .stages .stages-inner .stages-item .stages-link .ico {
  background: #d50c2d;
  border-radius: 100%;
  padding: 1px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.server .hc-create-server .result .stages .stages-inner .stages-item .stages-link .info .title {
  font-size: 21px;
}
.server .hc-create-server .result .finite .amount-control {
  color: #FFFFFF;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 25px;
  border-top: 1px solid #595959;
  border-bottom: 1px solid #595959;
}
.server .hc-create-server .result .finite .amount-control .action {
  padding: 5px 14px;
  background: #595959;
  font-weight: 900;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.server .hc-create-server .result .finite .amount-control .action:hover {
  background: #8A8A8A;
}
.server .hc-create-server .result .finite .amount-control .action#add {
  padding: 5px 12px;
}
.server .hc-create-server .result .finite .amount-control .action.disabled {
  color: #848484;
  background: #404040;
  cursor: not-allowed;
}
.server .hc-create-server .result .finite .amount-control .amount {
  color: #EDEDED;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.server .hc-create-server .result .finite .total {
  display: flex;
  justify-content: space-around;
  padding: 15px 25px;
  border-top: 1px solid #595959;
}
.server .hc-create-server .result .finite .total .title {
  color: hsl(0deg, 0%, 54%);
  font-family: "Righteous-Regular";
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}
.server .hc-create-server .result .finite .total .total-result {
  color: #d50c2d;
  font-family: "Righteous-Regular";
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}
.server .hc-create-server .result .finite .ending {
  padding: 0 15px;
}
.server .hc-create-server .result .finite .ending .btn-create-server {
  background: #d50c2d;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  width: 100%;
}
.server .hc-create-server .result .finite .ending .btn-create-server.btn-not-active {
  cursor: not-allowed;
  background: #5d1723;
}
.server .hc-create-server .result .finite .warning {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  color: #FFDA6A;
  background: #332701;
  border-top: 2px solid #997404;
  border-bottom: 2px solid #997404;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}
.server .hc-create-server .result .finite .form-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #50cd89;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}
.server .hc-create-server .result .finite .form-check .form-check-input {
  width: 25px;
  height: 25px;
  box-shadow: none;
  border: 0;
  border: 1px solid #1c3238;
  background-color: #50cd89;
}
.server .hc-create-server .result .finite .btn-redirect-faq {
  color: #50cd89;
  padding: 0 15px;
}
.server .list-servers .list-servers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.server .list-servers .list-servers-header .nav-pills .nav-item .nav-link {
  background: transparent;
  border-bottom: 1px solid;
  border-radius: 0;
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.server .list-servers .list-servers-header .nav-pills .nav-item .nav-link.active {
  color: #ef1f42;
}
.server .list-servers .list-servers-header .add-server {
  text-decoration: none;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  background: #d50c2d;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
}
.server .list-servers .list-servers-preheader {
  display: flex;
  justify-content: space-evenly;
  color: #FFDA6A;
  background: #332701;
  border: 2px dashed #997404;
  border-radius: 9px;
  margin-bottom: 15px;
  padding: 15px;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
@media (max-width: 720px) {
  .server .list-servers .list-servers-preheader {
    font-size: 15px;
    flex-direction: column;
    align-items: center;
  }
}
.server .list-servers .list-servers-preheader .servers-preheader-item span {
  color: #FFFFFF;
  margin-left: 15px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers {
  display: flex;
  flex-direction: column;
  padding-bottom: 75px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header {
  font-family: "Righteous-Regular";
  font-size: 16px !important;
  font-weight: 400;
  text-transform: none;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .name {
  color: #ededed !important;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings.dropstart .btn-settings {
  box-shadow: none;
  background: #d50c2d;
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  padding: 0.375rem 0.75rem;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings.dropstart .btn-settings::before {
  transition: all 0.2s;
  transform: rotate(270deg);
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings.dropstart .btn-settings.show::before {
  transform: rotate(360deg);
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings.dropstart .dropdown-menu {
  right: 10px !important;
  background: #262626;
  border: 2px solid #50cd89;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings.dropstart .dropdown-menu li .dropdown-item {
  cursor: pointer;
  color: #50cd89;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings.dropstart .dropdown-menu li .dropdown-item:hover {
  background: #1c3238;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item {
  background: #262626;
  border-radius: 8px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item:hover {
  background: #303030;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip {
  cursor: pointer;
  transition: all 0.2s;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip:hover {
  color: #50cd89;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip.coped {
  color: #d50c2d;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .settings {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .settings a {
  font-size: 20px;
  color: #A8A8A8;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .settings a:hover {
  background: #3B3B3B;
  border-radius: 100%;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item {
  padding: 10px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #ededed;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 15px;
}
@media (max-width: 1090px) {
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .created,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .created {
    display: none !important;
  }
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .public-ip,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .location-server,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .location-server {
    max-width: 20% !important;
  }
}
@media (max-width: 1045px) {
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .location-server,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .location-server {
    display: none !important;
  }
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .public-ip,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip {
    max-width: 40% !important;
  }
}
@media (max-width: 725px) {
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item {
    padding: 10px 5px !important;
    font-size: 15px !important;
  }
}
@media (max-width: 630px) {
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .name,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .name {
    display: none !important;
  }
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .public-ip,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip {
    padding: 14px 20px;
    max-width: 77% !important;
  }
}
@media (max-width: 440px) {
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings,
  .server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .settings {
    flex-direction: column !important;
    align-content: flex-end !important;
    flex-wrap: wrap !important;
    gap: 3px !important;
  }
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .dot,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .dot {
  flex-grow: 0.1;
  max-width: 3%;
  padding: 14px 12px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .dot .active,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .dot .active {
  background: #7bea7b;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  animation: pulse 2s infinite;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .dot .not-active,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .dot .not-active {
  background: #7A0000;
  width: 15px;
  height: 15px;
  border-radius: 100%;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .dot .inert,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .dot .inert {
  background: #fffc1d;
  width: 15px;
  height: 15px;
  border-radius: 100%;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .name,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .name {
  color: #ed0d32;
  flex-grow: 2;
  max-width: 32%;
  padding: 14px 20px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .public-ip,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .location-server,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .created,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .public-ip,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .location-server,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .created {
  flex-grow: 1;
  max-width: 15%;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .settings,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .settings {
  flex-grow: 1;
  max-width: 20%;
  text-align: end;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .location-server,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .location-server {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-header .location-server img,
.server .list-servers .list-servers-body .tab-content .tab-pane .servers .servers-body-item .location-server img {
  width: 30px;
}

.invoice {
  padding-top: 115px !important;
}
.invoice .invoices {
  background: #262626;
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 100px;
}
.invoice .invoices .header {
  position: relative;
  padding: 15px 25px;
  color: #EDEDED;
  font-family: "Righteous-Regular";
  font-size: 32px;
  font-weight: 600;
  text-transform: none;
  border-bottom: 1px solid #dce3ed;
  margin-bottom: 25px;
}
.invoice .invoices .header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translate(0, -50%);
  width: 8px;
  height: 30px;
  background: #50cd89;
}
.invoice .invoices .invoices-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow-y: auto;
}
@media (max-width: 915px) {
  .invoice .invoices .invoices-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .invoice .invoices .invoices-inner .invoice-qr {
    margin: 0 !important;
  }
}
@media (max-width: 665px) {
  .invoice .invoices .invoices-inner .invoice-info .invoice-info-item {
    gap: 10px !important;
    padding: 0 !important;
  }
}
.invoice .invoices .invoices-inner .invoice-info {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-family: "Righteous-Regular";
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item {
  padding-left: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .ico {
  background: #171918;
  color: #ededed;
  padding: 10px 15px;
  border-radius: 9px;
}
@media (max-width: 450px) {
  .invoice .invoices .invoices-inner .invoice-info .invoice-info-item .ico {
    display: none !important;
  }
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text {
  color: #dce3ed;
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .info {
  color: #636567;
  font-size: 15px;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .status {
  color: #dce3ed;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .pole {
  overflow: hidden;
  text-overflow: ellipsis;
  background: #222323;
  color: #dce3ed;
  padding: 10px 18px;
  border-radius: 9px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 610px) {
  .invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .pole {
    width: 280px !important;
  }
}
@media (max-width: 385px) {
  .invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .pole {
    width: 215px !important;
  }
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .group-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .group-copy .pole {
  border-radius: 9px 0 0 9px;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .group-copy .copy {
  cursor: pointer;
  background: #2f2f34;
  border-radius: 0 9px 9px 0;
  padding: 10px 15px;
  color: #FFFFFF;
  transition: all 0.2s;
}
.invoice .invoices .invoices-inner .invoice-info .invoice-info-item .text-group .group-copy .copy:hover {
  color: #50cd89;
  background: #1c3238;
}
.invoice .invoices .invoices-inner .invoice-qr {
  margin-left: auto;
}
.invoice .invoices .invoices-inner .invoice-qr img {
  height: 250px;
  border-radius: 9px;
}

.toast {
  top: 90px;
  right: 5px;
  position: fixed;
  z-index: 10;
}
@media (max-width: 375px) {
  .toast {
    right: 0;
  }
}
.toast.error {
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  background: rgba(170, 51, 51, 0.6);
  color: #FFFFFF;
}
.toast.success {
  font-family: "Righteous-Regular";
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  background: #19C37D;
  color: #FFFFFF;
}
.toast .toast-body {
  display: flex;
  gap: 20px;
}

.modal .modal-dialog .modal-content {
  background: #262626;
  color: #FFFFFF;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-family: "Righteous-Regular";
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
}
.modal .modal-dialog .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item.form-control-col {
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item .subtitle {
  font-family: "Righteous-Regular";
  font-size: 17px;
  font-weight: 400;
  text-transform: none;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item .green-input {
  outline: none;
  padding: 10px 20px;
  background: #303030;
  border: 1px solid #286644;
  color: #3acd7e;
  border-radius: 8px;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item .btn-copy {
  background: transparent;
  border: 0;
  color: #0072bc;
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item .btn-copy.coped {
  color: #770b81;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item .temp-ico-coped {
  position: relative;
  left: -10px;
  color: #770b81;
}
.modal .modal-dialog .modal-content .modal-body .modal-body-item .temp-ico-coped.ico-coped {
  display: none;
}
.modal .modal-dialog .modal-content .modal-footer .btn-save-form {
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  background: #1c3238;
  color: #50cd89;
  border: none;
  border-radius: 8px;
  padding: 6px 20px;
  transition: all 0.2s;
}
.modal .modal-dialog .modal-content .modal-footer .btn-save-form:hover {
  background: #50cd89;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 6px 20px;
}
.modal .modal-dialog .modal-content .modal-footer .btn-close-modal {
  font-family: "Righteous-Regular";
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
.modal .modal-dialog .modal-content .modal-footer .btn-close-modal.btn-rage-red {
  text-decoration: none;
  background: #d50c2d;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 6px 20px;
}

html {
  width: 100%;
}
html body {
  width: 100%;
  background: #141414 !important;
}
html body .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
html body .overlay.active {
  display: block;
}
html body .leveling {
  width: 100%;
  max-width: 1290px;
  padding: 0 15px;
  margin: 0 auto;
}
html body .leveling .main-info {
  text-align: center;
  margin-bottom: 30px;
}
html body .leveling .main-info .title {
  font-family: "Righteous-Regular";
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}
html body .leveling .main-info .description {
  font-family: "Righteous-Regular";
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: #50cd89;
}
