@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
.container.header form {
  display: flex;
}

button {
  cursor: pointer;
}

button, a.action {
  padding: 0 30px;
  background-color: #112d96;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 5px;
}

a.action {
  padding: 5px 25px;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
a.action:visited {
  color: white;
}

.action.destructive {
  background-color: #E65532;
}

button:hover, .upload-input + label:hover, a.action:hover {
  opacity: 0.8;
}

.success {
  color: #31872c;
}

input.error {
  border: 1px solid #E65532;
}

button.disabled, button:disabled {
  opacity: 0.5;
}

/*---------- SEARCH FORM ----------*/
#search-form {
  display: flex;
}

#search-input {
  flex-grow: 1;
  padding: 10px;
  margin-right: 20px;
}

/*---------- MODAL ----------*/
.modal-form {
  display: flex;
  flex-direction: column;
}

.modal-action-buttons button {
  border: 2px solid #112d96;
  background-color: #EFEFEF;
  color: #112d96;
}

.modal-action-buttons button:hover {
  background-color: #112d96;
  color: #FFFFFF;
}

.modal-action-buttons .default-action {
  background-color: #112d96;
  color: #FFFFFF;
}

.multi-checkbox {
  background: #FFFFFF;
  border: #112d96 1px solid;
  padding: 0rem;
  overflow-x: hidden;
  overflow-y: scroll;
  /*min-width: 400px;*/
  max-height: 200px;
}

.checkboxrow {
  padding: 0.25rem 0.5rem;
  display: flex;
}

.checkboxrow:first-child {
  padding-top: 0.5rem;
}

.checkboxrow:last-child {
  padding-bottom: 0.5rem;
}

.checkbox-label {
  padding-left: 0.5rem;
}

.checkboxrow input {
  margin: 0;
}

.checkboxrow:hover {
  background-color: #112d96;
}

.perm-desc {
  font-size: 0.8rem;
  margin: 0;
}

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

.modal-form .form-element label {
  min-width: 7.5rem;
  width: 7.5rem;
}

/*---------- CONTENT FORM ----------*/
.content-form .form-element {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.content-form .form-element label {
  min-width: 10rem;
  width: 10rem;
}

.content-form .form-element input {
  padding: 0.3rem;
}

.content-form .form-element.submit-element {
  justify-content: right;
  -webkit-justify-content: flex-end;
}

.content-form .form-element button {
  padding: 0.4rem 1.1rem;
}

/*---------- MEDIA QUERY FOR CONTENT FORM ----------*/
@media screen and (max-width: 500px) {
  .content-form .form-element label {
    display: none;
  }

  .content-form .form-element input {
    width: 100%;
  }
}
/*---------- UPLOAD BUTTON ----------*/
.upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload-input + label {
  cursor: pointer;
  margin: 0px 2px 10px 2px;
  padding: 10px 10px;
  background-color: #112d96;
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  border-radius: 5px;
}

.upload-input + label i {
  padding-right: 5px;
}

form p.small {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
}

#upload-file-rename-input {
  padding: 10px 10px;
}

.container.modal-action-buttons button {
  margin-left: 10px;
}

.container.modal-action-buttons .left-most-button {
  margin-left: 0;
}

.error {
  color: #E65532;
}

.ui.selection.dropdown {
  min-height: auto !important;
  height: 1em;
  display: flex;
}

/* UPLOAD PROGRESS BAR */
#progress-wrp {
  border: 1px solid #112d96;
  padding: 1px;
  position: relative;
  height: 4px;
  border-radius: 3px;
  margin: 10px 0;
  text-align: left;
  background: #FFFFFF;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}

#progress-wrp .progress-bar {
  height: 100%;
  /*border-radius: 3px;*/
  background-color: #112d96;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

#progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

.darkenscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.3);
}

