body {
  background-color: #FFF;
  font-size: 1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

*, ::after, ::before {
  box-sizing: border-box;
}

hr {
  border:0;
  width:100%;
  border-bottom:solid 1px #CCC;
  padding:40px 0 0;
  margin:0 0 40px;
}

a {
  text-decoration: none;
  color: #222;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

h1 {
  font-size: 1.6em;
  color: var(--theme-color, #000);
}

h1 span {
  color: var(--theme-color, #133C63);
}

ol {
  margin: 0;
  padding-left: 30px;
}

ul li,
ol li {
  display: list-item;
}

ol li {
  padding-left: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

div {
  display: block;
}

.d-none {
  display: none;
}

.container {
  max-width: 1240px;
  margin: 20px auto 0;
  min-height: 100vh;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

select,
input,
textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio] {
  width: auto;
}

/* textarea {
  margin-bottom: 30px;
} */

select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 6px;
}

.underline {
  text-decoration: underline;
}

.underline:hover {
  text-decoration: none;
}

.text-start, .text-left {
  text-align: left;
}

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

.text-end, .text-right {
  text-align: right;
}

.modal button.blank,
.wrap button.blank,
.introTitle button.blank {
  background: none;
  border: none;
}

.btn.btn-primary,
.btn.btn-secondary,
.modal button:not(.blank),
.wrap button:not(.blank),
.wrap a.button:not(.blank),
.introTitle button:not(.blank),
.introTitle a.button:not(.blank) {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: var(--theme-color, #133C63);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 1rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

  border-radius: 6px;
  color: #FFF;
  background-color: var(--theme-color, #133C63);
  border-color: var(--theme-color, #133C63);
}

.modal button:not(.blank):hover,
.modal button:not(.blank):focus,
.wrap button:not(.blank):hover,
.wrap button:not(.blank):focus {
  background: #222;
  border-color: #222;
}

.introTitle button.disabled,
.introTitle a.button.disabled,
.modal button.disabled,
.wrap button.disabled,
.wrap a.button.disabled {
  background-color: #CCC;
  border-color: #CCC;
}

button.btn.btn-secondary,
.btn.btn-secondary,
.btn.btn-primary:hover {
  background: #000;
  border-color: #000;
}

.btn-sm {
  font-size:0.85em!important;
}

.btn.btn-secondary:hover {
  background: #212529;
  border-color: #333;
}

.btn.btn-primary.bordered {
  background-color: transparent;
  color: var(--theme-color, #133C63);
}

.btn.btn-primary.bordered:hover {
  color: #000;
}

.btn.btn-secondary.bordered {
  background-color: transparent;
  color: #000;
}

.btn.btn-secondary.bordered:hover {
  color: var(--theme-color, #133C63);
  border-color: var(--theme-color, #133C63);
}

.wrap .btn.btn-warning,
.modal .btn.btn-warning,
.btn.btn-warning {
  background-color: #990000;
  border-color: #990000;
}

.introTitle a.button.black:not(.blank),
.wrap button.black:not(.blank),
.wrap a.button.black:not(.blank) {
  background: #000;
  border-color: #000;
}

.introTitle a.button:hover,
.introTitle a.button:focus,
.wrap a.button:hover,
.wrap a.button:focus,
.introTitle a.button:hover,
.introTitle a.button:focus {
  background-color: #000;
  border-color: #000;
}

.wrap a.button.bordered:not(.blank),
.introTitle a.button.bordered:not(.blank) {
  background: transparent;
  color: var(--theme-color, #133C63);
}

.wrap a.button.bordered:not(.blank):hover,
.wrap a.button.bordered:not(.blank):focus,
.introTitle a.button.bordered:not(.blank):hover,
.introTitle a.button.bordered:not(.blank):focus {
  color: #000;
}

.wrap a.button.bordered.black:not(.blank),
.introTitle a.button.bordered.black:not(.blank) {
  color: #000;
}

.wrap a.button.black:not(.blank):hover,
.wrap a.button.black:not(.blank):focus,
.introTitle a.button.black:not(.blank):hover,
.introTitle a.button.black:not(.blank):focus {
  background-color: #333;
  border-color: #333;
  color: #FFF;
}

.modal form label,
.wrap form label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 220px;
}

.modal form label.mw-100,
.wrap form label.mw-100 {
  max-width: 100%;
}

.formRow {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  box-sizing: border-box;
  align-items: baseline;
}

.formCol {
  max-width: 50%;
  flex-basis: 50%;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 20px;
}

.wrap,
.flex_column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wrap iframe, 
.flex_column iframe {
  width:100%;
  height:450px;
}

.login_container {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

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

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

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

.mb-2, .mb-20 {
  margin-bottom: 10px;
}

.ms-1, .ms-10, .ml-1, .ml-10 {
  margin-left: 10px;
}

.me-1, .me-10, .mr-1, .mr-10 {
  margin-right: 10px;
}

.w-100 {
  width: 100%;
  box-sizing: border-box;
}

.w-5 {
  width: 5%;
  box-sizing: border-box;
}

.w-8 {
  width: 8%;
  box-sizing: border-box;
}

.w-46 {
  width: 46%;
  box-sizing: border-box;
}

.w-47_5 {
  width: 47.5%;
  box-sizing: border-box;
}

.w-20 {
  width: 20%;
  box-sizing: border-box;
}

.w-40 {
  width: 40%;
  box-sizing: border-box;
}

.w-50 {
  width: 50%;
  box-sizing: border-box;
}

.align-items-end {
  align-items: end;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: end;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-grow-2 {
  flex-grow: 2;
}

svg.logo {
  max-width: 100px;
}

table {
  background: #FFF;
  border: 1px solid #dee2e6;
  border-collapse: collapse;
  color: #212529;
  margin-top: 1rem;
  margin-bottom: 1rem;
  vertical-align: top;
  width: 100%;
  font-size: 1em;
}

tbody, td, tfoot, th, thead, tr {
  border: 0 solid;
  border-color: inherit
}

table>thead {
  vertical-align: bottom
}

table> :not(caption)>* {
  border-right: 1px solid #dee2e6
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent
}

table> :not(caption)>*>* {
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 10px;
  vertical-align: middle
}

table ul {
  padding-left: 20px
}

.display-flex {
  display: flex;
}

.display-flex p {
  margin: 0;
  display: flex;
  align-items: center;
}

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

.border-bottom {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: solid 1px #CCC;
}

.border {
  border: solid 1px #CCC;
}

.rounded {
  border-radius: 10px;
}

.h-100 {
  height: 100%;
}

.p-0 {
  padding: 0;
}

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

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

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

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

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

.p-5, .p-50 {
  padding: 50px;
}

.p-4, .p-40 {
  padding: 40px;
}

.p-3, .p-30 {
  padding: 30px;
}

.p-2, .p-20 {
  padding: 20px;
}

.p-1, .p-10 {
  padding: 10px;
}

.m-0 {
  margin: 0;
}

.ml-10 {
  margin-left: 10px;
}

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

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

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

.d-flex.no-wrap {
  flex-wrap: nowrap;
}

.d-flex.flex-direction-column {
  flex-direction: column;
}

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

.d-block {
  display: block;
}

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

.align-items-start {
  align-items: start;
}

.row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.row .col-1, .row .col-2, .row .col-3, .row .col-4,
.row .col-5, .row .col-6, .row .col-7, .row .col-8,
.row .col-9, .row .col-10, .row .col-11, .row .col-12 {
  padding: 10px;
  box-sizing: border-box;
}

.row .col-3 {
  width: 25%;
  flex-basis: 25%;
}

.row .col-4 {
  width: 33.33334%;
  flex-basis: 33.33334%;
}

.row .col-6 {
  width: 50%;
  flex-basis: 50%;
}

.row .col-8 {
  width: 66.66664%;
  flex-basis: 66.66664%;
}

.row .col-9 {
  width: 75%;
  flex-basis: 75%;
}

.row .col-12 {
  width: 100%;
  flex-basis: 100%;
}

.row .inner {
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  min-height: 260px;
  border: solid 1px #CCC;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.row .inner h3 {
  margin-top: 0;
  font-size: 1.4em;
}

.row .inner p {
  margin-top: 0;
}

h3 a {
  color: var(--theme-color, #133C63);
}

.w-auto {
  width: auto;
}

.w-200 {
  width: 200px;
}

.w-300 {
  width: 300px;
}

.w-400 {
  width: 400px;
}

.w-500 {
  width: 500px;
}

.w-600 {
  width: 600px;
}

.w-660 {
  width: 660px;
}

.w-90 {
  width: 90px;
}

.w-110 {
  width: 110px;
}

.w-150 {
  width: 150px;
}

.w-160 {
  width: 160px;
}

.w-200 {
  width: 200px;
}

.w-300 {
  width: 300px;
}

.w-400 {
  width: 400px;
}

.w-500 {
  width: 500px;
}

.w-600 {
  width: 600px;
}

.w-660 {
  width: 660px;
}

.w-860 {
  width: 860px;
}

.mw-100 {
  max-width: 100px;
}

.mw-150 {
  max-width: 150px;
}

.mw-200 {
  max-width: 200px;
}

.mw-300 {
  max-width: 300px;
}

.mw-400 {
  max-width: 400px;
}

.mw-500 {
  max-width: 500px;
}

.mw-600 {
  max-width: 600px;
}

.mw-660 {
  max-width: 660px;
}

.mw-860 {
  max-width: 860px;
}

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

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

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


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

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

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

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

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-1 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-2 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-3 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx-4 {
  margin-left: 40px;
  margin-right: 40px;
}

.mx-5 {
  margin-left: 50px;
  margin-right: 50px;
}

.pt-05 {
  padding-top: 5px;
}

.pb-05 {
  padding-bottom: 5px;
}

.pl-05, .ps-05 {
  padding-left: 5px;
}

.pl-100 {
  padding-left:100px;
}

.pr-05, .pe-05 {
  padding-right: 5px;
}

.px-05 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-1 {
  padding-left: 10px;
  padding-right: 10px;
}

.pl-2, .pl-20 {
  padding-left: 20px;
}

.pr-2, .pr-20 {
  padding-left: 20px;
}

.px-2 {
  padding-left: 20px;
  padding-right: 20px;
}

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

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

.pt-3 {
  padding-top: 30px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-5 {
  padding-top: 50px;
}

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

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

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-5 {
  padding-bottom: 50px;
}

.border-top {
  border-top: solid 1px #CCC;
}

.border-bottom {
  border-bottom: solid 1px #CCC;
}

main.login_page {
  background: #f6f7f7;
  max-width: unset;
  align-items: center;
}

main.login_page h1 {
  color: var(--theme-color, #133C63);
  text-align: center;
}

main.login_page p {
  color: rgba(33, 37, 41);
}

main.login_page svg {
  margin: 0 auto 20px;
}

main.login_page svg path {
  fill: #FFF;
}

main.login_page .container.wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

main.login_page .container.wrap h2 {
  color: var(--theme-color, #133C63);
  font-size: 2em;
}

main.login_page button.blank {
  color: rgba(33, 37, 41);
}

main.login_page label {
  color: rgba(33, 37, 41);
  margin-top: 20px;
  text-align: left;
}

input:disabled {
  background: #EEE;
  color: #999;
}

input.checkbox {
  position: relative;
  background:transparent;
  display: flex;
  margin: 0;
  width: 1px;
  height: 1px;
  padding: 0px 16px 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px transparent;
}

.checkButton {
  padding:0 0 10px 36px;
  display:flex;
  position:relative;
}

.checkButton:before,
input.checkbox:before {
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  height: 14px;
  width: 28px;
  border: 2px solid #bbb;
  background: #bbb;
  border-radius: 13rem;
  box-sizing: content-box;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.checkButton:after,
input.checkbox:after {
  display: block;
  position: relative;
  position: absolute;
  background: #FFF;
  content: " ";
  width: 14px;
  height: 14px;
  top: 2px;
  left: 3px;
  border-radius: 13rem;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.checkButton.checked:before,
input.checkbox.checked:before {
  background-color: var(--theme-color, #133C63);
  border-color: var(--theme-color, #133C63);
}

.checkButton.checked:after,
input.checkbox.checked:after {
  left: 15px;
}

.gta-r_item {
  padding: 10px;
  width: 25%;
  flex-basis: 25%;
}

.gta-r_item .item {
  border-radius: 10px;
  border: solid 1px #EEE;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gta-r_item .item h3 {
  margin: 0 0 10px;
  flex-grow: 1;
}

.tab-links {
  list-style-type: none;
  margin: 0 auto 30px;
  padding: 0;
  display: flex;
}

.tab-links .tab-btn {
  border-radius: 20px;
  padding: 8px 16px;
  border: solid 2px #000;
  color: #000;
  margin: 0 5px;
  display: block;
}

.tab-links li {
  display: block;
}

.tab-links .tab-btn.active {
  background: #000;
  color: #FFF;
}

.overflow-hidden {
  overflow: hidden;
}

.list-none {
  list-style-type: none;
}

ul.btns {
  list-style-type: none;
  margin: 30px auto 0;
  padding: 0;
  display: flex;
}

ul.btns li {
  margin-right: 10px;
}

.searchForm {
  max-width: 480px;
  margin: 0 auto;
}

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

.searchForm label {
  margin: 0;
}

.row .picked .border {
  border: solid 1px var(--theme-color, #133C63);
}

.img_wrap {
  position: relative;
  z-index: 10;
}

.z-100, .z-200, .z-300, .z-500, .z-1000 {
  position: relative;
}

.z-100 {
  z-index: 100;
}

.z-200 {
  z-index: 200;
}

.z-300 {
  z-index: 300;
}

.z-500 {
  z-index: 500;
}

.z-1000 {
  z-index: 1000;
}

.box {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 10000;
  top: 0;
  left: 0;
  position: relative;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.modal .wrapper {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  height: auto;
  background: #FFF;
  border-radius: 6px;
  padding: 20px;
  position: relative;
  overflow-x: scroll;
}

.modal .wrapper h3 {
  font-size: 1.6em;
  color: var(--theme-color);
}

.modal.delete_resource .wrapper,
.modal.delete_user .wrapper {
  max-width: 360px;
}

.modal .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--theme-color);
  color: #FFF;
}

.pills {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pill {
  display: inline-block;
  background: #222;
  color: #FFF;
  border: solid 1px #222;
  border-radius: 14px;
  padding: 5px 10px;
  margin-right: 5px;
  font-size:0.85em;
  text-transform:uppercase;
}

h1 .pill,
h2 .pill,
h3 .pill,
h4 .pill,
h5 .pill {
  font-size: 0.6em;
  text-transform: uppercase;
  margin-left:10px;
}

.card {
  width: 25%;
  flex-basis: 25%;
  padding: 6px;
}

.card .inner {
  background: #FFF;
  padding: 20px;
  border: solid 1px var(--theme-color, #133C63);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card .inner img {
  border-radius: 4px;
}

.intro ul {
  margin: 0;
  padding: 0;
  justify-content: center;
  display: flex;
  padding-top: 0;
  margin-top: 0;
}

.intro ul li {
  display: inline-block;
  background: transparent;
  border: Solid 1px var(--theme-color, #133C63);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  margin-right: 10px;
}

.intro ul li a {
  padding: 10px 20px;
  display: block;
  background: #FFF;
  color: var(--secondary-color, #133C63);
  transition: all 0.3s ease-in-out;
}

.intro ul li a:hover {
  color: #FFF;
  background: var(--theme-color, #133C63);
}

.intro ul li.current,
.intro ul li.current a {
  background: var(--theme-color, #133C63);
  border-color: var(--theme-color, #133C63);
  color: #FFF;
}

.status-bar {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: #FFF;
  background: #222;
  margin-bottom: 20px;
}

.whiteContainer {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  border: solid 1px #CCC;
  background-color: #FFF;
  border-radius: 10px;
}

.introMessage p:last-child {
  margin-bottom:0;
}
