/* Custom CSS */

.textarea-wrapper textarea{
    background: #fff;
    border: 1px solid #EAEAEA;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 12px 20px;
}
textarea::-webkit-input-placeholder {
    color: #A9A8A8;
  }
  
  textarea:-moz-placeholder { /* Firefox 18- */
    color: #A9A8A8;  
  }
  
  textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #A9A8A8;  
  }
  
  textarea:-ms-input-placeholder {
    color: #A9A8A8;  
  }
  
  textarea::placeholder {
    color: #A9A8A8;  
  }
.counter-wrapper {
    display: inline-block;
}
.options-box-wrapper {
    text-align: right;
    display: inline-block;
    float: right;
}
.counter-wrapper-start {
    background-color: #fff;
    padding: 6px 20px;
    border: 1px solid #EAEAEA;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: -10px;
}
.counter-wrapper {
    font-weight: 500;
}
.options-box-wrapper a {
    font-weight: 500;
    text-decoration: none !important;
    border: 1px solid #fff;
    padding: 5px 10px;
    color: #282525;
    border-radius: 10px;
}
.options-box-wrapper a:hover {
    color: #0855FE;
    border: 1px solid #0855FE;
    padding: 5px 10px;
    border-radius: 10px;
}
.options-box-wrapper a:focus {
    background: #0855FE;
    color: #fff;
    border: 1px solid #0855FE;
}
.action-button-wrapper {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
}
.action-button-wrapper button {
    border-radius: 5px !important;
    padding: 10px 12px;
    margin: 5px;
    transition: 0.3s ease-in-out;
}
#loading {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2.4px solid rgb(221 221 221 / 20%);
    border-radius: 50%;
    border-top-color: #fff;
    animation: fccpin 1s ease-in-out infinite;
    -webkit-animation: fccpin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;
}

@keyframes fccpin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes fccpin {
  to { -webkit-transform: rotate(360deg); }
}
.alert-fcc {
  background: #00ab6c;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transform: translateY(-100%);
  transition: transform ease-out 0.3s;
}
@media (max-width: 768px){
  .options-box-wrapper {
    margin: 0 auto;
    float: none;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    padding-top: 10px;
    display: block;
  }
  .counter-wrapper {
      text-align: center;
      margin: 0 auto;
      display: block;
  }
  .options-box-wrapper a {
    padding: 5px 5px;
  }
  .action-button-wrapper {
    padding: 10px 0;
  }
}
.fcc_textarea {
  resize: vertical !important;
}