/* #region sidebar */
.page aside {
  align-self: start;

  position: sticky;
  top: 0;

  width: 64px;
  padding: 20px 10px 10px;
  min-height: 100dvh;
  box-shadow: 0 0 10px #eee;
}

.page aside h3 {
  position: relative;
}

.page aside a {
  display: block;
  text-decoration: none;
  color: black;
  margin-bottom: 5px;
  transition: 0.3s;
}

.page aside li.active a {
  background-color: #f6f6f6;
}

.page aside li:hover a {
  background-color: #f6f6f6;
}

@media (max-width: 991px) {
  .page aside h3 {
    font-size: 15px;
  }

  .page aside a span {
    display: none;
  }
}

@media (min-width: 992px) {
  .page aside {
    width: 250px;
    padding: 20px;
  }

  .page aside h3 {
    margin-bottom: 50px;
  }

  .page aside h3::before,
  .page aside h3::after {
    content: "";
    position: absolute;
    background-color: black;
  }

  .page aside h3::before {
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: -20px;
  }

  .page aside h3::after {
    width: 12px;
    height: 12px;
    left: 50%;
    border: 3px solid white;
    bottom: -29px;
    transform: translateX(-50%);
    border-radius: 50%;
  }

  .page aside a i {
    margin-right: 10px;
  }
}

/* #endregion */

/* #region main > header */
.page main {
  flex: 1;
}

.page main header {
  align-items: center;
  justify-content: space-between;
}

.page main header .search::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;

  font-size: 14px;
  color: var(--grey-color);
}

.page main header .search input {
  font-size: 13px;
  ;

  width: 160px;
  margin-left: 5px;
  padding-left: 30px;
  border-radius: 10px;
  border: 1px solid #ccc;

  transition: width 0.3s;
}

.page main header .search input::placeholder {
  opacity: 1;
  transition: 0.5s;
}

.page main header .search input:focus::placeholder {
  opacity: 0;
}

.page main header .search input:focus {
  outline: none;
  width: 200px;
}

.page main header .icons {
  align-items: center;
}

.page main header .icons span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--red-color);
  border-radius: 50%;
  top: -8px;
  right: -5px;
}

.page main header .icons img {
  width: 32px;
  margin-left: 15px;
}

/* #endregion */

/* #region main page */
.page main .content {
  background-color: #f1f5f9;
}

.page main .content>h1 {
  font-weight: 500;
  margin: 0 0 40px;
}

.page main .content>h1::before,
.page main .content>h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
}

.page main .content>h1::before {
  width: 120px;
  background-color: white;
}

.page main .content>h1:after {
  width: 40px;
  background-color: black;
}

