/**
 * The following styles are for our example message. Change these as desired.
 */
 .custom-message-container {
    display: table;
    height: 50%;
    width: 100%;
    text-align: center;
  }
  
  .custom-message-text {
    color: #3A3B3F;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    margin: 2px auto;
    display: table-cell;
    vertical-align: middle;
  }
  
  /**
   * The following styles are for Akamai's default Crypto Challenge spinner.
   * These styles can be removed if you choose to remove/hide the spinner.
   */
   #sec-if-cpt-container .timer-container {
     display: none;
   }
  
  .bm-processing  {
    font-size: 10px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #97ba1e;
    background: -moz-linear-gradient(left, #97ba1e 20%, rgba(0,255,255,0) 50%);
    background: -webkit-linear-gradient(left, #97ba1e 20%, rgba(0,255,255,0) 50%);
    background: -o-linear-gradient(left, #97ba1e 20%, rgba(0,255,255,0) 50%);
    background: -ms-linear-gradient(left, #97ba1e 20%, rgba(0,255,255,0) 50%);
    background: linear-gradient(to right, #97ba1e 20%, rgba(0,255,255,0) 50%);
    position: absolute;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .bm-processing:before {
    width: 50%;
    height: 50%;
    background: #97ba1e;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
  }
  
  .bm-processing:after {
    background: #fff;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  
  .timer-container {
    color: #3a3b3f;
    font-size: 22px;
    font-weight: 400;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    position: absolute;
  }
  
  .spinner-time-parent {
    position: relative;
    margin: 2px auto;
    width: 75px;
    height: 75px;
  }
  
  #sec-if-cpt-container .timer-container {
    display: block !important;
  }
  
  @-webkit-keyframes load3 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes load3 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  /**
 * The following styles are for our example message. Change these as desired.
 */
.custom-message-container {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 20px;
  }
  
  .custom-message-text {
    color: #3A3B3F;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    margin: 2px auto;
  }
  
  /**
   * The follow styles are for the captcha challenge.
   */
  #sec-if-cpt-container.custom-captcha-container {
    width: 300px;
    margin: 10px auto;
  }
  
  #sec-if-cpt-container input {
    background-color: orange;
    border: 0;
    border-radius: 8px;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    cursor: pointer;
  }
  
  #sec-if-cpt-container input:hover {
    background-color: white;
    color: black;
    border: 2px solid orange;
  }


span, div {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
          "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
          "Helvetica Neue", sans-serif !important;
}