@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');
@import url("splide.min.css");
@import url("animate.min.css");
/*@import "~@splidejs/splide/dist/css/splide.min.css";*/
/*@import '~animate.css';*/
/*@import 'flags';*/

:root {
    --primary: #ff7477 !important;
    --secondary: #77c9da !important;
    --tertiary: #3f505d !important;
    --succes: #77c9da;
    --warning: #fcc78e;
    --danger: #e64343;
    --dark: #262b2f;
    --medium: #3f505d;
    --normal: #8e9da7;
    --light: #cfcfcf;
    --active: #132c50;
    --inactive: #c8ccdb;
    --blue: #51bcd1;
    --blue-light: #91e3f5;
}

html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;

}

img {
    max-width: max-content;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
margin: 0;
font-family: 'Quicksand', sans-serif;
color: var(--tertiary);
  position: absolute;
  width: 100%;
  margin: 0;
  min-height: 100%;
}

a,
.btn-light,
td,
.navbar-light .navbar-brand {
    text-decoration: none;
    color: var(--tertiary);
}
a:hover,
a:active,
a:focus {
    color: var(--primary);
}
.navbar {
    padding: 0;
}
.btn {
    width: fit-content;
}
#header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    /* backdrop-filter: blur(25px); */
    background: #fff;
    border-bottom: solid 1px #eee;  
}
body.modal-open #header {
    background: #fff;
}
footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #fff;
  background-color: var(--secondary);
}
.btn.circle {
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn.circle svg {
    font-size: 20px;
}
.navbar-light .navbar-toggler,
.navbar-toggler:focus {
    border: 0;
    box-shadow: none;
}
footer a:not(.navbar-brand) {
    display: block;
    margin-bottom: .5rem;
    color: #fff;
}
footer a.social {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    background-color: var(--blue-light);
    border-radius: 100%;
    color: var(--tertiary);
}
.legalLink a {
    margin: 5px;
    display: inline!important;
    font-size: 14px;
    
}
h1, h2 {
    font-weight: bold;
}
.btn {
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: bold;
    padding: .75rem 1.5rem;
}
.avatar {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    margin: auto;
    margin-bottom: -50px;
    z-index: 1;
    position: relative;
}
.avatar img {
    width: 100%;
}
.splide__pagination__page.is-active {
    background: #000;
}
.splide__pagination {
    bottom: -1rem;
}
.splide__arrow--prev {
    left: -2rem;
}
.splide__arrow--next {
    right: -2rem;
}
.passwordCheck svg {
    opacity: .2;
}
.passwordCheck.active svg {
    opacity: 1;
    color: var(--succes);
}
#navbar-scroll {
    width: 25.33%;
}
.navbar-nav {
    justify-content: end;
    text-transform: uppercase;
}
.btn,
.form-control,
.alert {
    border-radius: 25px;
    border: 0;
}
a:active, a:focus,
.btn:focus, .btn:active {
    outline: none!important;
    box-shadow: none!important;
}
.card,
.dropdown-menu,
.modal-content  {
    border: solid 2px #efefef;
    border-radius: 16px;
}
.no-shadow {
    box-shadow: none!important;
    border: 0;
}
.form-control {
    background-color: #f5f5f5;
    padding: .5rem 1rem;
    border: 0;
}
.progress {
    border-radius: 8px;
}
.splide__slide .card {
    box-shadow: none;
}
.nav-link {
    color: var(--tertiary)!important;
}
.text-primary {
    color: var(--primary)!important;
}
.text-normal {
    color: var(--normal)!important;
}
.btn-primary,
.bg-primary,
.progress-bar,
.nav-pills .nav-link.active, .nav-pills .show > .nav-link{
    /* background: linear-gradient(45deg, #fcc78e 0%, #ff8b89 100%); */
    background: var(--primary)!important;
    color: #fff!important;
}
.btn-secondary,
.bg-secondary {
    color: #fff!important;
    /* background: linear-gradient(45deg, #9ce0df 0%, #54b3bf 100%); */
    background: var(--secondary)!important;
}
.bg-gradient-red {
    background: linear-gradient(45deg, #fcc78e 0%, #ff8b89 100%);
}
.bg-gradient-green {
    background: linear-gradient(45deg, #9ce0df 0%, #54b3bf 100%);
}
.btn-outline-dark{
    border: solid 3px;
    color: var(--tertiary);
    padding: 0.5rem 1.5rem;
}
.btn-outline-light{
    border: solid 3px;
    color: #fff;
    padding: 0.5rem 1.5rem;
}
.bg-blue {
    background-color: var(--blue);
}
.bg-blue-light {
    background-color: var(--blue-light);
}
.bg-dark {
    background-color: var(--dark);
}
.border-primary {
    border-color: var(--primary)!important
}
.border-secondary {
    border-color: var(--secondary)!important
}
.text-grey {
    color: var(--normal);
}
.text-dark {
    color: var(--tertiary)!important;
}
.text-success {
    color: var(--succes)!important;
}
.mobileMenu {
    position: fixed;
    bottom: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    left: 0;
    z-index: 999;
    width: 100%;
    border-top: solid 2px #eee;

}
.mobileMenu a,
.userMenu a {
    margin: 0 auto;
    font-size: 10px;
    text-align: center;
    width: 90px;
    height: 100%;
    padding-top: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: .3;
}
.mobileMenu a img,
.userMenu a img {
    height: 25px;
    margin: auto;
    margin-bottom: .5rem;
    display: block
}
.mobileMenu a.active {
    opacity: 1;
    border-top:solid 3px var(--primary);
}
.userMenu a.active {
    opacity: 1;
    border-bottom:solid 3px var(--primary);
}
.mobileMenu svg {
    margin: auto;
    font-size: 25px;
    display: block;
}
.surveysIcon {
    transform: scale(1.4);
    margin-top: -0.75rem!important;
    padding: 0.5rem;
    font-weight: bold;
}
.surveysIcon::before {
    content: ' ';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: -0.25rem;
    z-index: -5;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    box-shadow: 0px -2px 5px rgb(0 0 0 / 5%);
}

.scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem;
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scrollTop i {
    font-size: 2rem;
}
.coin {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border: solid 3px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
    line-height: 0;
    font-weight: bold;
    margin-left: 0.25rem;
    vertical-align: middle;
    color: var(--tertiary);
}
p .coin {
    vertical-align: baseline;
}
.hero .form-control {
    border: solid 3px #fff;
    color: #fff;
    background: transparent;
}
.hero .form-control::placeholder {
    color: #fff;
}
.offsetL {
    padding-left: 200px!important;
}
@media screen and (max-width: 768px) {
    .offsetL {
        padding-left: inherit!important;
        padding-top: 4rem!important;
    }
    .coin {
        transform: scale(.75);
        margin-left: 0;
    }
    .section {
        min-height: 100vh;
        padding-top: 2rem;
    }
    .hero {
        background-color: var(--secondary);
        color: #fff;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .modal-dialog {
        height: calc(100% - 1rem)!important;
    }    
    .modal {
        z-index: 9999;
    }
    .splide__slide .card {
        border: 0;
    }
    .scrollTop {
        bottom: 5rem;
        right: 1rem;
        padding: 1rem;
        height: 40px;
        width: 40px;
        text-align: center;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #profiling .label {
        font-size: 18px;
        font-weight: bold;
    }
}
@media screen and (max-width: 500px) {
    .surveysIcon {
        transform: scale(1.2);
    }
    .btn,
    .form-control {
        padding: .5rem 1rem;
        font-size: 12px;
    }
    p, div {
        font-size: 14px;
    }
}
.paySwitch {
    cursor: pointer;
    transition: all .3s;
    border: solid 5px transparent;

}
.paySwitch.selected {
    border: solid 5px #ccc;

}
.circle.progress {
  background: none;
  position: relative;
}

.circle.progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.circle.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.circle.progress .progress-left {
  left: 0;
}

.circle.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.circle.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.circle.progress .progress-right {
  right: 0;
}

.circle.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.circle.progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
    font-size: 1.25rem;
}
.mobileCircle {
    background-color: #fff;
    border-radius: 100%;
    width: 75px;
    height: 75px;
    margin-left: auto;
}
option,
select {
    color: var(--tertiary);
}
.modal {
    backdrop-filter: blur(5px);
}
.modal-content {
    overflow: hidden;
}
.modal-dialog {
    display: flex;
    align-items: center;
    height: 90%;
}
.modal-backdrop {
    background-color: var(--tertiary);
}
.hidden {
    /*height: 0;
    opacity: 0;*/
    display: none;
}
.reply {
    transition: all .3s;
    cursor: pointer;
}
.card.disabled {
    opacity: .5;
}
.card.selected {
    border: solid 3px var(--tertiary);
}
.mobileNav2 { z-index: 999999 !important; }
#mobileNav {
position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.5);
    top: 0;
    transition: opacity .3s;
    opacity: 0;
    left: 0;
    pointer-events: none;
}
#mobileNav.open {
    opacity: 1;
}
#mobileNav .inner{
    width: 80%;
    min-width: 300px;
    max-width: 450px;
    background: #fff;
    height: 100%;
    position: relative;
    transition: all .3s;
    left: -450px;
    pointer-events: all;
}
#mobileNav.open .inner{
    left: 0px;
}
#mobileNav a {
    padding: .5rem 2rem;
    display: block;    
    font-size: 16px;
}
#mobileNav a img {
    opacity: .5;
}
#mobileNav .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.closeMobileNav {
    text-align: right;
    opacity: .5;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: end;
}
.mobileLogout {
    height: 59px;
}
@media screen and (max-width: 991px) {
    .scrollTop {
        bottom: 5rem;
    }
}
#cookiefirst-cookies-table {
    font-size: 14px;
    overflow: auto;
}
.iti {
    width: 100%;
}
.iti__country-list {
    z-index: 999;
}
.iti__flag-container,
.iti__selected-flag {
    border-radius: 25px;
}

.circle .progress-bar {
    background: transparent!important;
}
.member {
    background-color: #fafafa;
}
.floatingLabel {
    position: absolute;
    left: 0;
    padding: 0.3rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    width: 150px;
    text-align: center;
    border-bottom-right-radius: 25px;
    top: 1rem;
}
.surveyComplete .row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    opacity: 0;
    transition: opacity .3s;
}
.surveyComplete:hover .row {
    opacity: .5;
}
.sitemap a {
    display: block;
    font-weight: 600;
}
.sendSMSconfirm {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    display: flex;
    align-items: center;
}
.survey_link {
    cursor: pointer;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}
.replyContainer {
    overflow: auto;
}