.page main .content .wrapper {
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

/* #region welcome */
.page main .content .wrapper .welcome .intro {
  justify-content: space-between;
  background-color: #eee;
}

.page main .content .wrapper .welcome>img {
  width: 64px;
  border: 2px solid white;
  box-shadow: 0 0 5px #ddd;
  margin-top: -32px;
  margin-left: 16px;
  border-radius: 50%;
}

.page main .content .wrapper .welcome .text p {
  margin-top: 5px;
  margin-bottom: 15px;
  color: var(--grey-color);
}

.page main .content .wrapper .welcome .image {
  width: 200px;
  margin-bottom: -10px;
}

.page main .content .wrapper .welcome .image img {
  max-width: 100%;
}

.page main .content .wrapper .welcome .text-content {
  margin: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.page main .content .wrapper .welcome .text-content p {
  flex: 1;
  text-align: center;
}

.page main .content .wrapper .welcome a {
  text-decoration: none;
  margin: 0 15px 15px auto;
}

/* #endregion */
/* #region draft */
.page main .content .wrapper .draft form input[type="text"],
.page main .content .wrapper .draft form textarea {
  outline: none;
}

.page main .content .wrapper .draft form textarea {
  height: 200px;
  resize: none;
}

.page main .content .wrapper .draft form input[type="text"]::placeholder,
.page main .content .wrapper .draft form textarea::placeholder {
  opacity: 1;
  transition: opacity 0.5s;
}

.page main .content .wrapper .draft form input[type="text"]:focus::placeholder,
.page main .content .wrapper .draft form textarea:focus::placeholder {
  opacity: 0;
}

.page main .content .wrapper .draft form input[type="submit"] {
  margin-left: auto;
}

/* #endregion */
/* #region targets */
.page main .content .wrapper .targets .symbol {
  width: 80px;
  height: 80px;
  margin-right: 10px;

  justify-content: center;
}

.page main .content .wrapper .targets .money .symbol {
  background-color: rgb(0 117 255 / 20%);
}

.page main .content .wrapper .targets .projects .symbol {
  background-color: rgb(245 158 11 / 20%);
}

.page main .content .wrapper .targets .team .symbol {
  background-color: rgb(34 197 94 / 20%);
}

.page main .content .wrapper .targets .progress {
  height: 4px;
}

.page main .content .wrapper .targets .progress::before {
  content: attr(percentage);
  position: absolute;
  top: -30px;

  padding: 2px 5px;
  color: white;
  font-size: 14px;
  border-radius: 6px;
}

.page main .content .wrapper .targets .progress::after {
  top: -10px;
  content: "";
  position: absolute;
  border: 6px solid transparent;
}

.page main .content .wrapper .targets .money .progress {
  background-image: linear-gradient(to right, var(--blue-color) 80%, rgb(0 117 255 / 20%) 80%);
}

.page main .content .wrapper .targets .money .progress::before,
.page main .content .wrapper .targets .money .progress::after {
  left: 80%;
  transform: translateX(-50%);
}

.page main .content .wrapper .targets .money .progress::before {
  background-color: var(--blue-color);
}

.page main .content .wrapper .targets .money .progress::after {
  border-top-color: var(--blue-color);
}

.page main .content .wrapper .targets .projects .progress {
  background-image: linear-gradient(to right, var(--orange-color) 55%, rgb(245 158 11 / 20%) 55%);
}

.page main .content .wrapper .targets .projects .progress::before,
.page main .content .wrapper .targets .projects .progress::after {
  left: 55%;
  transform: translateX(-50%);
}

.page main .content .wrapper .targets .projects .progress::before {
  background-color: var(--orange-color);
}

.page main .content .wrapper .targets .projects .progress::after {
  border-top-color: var(--orange-color);
}

.page main .content .wrapper .targets .team .progress {
  background-image: linear-gradient(to right, var(--green-color) 75%, rgb(34 197 94 / 20%) 75%);
}

.page main .content .wrapper .targets .team .progress::before,
.page main .content .wrapper .targets .team .progress::after {
  left: 75%;
  transform: translateX(-50%);
}

.page main .content .wrapper .targets .team .progress::before {
  background-color: var(--green-color);
}

.page main .content .wrapper .targets .team .progress::after {
  border-top-color: var(--green-color);
}

/* #endregion */
/* #region statistics */
.page main .content .wrapper .statistics .ticket-stats div {
  flex-basis: calc(50% - 10px);
  border: 1px solid #eee;
}

@media (max-width: 767px) {
  .page main .content .wrapper .statistics .ticket-stats div {
    flex-basis: 100%;
  }
}

/* #endregion */
/* #region news */
.page main .content .wrapper .news li .info div {
  max-width: 200px;
}

.page main .content .wrapper .news li .info img {
  width: 100px;
  margin-right: 10px;
}

.page main .content .wrapper .news li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .page main .content .wrapper .news li {
    flex-direction: column;
  }

  .page main .content .wrapper .news li .info {
    flex-direction: column;
    text-align: center;
  }

  .page main .content .wrapper .news li .info img {
    margin: 0 0 10px;
  }

  .page main .content .wrapper .news li .info div {
    margin-bottom: 10px;
  }
}

/* #endregion */
/* #region  tasks */
.tasks li.completed  {
  opacity: 0.3;
}

.tasks li:not(.completed) .remove:hover {
  color: var(--red-color);
  cursor: pointer;
}

.tasks li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.tasks li.completed span {
  text-decoration: line-through;
}
/* #endregion */
/* #region uploads */
.page main .content .wrapper .uploads li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.page main .content .wrapper .uploads .info img {
  width: 40px;
}

.page main .content .wrapper .uploads .info div {
  margin-left: 10px;
}

/* #endregion */
/* #region proj-porgess */
.proj-progress li {
  margin-top: 25px;
}

.proj-progress li span {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border: 2px solid white;
  outline: 1px solid var(--blue-color);
}

.proj-progress li:not(:last-child) span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  height: 25px;
  width: 2px;
  background-color: var(--blue-color);
}