.modal {
  max-height: calc(100% - 100px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #EFEFEF;
  z-index: 999;
  overflow: auto;
}

.modal-padding-container {
  padding: 30px;
}

.modal .container.header {
  padding-top: 0;
}

.container.header p:first-of-type {
  margin-top: 0;
}

.modal input {
  padding: 5px 5px;
  margin: 5px 0;
}

.modal input[type=text], .modal input[type=password], .modal input[type=email] {
  /*width: 100%;*/
  min-width: 250px;
}

.modal .form-element input {
  width: 100%;
}

.modal button {
  padding: 10px 15px;
}

.bottommsg {
  padding: 10px 100px;
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
  background-color: #FFFFFF;
  border: 1px solid #112d96;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.bottommsg p {
  margin: 0;
}

.product-selector-topbar {
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: #112d96 solid;
  border-width: 1px 1px 0 1px;
}
.product-selector-topbar input, .product-selector-topbar .product-selected {
  font-size: 16px;
  margin: 0;
  padding: 10px;
  border: none;
  box-sizing: border-box;
  width: 100%;
}
.product-selector-topbar input {
  display: block;
}
.product-selector-topbar .product-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-selector-topbar .product-selected h3 {
  margin-right: 10px;
}

.product-selector {
  background: #FFFFFF;
  border: #112d96 1px solid;
  padding: 0rem;
  overflow-x: hidden;
  overflow-y: scroll;
  /*min-width: 400px;*/
  height: 200px;
  max-height: 200px;
}
.product-selector p {
  color: #868686;
  text-align: center;
  margin: 20px 10px;
}

.product-selector-item {
  padding: 10px;
  border-bottom: #112d96 1px solid;
  transition: background-color 0.15s ease-in-out;
  cursor: pointer;
}
.product-selector-item:last-child {
  border-bottom: none;
}
.product-selector-item:hover {
  background-color: #E3E3E3;
}
.product-selector-item h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1000px) {
  .modal {
    width: 400px;
    max-width: calc(100% - 60px);
  }

  .modal input[type=text], .modal input[type=password], .modal input[type=email] {
    min-width: 0;
  }
}
@media screen and (max-width: 500px) {
  .modal {
    width: 100%;
    max-width: 100%;
  }

  .modal button {
    padding: 7px 13px;
    font-size: 85%;
  }

  .modal-padding-container {
    padding: 20px;
  }
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/metropolis/Metropolis-Black.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/metropolis/Metropolis-Bold.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/metropolis/Metropolis-SemiBold.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/metropolis/Metropolis-Medium.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/metropolis/Metropolis-Regular.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/metropolis/Metropolis-Light.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 900;
  src: url("/fonts/metropolis/Metropolis-BlackItalic.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 700;
  src: url("/fonts/metropolis/Metropolis-BoldItalic.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 600;
  src: url("/fonts/metropolis/Metropolis-SemiBoldItalic.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 500;
  src: url("/fonts/metropolis/Metropolis-MediumItalic.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/metropolis/Metropolis-RegularItalic.otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 300;
  src: url("/fonts/metropolis/Metropolis-LightItalic.otf");
}
body {
  background-color: #112d96;
  font-family: "Metropolis", serif;
  font-weight: 300;
  font-size: 14px;
  color: #112d96;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

a, a:visited {
  color: #112d96;
}

.navPages {
  display: flex;
  flex-direction: row-reverse;
}
.navPages a {
  color: white;
  padding: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.1s ease-in-out;
}
.navPages a:hover {
  background-color: #7785b7;
}

.siteHead {
  background-color: white;
  color: #112d96;
  padding: 20px 0;
}
.siteHead a {
  color: #112d96;
}

.header-image {
  height: 80px;
  width: auto;
}

/* TABBAR */
.tab-bar {
  width: 100%;
  display: flex;
  align-content: stretch;
  justify-content: center;
  border-bottom: 4px solid #112d96;
  background-color: white;
}

.tab-item, .mobile-tab-dropdown, .mobile-tab-item {
  background-color: #EFEFEF;
  color: #112d96;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-item.tab-active, .tab-item:hover, .mobile-tab-dropdown, .mobile-tab-item.tab-active {
  background-color: #112d96;
  color: white;
}

.mobile-tab-dropdown {
  display: none;
}

#tabs-dropdown-button {
  font-size: 1.4rem;
  right: 1.5rem;
  position: absolute;
  transition: all 0.2s ease-in-out;
}

#tabs-dropdown-button.active {
  transform: rotate(180deg);
}

.mobile-tab-list {
  display: none;
  position: absolute;
  width: 100%;
  border-top: 4px solid #112d96;
  border-bottom: 4px solid #112d96;
  z-index: 100;
}

.occlusion-panel {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.main {
  max-width: 1600px;
  margin: auto;
}

.main-header {
  margin: 0 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.main-header h1 {
  margin: 0;
  font-size: 32px;
  margin-left: 20px;
}
.main-header a {
  text-decoration: none;
}
.main-header .titleAbout {
  flex-grow: 1;
  padding-left: 25px;
}

.main.content {
  background-color: #EFEFEF;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
}

.main-container {
  padding: 35px 50px 50px 50px;
}

.container.header {
  display: flex;
  padding-bottom: 5px;
  /*border-bottom: $primaryBlue 2px solid;*/
}

.header {
  margin: 0;
  flex-grow: 1;
  padding: 6px 0;
}

.footerAbout {
  color: white;
  text-align: center;
  margin: 20px 50px;
}

/* CONTAINERS */
.container {
  padding: 20px 0;
}

.container:first-child {
  padding-top: 0;
}

.container:last-child {
  padding-bottom: 0;
}

/* TABLE */
table, .file-table {
  width: 100%;
  max-width: 100%;
  border: #112d96 1px solid;
  background-color: #FFFFFF;
  border-collapse: collapse;
}

.file-table button {
  padding: 5px 15px;
}

.file-row {
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}

td, .file-cell {
  padding: 10px 5px;
  white-space: nowrap;
  border: none;
  border-top: #112d96 1px solid;
}

.file-cell.filename-cell {
  /*padding-left: 10px;*/
  /*text-overflow: ellipsis;*/
  overflow: hidden;
  flex-grow: 1;
  display: flex;
}

.filename-cont {
  padding-left: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
}

.file-row:first-child .file-cell {
  border: none;
}

.threedotsdropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: white;
  /*padding: 10px;*/
  border: #112d96 2px solid;
}

.threedotsaction {
  margin: 0;
  padding: 5px 10px;
  cursor: pointer;
}

.threedotsaction.destructive {
  color: #E65532;
}

.threedotsaction:hover {
  background-color: #EFEFEF;
}

.file-cell.dropdown-cell {
  display: none;
  padding-right: 10px;
  transition: all 0.2s ease-in-out;
}

.file-cell.dropdown-cell.active {
  transform: rotate(90deg);
}

.page-numbers {
  padding: 10px 10px;
  background-color: #112d96;
  border: #112d96 1px solid;
  color: white;
  text-align: center;
}

.page-numbers.bottom {
  border-radius: 0 0 10px 10px;
}

.page-numbers.top {
  border-radius: 10px 10px 0 0;
}

.page-number-link {
  padding: 10px 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.page-number-link:hover, .page-number-link.current {
  background-color: #7785b7;
}

/* BEGIN MOBILE ADJUSTMENTS */
@media screen and (max-width: 500px) {
  /* ------ MAIN ------ */
  .main-container {
    padding: 1rem;
    overflow: hidden;
  }

  /* ------ NAVBAR ------ */
  .header {
    padding: 1.5rem 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  .header-image {
    padding-left: 1.5rem;
    height: 50px;
  }

  /* ------ TABBAR ------ */
  .tab-bar {
    display: block;
    border-bottom: none;
  }

  .tab-item {
    display: none;
  }

  .mobile-tab-dropdown {
    display: block;
  }

  /* ------ SEARCH ------ */
  #search-input {
    font-size: 16px;
  }

  /* ------ TABLE ------ */
  table {
    display: block;
  }

  tbody {
    display: flex;
    flex-direction: column;
  }

  tr {
    display: block;
  }

  .username-cell {
    display: none;
  }

  td {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  td:first-child {
    float: left;
  }
}
@media screen and (max-width: 1000px) {
  /* ------ TABLE ------ */
  .file-row {
    flex-direction: column;
  }

  .action-cell {
    display: none;
    padding: 0;
  }

  .action-cell a.action {
    display: block;
    border-radius: 0;
    padding: 10px 25px;
  }

  .file-cell.dropdown-cell {
    display: block;
    float: right;
    padding: 0px 5px;
    border: none;
  }
}
.usertoolbar {
  background-color: #E3E3E3;
  padding: 0 10px;
  color: #868686;
  text-align: right;
}

.usertoolbar-links {
  margin: 0px;
  text-align: right;
}

.usertoolbar-link {
  display: inline-block;
  text-transform: uppercase;
  padding: 5px 15px;
  cursor: pointer;
  transition: color, background-color 0.1s ease-in-out;
  font-size: 14px;
}

.usertoolbar-link:hover {
  background-color: #868686;
  color: #E3E3E3;
}

.usertoolbar-link:hover a {
  color: #E3E3E3;
}

.usertoolbar-link a {
  color: #868686;
  text-decoration: none;
}

#mobile-bars {
  font-size: 1.5rem;
  padding: 0 1rem;
  display: none;
  transition: all 0.2s ease-in-out;
}

#mobile-bars.active {
  transform: rotate(90deg);
}

@media screen and (max-width: 500px) {
  .usertoolbar {
    padding: 0.75rem 1rem;
  }

  .usertoolbar-links {
    display: none;
    padding-top: 1rem;
    /*text-align: center;*/
    font-size: 1.2rem;
  }

  .usertoolbar-link {
    display: block;
  }

  #mobile-bars {
    display: inline-block;
  }
}

/*# sourceMappingURL=main.css.map */
