body {
  background-color: white;
}

/* Add a black background color to the top navigation */
.topnav {
  width: 100%;
  background-color: #DFE3E6;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.topbanner {
  width: 100%;
  background-color: red;
  padding-top: 25px;
  padding-bottom: 25px;
}

.topbanner .col-4 {
  background-color: #333;
  padding: 10px 10px 10px 10px
}

.PwCLogo {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Style the links inside the navigation bar */
.topnav a {
  color: #000;
  text-align: center;
  font-size: 18px;
  border-bottom: #696969 solid;
  border-bottom-width: medium;
  padding-bottom: 3px;
  display: inline-block;
  padding-right: 20px;
  margin-right: 15px;
}

/* Change the color of links on hover */
.topnav a:hover {
  color: #b5bac1;
}

/* Add a color to the active/current link */
.topnav a.active {
  border-bottom: #FD5108 solid;
}

.searchbar {
  width: 100%;
  background-color: #EEEFF1;
  padding-top: 15px;
  padding-bottom: 15px;
}

.searchbar .search-field {
  padding: .375rem .75rem;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  margin-right: 1em;
}

.searchbar .picklist {
  background-color: #EEEFF1;
  border: 0;
  font-size: 1em;
  width: fit-content;
  margin-left: 1em;
}

.checkmark-label {
  padding-left: 5px;
  padding-bottom: 8px;
}

/* Hide the browser's default checkbox */
.checkmark-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #f8f9fa;
  border: 1px solid #6c757d;
  border-radius: 0.25rem;
}

/* On mouse-over, add a grey background color */
.checkmark-label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkmark-label input:checked ~ .checkmark {
  background-color: #dc3545;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkmark-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkmark-label .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  width: 400px; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #f8f9fa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 5px;
}

.close:hover,
.close:focus {
  color: #dae0e5;
  text-decoration: none;
  cursor: pointer;
}

div#FormsSection .modal {
    z-index: 1050;
}

div#FormsSection .modal-content {
 width: 100%
}