/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* .modal__subtitle_wrapper.hide{
    display: none;
 }
 .modal__terms_wrapper.hide{
    display: none;
 }

 .modal__loader_wrapper.hide{
    display: none;
 } */

 body.is_show_terms_popup{
   overflow-y: hidden;
 }

 .ftlp_modal *.hide{
    display: none;
 }

.modal__close{
    font-size: 11px;
}

.modal__accepting_wrapper,
.modal__logginout_wrapper{
    font-size: 0.85rem;
    text-align: center;
    padding-bottom: 20px;
}

.ftlp_loader {
   border: 2px solid #f3f3f3;
   border-radius: 50%;
   border-top: 2px solid #3498db;
   width: 47px;
   height: 47px;
   -webkit-animation: ftlp_spin 1.5s linear infinite; /* Safari */
   animation: ftlp_spin 1.5s linear infinite;
   margin: 0 auto;
}

/* Safari */
@-webkit-keyframes ftlp_spin {
   0% { -webkit-transform: rotate(0deg); }
   100% { -webkit-transform: rotate(360deg); }
}

@keyframes ftlp_spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}


/**
 * Modal Size Options
 */
.modal__container{
   min-width: 140px;
}

.modal__container.width_800{
   max-width: 800px;
}

.modal__container.width_1200{
   max-width: 1200px;
}

/* Default is 300 */
.modal__terms_wrapper.tall_500{
   max-height: 500px;
}


/**
 * Button Styles
 */

.modal__btn_accept.modal__btn_accept--small{
   padding: 10px 20px;
   font-size: 14px;
}

.modal__btn_accept.modal__btn_accept--medium{
   padding: 13px 23px;
   font-size: 16px;
}

.modal__btn_accept.modal__btn_accept--large{
   padding: 19px 34px;
   font-size: 18px;
}


.modal__close.modal__close--small{
   padding: 10px 20px;
   font-size: 14px;
}

.modal__close.modal__close--medium{
   padding: 13px 23px;
   font-size: 16px;
}

.modal__close.modal__close--large{
   padding: 19px 34px;
   font-size: 18px;
}


@media (max-width: 400px){
   .modal__btn.modal__close{
      margin-bottom: 20px;
   }
   .modal__btn.modal__close,
   .modal__btn.modal_accept{
      float: none;
      display: block;
      width: 100%;
   }
}