/*smk accordion styles - altered from original (RH)*/
.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px; }
  .accordionjs .acc_section {
    /*background-color: #D5E7EC;*/
    color: #0f5c79;
    border: 1px solid #ccc;
    position: relative;
    z-index: 10;
    margin-top: -1px;
    overflow: hidden;
    /*box-shadow: inset 0 -1px lighten(#D5E7EC, 10%);*/
    -webkit-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    transition: all .25s ease-in;
    /* General rules
		// ---------------------
	    // Border radius
		&:first-of-type,
		&:first-of-type .acc_head{
			border-top-left-radius: 3px;
			border-top-right-radius: 3px;
		}
		&:last-of-type,
		&:last-of-type .acc_content{
			border-bottom-left-radius: 3px;
			border-bottom-right-radius: 3px;
		}*/ }
    .accordionjs .acc_section .acc_head {
      position: relative;
      background-color: #D5E7EC;
      /*padding: 10px;*/
      display: block;
      cursor: pointer;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      /*box-shadow: inset 0px -2px darken(#D5E7EC, 10%);*/
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .accordionjs .acc_section .acc_head > span {
        padding: 10px 5px 10px 10px;
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
         position:absolute;
           bottom:0;
      }
      .accordionjs .acc_section .acc_head > div {
        padding: 0.85rem;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 20px !important;
      }
      .accordionjs .acc_section .acc_head h1, .accordionjs .acc_section .acc_head h2, .accordionjs .acc_section .acc_head h3, .accordionjs .acc_section .acc_head h4, .accordionjs .acc_section .acc_head h5, .accordionjs .acc_section .acc_head h6 {
        font-family: Verdana, Geneva, Arial, sans-serif;
        font-weight: bold;
        line-height: 1;
        margin: 0;
        padding: 10px;
        color: #0f5c79;
        /*&:first-of-type {
                    &:before {
                    font-family: "Glyphicons Halflings";
                    content:"\e080";
                    
                    font-size: 20px;
                    font-weight: 200;
                    color: #444;
                   
                    height: 15px;
                    width: 24px;
                    }
                }*/ }
      .accordionjs .acc_section .acc_head:focus, .accordionjs .acc_section .acc_head:hover {
        background: #ff9b98; }
    .accordionjs .acc_section .acc_content {
      background: #fff;
      padding: 10px;
      width: 100%;
    }
    .hideContent{display: none;}
    .accordionjs .acc_section.acc_active > .acc_content {
      display: none; }
    .accordionjs .acc_section.acc_active > .acc_head {
      background: #ffbebc;
      /*> span {
                    
                }*/
      /*h1, h2, h3, h4, h5, h6 {
                    &:first-of-type {
                        &:before {
                            transform: rotate(-90deg);
                        }
                    }
                    
                }*/ }
      .accordionjs .acc_section.acc_active > .acc_head > span {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg); }

.accordion--classlink {
  background: #BAD6DF;
  color: #cd2700;
  text-transform: uppercase;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 0px; }
  .accordion--classlink a:hover {
    text-decoration: none;
    color: #ff461b;
    -webkit-transition: all ease-in .25s;
    -o-transition: all ease-in .25s;
    transition: all ease-in .25s; }
