.wrapper {
  margin-top: 15px;
  margin-bottom: 15px;

  overflow: auto;
}

.page {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}


/* PAGE HEADER. */
.page .page-header {
  position: relative;
  display: flex;

  flex-direction: row;

  justify-content: space-between;
}

.page .page-header .page-header-title {
  font-weight: 500;
  font-size: 35px;
}

.page .page-header .page-header-searchform {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
  max-width: 400px;
}

.page .page-header .page-header-searchform div {
  margin-bottom: 10px;
}
.page .page-header .page-header-searchform div:last-child {
  margin-bottom: 0;
}

.page .page-header .page-header-searchbox {
  position: relative;
  display: flex;

  flex-direction: row;

  width: 100%;
  max-width: 400px;
}

.page .page-header .page-header-searchbox select,
.page .page-header .page-header-searchbox input {
  position: relative;
  display: flex;

  width: 100%;
  height: 45px;

  padding: 0 20px;
  padding-left: calc(20px + 21px);

  border: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);

  transition: 0.25s all ease-out;
}
.page .page-header .page-header-searchbox select:focus,
.page .page-header .page-header-searchbox input:focus {
  border-color: #993e71;
}

.page .page-header .page-header-searchbox [type="submit"] {
  cursor: pointer;
  position: absolute;
  display: flex;

  top: calc((45px / 2) - (35px / 2));
  left: calc((45px / 2) - (35px / 2));

  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  border: 0;
  border: 2px solid #993e71;

  color: #993e71;

  background: rgba(255, 255, 255, 0);
  transition: 0.25s all ease-out;
}
.page .page-header .page-header-searchbox [type="submit"]:hover {
  color: white;
  background: #993e71;
}

.page .page-header .page-header-actions {
  position: relative;
  display: flex;

  flex-direction: row;
}

.page .page-header .page-header-actions__item {
  cursor: pointer;
  position: relative;
  display: flex;

  flex-direction: row;

  align-items: center;
  justify-content: center;

  margin-right: 10px;

  height: 45px;

  padding: 0 20px;

  border: 2px solid #993e71;

  color: #993e71;
  background: white;

  transition: 0.25s all ease-out;
}
.page .page-header .page-header-actions__item:first-child {
  margin-right: 0;
}

.page .page-header .page-header-actions__item > span {
  font-size: 15px;
  font-weight: 600;

  white-space: nowrap;
}
.page .page-header .page-header-actions__item > i {
  margin-right: 10px;
}

.page .page-header .page-header-actions__item:hover {
  color: white;
  background: #993e71;
}


/* PAGE CONTAINER. */
