/* Content Variables */
/* Header Variables */
/* Login Variables */
/* Form Variables */
/* Button Variables */
* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

body, html {
  background-color: #f3f5f7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: #474b50;
}

.form {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.form .form-label {
  display: block;
  padding: 20px 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #474b50;
}
.form .form-group {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form .form-group .form-icon-left, .form .form-group .form-icon-right {
  fill: #c1c6cb;
  width: 40px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}
.form .form-group .form-icon-left {
  left: 0;
}
.form .form-group .form-icon-left + .form-input {
  padding-left: 40px;
}
.form .form-group .form-icon-right {
  right: 0;
}
.form .form-group .form-icon-right + .form-input {
  padding-right: 40px;
}
.form .form-group:focus-within .form-icon-left {
  fill: #989fa8;
}
.form .form-input {
  width: 100%;
  height: 43px;
  border: 1px solid #dee1e6;
  padding: 0 15px;
  border-radius: 4px;
  color: #000;
}
.form .form-input::placeholder {
  color: #989fa8;
}
.form .form-link {
  color: #2a8eeb;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.form .form-link:hover {
  color: #136fc5;
}
.form p.register-link {
  margin: 0;
  padding: 20px 0 0 0;
  font-size: 14px;
  color: #6b7179;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background: #3e7bd6;
  color: #FFFFFF;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  height: 42px;
  box-shadow: 0px 0px 6px 1px rgba(45, 57, 68, 0.1);
}
.btn:hover {
  background: #3172d3;
}

.login, .register {
  display: flex;
  flex-flow: column;
  width: 400px;
  max-width: 95%;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px 1px rgba(45, 57, 68, 0.05);
  border-radius: 5px;
  margin: 100px auto;
  padding: 35px;
}
.login h1, .register h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 0;
  margin: 0;
}

.header {
  background-color: #333941;
  height: 60px;
  width: 100%;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 900px;
  height: 100%;
}
.header .wrapper h1, .header .wrapper a {
  display: inline-flex;
  align-items: center;
}
.header .wrapper h1 {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: normal;
}
.header .wrapper .menu {
  display: flex;
  align-items: center;
}
.header .wrapper .menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  margin: 0 3px;
  text-decoration: none;
  color: #dddfe2;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.header .wrapper .menu a svg {
  fill: #dddfe2;
  margin: 2px 8px 0 0;
}
.header .wrapper .menu a:hover, .header .wrapper .menu a:active {
  color: #ebebec;
}
.header .wrapper .menu a:hover svg, .header .wrapper .menu a:active svg {
  fill: #ebebec;
}
.header .wrapper .menu a:last-child {
  margin-right: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}

.language-switcher select,
.public-language-switcher select {
  min-width: 58px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  cursor: pointer;
}

.language-switcher option,
.public-language-switcher option {
  color: #222;
}

.public-language-switcher {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10;
}

.language-buttons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.language-buttons button {
  min-width: 40px;
  padding: 6px 8px;
  border: 1px solid #d7dce5;
  border-radius: 6px;
  background: #fff;
  color: #263244;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.language-buttons button:hover,
.language-buttons button.is-active {
  border-color: #263244;
  background: #263244;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content {
  width: 900px;
  margin: 0 auto;
}
.content .page-title {
  display: flex;
  align-items: center;
  padding: 25px 0 10px 0;
}
.content .page-title h2 {
  margin: 0;
  padding: 0 0 7px 0;
  font-size: 20px;
  font-weight: 600;
  color: #53585e;
}
.content .page-title p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #777e86;
}
.content .block {
  box-shadow: 0px 0px 7px 1px rgba(45, 57, 68, 0.05);
  margin: 25px 0;
  padding: 25px;
  border-radius: 5px;
  background-color: #fff;
}
.content .block p {
  padding: 7px;
  margin: 0;
}
.content .block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.content .block-header .btn {
  flex-shrink: 0;
}
.content .profile-detail {
  display: flex;
  flex-flow: column;
  font-size: 18px;
  padding: 5px 0;
}
.content .profile-detail strong {
  display: block;
  color: #92979e;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.table-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid #e6e9ed;
  border-radius: 6px;
}

.forms-table {
  display: table;
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #474b50;
  text-align: left;
}

