/* Style the buttons that are used to open and close the accordion panel */
.rcReoptimizeAccordButton{
    background-color: #0027ae;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  /* 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) */
  .reoptimizeActive, .rcReoptimizeAccordButton:hover {
    background-color: #001138;
  }
  
  /* Style the accordion panel. Note: hidden by default */
.rcReoptimizeAccordPanel{
    padding: 0 20px;
margin-bottom: 10px;
  background-color: #0027ae;
  max-height: 0;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  }
  .rcReoptimizeAccordPanel p{
      color: #fff;
      font-size: 18px;
  }

  .rcReoptimizeAccordButton:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 15px;
    color: #fff;
    float: right;
    margin-left: 5px;
  }
  
  .reoptimizeActive:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }
.reoptimizePostLink{
    width: 100%;
    text-align: center;
    display: inline-block;
    background-color: #f9a23d;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 0;
    margin-bottom: 15px;
    transition: .5s;
}
.reoptimizePostLink:hover{
    color: #fff;
}