@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}
:root {
  --bg-color: #f2f6ff;
  --success-color: #079f28;
  --danger-color: #db0202;
  --primary-color: #267fff;
  --text-color: #2b4b79;
  --subtext-color: #7b90ad;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 3rem 0 1.38rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.item-icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 15px;
}

.item-icon--home {
  background: url("/assets/icons/home-icon.svg");
  height: 28px;
}

.item-icon--coins {
  background: url("/assets/icons/coins.svg");
}

.item-icon--team {
  background: url("/assets/icons/team.svg");
  width: 24px;
  height: 20px;
}

.item-icon--gear {
  background: url("/assets/icons/gear.svg");
  width: 21px;
  height: 22px;
}

.item-icon--logout {
  background: url("/assets/icons/signout.svg");
  width: 20px;
  height: 20px;
}

.item-icon--bell {
  background: url("/assets/icons/bell.svg");
  width: 20px;
  height: 21px;
}

.auth-page {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
}

.auth-form {
  width: 500px;
}

.auth-form__status {
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding-right: 45px;
  padding-left: 15px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.auth-form__status:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.auth-form__status--success {
  background: var(--success-color);
}

.auth-form__status--success:before {
  background-image: url("/assets/icons/success.svg");
}

.auth-form__status--danger {
  background: var(--danger-color);
}

.auth-form__status--danger:before {
  background-image: url("/assets/icons/warn.svg");
  width: 20px;
  height: 18px;
}

.auth-form__box {
  padding: 40px 25px;
  background: #fff;
  color: var(--text-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.auth-form__box .box__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 5px;
}

.auth-form__box .box__subtitle {
  color: var(--subtext-color);
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}

.auth-form__box .box__image {
  text-align: center;
}

.form__input-group {
  margin-bottom: 20px;
  position: relative;
}

.form__input {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #787777;
  font-size: 14px;
  color: var(--text-color);
  padding-right: 20px;
  padding-left: 47px;
}

.form__input-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
}

.form__input-icon--envelope {
  width: 17px;
  height: 14px;
  background-image: url("/assets/icons/mail.svg");
}

.form__input-icon--lock {
  top: 14px;
  width: 18px;
  height: 20px;
  background-image: url("/assets/icons/lock.svg");
}

.form__input-icon--user {
  top: 16px;
  width: 12px;
  height: 13px;
  background-image: url("/assets/icons/user.svg");
}

.form__input-icon--conversation {
  top: 16px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/icons/conversation.svg");
}

.form__input-icon--description {
  top: 16px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/icons/description.svg");
}

.form__input-icon--euro {
  top: 16px;
  width: 15px;
  height: 16px;
  background-image: url("/assets/icons/euro.svg");
}

.form__input-icon--lang {
  top: 16px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/icons/lang.svg");
}

.form__button {
  cursor: pointer;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  height: 45px;
  line-height: 45px;
  width: 100%;
  border: none;
  -webkit-transition: background 200ms ease-out;
  -moz-transition: background 200ms ease-out;
  -ms-transition: background 200ms ease-out;
  -o-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
}

.form__button:hover {
  background-color: rgb(36, 36, 36);
}

.form__button--submit {
  background-color: var(--primary-color);
}

.form__button-regular {
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.form__button--submit:hover {
  background-color: var(--text-color);
}

.form__actions {
  margin-top: 40px;
  color: var(--subtext-color);
  font-size: 13px;
  font-weight: 500;
}

.form__actions-item {
  margin-top: 2px;
  margin-bottom: 0;
}

.form__actions-link,
.form__actions-link:visited,
.form-actions-link:focus {
  text-decoration: none;
  color: var(--primary-color);
}

/* DASHBOARD */

.dashboard-page {
  background: #fff;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 255px;
  height: 100%;
  padding: 75px 0;
  background: #fff;
  border-right: 1px solid rgba(43, 75, 121, 0.2);
}

.sidebar__title {
  font-size: 25px;
  padding: 0 50px;
}

.sidebar__navigation {
  margin-top: 95px;
}

.sidebar__navigation ul {
  padding: 0;
  margin: 0;
}

.sidebar__navigation ul li {
  display: block;
  margin: 15px 0;
  position: relative;
}

.sidebar__navigation li::before {
  content: "";
  width: 0px;
  height: 100%;
  background: var(--text-color);
  position: absolute;
  border-radius: 0 10px 10px 0;
  -webkit-transition: width 150ms ease-in-out;
  -moz-transition: width 150ms ease-in-out;
  -ms-transition: width 150ms ease-in-out;
  -o-transition: width 150ms ease-in-out;
  transition: width 150ms ease-in-out;
}

.sidebar__navigation li:hover::before,
.sidebar__navigation li.active::before {
  width: 8px;
}

.sidebar__navigation a {
  display: block;
  padding: 10px 50px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
}

.sidebar__bottom-item {
  position: absolute;
  bottom: 75px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  padding: 0 50px;
}

.sidebar__bottom-item:hover {
  color: var(--primary-color);
}

.content {
  width: calc(100% - 255px);
  float: right;
}

.content::after {
  content: "";
  clear: both;
  display: table;
}

.top-bar {
  border-bottom: 1px solid rgba(43, 75, 121, 0.2);
  padding: 50px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left-title {
  margin: 0;
  font-size: 25px;
}

.top-bar__left-subtitle {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: var(--subtext-color);
  margin-top: 5px;
}

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

.top-bar__right .form__input-group {
  margin-bottom: 0;
}

.form__input-icon--search {
  width: 15px;
  height: 15px;
  background-image: url("/assets/icons/search.svg");
}

.form__input--search {
  background: #f2f6ff;
  border: 1px solid #e8e8e8;
  color: var(--text-color);
  width: 350px;
  margin-right: 10px;
}

.top-bar__buttons {
  display: flex;
}

.top-bar__buttons-item {
  margin: 0 10px;
  border-radius: 5px;
  background: #f2f6ff;
  border: 1px solid #e8e8e8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 45px;
  height: 45px;
}

.top-bar__buttons-item:hover {
  background: #fff;
}

.top-bar__buttons-item .item-icon {
  margin-right: 0;
  top: 0;
}

.main-container {
  padding: 32px 0;
}

.main-container__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.main-container__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 26px;
}

.main-container__top-title {
  font-size: 25px;
  margin: 0;
  padding: 30px 0;
}

.main-container__top-subtitle {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: var(--subtext-color);
  margin-top: 5px;
}

.main-container__top-button {
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  height: 45px;
  line-height: 45px;
  width: 200px;
  border: none;
  -webkit-transition: background 200ms ease-out;
  -moz-transition: background 200ms ease-out;
  -ms-transition: background 200ms ease-out;
  -o-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
  text-decoration: none;
  display: inline-block;
}

.main-container__top-button:hover {
  background: var(--text-color);
}

table {
  width: 100%;
  text-align: left;
  border: none;
  border-spacing: 0;
  border-collapse: collapse;
}

table th {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

table th,
table td {
  padding: 0 10px;
  border: none;
}

table td {
  font-size: 13px;
}

@media screen and (min-width: 989px) and (max-width: 1169px) {
  table td.actions {
    text-align: center;
  }
}

table td.actions button {
  margin-top: 3px;
  margin-bottom: 3px;
}

table th:first-child,
table td:first-child {
  padding-left: 26px;
}

table th:last-child,
table td:last-child {
  padding-right: 26px;
}

tbody tr:nth-child(2n) {
  background: var(--bg-color);
  font-size: 15px;
  color: var(--text-color);
}

.main-container__table-status {
  display: block;
  font-weight: 500;
  font-size: 12px;
  width: 45px;
  border-radius: 2px;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.main-container__table-status--active {
  width: 50px;
  background: #56c288;
}

.main-container__table-status--inactive {
  width: 60px;
  background: #ff0000;
}

.main-container__table-status--paid {
  background: #56c288;
}

.main-container__table-status--expired {
  background: #ff9139;
}

.main-container__table-action {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  background: #000;
  color: #fff;
  padding: 5px 15px;
  margin: 10px;
}

.main-container__table-action.main-container__table-action--member-status {
  background: #003176;
}

.main-container__table-action--delete {
  background: red;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.main-container__table-action--delete:hover {
  background: rgb(194, 0, 0);
}

.main-container__form {
  padding: 0 26px;
}

.main-container__form .form__input-group {
  width: 350px;
  display: block;
  margin-right: 30px;
}

.main-container__form .form__button {
  width: 350px;
}
/* PAGINATION */

.pagination {
  display: flex;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  background: #f2f6ff;
}

.item-icon--arrow {
  top: 0;
  background: url("/assets/icons/pagination-arrow.svg");
  width: 6px;
  height: 10px;
  margin-right: 0;
}

.item-icon--arrow-reverse {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination-actions {
  padding: 15px;
  margin: 10px;
}

.pages ul {
  padding: 0;
}

.pages ul li {
  display: inline-block;
  margin: 5px;
}

.pages ul li a {
  margin: 2px;
  padding: 5px;
}

.pages a {
  text-decoration: none;
  color: var(--subtext-color);
  font-weight: bold;
  font-size: 14px;
}

.pages a.active {
  color: var(--text-color);
}

.payment-information {
  padding: 0 26px;
}

.payment-information__row {
  display: flex;
}

.payment-information__row-item {
  width: 22%;
}

.mobile-navigation-bar {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 26px;
  background: #f2f2f2;
  align-items: center;
}

.mobile-navigation-bar h1 {
  margin-bottom: 0;
}

#trigger {
  height: 100%;
  padding: 10px;
  width: 50px;
  text-align: right;
  cursor: pointer;
}

#mobile-navigation-links {
  display: none;
  padding: 10px 0;
  background: #f2f2f2;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
}

#mobile-navigation-links li {
  margin-bottom: 20px;
  display: block;
  width: 100%;
}

#mobile-navigation-links li.active {
  background: #e3e3e3;
}

#mobile-navigation-links li a {
  text-decoration: none;
}

#mobile-navigation-links a {
  width: 100%;
  display: block;
  padding: 10px;
}

