.gathr_button {
    display: table;
    width: auto;
    margin: auto;
    padding: 12px 24px;
    font-size: 19px;
    line-height: 19px;
    font-weight: bold;
    background: #6E6EEF;
    color: #fff;
    border-radius: 10px;
    border: 0;
    text-decoration: none;
    text-transform: none;
}
.gathr_button:hover {
   cursor: pointer;
}
.gathr_button img {
   display: inline-block;
   vertical-align: middle;
   width: auto;
   height: 24px;
}
.gathr_button div {
   display: inline-block;
   vertical-align: middle;
   width: 1px;
   height: 38px;
   background: #fff;
   margin: auto 14px;
}
.gathr_button span {
   display: inline-block;
   vertical-align: middle;
}
.gathr_iframe {
   /*    height: 700px;*/
   border-radius: 20px;
}
.font_cookie {
	font-family: 'Cookie', cursive;
	font-size: 22px!important;
}
.font_arial {
	font-family:'Arial', cursive;
}
.font_lato {
	font-family: 'Lato', cursive;
}
.font_comic_neue {
	font-family: 'Comic Neue', cursive;
}
.font_inter {
	font-family: 'Inter', cursive;
}
.font_bree_serif {
	font-family: 'Bree Serif', cursive;
}
.font_poppins {
	font-family: 'Poppins', sans-serif;
}

.gathr_modal, #gathr_talent_inquiry_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    font-family: 'Montserrat', sans-serif !important;
}
.gathr_iframe_container {
   display: none;
}
.gathr_modal_overlay {
    background-color: rgba(0,0,0,0.8);
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    z-index: 10;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gathr_iframe_container .gathr_iframe {
   position: fixed;
   inset: 0px;
   margin: 0px;
   border: 0px;
   width: 100%;
   height: 100%;
}

.gathr_modal_container {
    position: relative;
    top: initial;
    bottom: initial;
    border-radius: 20px;
    margin: 5% 0;
    left: 50%;
    transform: translate(-50%,0%);
    z-index: 20;
    width: 100%;
    max-width: 1100px;
    background: #F9F9F9;
    text-align: center;
    overflow: hidden;
 }
 .gathr_modal_inner {
    display: table;
    width: 90%;
    margin: auto;
    /* padding: 30px 0; */
    text-align: left;
    background: #F9F9F9;
    border-radius: 20px;
 }
 .gathr_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: bold;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
    color: #000000;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
 }

 .gathr_mobile_modal .gathr_modal_container {
   max-width: 800px !important;
   min-height: 500px !important;
 }

 #gathr-widget-modal-overlay {
   opacity: 0;
   background: rgba(0, 0, 0, 0);
   transition: opacity 1s ease-in-out 0s, background 1s ease-in-out 0s;
   z-index: 9999;
   position: fixed;
   top: 0px;
   left: 0px;
   width: 0px;
   height: 0px;
   display: none;
 }

 #gathr-widget-modal-overlay.loading{
   opacity: 1;
   background: rgba(0, 0, 0, 0.8);
   width: 100%;
   height: 100%;
   display: block;
 }

 .gathr-widget-modal-spinner {
   position: absolute;
   border: 3px solid #f3f3f3;
   border-radius: 50%;
   border-top: 3px solid #222324;
   width: 30px;
   height: 30px;
   -webkit-animation: spin 2s linear infinite;
   animation: spin 2s linear infinite;
   top: 50%;
   left: 50%;
   margin-left: -15px;
   margin-top: -15px;
 }

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

 @media only screen and (max-width: 800px) {

   .gathr_modal_container {
      width: 100%;
      height: 100%;
      border-radius: unset;
      margin: unset;
   }
   .gathr_modal_inner {
      border-radius: unset;
      width: 100%;
      height: 100%;
      margin: unset;
   }
   .gathr_iframe {
      border-radius: unset;
   }
   .gathr_modal_content {
      height: 100%;
   }
 }