/*
// Copyright (c) 2018, Planet Innovation
// 436 Elgar Road, Box Hill VIC 3128 Australia
// Phone: +61 3 9945 7510
//
// The copyright to the computer program(s) herein is the property of
// Planet Innovation, Australia.
// The program(s) may be used and/or copied only with the written permission
// of Planet Innovation or in accordance with the terms and conditions
// stipulated in the agreement/contract under which the program(s) have been
// supplied.
//
*/


/* Session Review page, PDF Export modal */

.pdf-export tr {
  /* override bad style from candle.css */
  display: table-row;
}

.pdf-export td {
  /* override bad style from candle.css */
  display: table-cell;
}

@media (min-width: 768px) {
  .modal.window-pdf-export {
    width: 950px;
    /* avoid showing a scrollbar if window is too short for configure export modal */
    overflow-y: hidden;
  }

  .window-pdf-export .modal-dialog.modal-lg {
    width: 570px;
    margin: 0 auto;
  }

  .pdf-export {
    /* magic number hard-coded to sit overlapping timeline */
    margin-top: 134px;
  }
}

.pdf-export .footer {
  text-align: left;
  margin-top: 16px;
}

.pdf-export .dropdown-label {
  text-align: center;
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 38px;
}

.pdf-export .header {
  font-family: "Source Sans Pro SemiBold";
  font-size: 26px;
}

.pdf-export .dropdown-toggle {
  text-align: left;
  font-size: 18px;
  height: inherit;
}

.pdf-export .dropdown-menu {
  background-color: white;
  width: 330px;
}

.pdf-export .dropdown-menu a {
  font-size: 18px;
  color: rgb(40, 88, 132);
}

.pdf-export .dropdown-menu a:hover {
  color: white;
  background-color: rgb(40, 88, 132);
}

.pdf-export .template-dropdown {
  font-size: 18px;
  width: 330px;
  margin: 25px auto 25px;
  position: relative;
  display: block;
}

.pdf-export .select-arrow:after {
  content: url(/candle/static/img/icons/dropdown_arrow.svg);
  right: 16px;
  top: 17px;
  position: absolute;
  display: inline-block;
  pointer-events: none;
  width: 10px;
  height: 10px;
}

.pdf-export table {
  margin: 0 auto;
  width: 330px;
}

.pdf-export tr,
.pdf-export td {
  height: inherit;
}

.pdf-export tr {
  border-bottom: 1px solid #aaa;
  height: 32px;
  font-family: "Source Sans Pro SemiBold";
  font-size: 20px;
  cursor: pointer;
}

.pdf-export td.number {
  color: rgb(6, 52, 8);
  text-align: right;
  padding-right: 24px;
}

.pdf-export thead tr {
  border-top: 1px solid #aaa;
}

.pdf-export tbody tr.selected {
  background-color: #26598511;
}

.pdf-export tbody tr:hover {
  background-color: #26598566;
}

.pdf-export tr.disabled:hover {
  background-color: inherit;
  cursor: not-allowed;
}

.pdf-export tbody tr:hover:not(.disabled) td {
  color: #fff;
}

.pdf-export thead th:nth-child(3) {
  background-color: #265985;
}

.pdf-export th.select-all,
.pdf-export td.checkbox {
  text-align: center;
}

.pdf-export .btn-control:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}




/* silly override for disappearing buttons on mousedown */

.pdf-export .btn-control:active {
  background-color: #0e3451;
}