
  .wrap {
    /*box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);*/
    border-radius: 4px;
  }
  
  a:focus,
  a:hover,
  a:active {
    outline: 0;
    text-decoration: none;
  }
  
  .panel {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #fff;
    background: none;
    box-shadow: none;
    margin-bottom: 1rem;
  }
  
  .panel:last-child {
    border-bottom: none;
  }
  
  .panel-group > .panel:first-child .panel-heading {
    border-radius: 10px;
  }
  
  .panel-group .panel {
    border-bottom: 1px solid #eaedf0;
  }
  .panel-group .panel:hover, .panel-group .panel:active {
    /*border-color: #ff006b;*/
  }
  .panel-title a:hover, .panel-title a:active {
    border-radius: 10px;
    /*background: #f7f8fa;*/
  }

  .panel-group .panel + .panel {
    margin-top: 0;
  }
  
  .panel-heading {
    background-color: #fff !important;
    border-radius: 10px;
    border: none;
    color: #fff;
    padding-bottom: 10px;
  }
  
  .panel-title a {
    display: flex;
    color: #000;
    padding: 14px 0 0;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    font-family: 'New Order';
  }
  
  .panel-body {
    padding: 0 24px 24px 0;
    color: #4b5863;
    font-family: 'New Order';
  }

  .panel-body2 {
    padding: 0 24px 24px;
    color: #4b5863;
  }
  
  .panel:last-child .panel-body,
  .panel:last-child .panel-body2 {
    border-radius: 0 0 4px 4px;
  }
  
  .panel:last-child .panel-heading {
    border-radius: 10px;
    transition: border-radius 0.3s linear 0.2s;
  }
  
  .panel:last-child .panel-heading.active {
    border-radius: 10px;
    transition: border-radius linear 0s;
  }
  /* #bs-collapse icon scale option */
  
  .panel-heading a:before {
    content: '\e146';
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    font-size: 24px;
    transition: all 0.5s;
    transform: scale(1);
  }
  
  .panel-heading.active a:before {
    content: ' ';
    transition: all 0.5s;
    transform: scale(0);
  }
  
  #bs-collapse .panel-heading a:after {
    content: ' ';
    font-size: 24px;
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    transform: scale(0);
    transition: all 0.5s;
  }
  
  #bs-collapse .panel-heading.active a:after {
    content: '\e909';
    transform: scale(1);
    transition: all 0.5s;
  }
  
  /* #accordion rotate icon option */
  
  #accordion1 .panel-heading a:before,
  #accordion2 .panel-heading a:before,
  #accordion3 .panel-heading a:before {
    display: flex;
    float: right;
    margin-right: 10px;
    content: '\f238';
    font-family: 'Material Design Icons';
    line-height: inherit;
    color: #000D7D;
    transform: rotate(90deg);
  }
  
  #accordion1 .panel-heading.active a:before,
  #accordion2 .panel-heading.active a:before,
  #accordion3 .panel-heading.active a:before {
    transform: rotate(270deg);
    transition: all 0.5s;
  }

  #accordion4 .panel-heading a:before {
    display: flex;
    float: right;
    margin-right: 10px;
    content: '\002B';
    font-family: 'Material Design Icons';
    line-height: inherit;
    color: #000D7D;
    font-size: 28px;
    right: 8px;
  }
  #accordion4 .panel-heading.active a:before {
    transform: rotate(45deg);
    transition: .2s ease;
  }