:root {
    --bottom-nav-menu-height: 81px;
}





@keyframes fadeInOutLoader {
    0% { opacity: .4; }
    50% { opacity: 1; }
    100% { opacity: .4; }
}



.fadeInOutLoader {
  animation: fadeInOutLoader 1400ms infinite;
}



html,
body {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}





#recaptcha-container
{
    transform: scale(0.77); 
    -webkit-transform: scale(0.77); 
    transform-origin: 0 0; 
    -webkit-transform-origin: 0 0;
}

.g-recaptcha-bubble-arrow
{
    display: none;
}

.g-recaptcha-bubble-arrow + div
{
    position: fixed !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}






input[type="checkbox"] {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-content: center;
    justify-content: center;
    sfont-size: 12px;
    spadding: 5px;
    width: 21px;
    height: 21px;
    border: 2px solid #777;
    border-radius: 4px;
}



input[type="checkbox"]::before {
    position: relative;
    top: 1px;
    content: "";
    width: 15px;
    height: 15px;
    clip-path: polygon(28% 38%, 41% 53%, 75% 24%, 86% 38%, 40% 78%, 15% 50%);
    transform: scale(0);
    background-color: #fff;
}

input[type="checkbox"]:checked {
    background: #25c662;
    border-color: #25c662;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}





.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




 /* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbars::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbars {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
} 





.fit-above-bottom-nav-menu {
    //padding-bottom: 81px;
    padding-bottom: calc(var(--bottom-nav-menu-height) + 1px);
}





.std-button-wrapper {
    display: inline-block;
    position: relative;
    height: 38px;
}

.std-button-wrapper.full-width {
    display: block;
}

.std-button-wrapper.tall {
    height:46px;
}

.std-button-wrapper
.button {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    margin: 0 2px;
    height: 38px;
    line-height: 38px;
    padding: 0 15px 0 40px;
    border-radius: 40px;
    border-radius: 9px;
    box-shadow: 0 0 0 1px rgb(50 50 93 / 5%), 0 2px 5px 0 rgb(50 50 93 / 10%), 0 1px 1px 0 rgb(0 0 0 / 7%);
    background: #fff;
    text-align: center;
}

.std-button-wrapper.loading
.button {
    visibility: hidden;
}



.std-button-wrapper.full-width
.button {
    display: block;
}



.std-button-wrapper.tall
.button {
    height: 46px;
    line-height: 46px;
}



.std-button-wrapper
.button.no-icon {
    padding-left: 15px;
}



.std-button-wrapper
.button
.icon {
    display: block;
    position: absolute;
    width: auto;
    height: 16px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}



.std-button-wrapper
.button.no-icon
.icon {
    display: none;
}



.std-button-wrapper
.button
span {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}



.std-button-wrapper
.loader {
    display: none;
    position: absolute;
    margin: 0 auto;
    width: auto;
    height: 100%;
    max-height: 38px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.std-button-wrapper.loading
.loader {
    display: block;
}




















