

@media screen and (max-width: 480px) {
  #dnn_MyFull_ScreenB_Pane {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

html {
    height: 100%;
}
body {
    height: 100%;
    margin: 0; 
    padding-top: 40px;
}

#profiler-header {
    background-image: url("/Portals/0/Images/profiler_header.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 24vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

#profiler-header h1 {
  color: white;
  font-family: Arial;
  margin-bottom: 5%;
  font-size: 3em;
  text-align: center;
  text-shadow: 2px 2px rgba(0,0,0,0.4);
}

@media print {
  #profiler-header {
    display: none;
  }

  .controlbar-fix, header, footer, .slant {
    display: none !important;
  }
  
  @page {
    size: auto;   /* auto is the initial value */
    margin: 0 10px;  /* this affects the margin in the printer settings */
}
}

@media screen and (max-width: 480px) {
  #profiler-header h1 {
    font-size: 2em;
  }
}

.slant {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.slant img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.loader {
  width: 100%;
  height: 500px;
  max-height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  background: #ffffff;
  border-radius: 5px;
}

.loader i {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0d76bd;
  animation: .7s linear infinite spin;
  
}

.loader h2 {
  color: #222
}

@keyframes spin {
  from { transform: rotate(0deg)}
  to { transform: rotate(360deg)}
}


.print-btn-wrapper {
  padding: 10px 0;
  display: flex;
  /*display: none;*/
  max-width: 1300px;
  margin: auto;
}

.print-btn {
  color: white !important;
  cursor: pointer;
  background: #16a0db;
  border-radius: 4px;
  text-align: center;
  padding: 6px 8px;
  font-size: 20px;
  border: 1px solid #16a0db;
  transition: all .6s ease-in-out;
}

.print-btn:hover {
  background: white;
  color: #16a0db !important;
}

#print-container {
  padding: 0 5%;
  color: #6a737b !important;
}

#print-container h3, #print-container h4, #print-container p {
  text-align: center;
  color: #6a737b !important;
}

#print-buttons {
  display: flex;
  justify-content: center;
  padding: 15px;
}

#print-buttons .print-btn {
  width: 150px;
  margin-bottom: 15px;
}

@media print {
  #print-container {
    font-size: 12px;
    padding: 0;
    margin: auto;
  }

  #print-buttons {
    display: none;
  }
  
  #print-container h5 {
    font-size: 16px;
  }
}

#print-jobs-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-inline-start: 0 !important;
}

#print-jobs-list li {
  display: inline-block;
  width: 33%;
  padding: 0 10px 0 25px;
}

#print-jobs-list li::before {
  content: "▪";
  padding-right: 5px;
}

#print-jobs-list li:nth-child(3n - 1), #print-jobs-list li:nth-child(3n) {
  border-left: 2px solid #002b54
}

#print-scores {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}

.print-score {
  width: 33%;
  box-sizing: border-box;
  padding: 20px;
  border-right: 2px solid #002b54;
}

.print-score:nth-child(3n) {
  border-right: 0;
}

.print-score:nth-child(n + 4) {
  border-top: 2px solid #002b54;
}

.print-score h5 {
  font-weight: bold;
  text-align: center;
}

.print-score:nth-of-type(1) h5 {
	color: #0d76bd;
}
.print-score:nth-of-type(2) h5 {
	color: #16a0db;
}
.print-score:nth-of-type(3) h5 {
	color: #54b948;
}
.print-score:nth-of-type(4) h5 {
	color: #a0cf67;
}
.print-score:nth-of-type(5) h5 {
	color: #faa634;
}
.print-score:nth-of-type(6) h5 {
	color: #f26122;
}

.blue-thing {
  margin: 15px auto;
  width: 100px;
  height: 2px;
  background: #002b54
}