.form-title {
  padding: 0 26px;
}

.form__row label {
  display: block;
}

.form__row textarea {
  width: 600px;
  height: 200px !important;
  max-width: 600px !important;
  max-height: 600px !important;
  min-height: 300px !important;
  min-width: 300px !important;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #787777;
  font-size: 16px;
  color: var(--text-color);
  padding: 10px;
}

.settings-actions {
  padding: 26px;
  width: 250px;
}

form.main-container__form.main-container__form-reminder {
  padding: 0;
  margin-bottom: 50px;
}

@media screen and (max-width: 990px) {
  #mobile-navigation-links.active {
    display: block;
  }

  .mobile-navigation-bar {
    display: flex;
  }

  .top-bar {
    padding: 26px;
    flex-direction: column;
    text-align: center;
  }

  .top-bar__left {
    margin-bottom: 25px;
  }

  .top-bar__right {
    flex-direction: column;
    width: 95%;
  }

  .top-bar__right form {
    width: 95%;
    margin-bottom: 10px;
  }

  .form__input--search {
    width: 100%;
  }

  .sidebar {
    display: none;
  }

  .content {
    width: 100%;
    float: none;
  }
  .main-container__top {
    flex-direction: column;
    text-align: center;
  }

  .main-container__form {
    width: 70%;
    margin: 0 auto;
  }

  .main-container__form .form__input-group {
    width: 100%;
    margin-right: 0;
  }

  .main-container__form .form__button {
    width: 100%;
  }
  .main-container__table-wrapper {
    overflow-x: auto;
  }

  .main-container__table {
    width: 1140px;
  }
  .main-container__table.main-container__table--single {
    width: 700px !important;
  }

  .payment-information__row {
    flex-direction: column;
  }

  .payment-information__row-item {
    text-align: center;
    width: 100%;
  }

  .payment-information__row-item .main-container__table-status {
    margin: 0 auto;
  }

  .form__row textarea {
    width: 100% !important;
    max-width: 100% !important;
    height: 200px !important;
    min-width: 100% !important;
    max-height: 200px !important;
    min-height: 200px !important;
  }

  .form-title {
    text-align: center;
  }
}