.forms-table th,
.forms-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf0f2;
  vertical-align: middle;
}

.forms-table th {
  background: #f8f9fa;
  color: #626a73;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}

.forms-table tbody tr:last-child td {
  border-bottom: 0;
}

.forms-table tbody tr:hover {
  background: #fafcff;
}

.forms-table .actions-column {
  width: 130px;
}

.forms-table .empty-table {
  padding: 32px 16px;
  color: #777e86;
  text-align: center;
}

.status {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef2f6;
  color: #626a73;
  font-size: 13px;
  font-weight: 600;
}

.status-pending {
  background: #fff4d6;
  color: #8a6400;
}

.table-actions {
  white-space: nowrap;
}
.delete-form {
  display: inline-flex;
  margin: 0;
}
.delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #c0392b;
  cursor: pointer;
}
.delete-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.delete-button:hover,
.delete-button:focus-visible {
  background: #fff0f0;
  color: #a93226;
  outline: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 36, 42, .55);
}
.modal.is-open {
  display: flex;
}
.modal-dialog {
  position: relative;
  width: 420px;
  max-width: 100%;
  padding: 28px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(30, 36, 42, .2);
}
.modal-dialog h3 {
  margin: 0 0 20px;
  font-size: 20px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #777e86;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.modal-form label {
  color: #474b50;
  font-size: 14px;
  font-weight: 500;
}
.modal-form select,
.modal-form input {
  width: 100%;
  height: 43px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding: 0 12px;
  color: #000;
}
.modal-form input {
  margin-bottom: 10px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.modal-cancel {
  background: #eef2f6;
  color: #474b50;
}
.modal-cancel:hover {
  background: #e1e6eb;
}
.modal-error,
.alert {
  padding: 12px 16px;
  border-radius: 4px;
}
.modal-error {
  margin: 0 0 15px;
  background: #fff0f0;
  color: #b42318;
  font-size: 14px;
}
.alert {
  position: fixed;
  z-index: 11;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  background: #e8f7ee;
  color: #18794e;
  box-shadow: 0 4px 14px rgba(45, 57, 68, .12);
}

.user-error {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  background: #fff0f0;
  color: #b42318;
}
.user-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.disable-user-form {
  display: inline-flex;
  margin: 0;
}
.level-user-form {
  display: inline-flex;
  margin: 0;
}
.user-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.user-action-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.user-action-button:disabled {
  cursor: not-allowed;
  opacity: .35;
}
.user-action-button:disabled:hover {
  background: transparent;
}
.edit-user-button {
  color: #3e7bd6;
}
.disable-user-button {
  color: #c0392b;
}
.activate-user-button {
  color: #18794e;
}
.level-user-button {
  color: #8a6400;
}
.edit-user-button:hover,
.edit-user-button:focus-visible {
  background: #eef4ff;
  outline: none;
}
.disable-user-button:hover,
.disable-user-button:focus-visible {
  background: #fff0f0;
  outline: none;
}
.activate-user-button:hover,
.activate-user-button:focus-visible {
  background: #e8f7ee;
  outline: none;
}
.level-user-button:hover,
.level-user-button:focus-visible {
  background: #fff4d6;
  outline: none;
}
.user-status {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.user-status-active {
  background: #e8f7ee;
  color: #18794e;
}
.user-status-disabled {
  background: #fff0f0;
  color: #b42318;
}
.user-status-admin {
  background: #eef4ff;
  color: #2a62ad;
}
.user-status-owner {
  background: #eef2f6;
  color: #626a73;
}

.password-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.password-card {
  width: 420px;
  max-width: 100%;
  padding: 35px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 7px 1px rgba(45, 57, 68, .08);
}
.password-card h1 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
.password-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.password-form label {
  margin-top: 8px;
  color: #474b50;
  font-size: 14px;
  font-weight: 500;
}
.password-form input {
  width: 100%;
  height: 43px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding: 0 12px;
}
.password-form select {
  width: 100%;
  height: 43px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding: 0 12px;
  background: #fff;
  color: #000;
  font: inherit;
}
.password-form .btn {
  margin-top: 18px;
}
.password-error,
.password-success {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 4px;
}
.password-error {
  background: #fff0f0;
  color: #b42318;
}
.password-success {
  background: #e8f7ee;
  color: #18794e;
}
.password-login-link {
  width: 100%;
}
.forgot-password {
  margin: 18px 0 0;
  text-align: center;
}
.forgot-password a {
  color: #2a8eeb;
  font-size: 14px;
  text-decoration: none;
}
.forgot-password a:hover {
  color: #136fc5;
  text-decoration: underline;
}
.activation-card {
  text-align: center;
}
.activation-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
}
.activation-icon-success {
  background: #e8f7ee;
  color: #18794e;
}
.activation-icon-error {
  background: #fff0f0;
  color: #b42318;
}
.activation-card h1 {
  margin-bottom: 18px;
}
.activation-card .password-success,
.activation-card .password-error {
  margin-bottom: 22px;
}

.forms-list-table {
  min-width: 760px;
}
.completion-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.completion-status.completed {
  background: #e8f7ee;
  color: #18794e;
}
.completion-status.pending {
  background: #fff4d6;
  color: #8a6400;
}
.completion-mark {
  font-size: 15px;
  font-weight: 700;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.inline-form {
  display: inline-flex;
  margin: 0;
}
.icon-action {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.icon-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.remind-action {
  color: #3e7bd6;
}
.fill-action {
  color: #18794e;
}
.remind-action:hover,
.remind-action:focus-visible {
  background: #eef4ff;
  outline: none;
}
.fill-action:hover,
.fill-action:focus-visible {
  background: #e8f7ee;
  outline: none;
}
.view-action {
  color: #626a73;
  text-decoration: none;
}
.view-action:hover,
.view-action:focus-visible {
  background: #eef2f6;
  outline: none;
}
.print-header {
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6e9ed;
}
.print-header h1 {
  margin: 0 0 8px;
  color: #474b50;
  font-size: 24px;
}
.print-header p {
  margin: 0;
  color: #777e86;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #e6e9ed;
  background: #e6e9ed;
}
.detail-item {
  min-height: 70px;
  padding: 14px 16px;
  background: #fff;
  color: #474b50;
}
.detail-item span {
  display: block;
  margin-bottom: 5px;
  color: #777e86;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.detail-wide {
  grid-column: span 2;
}
.view-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.public-form-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.public-form-card {
  width: 700px;
  max-width: 100%;
  padding: 35px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 7px 1px rgba(45, 57, 68, .08);
}
.public-form-card h1 {
  margin: 0 0 12px;
  color: #474b50;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.public-form-intro {
  margin: 0 0 22px;
  color: #777e86;
  text-align: center;
}
.public-form-fields .btn {
  width: 100%;
  margin-top: 18px;
}

@media print {
  .no-print,
  .header {
    display: none !important;
  }
  .print-page,
  .content {
    width: 100%;
    margin: 0;
  }
  .printable-form {
    margin: 0;
    padding: 0;
    box-shadow: none;
  }
}
.form-modal-dialog {
  width: 620px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.modal-form textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  padding: 10px 12px;
  color: #000;
}
.modal-form small {
  display: block;
  margin-top: 5px;
  color: #777e86;
  font-size: 12px;
}
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 7px;
  margin-top: 10px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}
.checkbox-label input {
  width: auto !important;
  height: auto !important;
}
.conditional-fields {
  margin-top: 4px;
  padding: 14px;
  border-radius: 4px;
  background: #f8f9fa;
}
.conditional-fields label {
  display: block;
  margin-top: 8px;
}
.conditional-fields label:first-child {
  margin-top: 0;
}

@media (max-width: 700px) {
  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-modal-dialog {
    max-height: calc(100vh - 20px);
  }
}

@media (max-width: 700px) {
  .header .wrapper,
  .content {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  .header {
    height: auto;
  }

  .header .wrapper {
    min-height: 60px;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
  }

  .header .wrapper .menu {
    flex-wrap: wrap;
  }

  .content .block {
    padding: 16px;
  }

  .content .block-header {
    flex-wrap: wrap;
  }

  .table-container {
    overflow: visible;
    border: 0;
  }

  .forms-table {
    min-width: 0;
  }

  .forms-table thead {
    display: none;
  }

  .forms-table,
  .forms-table tbody,
  .forms-table tr,
  .forms-table td {
    display: block;
    width: 100%;
  }

  .forms-table tr {
    margin-bottom: 12px;
    padding: 8px 0;
    border: 1px solid #e6e9ed;
    border-radius: 6px;
    background: #fff;
  }

  .forms-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border-bottom: 0;
    text-align: right;
  }

  .forms-table td::before {
    content: attr(data-label);
    color: #626a73;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
  }

  .forms-table .empty-table {
    display: block;
    padding: 24px 14px;
    text-align: center;
  }

  .forms-table .empty-table::before {
    content: none;
  }
}

.pad-1 {
  padding: 5px;
}

.mar-1 {
  margin: 5px;
}

.pad-2 {
  padding: 10px;
}

.mar-2 {
  margin: 10px;
}

.pad-3 {
  padding: 15px;
}

.mar-3 {
  margin: 15px;
}

.pad-4 {
  padding: 20px;
}

.mar-4 {
  margin: 20px;
}

.pad-5 {
  padding: 25px;
}

.mar-5 {
  margin: 25px;
}

.pad-bot-1 {
  padding-bottom: 5px;
}

.pad-top-1 {
  padding-top: 5px;
}

.pad-left-1 {
  padding-left: 5px;
}

.pad-right-1 {
  padding-right: 5px;
}

.pad-x-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-y-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.mar-bot-1 {
  margin-bottom: 5px;
}

.mar-top-1 {
  margin-top: 5px;
}

.mar-left-1 {
  margin-left: 5px;
}

.mar-right-1 {
  margin-right: 5px;
}

.mar-x-1 {
  margin-left: 5px;
  margin-right: 5px;
}

.mar-y-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.pad-bot-2 {
  padding-bottom: 10px;
}

.pad-top-2 {
  padding-top: 10px;
}

.pad-left-2 {
  padding-left: 10px;
}

.pad-right-2 {
  padding-right: 10px;
}

.pad-x-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-y-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mar-bot-2 {
  margin-bottom: 10px;
}

.mar-top-2 {
  margin-top: 10px;
}

.mar-left-2 {
  margin-left: 10px;
}

.mar-right-2 {
  margin-right: 10px;
}

.mar-x-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.mar-y-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pad-bot-3 {
  padding-bottom: 15px;
}

.pad-top-3 {
  padding-top: 15px;
}

.pad-left-3 {
  padding-left: 15px;
}

.pad-right-3 {
  padding-right: 15px;
}

.pad-x-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.pad-y-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mar-bot-3 {
  margin-bottom: 15px;
}

.mar-top-3 {
  margin-top: 15px;
}

.mar-left-3 {
  margin-left: 15px;
}

.mar-right-3 {
  margin-right: 15px;
}

.mar-x-3 {
  margin-left: 15px;
  margin-right: 15px;
}

.mar-y-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pad-bot-4 {
  padding-bottom: 20px;
}

.pad-top-4 {
  padding-top: 20px;
}

.pad-left-4 {
  padding-left: 20px;
}

.pad-right-4 {
  padding-right: 20px;
}

.pad-x-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-y-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mar-bot-4 {
  margin-bottom: 20px;
}

.mar-top-4 {
  margin-top: 20px;
}

.mar-left-4 {
  margin-left: 20px;
}

.mar-right-4 {
  margin-right: 20px;
}

.mar-x-4 {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-y-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pad-bot-5 {
  padding-bottom: 25px;
}

.pad-top-5 {
  padding-top: 25px;
}

.pad-left-5 {
  padding-left: 25px;
}

.pad-right-5 {
  padding-right: 25px;
}

.pad-x-5 {
  padding-left: 25px;
  padding-right: 25px;
}

.pad-y-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.mar-bot-5 {
  margin-bottom: 25px;
}

.mar-top-5 {
  margin-top: 25px;
}

.mar-left-5 {
  margin-left: 25px;
}

.mar-right-5 {
  margin-right: 25px;
}

.mar-x-5 {
  margin-left: 25px;
  margin-right: 25px;
}

.mar-y-5 {
  margin-top: 25px;
  margin-bottom: 25px;
}
