/* Positioning */
.cta_button_container.center {
  text-align: center;
  display: block;
}
.cta_button_container.center .cta_button {
  display: inline-block;
}

/* Button Style */
.cta_button {
    display: inline-block;
    width: 180px;
    margin: 16px 0px;
    padding: 14px;
    background: #f26a3f;
    color: #fff;
    border: 2px solid #f26a3f;
    border-radius: 26px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
  font-family: font-family : comic sans ms, times, serif;
    line-height: 15px;
    text-align: center;
    transition: all .2s ease-in-out;
}
.cta_button:hover, .cta_button:focus {
    background-color: #e06020;
    color: #FFF;
    border-color: #e06020;
    text-decoration: none;
}
.cta_button.white {
    background: #fff;
    color: #f26a3f;
    border: 2px solid #f26a3f;
}
.cta_button.white:hover, .cta_button.white:focus {
    background: #f5f5f5;
    text-decoration: none;
}
.cta_button.transparent {
    background: transparent;
    color: #000;
    border: 0px;
}

@media (max-width: 800px) {
  .cta_button {
    display: block;
    width: 260px;
    max-width: calc(100% - 34px );
    margin: 6px auto;
  }
}