@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
}

:root {
  --blue-color: #0075ff;
  --grey-color: #888;
  --red-color: #f44336;
  --orange-color: #f59E0b;
  --green-color: #22c55e;
}

ul[unstyle] {
  list-style: none;
}

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.rad-6 {
  border-radius: 6px;
}

.rad-10 {
  border-radius: 10px;
}

.rad-circule {
  border-radius: 50%;
}

.p-relative {
  position: relative;
}

.fw-normal {
  font-weight: normal;
}

.fw-bold {
  font-weight: bold;
}

.fw-500 {
  font-weight: 500;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-25 {
  font-size: 25px;
}

.txt-center {
  text-align: center;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-2c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-c-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-btwn {
  justify-content: space-between;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.d-grid {
  display: grid;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.c-white {
  color: white;
}

.c-grey {
  color: var(--grey-color);
}

.c-blue {
  color: var(--blue-color);
}

.c-red {
  color: var(--red-color);
}

.c-orange {
  color: var(--orange-color);
}

.c-green {
  color: var(--green-color);
}

.c-3e {
  color: #eee;
}

.c-black {
  color: black;
}

.bg-blue {
  background-color: var(--blue-color);
}

.bg-red {
  background-color: var(--red-color);
}

.bg-orange {
  background-color: var(--orange-color);
}

.bg-green {
  background-color: var(--green-color);
}

.bg-white {
  background-color: white;
}

.bg-grey {
  background-color: var(--grey-color);
}

.bg-3e {
  background-color: #eee;
}


.bg-light-blue {
  background-color: rgb(0 117 255 / 20%);
}

.bg-light-green {
  background-color: rgb(34 197 94 / 20%);
}

.bg-light-red {
  background-color: rgb(244 67 54 / 20%);
}

.bg-light-orange {
  background-color: rgb(245 158 11 / 20%);
}

.btn-shape {
  padding: 4px 10px;
}

.rm-border {
  border: none;
}

.smooth {
  transition: 0.3s;
}

/* #region shared components */
.toggle-button input[type="checkbox"].toggle {
  position: absolute;
  left: -9000px;
  top: -9000px;
  opacity: 0;
}

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

.toggle-button input[type="checkbox"].toggle + label::before {
  content: "";
  width: 5em;
  height: 2em;
  border-radius: 1em;
  background-color: var(--blue-color);
  transition: 0.3s;
}

.toggle-button input[type="checkbox"].toggle + label::after {
  content: "\2713";

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

  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;

  position: absolute;
  left: 0.2em;

  color: var(--blue-color);
  background-color: white;
  transition: 0.3s;
}

.toggle-button input[type="checkbox"].toggle:checked + label::before {
  background-color: #eee;
}

.toggle-button input[type="checkbox"].toggle:checked + label::after {
  content: "\2715";
  color: var(--grey-color);
  transform: translateX(2.9em);
}
/* #endregion */

@media (max-width: 991px) {
  .to-col {
    flex-direction: column;
  }

  .m-txt-center {
    text-align: center;
  }

  .m-mt-10 {
    margin-top: 10px;
  }

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