@media screen and (max-width: 550px) {
  .main-container__form {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 350px) {
  .main-container__top-button {
    width: 100%;
  }
}

.paylink-button {
  font-size: 13px;
  color: #fff;
  background: #267fff;
  padding: 7px 18px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  font-weight: bold;
}

.paylink-mark {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  background: #56c297;
  padding: 7px 18px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  font-weight: bold;
}

.paylink-reminder {
  font-size: 13px;
  color: #fff;
  padding: 7px 18px;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  background: #ff9139;
  border-radius: 5px;
}

.paylink-button:hover {
  background: #165bbb;
}

.paylink-reminder:hover {
  background: #d37124;
}

.paylink-mark:hover {
  background: #3e8d63;
}

.snippet-buttons {
  display: flex;
  justify-content: center;
  width: 550px;
}

.snippet-buttons a {
  margin: 26px;
}

@media screen and (max-width: 550px) {
  .snippet-buttons {
    display: block;
    width: 100%;
    text-align: center;
  }

  .snippet-buttons a {
    width: 85%;
    margin: 10px 0;
  }
}

a.filter-button {
  padding: 5px 10px;
  background: #dee1e9;
  border: 1px solid #d3d3d3;
  text-decoration: none;
  text-transform: uppercase;
  margin: 2px;
  border-radius: 3px;
  color: #2b4b79;
}

a.filter-button:hover {
  background: #267fff;
  border: 1px solid #267fff;
  color: #fff;
}

a.filter-button.active {
  background: #267fff;
  border: 1px solid #267fff;
  color: #fff;
}
