:root {
  --primary-color: #2196f3;
  --primary-outline-color: #104378;
  --primary-hover-color: #7ABCF0;

  --accent-color: #c8ad00;
  --accent-outline-color: #ffdd3a;
  --accent-hover-color: #ffff70;

  --success-color: #63ce6b;
  --error-color: #ff8484;
  --info-color: #3bc7e3;
  --warning-color: #fff0a8;

  --background-color: #2196f3;
  --block-color: #ffffff;

  --major-color: #104378;

  --line-color: #b7b7b7;
  --secondary-block-color: #b7b7b7;

  --line-break-color: #2196f3;
  --text-color: #2196f3;

  --card-text-color: #3e4748;
  --card-line-break-color: #3e4748;

  --soft-highlight: #f2f2f2;

  --font-family-primary: "Poppins";
  --font-family-bold: "Poppins Bold";
  --font-family-black: "Poppins Black";
  --font-family-semibold: "Poppins SemiBold";
  --font-family-medium: "Poppins Medium";
  --font-family-italic: "Poppins Italic";
  --font-family-secondary: "Arial";
}

html {
  height: 100%;
}

a {
  color:var(--primary-color);
  text-decoration: none;
}

a:hover {
  color:var(--primary-hover-color);
}



button  {
  color:gray;
  padding:6px 10px;
  border-radius:5px;
  border: 1px solid gray;
  background-color:white;
  cursor:pointer;
  transition: all 300ms ease;
}

/* button:hover  {
  background-color: var(--primary-hover-color) !important;
  border: 1px solid var(--primary-color) !important; 
  color:white !important;
} */

/* button.active {
  background-color: var(--major-color);
  border: 1px solid var(--major-color);
  color:white;
}
 */

body {
  color:var(--text-color);
  background-color:var(--block-color);
  min-height: 100%;
  margin:0;
  font-family: var(--font-family-primary), Arial, sans-serif;
}

#page {
  min-height:600px;
}

iframe {
  border:none;
}

.nav_title {
  display:none;
}

.header_title, .header_toggle {
  display:block;
}
.header_toggle  {
  cursor:pointer;
}

.navigation {
  position: fixed;
  height: 100%;
  top:0;
  left:-200px;
  width:175px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: var(--background-color);
  transition: width 0.2s ease-out, left 0.2s ease-out;
  z-index:3;
}

.navigation a {
  height:50px;
  box-sizing:border-box;
  transition: visibility 0.1s ease-out 1s;
}

.navigation a span {
  visibility:visible;
}

/* .navigation:hover {
  width:175px;
} */

header {
  padding:10px 0;
}

header, footer {
  background-color: var(--block-color);
  box-sizing: border-box;
}

header .row { 
  margin:0 auto;
}

footer .row {
  margin:0 auto;
}

.footer-text {
  color:var(--card-text-color)
}

.logo a {
  color:var(--major-color);
  text-decoration: none;
}

.login {
  font-size:16px;
  text-align: right;
}

.login a {
  margin:0 5px;
}

.logo {
  font-size:30px;
}

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

main {
  background-color: var(--block-color);
  width:100%;
}

.container {
  width: 360px;
  padding:40px 0;
}


.container.full_width {
  width: calc(100% - 20px);
  padding:0px;
}

.flex {
  display: flex;
}

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

.module {
  /* border-bottom: 4px solid var(--line-color); */
  width:100%;
}

h1 {
  margin:0px;
}

.title {
  font-size: 1.4em;
  border-bottom: 1px solid var(--line-break-color);
  padding:5px 0;
  margin-top:20px;
}

.title a {
  font-size: 0.6em;
}

/* .title span {
  font-size:0.6em;
  color:#2B2B2B;
} */

.crumbs {
  padding:0 5px 10px 5px;
  color:gray;
}

.industries li{
  border-bottom:transparent 1px solid;
}

.industries li:hover{
  border-bottom:var(--line-break-color) 1px solid;
}

.level_1 {
  list-style:none;
}

.level_1 span {
  font-size:0.6em;
  color:#2B2B2B;
  text-align: right;
}

.level_1_title {
  font-size: 1.4em;
  border-bottom: 1px solid #070707;
  padding:5px 0;
  margin-bottom:20px;
}

li {
  padding:8px 0;
}

.placement_image {
  background: no-repeat;
  background-position:  0 0;
  /* background-size: cover; */
  margin:0 auto;
  height:600px;
  width:600px;
  background-position: center;
}

.account_error_text {
  color:var(--card-text-color);
}

a.card {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 450px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-decoration: none;
  background-color:white;
  color:var(--card-text-color) !important;
}