.proj-progress li span.special {
  animation: flashing 2s infinite;
}

@keyframes flashing {
  50% {
    background-color: white;
  }

  100% {
    background-color: var(--blue-color);
  }
}

.proj-progress img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  opacity: 0.2;
}

/* #endregion */
/* #region reminders */
.reminders li>span {
  width: 15px;
  height: 15px;
  margin-right: 15px;
}

.reminders li>div {
  padding-left: 20px;
  border-left-width: 2px;
  border-left-style: solid;
}

.reminders li>div.blue {
  border-left-color: var(--blue-color);
}

.reminders li>div.green {
  border-left-color: var(--green-color);
}

.reminders li>div.orange {
  border-left-color: var(--orange-color);
}

.reminders li>div.red {
  border-left-color: var(--red-color);
}

/* #endregion */
/* #region latest post */
.latest-post .owner img {
  width: 45px;
  margin-right: 15px;
}

.latest-post p {
  line-height: 1.8;
  border-top: 1px solid #eee;
}

.latest-post .reacts {
  border-top: 1px solid #eee;
}

.latest-post .reacts .likes::before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.latest-post:hover .reacts .likes {
  color: red;
}

.latest-post .reacts .comments::before {
  content: "\f086";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.latest-post:hover .reacts .comments {
  color: var(--blue-color);
}

/* #endregion */
/* #region social media */
.social-media-stats li i {
  width: 52px;
  justify-content: center;
}

.social-media-stats li i:hover {
  transform: rotate(5deg);
}

.social-media-stats .btn {
  cursor: pointer;
}

.social-media-stats .twitter i,
.social-media-stats .twitter .btn {
  background-color: rgb(29 161 242);
}

.social-media-stats .twitter .info {
  color: rgb(29 161 242);
}

.social-media-stats .twitter>div {
  background-color: rgb(29 161 242 / 20%);
}

.social-media-stats div:hover .btn {
  transform: scale(1.1);
}

.social-media-stats .facebook i,
.social-media-stats .facebook .btn {
  background-color: rgb(24 119 242);
}

.social-media-stats .facebook .info {
  color: rgb(29 161 242);
}

.social-media-stats .facebook>div {
  background-color: rgb(24 119 242 / 20%);
}

.social-media-stats .youtube i,
.social-media-stats .youtube .btn {
  background-color: red;
}

.social-media-stats .youtube .info {
  color: red;
}

.social-media-stats .youtube>div {
  background-color: rgb(255 0 0 / 20%);
}

.social-media-stats .linkedin i,
.social-media-stats .linkedin .btn {
  background-color: rgb(10, 102, 194);
}

.social-media-stats .linkedin .info {
  color: rgb(10, 102, 194);
}

.social-media-stats .linkedin>div {
  background-color: rgb(10 102 194 / 20%);
}

/* #endregion */
/* #region projects */
.projects {
  grid-column: 1/-1;
}

.projects .responsive-table {
  overflow: auto;
}

.projects table {
  min-width: 1000px;
  border-spacing: 0;
}

.projects table th {
  padding: 15px;
  font-weight: 500;
  text-align: left;
  background-color: #eee;
}

.projects table tbody tr {
  transition: 0.5s;
}

.projects table tbody tr:hover {
  background-color: #faf7f7;
}

.projects table td {
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.projects img {
  position: relative;
  width: 34px;
  border-radius: 50%;
  border: 2px solid white;
}

.projects img:hover {
  z-index: 100;
}

.projects img:not(:first-child) {
  margin-left: -20px;
}

/* #endregion */
/* #endregion */

/* #region settings page */
.page main .content .settings-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

.control textarea {
  resize: none;
  outline: none;
  min-height: 150px;
  border: 1px solid #eee;
}

.general-info input {
  outline: none;
  border: 1px solid #eee;
}

.general-info input[type="submit"] {
  border: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

.general-info input:disabled {
  cursor: no-drop;
  background-color: #eee;
}

.security-info a {
  text-decoration: none;
}

.social-info i {
  align-self: stretch;
  border: 1px solid #ddd;
  border-right: none;
  background-color: #f6f6f6;
  border-radius: 6px 0 0 6px;
}

.social-info input {
  padding: 10px;
  border: 1px solid #ddd;
  outline: none;
  background-color: #f6f6f6;
  border-radius: 0 6px 6px 0;
}

.social-info>div:focus-within i {
  color: black;
}

.widgetes-control .option label {
  padding-left: 30px;

  display: flex;
  align-items: center;
}

.widgetes-control .option label:hover::before {
  border-color: var(--blue-color);
}

.widgetes-control input[type="checkbox"] {
  --webkit-apperance: none;
  appearance: none;
}

.widgetes-control input[type="checkbox"]+label {
  position: relative;
}

.widgetes-control input[type="checkbox"]+label::before,
.widgetes-control input[type="checkbox"]+label::after {
  width: 14px;
  height: 14px;

  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  border-radius: 6px;
}

.widgetes-control input[type="checkbox"]+label::before {
  content: "";
  border: 2px solid var(--grey-color);
}

.widgetes-control input[type="checkbox"]+label::after {
  content: "\2713";
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 12px;
  background-color: var(--blue-color);
  transform: scale(0) rotate(360deg);
  transition: 0.3s;
}

.widgetes-control input[type="checkbox"]:checked+label::after {
  transform: scale(1);
}

.backup-manager .options {
  border-bottom: 1px solid #eee;
}

.backup-manager input[type="radio"] {
  --webkit-appearnace: none;
  appearance: none;
}

.backup-manager .options input[type="radio"]+label {
  position: relative;
  padding-left: 30px;

  display: flex;
  align-items: center;
}

.backup-manager .options input[type="radio"]+label::before,
.backup-manager .options input[type="radio"]+label::after {
  width: 14px;
  height: 14px;

  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  border-radius: 50%;
}

.backup-manager .options input[type="radio"]+label::before {
  content: "";
  border: 2px solid var(--grey-color);
}

.backup-manager .options input[type="radio"]+label::after {
  content: "";
  width: 10px;
  height: 10px;
  left: 4px;
  margin-top: -5px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  background-color: var(--blue-color);

  transform: scale(0) rotate(360deg);
  transition: 0.3s;
}

.backup-manager .options input[type="radio"]:checked+label::before {
  border-color: var(--blue-color);
}

.backup-manager .options input[type="radio"]:checked+label::after {
  transform: scale(1);
}

.backup-manager .mng-opts {
  gap: 15px;
}

.backup-manager .mng-opts input[type="radio"]+div {
  border: 2px solid #eee;
}

.backup-manager .mng-opts input[type="radio"]:checked+div {
  color: var(--blue-color);
  border-color: var(--blue-color);
}

/* #endregion */

/* #region profile page */
@media (max-width: 991px) {
  .page main .id-card {
    flex-direction: column;
    justify-content: center;
  }
}

.page main .id-card .user-id {
  width: 300px;
  border-right: 1px solid #eee;
}

@media (max-width: 991px) {
  .page main .id-card .user-id {
    border-right: none;
  }
}

.page main .id-card .user-id img {
  width: 100px;
}

.page main .id-card .user-id .progress {
  width: 70%;
  height: 6px;
  margin: 0 auto 10px;
  background-color: #ddd;
}

.page main .id-card .user-id .progress::before {
  content: "";
  width: 70%;
  height: 100%;

  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  background-color: var(--blue-color);
}

@media (max-width: 767px) {
  .page main .id-card .information .box {
    justify-content: center;
  }

  .page main .id-card .information .box>p {
    text-align: center;
  }
}

.page main .id-card .information .box div {
  min-width: 250px;
  padding-top: 10px;
}

.page main .id-card .information>div:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.page main .id-card .information .toggle-button input[type="checkbox"].toggle+label::before {
  width: 5em;
  height: 1.5em;
}

.page main .id-card .information .toggle-button input[type="checkbox"].toggle+label::after {
  width: 1.2em;
  height: 1.2em;
}

.page main .id-card .information .toggle-button input[type="checkbox"].toggle:checked+label::after {
  transform: translateX(3.4em);
}

@media (max-width: 991px) {
  .page main .profile-wrapper {
    flex-direction: column;
  }
}

.page main .profile-wrapper .my-skills {
  flex: 1;
}

@media (max-width: 991px) {
  .page main .profile-wrapper .my-skills {}
}

.page main .profile-wrapper .actvs {
  flex: 2;
}

.page main .profile-wrapper .my-skills div:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.page main .profile-wrapper .actvs>div:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.page main .profile-wrapper .actvs img {
  width: 64px;
  margin-right: 10px;
}

.page main .profile-wrapper .actvs .time {
  text-align: right;
}

@media (max-width: 991px) {
  .page main .profile-wrapper .actvs .time {
    text-align: center;
  }
}

/* #endregion */

/* #region projects */
.page main .projects-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

@media (max-width: 991px) {
  .page main .content {
    padding: 10px;
  }

  .page main .projects-wrapper {
    gap: 10px;
    grid-template-columns: minmax(200px, 1fr)
  }
}

.page main .projects-wrapper .card {
  position: relative;
}

.page main .projects-wrapper .start-date {
  position: absolute;
  top: 10px;
  right: 10px;

  color: var(--grey-color);
}


.page main .projects-wrapper .card .partenners {
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .page main .projects-wrapper .card .partenners {
    text-align: center;
  }
}

.page main .projects-wrapper .card .partenners img {
  width: 45px;
  border-radius: 50%;
  padding: 2px;
  background-color: white;
  position: relative;
}

.page main .projects-wrapper .card .partenners img:not(:first-child) {
  margin-left: -25px;
}

.page main .projects-wrapper .card .partenners img:hover {
  z-index: 100;
}

.page main .projects-wrapper .card .tools {
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .page main .projects-wrapper .card .tools {
    justify-content: center;
  }
}

.page main .projects-wrapper .card .tools span {
  font-size: 14px;
  border-radius: 6px;
  background-color: #eee;
}

.page main .projects-wrapper .card .progress {
  width: 260px;
  height: 8px;
}

@media (max-width: 767px) {
  .page main .projects-wrapper .card .price {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page main .projects-wrapper .card .progress {
    margin-bottom: 10px;
  }
}

.page main .projects-wrapper .card .progress::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  height: 100%;
  border-radius: 10px;
}

.page main .projects-wrapper .card .progress.low::before {
  width: 50%;
  background-color: var(--red-color);
}

.page main .projects-wrapper .card .progress.meduim::before {
  width: 75%;
  background-color: var(--green-color);
}

.page main .projects-wrapper .card .progress.finished::before {
  width: 100%;
  background-color: var(--blue-color);
}

/* #endregion */

/* #region coureses */
.page main .courses-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.page main .courses-wrapper .card img.owner {
  width: 74px;
  padding: 2px;

  position: absolute;
  top: 20px;
  left: 20px;
}

.page main .courses-wrapper .card img.course-demo {
  max-width: 100%;
}

.page main .courses-wrapper .card .txt-content {
  max-width: 300px;
}

.page main .courses-wrapper .card .txt-content p {
  line-height: 1.6;
}

.page main .courses-wrapper .card .price {
  border-top: 1px solid #eee;
}

.page main .courses-wrapper .card .price::before {
  content: "Course Info";
  padding: 4px 10px;
  background-color: var(--blue-color);
  font-size: 13px;
  color: white;
  border-radius: 6px;

  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* #endregion */

/* #region firends */
.page .friends-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.page .friends-wrapper .card .contact {
  position: absolute;
  top: 10px;
  left: 10px;
}

.page .friends-wrapper .card .contact i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  cursor: pointer;
}

.page .friends-wrapper .card .contact i:hover {
  color: white;
  background-color: var(--blue-color);
}

.page .friends-wrapper .card .friend-about {
  border-bottom: 1px solid #eee;
}

.page .friends-wrapper .card .friend-about img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.page .friends-wrapper .card .friend-info {
  position: relative;
  border-bottom: 1px solid #eee;
}

.page .friends-wrapper .card.vip .friend-info::before {
  content: "VIP";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange-color);
  opacity: 0.2;
  font-size: 40px;
}

.page .friends-wrapper .card .friend-info span {
  margin-left: 5px;
}

.page .friends-wrapper .card .join a {
  color: white;
  text-decoration: none;
}

/* #endregion */

/* #region files */
@media (max-width: 767px) {
  .page .content .container {
    flex-direction: column-reverse;
  }
}

.page .files-wrapper {
  align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.page .files-wrapper .card i {
  cursor: pointer;
}

.page .files-wrapper .card:hover img {
  transform: rotate(5deg);
}

.page .files-wrapper .card img {
  width: 64px; 
}

.page .files-wrapper .card > p {
  border-bottom: 1px solid #eee;
}

.page .stats {
  width: 260px;
  align-self: flex-start;
  position: sticky;
  top: 10px;
}

@media (max-width: 767px) {
  .page .stats {
    width: 100%;
    position: initial;
  }
}

.page .stats > div {
  border: 1px solid #eee;
}

.page .stats .type i {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  justify-content: center;
}

.page .stats a {
  text-decoration: none;
  margin: 15px auto 0;
  padding: 10px 15px;
}

.page .stats a i {
  margin-right: 5px;
}

.page .stats a:hover {
  background-color: #0d69d5;
}

.page .stats a:hover i {
  animation: bouncing 0.8s linear infinite;
}

@keyframes bouncing {
  50% {
    transform: translateY(-5px);
  }
}
/* #endregion */

/* #region plans */
.page .plans-wrapper .card {
 flex-basis: 450px;
 min-width: 300px;
}

.page .plans-wrapper .card .type {
  border: 3px solid white;
}

.page .plans-wrapper .card:nth-child(1) .type {
  outline: 3px solid var(--green-color);
}

.page .plans-wrapper .card:nth-child(2) .type {
  outline: 3px solid var(--blue-color);
}

.page .plans-wrapper .card:nth-child(3) .type {
  outline: 3px solid var(--orange-color);
}

.page .plans-wrapper .card .type p {
  margin: auto;
  font-size: 40px;
}

.page .plans-wrapper .card .type p span {
  position: absolute;
  top: 0;
  left: -15px;
  font-size: 25px;
}

.page .plans-wrapper .card ul li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.page .plans-wrapper .card ul li p::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--red-color);
  margin-right: 10px;
}

.page .plans-wrapper .card ul li.allowed p::before {
  content: "\f00c";
  color: var(--green-color);
}

.page .plans-wrapper .card a {
  text-decoration: none;
  color: white;
}
/* #endregion */