/* SOURCE: https://www.jqueryscript.net/form/Radio-Button-Based-Dropdown-Select-with-jQuery-CSS3-Dropp.html */
/* Drop-down header */
.classification {
  max-width: 100%;
  padding-bottom: 30px;
  width: calc(50% - 22px);
  clear: both;
}

.classification-header {
  background: #115740;
  color: #fff;
  display: flex;
  font-weight: 700;
}

.classification-header__title {
  display: block;
  padding: 14px 48px 14px 22px;
  flex: 8;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.classification-header__title:focus-visible {
  outline: none;
  background-color: #000;
}

.classification-header__title.js-value::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-size: 1em;
  right: 22px;
  position: absolute;
  padding-right: 0;
}

.classification-header__title.js-value:hover {
  background-color: #000;
  cursor: pointer;
  width: 100%;
}

/* Drop-down Body */
.classification-body {
  overflow: hidden;
  max-width: 100%;
  width: calc(50% - 22px);
  display: none;
  background: #FFF;
  /*-webkit-transition: all 0.3s ease-in-out;*/
  /*-moz-transition: all 0.3s ease-in-out;*/
  /*transition: all 0.3s ease-in-out;*/
  border: 0.1em solid black;
  position: absolute;
}
@media (min-width: 930px) {
    .classification-body {
       width: calc(50% - 44px); 
    } 
}
@media (min-width: 1215px) {
    .classification-body {
       width: calc(50% - 55px); 
    }
}

.classification-body.js-open {
  display: inline-block;
}

.classification-header__title.js-value.js-classification-action.js-open::after {
  content: "\f106";
  font-family: "Font Awesome 6 Pro";
  font-size: 1em;
  right: 22px;
  position: absolute;
  padding-right: 0;
}

.classification-body label {
  display: block;
  font-size: 1em;
  color: #866f45;
  text-decoration: none;
  padding: 8px 22px;
  font-weight: 700;
  cursor: pointer;
}

.classification-body label:focus-visible {
  outline: none;
  color: #000;
}


.classification-body label:hover {
  color: #000;
}

.classification-body label > input {
  display: none;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 650px) {
  .container {
    display: flex;
    flex-direction: column;
  }

  .classification, .classification-body {
    width: 100%;
  }
}

@media screen and (min-width: 650px) {
  .container {
    display: flex;
    flex-direction: row;
  }
}

@media screen and (max-width: 530px) {
  /*.info {*/
  /*  display: flex;*/
  /*  flex-direction: column;*/
  /*}*/

  /*.boxcopy-right {*/
  /*  order: 1;*/
  /*  margin-top: 11px !important;*/
  /*}*/

  .classification-header__title.js-value::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-size: 1em;
    padding-right: 5px;
    position: absolute;
    right: 22px;
  }

  .classification-header__title.js-value.js-classification-action.js-open::after {
    content: "\f106";
    font-family: "Font Awesome 6 Pro";
    font-size: 1em;
    padding-right: 5px;
    position: absolute;
    right: 22px;
  }
}

/* prevent issues with dropdown getting cut off by footer on mobile with minimal content in content area */
.gradient-wrapper {
    overflow-x: visible;
}
.info {
    margin-bottom: 1.2rem;
}
.calloutBox {
    width: auto;
    margin: 33px auto;
    padding: 20px;
    background: var(--color-wmsilver-0);
    font-size: 14px;
    line-height: 1.4em;
}
.calloutBox h5 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 6px;
}
.calloutBox h6 {
    font-size: 14px;
    margin-top: 0;
	margin-bottom: 1px;
}
.calloutBox ul li {
    margin-left: 20px;
    font-size: 14px;
}
.calloutBox :last-child {
    margin-bottom: 0;
}

@media (min-width: 650px) {
    .info {
        max-width: calc(100% - 300px);
        float: left;
    }
    .calloutBox {
        float: right;
        width: 260px;
        margin: 0 0 33px 35px;
    }
}