a.card .circle {
  opacity: 1;
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

a.card .thumb {
  width: auto;
  height: 200px;
  background: no-repeat center;
  background-size: cover;
  border-radius: 3px;
  border-bottom:1px solid var(--card-line-break-color);
}
a.card .infos {
  width: auto;
  height: 350px;
  position: relative;
  padding: 14px 24px;
  background-color: var(--block-color);
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  color:var(--card-text-color) !important;
  z-index:2;
}
a.card .infos .title {
  position: relative;
  margin: 0;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid var(--card-line-break-color);
}
a.card .infos .date, a.card .infos .extra {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
a.card .infos .extra {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-line-break-color);
  opacity: 0;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
a.card .infos .paragraph {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 13;
  font-size: 0.95rem;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  padding:0 5px 5px 5px;
}
a.card .infos .description {
  font-size: 0.95rem;
  opacity: 0;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
a.card .infos .txt {
  line-height: 2;
  font-size: 0.95rem;
  opacity: 0;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}
a.card .infos .txt-shown {
  font-size:12px;
  opacity: 1;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  min-height:20px;
}
a.card .infos .sub-title {
  font-size:12px;
  opacity: 1;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  min-height:20px;
  line-height:20px;
  padding:5px 0;
  display:flex;
  flex-wrap: wrap;
}
a.card .infos .sub-title .full {
  white-space: nowrap;
  display:none;
}
a.card .infos .sub-title .rolled {
  display:inline-block;
  white-space: nowrap;
}

a.card .infos .details {
  position: absolute;
  left: 0;
  left: 0;
  bottom: 0;
  margin: 10px 0;
  padding: 20px 24px;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);

}
a.card .infos:hover {
  transform: translateY(-201px);
}
a.card .infos:hover .extra, a.card .infos:hover .txt, a.card .infos:hover .details, a.card .infos:hover .description {
  opacity: 1;
}

a.card .infos:hover .full {
  display:inline-block;
}

a.card .infos:hover .rolled {
  display:none;
}

a.card .infos:hover .circle {
  opacity: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--background-color);
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  position: relative;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-icon {
  width: 30px;
  height: 30px;
  border-radius: 0.25rem;
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}



/**
 * Main wrapper for filterable selects
 React select search lib
 */
 .select-search-container {
  --select-search-background: #fff;
  --select-search-border: #dce0e8;
  --select-search-selected: #959595;
  --select-search-text: #191919;
  --select-search-subtle-text: #6c6f85;
  --select-search-inverted-text: var(--select-search-background);
  --select-search-highlight: #eff1f5;
  --select-search-font: 'Inter', sans-serif;

  width: 300px;
  position: relative;
  font-family: var(--select-search-font);
  color: var(--select-search-text);
  box-sizing: border-box;
}

.select-search-container *,
.select-search-container *::after,
.select-search-container *::before {
  box-sizing: inherit;
}

.select-search-input {
  position: relative;
  z-index: 1;
  display: block;
  height: 48px;
  width: 100%;
  padding: 0 40px 0 16px;
  background: var(--select-search-background);
  border: 2px solid var(--select-search-border);
  color: var(--select-search-text);
  border-radius: 3px;
  outline: none;
  font-family: var(--select-search-font);
  font-size: 16px;
  text-align: left;
  text-overflow: ellipsis;
  line-height: 48px;
  letter-spacing: 0.01rem;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
}

.select-search-is-multiple .select-search-input {
  margin-bottom: -2px;
}

.select-search-is-multiple .select-search-input {
  border-radius: 3px 3px 0 0;
}

.select-search-input::-webkit-search-decoration,
.select-search-input::-webkit-search-cancel-button,
.select-search-input::-webkit-search-results-button,
.select-search-input::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

.select-search-input[readonly] {
  cursor: pointer;
}

.select-search-is-disabled .select-search-input {
  cursor: not-allowed;
}

.select-search-container:not(.select-search-is-disabled).select-search-has-focus .select-search-input,
.select-search-container:not(.select-search-is-disabled) .select-search-input:hover {
  border-color: var(--select-search-selected);
}

.select-search-select {
  background: var(--select-search-background);
  box-shadow: 0 .0625rem .125rem rgba(0, 0, 0, 0.15);
  border: 2px solid var(--select-search-border);
  overflow: auto;
  max-height: 360px;
}

.select-search-container:not(.select-search-is-multiple) .select-search-select {
  position: absolute;
  z-index: 2;
  top: 21px;
  right: 0;
  left: 0;
  border-radius: 3px;
  display: none;
}

.select-search-container:not(.select-search-is-multiple).select-search-has-focus .select-search-select {
  display: block;
}

.select-search-has-focus .select-search-select {
  border-color: var(--select-search-selected);
}

.select-search-options {
  list-style: none;
  text-transform: capitalize;
  padding:0px;
  margin: 0px;
}

.select-search-option,
.select-search-not-found {
  display: block;
  height: 42px;
  width: 100%;
  padding: 0 16px;
  background: var(--select-search-background);
  border: none;
  outline: none;
  font-family: var(--select-search-font);
  color: var(--select-search-text);
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.01rem;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}

.select-search-not-found {
  font-size:12px;
  margin:10px;
}


.select-search-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent !important;
}

.select-search-is-highlighted,
.select-search-option:not(.select-search-is-selected):hover {
  background: var(--select-search-highlight);
}

.select-search-is-selected {
  font-weight: bold;
  color: #191919;
  background-color:#959595;
}

.select-search-group-header {
  font-size: 12px;
  text-transform: uppercase;
  background: var(--select-search-border);
  color: var(--select-search-subtle-text);
  letter-spacing: 0.1rem;
  padding: 10px 16px;
}

.select-search-row {
  padding:1px 0;
  text-transform: capitalize;
}

.select-search-row:not(:first-child) .select-search-group-header {
  margin-top: 10px;
}

.select-search-row:not(:last-child) .select-search-group-header {
  margin-bottom: 10px;
}


.ReactModal__Overlay {
  z-index: 10;
}


@media only screen and (min-width: 580px) {

  .nav_title {
    display:none;
  }

  .header_title {
    display:block;
  }

  .container {
    width:calc(100% - 35px);
    padding-left: 15px;
  }

  .navigation {
    left:-200px;
    width:175px;
  }

  .navigation a span, .navigation div span {
    visibility:visible;
  }
  
}

@media only screen and (min-width: 780px) {

  .nav_title {
    display:none;
  }

  .header_title {
    display:block;
  }

  .container {
    width:calc(100% - 35px);
    padding-left: 15px;
  }

  .navigation {
    left:-200px;
    width:175px;
  }

  .navigation a span, .navigation div span {
    visibility:visible;
  }
  
}

@media only screen and (min-width: 980px) {

  .nav_title {
    display:none;
  }

  .header_title {
    display:block;
  }

  .container {
    width:calc(100% - 35px);
    padding-left: 15px;
  }

  .navigation {
    left:-200px;
    width:175px;
  }

  .navigation a span, .navigation div span {
    visibility:visible;
  }
  
}

@media only screen and (min-width: 1180px) {

  .nav_title, .header_toggle {
    display:none;
  }

  .header_title {
    display:block;
  }

  .container {
    width:calc(100% - 85px);
    padding-left: 60px;
  }

  .navigation {
    width:50px;
    left:0;
  }

  .navigation a span, .navigation div span {
    visibility:hidden;
  }

  .navigation:hover a span, .navigation:hover div span{
    visibility:hidden;
  }
  
}

@media only screen and (min-width: 1380px) {

  .nav_title, .header_toggle {
    display:none;
  }

  .header_title {
    display:block;
  }

  .container {
    width:calc(100% - 85px);
    padding-left: 60px;
  }

  .navigation {
    width:50px;
    left:0;
  }

  .navigation a span, .navigation div span {
    visibility:hidden;
  }

  .navigation:hover a span, .navigation:hover div span{
    visibility:hidden;
  }
  
}

@media only screen and (min-width: 1580px) {

  .nav_title {
    display:block;
  }

  .header_title, .header_toggle {
    display:none;
  }

  .container {
    width:calc(100% - 215px);
    padding-left: 190px; /* Resetting to the default for larger widths */
  }

  .navigation {
    width:175px;
    left:0;
  }

  .navigation a span, .navigation div span {
    visibility:visible;
  }

  .navigation:hover a span, .navigation:hover div span{
    visibility:visible;
  }

}

@media only screen and (min-width: 1780px) {

  .nav_title {
    display:block;
  }

  .header_title, .header_toggle {
    display:none;
  }

  .container {
    width:calc(100% - 215px);
    padding-left: 190px; /* Resetting to the default for larger widths */
  }

  .navigation {
    width:175px;
    left:0;
  }

  .navigation a span, .navigation div span {
    visibility:visible;
  }

  .navigation:hover a span, .navigation:hover div span{
    visibility:visible;
  }
}

@media print {
  #modal,
  #modal_loading,
  .modal-content {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Download button loading animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.loading-spinner svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.loading-spinner svg circle {
  stroke: var(--primary-color);
  opacity: 0.25;
}

.loading-spinner svg path {
  fill: var(--primary-color);
  opacity: 0.75;
}

/* Download button hover state */
.icon:hover svg {
  color: white !important;
  fill: white !important;
}

.icon:hover svg path {
  fill: white !important;
}