﻿/* Style the buttons that are used to open and close the accordion panel */

.accordion {
    background-color: #fff;
    color: #2fa49e;
    font-weight: bold;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border: 1px solid #2fa49e !important;
    margin-bottom: 15px;
    margin-top: 15px;
}

  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .accordion.active, .accordion:hover {
    background-color: #2fa49e;
    color: #ffffff;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 0px;
    display: none;
    background-color: white;
    overflow: hidden;
  }
  
  .accordion:after {
    content: " "; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    float: right;
    margin-left: 5px;
    margin-top: 10px;
    height: 7px;
    width: 7px;
    background: url(accordion-sprite.png) 0px 0px no-repeat !important;
  }
  
  .accordion.active:after {
    content: " "; /* Unicode character for "minus" sign (-) */
    margin-top: 10px;
    height: 7px;
    width: 7px;
    background: url(accordion-sprite.png) -7px 0px no-repeat !important;
  }
  @media screen and (min-width: 980px){
    .panel {
    display: block;
    }
    .accordion {
      display: none;
    }
}