/* FONT IMPORTS */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;700&display=swap');

@font-face {
font-family: 'Polysans bulky';
src: url("../fonts/PolySans-Bulky.fcbfe397e818.woff") format('woff');
font-weight: 700;
font-style: normal;
font-display: auto;
}

/* WEB GLOBAL CSS */

@media screen and (min-width: 481px){
/* GENERAL CSS CLASSES */

html {
    max-width: 100vw;
    height: auto;
    max-height: none;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: #fff;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body.modal-open {
    background: #fff;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.body-light {
    background: #fff;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.body-dark {
    background: #050505;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.body-wrapper {
    min-width: 100%; 
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
}

a { 
    color:var(--purple-400);
    text-decoration: underline;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    margin: none;
    cursor: pointer;
}

a:hover { 
    color: var(--purple-500);
}

a.no-formatting {
    text-decoration: none;
    color: var(--black);
}

.inline-link {
    font-size: 16px;
    color:var(--grey-400);
    transition: .15s ease-out;
}

.inline-link:hover {
    color:var(--grey-500);
    transition: .15s ease-out;
}

.content-wrapper { 
    width: 100vw;
    height: auto;
    min-height: 100vh;
    max-height: none;
    margin: 40px 0;
    padding: 65px 0;
}

.content-holder { 
    width: 85%;
    max-width: 1350px;
    height: auto;
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}
  
.flex-end {
    justify-content: end;
}

.justify-start {
    justify-content: start;
}

.justify-end {
    justify-content: end;
}

/* ANIMATIONS WEB */
  
.anim-in {
    animation: global-appear-in 400ms;
    animation-timing-function: ease;
    animation-delay: calc(var(--appear-order) * 100ms);
}

  @keyframes global-appear-in {
        from {
            transform: scale(.95) translateY(12px);
            opacity: 0;
            filter: blur(12px);
            -webkit-filter: blur(12px);
        }

        to {
            transform: translateY(0px);
            opacity: 1;
        }
    }

.modal-anim-in {
    animation: global-modal-appear-in 250ms;
    animation-timing-function: ease;
      }
    
      @keyframes global-modal-appear-in {
            from {
                transform: scale(.95) translateY(12px);
                opacity: 50%;
            }
    
            to {
                transform: translateY(0px);
                opacity: 100%;
            }
        }

.profile-modal-anim-in {
    animation: profile-modal-appear-in 250ms;
    animation-timing-function: ease;
        }
    
        @keyframes profile-modal-appear-in {
            from {
                transform: translate(20px);
                opacity: 0;
            }
    
            to {
                transform: translateX(0px);
                opacity: 1;
            }
        }




/* BORDER RADIUS & ROUNDING WEB */

.rounded { 
    border-radius: 5px;
}

.more-rounded {
    border-radius: 10px;
}

.rounded-full {
    border-radius: 50%;
}

/* WIDTH & HEIGHT WEB */

.full-width {
    min-width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.auto-width {
    width: auto;
    min-width: none;
    max-width: none;
}

.full-viewport-width {
    width: 100vw;
}

.min-height-150 {
    min-height: 150px;
}

.max-height-150 {
    max-height: 150px;
}

.full-viewport-height {
    min-height: 100vh;
}

.full-screen-div { 
    min-width: 100vw;
    min-height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    padding: 8em 0;
}

.bottom { 
    margin-bottom: 0em;
}


/* COLORS */

.purple-250 { color: var(--purple-250); }
.bg-purple-250 { background-color: var(--purple-250); }

.purple-275 { color: var(--purple-275); }
.bg-purple-275 { background-color: var(--purple-275); }

.dark-purple { color: var(--purple-400); }
.bg-dark-purple { background-color: var(--purple-400); }

.light-purple { color: var(--purple-300); }
.bg-light-purple { background-color: var(--purple-300); }

.dark-green { color: var(--green-400); }
.bg-dark-green { background-color: var(--green-400); }

.light-green { color: var(--green-200); }
.bg-light-green { background-color: var(--green-200); }

.superlight-green { color: var(--green-100); }
.bg-superlight-green { background-color: var(--green-100); }

.light-blue { color: var(--blue-200); }
.bg-light-blue { background-color: var(--blue-200); }

.black { color: var(--black); }
.bg-black{ background-color: var(--black); }

.dark-grey { color: var(--grey-500); }
.bg-dark-grey{ background-color: var(--grey-500);}

.middark-grey { color: var(--grey-400); }
.bg-middark-grey{ background-color: var(--grey-400);}

.grey-350 { color: var(--grey-350); }
.bg-grey-350 { background-color: var(--grey-350);}

.mid-grey { color: var(--grey-300); }
.bg-mid-grey{ background-color: var(--grey-300); }

.light-grey { color: var(--grey-200); }
.bg-light-grey{ background-color: var(--grey-200); }

.white { color: var(--white); }
.bg-white{ background-color: var(--white); }

.lightest-grey { color: var(--grey-100); }
.bg-lightest-grey { background-color: var(--grey-100); }

.red { color: var(--red-200); }
.bg-red { background-color: var(--red-200); }


/* TEXT STYLING */

h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 115px;
    line-height: 115px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 90px;
    line-height: 90px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}
    
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 55px;
    line-height: 55px;
    font-style: normal;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}
    
h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}
    
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}


p {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.big-text {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.small-text {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.smaller-text {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.tiny-text {
    font-family: 'Lexend', sans-serif;
    font-size: 10px;
    line-height: 11px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.p2 {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    text-align: left;
}

.p3 {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    text-align: left;
}

.body-bold {
    font-weight: 700;
}

.body-italic {
    font-style: italic;
}

.body-light {
    font-weight: 300;
}

.align-m {
    text-align: center;
}

.align-r {
    text-align: right;
}

.underline {
    text-decoration: underline;
}

.transparency { 
    opacity: 40%;
}

/* List Styling (WEB) */

.list-holder { 
    width: 90%;
    display: flex;
    justify-content: left;
}

ul {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    text-align: left;
    color: #fff;
    padding: none;
}

li {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    text-align: left;
    color: #E9E9E9
}

/* Table Styling (WEB) */

table {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    border-spacing: 0px;
}
  
th {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    white-space: nowrap;
    padding: 20px;
    min-width: 75px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: .5px solid var(--grey-200);
    background-color: var(--purple-100);
    position: sticky;
    top: -1px;
    z-index: 2;
}

th:first-of-type {
    left: 0;
    z-index: 3;
}

td {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    white-space: nowrap;
    border: .5px solid #e9e9e9;
    border-spacing: 0px;
    padding: 10px;
}

tbody tr td:first-of-type {
    background-color: var(--white);
    position: sticky;
    left: -1px;
    text-align: left;
}

tfoot tr td:first-of-type {
    background-color: var(--purple-100);
    position: sticky;
    left: -1px;
    text-align: left;
}

/* SPACERS (MARGIN/PADDING) */

.pd-twenty-top {
    padding-top: 20px;
}

.pd-zero-top {
    padding-top: 0px;
}

.pd-zero-right {
    padding-right: 0px;
}

.margin-right { 
    margin-right: 1em;
}

.fifteen-right { 
    margin-right: 15px;
}

.ten-right { 
    margin-right: 10px;
}

.eight-right { 
    margin-right: 8px;
}

.five-right { 
    margin-right: 5px;
}

.five-above { 
    margin-top: 5px;
}

.twenty-right {
    margin-right: 20px;
}

.padding-left { 
    padding-left: .3em;
}

.three-left { 
    margin-left: 3px;
}

.five-left { 
    margin-left: 5px;
}

.ten-left { 
    margin-left: 10px;
}

.margin-bottom { 
    margin-bottom: 20px;
}

.thirty-below {
    margin-bottom: 30px;
}

.twentyfive-below { 
    margin-bottom: 25px;
}

.twenty-below { 
    margin-bottom: 20px;
}

.thirty-above{ 
    margin-top: 30px;
} 

.twenty-above{ 
    margin-top: 20px;
}

.fifteen-below { 
    margin-bottom: 15px;
}

.fifteen-above { 
    margin-top: 15px;
}

.ten-below { 
    margin-bottom: 10px;
}

.ten-above{ 
    margin-top: 10px;
}

.eight-below { 
    margin-bottom: 8px;
}

.five-below { 
    margin-bottom: 5px;
}

.three-below { 
    margin-bottom: 3px;
}

.no-margin {
    margin: 0px;
}

/* BUTTON STYLING */

.button-primary {
    padding: 12px 20px;
    max-width: 200px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--green-200);
    border-radius: 4px;
    background-color: var(--green-200);
    font-family: 'Polysans bulky', sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
}

.button-primary-minimal {
    padding: 12px 20px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--purple-400);
    border-radius: 4px;
    background-color: var(--purple-400);
    font-family: 'Polysans bulky', sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: .15s ease-out;
}

.button-primary-minimal:hover {
    background-color: var(--purple-500);
    border-color: var(--purple-500);
    transition: .15s ease-out;
}

.button-primary-minimal:disabled, .button-primary-minimal[disabled] {
    padding: 12px 20px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--purple-500);
    border-radius: 4px;
    background-color: var(--purple-500);
    background-size: 200% 200%;
    font-family: 'Polysans bulky', sans-serif;
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    }

    .loading-spinner {
      display: inline-block;
      width: 10px;
      height: 10px;
      border: 2px solid var(--white);
      border-radius: 50%;
      border-top: 2px solid transparent;
      animation: loader-spin 0.8s linear infinite;
      margin-left: 8px;
    }

    .loading-spinner-dark {
        display: inline-block;
        width: 10px;
        height: 10px;
        border: 2px solid var(--black);
        border-radius: 50%;
        border-top: 2px solid transparent;
        animation: loader-spin 0.8s linear infinite;
        margin-left: 8px;
      }

    @keyframes loader-spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

.button-primary-minimal.red{
    padding: 12px 20px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--red-200);
    border-radius: 4px;
    background-color: var(--red-200);
    font-family: 'Polysans bulky', sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: .15s ease-out;
}

.button-primary-minimal.red:hover {
    background-color: var(--red-300);
    border-color: var(--red-300);
    transition: .15s ease-out;
}

.button-primary-minimal-small {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
    border-radius: 4px;
    background-color: var(--purple-400);
    border: solid 1px var(--purple-400);
    padding: 6px 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: .15s ease-out;
}

.button-primary-minimal-small:hover {
    background-color: var(--purple-500);
    border: solid 1px var(--purple-500);
    transition: .15s ease-out;
}

.button-primary-minimal.w-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
}

.button-primary-minimal.w-icon:hover {
    background-color: var(--purple-500);
    border-color: var(--purple-500);
    transition: 0.15s ease-out; 
    text-decoration: none;
}

.button-secondary-minimal {
    padding: 12px 20px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--purple-400);
    border-radius: 4px;
    background-color: var(--white);
    font-family: 'Polysans bulky', sans-serif;
    color: var(--purple-400);
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s ease-out; 
}

.button-secondary-minimal:hover {
    background-color: var(--purple-100);
    color: var(--purple-500);
    border-color: var(--purple-500);
    transition: 0.15s ease-out; 
}

.button-secondary-minimal.w-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-family: 'Lexend', sans-serif;
    color: var(--purple-400);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    border-width: 1px;
}

.button-secondary-minimal.w-icon:hover {
    background-color: var(--purple-100);
    color: var(--purple-500);
    border-color: var(--purple-500);
    transition: 0.15s ease-out; 
}

.button-tertiary-minimal {
    padding: 8px 0px;
    border-radius: 4px;
    background-color: transparent;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--grey-400);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    border: none;
    transition: 0.15s ease-out; 
}

.button-tertiary-minimal:hover {
    color: var(--black);
    transition: 0.15s ease-out;  
}

.button-primary:hover {
    background-color: transparent;
    color: #7ddfaf;
    transition-timing-function: ease-out;  
}

.button-primary.dark-purple {
    border-color: var(--purple-400);
    background-color: var(--purple-400);
}

.button-primary.dark-purple:hover {
    background-color: transparent;
    color: var(--purple-400);
    transition: 0.2s;
    transition-timing-function: ease-out;  
}

.button-primary.light-blue {
    border-color: #9ce9f3;
    background-color: #9ce9f3;
    color: #fff;
}

.button-primary.light-blue:hover {
    border-color: #9ce9f3;
    background-color: transparent;
    color: #9ce9f3;
    transition-timing-function: ease-out;  
}

.button-primary.light-purple {
    border-color: #9580d2;
    background-color: #9580d2;
}

.button-primary.light-purple:hover {
    background-color: transparent;
    color: #9580d2;
    transition-timing-function: ease-out;  
}

.button-primary.white {
    border-color: #fff;
    background-color: #fff;
    color: #504ebe;
}

.button-primary.white:hover {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
    transition: 0.2s;
    transition-timing-function: ease-out;
}

.button-secondary {
    padding: 12px 20px;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    border-color: #7ddfaf;
    background-color: transparent;
    font-family: 'Polysans bulky', sans-serif;
    color: #7ddfaf;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.button-secondary:hover {
    background-color: #fff;
    transition-timing-function: ease-out;  
}

.button-secondary.dark-purple {
    border-color: #504ebe;
    color: #504ebe;  
}

.button-secondary.dark-purple:hover {
    border-color: #3e3e3e;
    color: #3e3e3e;  
    transition-timing-function: ease-out; 
}
.button-secondary.light-blue {
    border-color: #9ce9f3;
    color: #9ce9f3;
}

.button-secondary.light-purple {
    border-color: #9580d2;
    color: #9580d2;
}

.button-secondary.white {
    border-color: #fff;
    color: #fff;
}

.button-secondary.white:hover {
    border-color: #050505;
    color: #050505;
    background-color: transparent;
    transition: 0.2s;
    transition-timing-function: ease-out;
}

.button-tertiary {
    padding: 8px 20px;
    border-style: none;
    font-family: 'Polysans bulky', sans-serif;
    background-color: transparent;
    color: #504EBE;
    font-size: 18px;
    line-height: 20px;
    text-decoration: underline;
    box-sizing: border-box;
    cursor: pointer;
}

.dash-button-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    min-height: 36px;
    max-width: 300px;
    border-style: solid;
    border-width: 2px;
    border-color: #504EBE;
    border-radius: 4px;
    background-color: #504EBE;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s;
    transition-timing-function: ease-out;
}

.dash-button-primary:hover {
    padding: 8px 15px;
    max-width: 300px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--purple-500);
    border-radius: 4px;
    background-color: var(--purple-500);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: var(--white);
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s;
    transition-timing-function: ease-out;
}

.dash-button-secondary { 
    padding: 8px 15px;
    max-width: 200px;
    border-style: solid;
    border-width: 2px;
    border-color: #504EBE;
    border-radius: 4px;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #504EBE;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.dash-button-active{
    background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
    background-size: 200% 200%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    min-height: 36px;
    max-width: 300px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--green-200);
    border-radius: 4px;
    background-color: var(--green-200);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: var(--black);
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s;
    transition-timing-function: ease-out;

    -webkit-animation: dash-active-button--animation 7s ease infinite;
    -moz-animation: dash-active-button--animation 7s ease infinite;
    animation: dash-active-button-animation 7s ease infinite;
}

@-webkit-keyframes dash-active-button-animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes dash-active-button-animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes dash-active-button-animation { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

.dash-button-active:hover {
    border-color: var(--black);
}

/* DROPDOWN BUTTON WEB */

.dropbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 8px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.dropbtn:hover {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 8px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
  
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
  
.dropdown-content a {
    color: #9580d2;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    }
  
.dropdown-content a:hover {
    color: #504ebe;
    background-color: #f6f6fc;
    border-radius: 4px;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}
  
.dropdown:hover .dropbtn {
    background-color: #9580d2;
}

/* MULTI DROPDOWN BUTTON WEB */

.submenu-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 8px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.submenu-button:hover {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 8px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
  
.submenu-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
  
.submenu-dropdown-content-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 5;
    border-radius: 8px;
    padding: 12px 10px 10px 10px;
    background-color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.submenu-dropdown-content-wrapper a {
    display: flex;
    align-items: center;
    color: var(--grey-400);
    padding: 10px 14px;
    text-decoration: none;
    transition: ease .2s;
    }
  
.submenu-dropdown-content-wrapper a:hover {
    color: var(--grey-500);
    background-color: var(--purple-100);
    border-radius: 4px;
}
  
.submenu-dropdown:hover .submenu-dropdown-content-wrapper {
    display: block;
}

.submenu-horizontal-spacer {
    width: 100%;
    height: 1px;
    background-color: var(--purple-200);
    margin: 12px 0;
}

.update-roster-holder {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.update-roster-holder a {
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: ease .2s;
    background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
    background-size: 200% 200%;

    -webkit-animation: update-roster-animation 7s ease infinite;
    -moz-animation: update-roster-animation 7s ease infinite;
    animation: update-roster-animation 7s ease infinite;
    }

    @-webkit-keyframes update-roster-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes update-roster-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes update-roster-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }


.update-roster-holder a:hover {
    color: var(--black);
    transition: ease .2s;
    border: 1px solid var(--black);
}
  

/* NAV BAR CSS */

.nav-wrapper { 
    width: 100vw;
    min-width: 100vw; 
    height: auto;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.70);
    border-bottom: 1px solid var(--purple-200);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.nav-holder { 
    width: 100%;
    min-width: 100%; 
    padding: 15px 20px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.nav-left { 
    width: auto;
    min-width: 50%;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.nav-right { 
    width: auto;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.nav-link { 
    width: auto;
    min-width: 110px;
    height: 25px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: var(--purple-400);
    color: white;
    padding: 5px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--purple-400);
}

.nav-link:hover { 
    width: auto;
    min-width: 110px;
    height: 25px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: var(--purple-500);
    color: #fff;
    padding: 5px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--purple-500);
}

.nav-link-secondary { 
    width: auto;
    min-width: 110px;
    height: 25px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--purple-400);
    padding: 5px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--purple-400);
}

.nav-link-secondary:hover { 
    color: var(--purple-500);
    background-color: var(--purple-100);
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--purple-500);
}

.nav-profile { 
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: 1px solid var(--purple-200);
    background-image: url("/static/fundraiser/placeholder-headshot.f35c16df9a65.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: ease .25s;
}

.nav-profile:hover { 
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: 1px solid var(--purple-200);
    background-image: url("/static/fundraiser/placeholder-headshot.f35c16df9a65.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: ease .25s;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
}

.profile-modal-holder { 
    display: none; 
    justify-content: flex-end;
    position: fixed; 
    padding: 15px;
    z-index: 20; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0,0,0,0.6); 
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-modal {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 21;
    right: 0px;
    width: 500px;
    height: 100%;
    max-height: 100%;
    background-color: var(--white);
    padding: 60px 0 170px 0;
    border: 1px solid var(--purple-200);
    border-radius: 8px;
    overflow: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-close-holder { 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--purple-200);
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 20px;
    position: absolute;
    z-index: 12;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.profile-close {
    color: var(--grey-500);
    font-size: 25px;
    margin-bottom: 3px;
}

.profile-close:hover, .profile-close:focus {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

.profile-top-content { 
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 40px 0px 40px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-subhead {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--purple-200);
}

.profile-fundraisers-wrapper{
    display: block;
}

.profile-fundraisers-holder{
    margin: 20px 0 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow: auto;
}

.profile-fundraisers-item {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--purple-100);
    border: 1px solid var(--purple-100);
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-decoration: none;
    transition: .25s ease;
}

.profile-fundraisers-item:hover {
    border: 1px solid var(--purple-200);
    transition: .25s ease;
}

.profile-fundraisers-item-text {
    width: auto;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 3px;
    color: var(--grey-500);
}

.profile-settings-item-subtext {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
}

.profile-fundraisers-item-tag {
    position: absolute;
    z-index: 12;
    top: 7px;
    right: 7px;
    padding: 2px 4px;
    border-radius: 8px;
}

.profile-fundraisers-item-tag.onboarding {
    background-color: var(--orange-100);
    color: var(--orange-300);
    border: 1px solid var(--orange-300)
}

.profile-fundraisers-item-tag.active {
    background-color: var(--green-100);
    color: var(--green-400);
    border: 1px solid var(--green-300)
}

.profile-fundraisers-item-tag.complete {
    background-color: var(--purple-200);
    color: var(--purple-400);
    border: 1px solid var(--purple-300)
}

.profile-fundraisers-view-tag {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 3px;
    z-index: 12;
    bottom: 7px;
    right: 7px;
    padding: 2px 4px;
    border-radius: 8px;
    color: var(--grey-400);
}

.profile-fundraisers-view-tag svg {
    transition: ease .2s;
}

.profile-fundraisers-item:hover svg {
    transform: translateX(2px);
    transition: ease .2s;
}

.profile-fundraisers-item:hover .profile-fund-photo {
    transform: scale(1.1);
    transition: ease .35s;
}

.profile-fund-photo-holder {
    width: 100px;
    min-width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.profile-fund-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: ease .35s;
}

.profile-settings-wrapper {
    position: fixed;
    z-index: 15;
    bottom: 15px;
    width: 497px;
    margin-right: 1px;
    margin-left: 1px;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    padding: 30px 40px 40px 40px;
    background-color: var(--white);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 0 0 8px 8px;
}

.profile-settings-button-holder {
   display: grid;
   grid-template-columns: 1fr;
   column-gap: 20px;
   margin-top: 20px;
}

.mobiletopnav {
    display: none; 
    overflow: hidden;
    width: 100vw;
    position: fixed;
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.50);
    border-radius: 0px 0px 10px 10px;
    top: 0;
    right: 0;
    z-index: 10;
  }
 
.mobile-nav-logo-holder {
    max-width: 20%;
}

.mobile-nav-logo{
    width: 100%;
}

.mobile-nav-link {
    border-radius: 4px;
    font-family: 'Lexend', sans-serif;
    color: var(--purple-400);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
}

.create-fund-modal-wrapper { 
    display: none; 
    justify-content: flex-end;
    position: fixed; 
    padding: 15px;
    z-index: 20; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0,0,0,0.6); 
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-modal {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: auto;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 85px 20px 20px 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-content-holder {
    width: 700px; 
    height: auto;
    display: flex;
    flex-direction: column;
}

.create-fund-header-holder { 
    width: 100%; 
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
}

.create-fund-steps-wrapper { 
    width: 100%; 
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 30px;
}

.create-fund-steps-wrapper .ind-step {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
    background-color: var(--purple-100);
    border: 1px solid var(--purple-200);
    border-radius: 10px;
}

.create-fund-steps-wrapper .ind-step.inactive {
    opacity: 50%;
}

.create-fund-steps-wrapper .ind-step.complete {
    background-color: var(--green-100);
    border-color: var(--green-300);
    color: var(--green-300);
}

.create-fund-steps-wrapper .ind-step-spacer {
    width: 40px;
    height: auto;
    border-top: 2px dotted var(--purple-200);
}

.create-fund-steps-wrapper .ind-step-spacer.inactive {
    opacity: 100%;
}

.create-fund-steps-wrapper .ind-step-spacer.complete {
    border-color: var(--green-300);
}

.create-fund-main-holder {
    width: 100%;
    height: auto;
    min-height: 250px;
    border-top: 1px solid var(--purple-200);
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.create-fund-content-container {
    width: 100%;
    height: auto;
    max-height: 415px;
    overflow: scroll;
}

.create-fund-start-option-wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.create-fund-start-option {
    position: relative;
    width: 325px;
    height: 250px;
    border: 1px solid var(--purple-200);
    border-radius: 15px;
    padding-top: 30px;
    color: var(--black);
    background-color: var(--purple-100);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .25s ease;
    overflow: hidden;
}

.create-fund-start-option:hover {
    color: var(--black);
    border-color: var(--purple-300);
    box-shadow: 3px 3px 10px var(--grey-300);
    transition: .25s ease;
}

.create-fund-image {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .25s ease;
}

.create-fund-start-option:hover img {
    scale: 1.05;
    transition: .25s ease;
}

.create-fund-radio-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.create-fund-radio-item {
    position: relative;
}

.create-fund-radio-wrapper input[type="radio"] {
    -webkit-appearance:none;
    appearance: none;
    position: absolute;
    top: 18px; 
    left: 10px;
    width: 14px;
    height: 14px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--purple-200);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:hover {
    background: var(--white);
    border: 1px solid var(--purple-300);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:checked {
    background: var(--purple-400);
    border: 1px solid var(--purple-500);
}

.create-fund-radio-wrapper label {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    background-color: var(--purple-100);
    padding: 16px 20px 16px 40px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    border: 1px solid var(--purple-200);
    border-radius: 8px;
    transition: ease-out .10s;
}

.create-fund-radio-wrapper label:hover {
    border-color: var(--purple-300);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:focus + label {
    border: 1px dashed var(--purple-300);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:checked + label {
    background-color: var(--purple-200);
    border-color: var(--purple-400);
    transition: ease-out .10s;
}

.create-fund-roster-item-holder { 
    width: 100%;
    max-height: 375px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-fund-roster-item-holder.smaller { 
    width: 100%;
    max-height: 320px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-fund-roster-item-holder-header { 
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.create-fund-roster-item-holder-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-roster-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    background-color: var(--purple-200);
    padding: 10px 15px;
    border-radius: 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    
}

.create-fund-roster-item-number {
    width: auto;
    height: 100%;
    min-height: 25px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding-right: 15px;
    border-right: 1px solid var(--grey-300);
}

.create-fund-roster-item-content {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.create-fund-roster-item-name {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.create-fund-footer-holder { 
    width: 100%;
    border-top: solid 1px var(--purple-200);
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.create-fund-footer-error {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--red-200);
    background-color: var(--red-100);
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    flex-shrink: 1;
}

.create-fund-confirmation-wrapper {
    width: 100%;
    background-color: var(--purple-100);
    border: 1px solid var(--purple-200);
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-confirmation-top {
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    border-bottom: 2px dotted var(--purple-200);
    padding: 0 0 15px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-confirmation-logo { 
    width: 175px;
    height: 125px;
    background-color: var(--purple-200);
    border-radius: 8px;
}

.create-fund-confirmation-middle {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 25px;
    border-bottom: 2px dotted var(--purple-200);
    padding: 15px 0 15px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-confirmation-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-fund-confirmation-bottom {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 25px;
    padding: 15px 0 0 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* FOOTER CSS */

.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    width: 100vw;
    background-color: var(--purple-100);
    background-size: cover;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding-bottom: 80px;
  }
  
  .footer-content-wrapper {
    display: flex;
    flex-direction: column; 
    width: 85%;
    padding: 2em 2em 1.5em 2em;
    max-width: 1350px;
    margin: auto;
    min-height: 100%;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--purple-200);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  .footer-logo { 
    width: 14em;
  }

  .footer-top { 
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid var(--purple-200);
    padding-bottom: 1.5em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  .footer-middle {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    width: 100%;
    padding: 1.5em 0;
    border-bottom: 1px solid var(--purple-200);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  .footer-bottom {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    width: 100%;
    padding-top: 1.5em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  .footer-socials-holder {
      width: auto;
      display: flex;
      flex-direction: row;
      column-gap: 6px;
  }
  
  .footer-content-column {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }

  .footer-content-column-subgroup {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin-bottom: 10px;
  }

  .legal-holder { 
    display: flex;
    column-gap: 5px;
  }

  .footer-link-label {
     text-align: left;
     margin-bottom: 10px;
  }

  .footer-link { 
    display: flex;
    gap: 4px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: var(--grey-300);
    transition: ease .2s;
    text-decoration: none;
  }
  
  .footer-link:hover { 
    color: var(--grey-400);
    transition: ease .2s;
  }

  .footer-link-new-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 4px;
    background-color: var(--green-300);
    font-family: 'Lexend', sans-serif;
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;
    color: var(--white);
    border-radius: 5px;
  }

  /* TOOL TIPS */

  .tooltip {
    position: relative;
    /* display: inline-block; */
  }

  .tooltip .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #0505058f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 16px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 10px);
    left: 50%; 
    margin-left: -115px; /* Use half of the width (120/2 = 60), to center the tooltip */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0505058f transparent transparent transparent;
  }

  .tooltip:hover .tooltip-text {
    visibility: visible;
  }

  .tooltip .tooltip-text-long {
    visibility: hidden;
    width: 440px;
    background-color: #0505058f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 16px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%; 
    margin-left: -228px; /* Use half of the width (120/2 = 60), to center the tooltip */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
  
  .tooltip .tooltip-text-long::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0505058f transparent transparent transparent;
  }

  .tooltip:hover .tooltip-text-long {
    visibility: visible;
  }

  .tooltip .tooltip-text-auto-left {
    visibility: hidden;
    width: 220px;
    background-color: #0505058f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 16px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%; 
    margin-left: -115px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
  
  .tooltip .tooltip-text-auto-left::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0505058f transparent transparent transparent;
  }

  .tooltip:hover .tooltip-text-auto-left {
    visibility: visible;
  }

  .rounded-left { 
    border-radius: 5px 0px 0px 5px;
  }
  
  .rounded-right { 
    border-radius: 0px 5px 5px 0px;
  }
  
  .rounded-top { 
    border-radius: 5px 5px 0px 0px;
  }

  .rounded-top-left { 
    border-radius: 5px 0px 0px 0px;
  }

  .rounded-top-right { 
    border-radius: 0px 5px 0px 0px;
  }

  .rounded-bottom-left { 
    border-radius: 0px 0px 0px 5px;
  }

  .rounded-bottom-right { 
    border-radius: 0px 0px 5px 0px;
  }
  
  .rounded-bottom { 
    border-radius: 0px 0px 5px 5px;
  }

  .no-border { 
    border-width: 0px;
    border-width: 0px;
  }

  /* ICONS FOR WEB */

    .icon-holder{
        width: 20px;
        height: 20px;
    }

    .icon-holder.centered{
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .normal-icon {
        font-size: 20px;
    }

    .question-icon {
        font-size: 20px;
        color: #fff;
    }

    .question-icon-current {
      font-size: 20px;
      color: #fff;
      cursor: pointer;
    }
    
    .question-icon-light-purple {
        font-size: 20px;
        color: #9580d2;
    }
      
    .question-icon-future {
        font-size: 20px;
        color:#504ebe;
    }

    .check-icon {
        font-size: 20px;
        color:#504ebe;
    }

    .close-icon {
        font-size: 20px;
        color: #504ebe;
    }
    
    .share-link-icon {
        font-size: 16px;
    }

    .twitter-icon {
        font-size: 16px; 
    }

    .facebook-icon {
        font-size: 16px; 
    }

    .add-icon {
        font-size: 16px;  
    }

    .link-icon {
        font-size: 16px;  
    }

    .help-icon {
        font-size: 16px;
    }

    .footer-icon {
        height: 18px;
        width: 18px;
    }

    .qr-icon {
        font-size: 18px;  
    }

/* MESSAGES STYLING (WEB) */

    .messages-holder {
        width: 100vw;
        position: fixed;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 15px;
    }

    .light-green-message {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90vw;
        margin-right: auto;
        margin-left: auto;
        padding: 15px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(0,0,0,0.7); 
        border-radius: 8px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        color: #7DDFAF;
        border: #7DDFAF;
        border-width: 1px;
        border-style: solid;
    }

    .red-message {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90vw;
        margin-right: auto;
        margin-left: auto;
        padding: 15px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(0,0,0,0.7); 
        border-radius: 8px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        color: #E05454;
        border: #E05454;
        border-width: 1px;
        border-style: solid;
    }

    /* GLOBAL GRADIENTS WEB*/

    #pending-gradient {
        background: linear-gradient(90deg, #F6F6FC, #F6F6FC, #E0E0f3,#F6F6FC, #F6F6FC);
        background-size: 200% 200%;

        -webkit-animation: Animation 7s ease infinite;
        -moz-animation: Animation 7s ease infinite;
        animation: Animation 7s ease infinite;
    }

    @-webkit-keyframes Animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes Animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes Animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    #active-gradient {
        background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
        background-size: 200% 200%;

        -webkit-animation: active-animation 7s ease infinite;
        -moz-animation: active-animation 7s ease infinite;
        animation: active-animation 7s ease infinite;
    }

        @-webkit-keyframes active-animation {
            0%{background-position:10% 0%}
            50%{background-position:91% 100%}
            100%{background-position:10% 0%}
        }
        @-moz-keyframes active-animation {
            0%{background-position:10% 0%}
            50%{background-position:91% 100%}
            100%{background-position:10% 0%}
        }
        @keyframes active-animation { 
            0%{background-position:10% 0%}
            50%{background-position:91% 100%}
            100%{background-position:10% 0%}
        }

    .active-button {
        background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
        background-size: 200% 200%;
        padding: 12px 20px;
        max-width: 275px;
        border-style: solid;
        border-width: 1px;
        border-color: #7ddfaf;
        border-radius: 4px;
        background-color: #7ddfaf;
        font-family: 'Polysans bulky', sans-serif;
        color: var(--black);
        font-size: 18px;
        line-height: 18px;
        font-weight: 700;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;

        -webkit-animation: active-button--animation 7s ease infinite;
        -moz-animation: active-button--animation 7s ease infinite;
        animation: active-button-animation 7s ease infinite;
    }

    @-webkit-keyframes active-button-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes active-button-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes active-button-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    .active-button:hover {
        border-style: solid;
        border-width: 1px;
        border-color: var(--black);
    }

    .active-button-smaller {
        background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
        background-size: 200% 200%;
        padding: 8px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 300px;
        border-style: solid;
        border-width: 1px;
        border-color: #7ddfaf;
        border-radius: 4px;
        background-color: #7ddfaf;
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        line-height: 14px;
        color: var(--black);
        font-weight: 700;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;

        -webkit-animation: active-button-smaller--animation 7s ease infinite;
        -moz-animation: active-button-smaller--animation 7s ease infinite;
        animation: active-button-smaller-animation 7s ease infinite;
    }

    @-webkit-keyframes active-button-smaller-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes active-button-smaller-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes active-button-smaller-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    .active-button-smaller:hover {
        border-style: solid;
        border-width: 1px;
        border-color: var(--black);
    }

    /* CKEDITOR STYLES */

    .ck-main-container {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ck-content {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .editor-container_classic-editor .editor-container__editor {
        min-width: 100%;
        max-width: 100%;
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }

    .editor-container_classic-editor .editor-container__editor p {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }

    .ck.ck-editor__editable > .ck-placeholder::before {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: var(--grey-300);
    }

    figure.image {
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    figure.image img {
        margin: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: hidden;
    }

}

/* MOBILE GLOBAL CSS */

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

/* GENERAL CSS CLASSES */

html {
    max-width: 100vw;
    height: auto;
    max-height: none;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: #fff;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    /* overflow-x: hidden; */
    margin: 0;
    padding: 0;
}

body.modal-open {
    background: #fff;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.body-dark {
    background: #050505;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a { 
    color:#504ebe;
    text-decoration: underline;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    text-align: left;
    margin: none;
    cursor: pointer;
}

a:hover { 
    color: #050505;
}

a.no-formatting {
    text-decoration: none;
    color: var(--black);
}

.inline-link {
    font-size: 14px;
    color:var(--grey-400);
    transition: .15s ease-out;
}

.inline-link:hover {
    color:var(--grey-500);
    transition: .15s ease-out;
}

.content-wrapper { 
    width: 100vw;
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding: 75px 0 0 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.content-holder { 
    width: 95%;
    height: auto;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.space-between {
    justify-content: space-between;
}
  
.flex-end {
    justify-content: flex-end;
}

.justify-start {
    justify-content: start;
}

.justify-end {
    justify-content: end;
}

/* ANIMATIONS MOBILE */
  
.anim-in {
    animation: global-appear-in 300ms;
    animation-timing-function: ease;
    animation-delay: calc(var(--appear-order) * 75ms);
  }

  @keyframes global-appear-in {
        from {
            transform: scale(.90) translateY(10px);
            opacity: 0;
            filter: blur(12px);
            -webkit-filter: blur(12px);
        }

        to {
            transform: translateY(0px);
            opacity: 1;
        }
    }

    .modal-anim-in {
        animation: global-modal-appear-in 150ms;
        animation-timing-function: ease;
      }
    
      @keyframes global-modal-appear-in {
            from {
                transform: scale(.97) translateY(10px);
                opacity: 50%;
            }
    
            to {
                transform: translateY(0px);
                opacity: 100%;
            }
        }

/* BORDER RADIUS & ROUNDING MOBILE */

.rounded { 
    border-radius: 5px;
}

.more-rounded {
    border-radius: 10px;
}

.rounded-full {
    border-radius: 50%;
}

/* WIDTH & HEIGHT MOBILE */

.full-width {
    min-width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.auto-width {
    width: auto;
    max-width: none;
}

.full-viewport-width {
    width: 100vw;
}

.min-height-150 {
    min-height: 150px;
}

.max-height-150 {
    max-height: 150px;
}

.full-viewport-height {
    min-height: 100vh;
}

.full-screen-div { 
    min-width: 100vw;
    min-height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    padding: 8em 0;
}

.bottom { 
    margin-bottom: 0em;
}

/* COLORS */

.purple-250 { color: var(--purple-250); }
.bg-purple-250 { background-color: var(--purple-250); }

.purple-275 { color: var(--purple-275); }
.bg-purple-275 { background-color: var(--purple-275); }

.dark-purple { color: var(--purple-400); }
.bg-dark-purple { background-color: var(--purple-400); }

.light-purple { color: var(--purple-300); }
.bg-light-purple { background-color: var(--purple-300); }

.dark-green { color: var(--green-400); }
.bg-dark-green { background-color: var(--green-400); }

.light-green { color: var(--green-200); }
.bg-light-green { background-color: var(--green-200); }

.superlight-green { color: var(--green-100); }
.bg-superlight-green { background-color: var(--green-100); }

.light-blue { color: var(--blue-200); }
.bg-light-blue { background-color: var(--blue-200); }

.black { color: var(--black); }
.bg-black{ background-color: var(--black); }

.dark-grey { color: var(--grey-500); }
.bg-dark-grey{ background-color: var(--grey-500);}

.middark-grey { color: var(--grey-400); }
.bg-middark-grey{ background-color: var(--grey-400);}

.grey-350 { color: var(--grey-350); }
.bg-grey-350 { background-color: var(--grey-350);}

.mid-grey { color: var(--grey-300); }
.bg-mid-grey{ background-color: var(--grey-300); }

.light-grey { color: var(--grey-200); }
.bg-light-grey{ background-color: var(--grey-200); }

.white { color: var(--white); }
.bg-white{ background-color: var(--white); }

.lightest-grey { color: var(--grey-100); }
.bg-lightest-grey { background-color: var(--grey-100); }

.red { color: var(--red-200); }
.bg-red { background-color: var(--red-200); }



/* TEXT STYLING */

h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}
    
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-style: normal;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}
    
h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}
    
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Polysans bulky', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    margin-block-start: 0;
    margin-block-end: 0;
}

.big-text {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.small-text {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.smaller-text {
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    line-height: 12px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.tiny-text {
    font-family: 'Lexend', sans-serif;
    font-size: 9px;
    line-height: 10px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

p {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0;
}

.p2 {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    text-align: left;
}

.p3 {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
}

.body-bold {
    font-weight: 700;
}

.body-italic {
    font-style: italic;
}

.body-light {
    font-weight: 300;
}

.align-m {
    text-align: center;
}

.align-r {
    text-align: right;
}

.underline {
    text-decoration: underline;
}

.transparency { 
    opacity: 40%;
}

/* LIST STYLING (MOBILE) */

.list-holder { 
    width: 90%;
    display: flex;
    justify-content: left;
}

ul {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    text-align: left;
    color: #fff;
    padding: none;
}

li {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    text-align: left;
    color: #E9E9E9
}

/* Table Styling (MOBILE) */

table {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    border-spacing: 0px;
}
  
th {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    white-space: nowrap;
    padding: 15px;
    min-width: 75px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: .5px solid var(--grey-200);
    background-color: var(--purple-100);
    position: sticky;
    top: -1px;
    z-index: 2;
}

th:first-of-type {
    left: 0;
    z-index: 3;
}

td {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    white-space: nowrap;
    border: .5px solid #e9e9e9;
    border-spacing: 0px;
    padding: 10px;
}

tbody tr td:first-of-type {
    background-color: var(--white);
    position: sticky;
    left: -1px;
    text-align: left;
}

tfoot tr td:first-of-type {
    background-color: var(--purple-100);
    position: sticky;
    left: -1px;
    text-align: left;
}

/* SPACERS (MARGIN/PADDING) MOBILE */

.pd-twenty-top {
    padding-top: 20px;
}

.pd-zero-top {
    padding-top: 0px;
}

.pd-zero-right {
    padding-right: 0px;
}

.margin-right { 
    margin-right: 1em;
}

.fifteen-right { 
    margin-right: 15px;
}

.ten-right { 
    margin-right: 10px;
}

.eight-right { 
    margin-right: 8px;
}

.five-right { 
    margin-right: 5px;
}

.five-above { 
    margin-top: 5px;
}

.twenty-right {
    margin-right: 20px;
}

.padding-left { 
    padding-left: .3em;
}

.three-left { 
    margin-left: 3px;
}

.five-left { 
    margin-left: 5px;
}

.ten-left { 
    margin-left: 10px;
}

.margin-bottom { 
    margin-bottom: 20px;
}

.thirty-below {
    margin-bottom: 30px;
}

.twentyfive-below { 
    margin-bottom: 25px;
}

.twenty-below { 
    margin-bottom: 20px;
}

.thirty-above{ 
    margin-top: 30px;
}

.twenty-above{ 
    margin-top: 20px;
}

.fifteen-below { 
    margin-bottom: 15px;
}

.fifteen-above { 
    margin-top: 15px;
}

.ten-below { 
    margin-bottom: 10px;
}

.ten-above{ 
    margin-top: 10px;
}

.eight-below { 
    margin-bottom: 8px;
}

.five-below { 
    margin-bottom: 5px;
}

.three-below { 
    margin-bottom: 3px;
}

.no-margin {
    margin: 0px;
}

/* BUTTON STYLING */

.button-primary {
    padding: 12px 20px;
    max-width: 200px;
    border-style: solid;
    border-width: 2px;
    border-color: #7ddfaf;
    border-radius: 4px;
    background-color: #7ddfaf;
    font-family: 'Polysans bulky', sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.button-primary-minimal {
    padding: 12px 15px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--purple-400);
    border-radius: 4px;
    background-color: var(--purple-400);
    font-family: 'Lexend', sans-serif;
    color: var(--white);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.15s ease-out; 
}

.button-primary-minimal:hover {
    background-color: var(--purple-500);
    border-color: var(--purple-500);
    color: var(--white);
    transition: 0.15s ease-out; 
}

.button-primary-minimal:disabled, .button-primary-minimal[disabled] {
    padding: 12px 15px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--purple-500);
    border-radius: 4px;
    background-color: var(--purple-500);
    font-family: 'Lexend', sans-serif;
    color: var(--white);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    }

    .loading-spinner {
      display: inline-block;
      width: 8px;
      height: 8px;
      border: 2px solid var(--white);
      border-radius: 50%;
      border-top: 2px solid transparent;
      animation: loader-spin 0.8s linear infinite;
      margin-left: 6px;
    }

    .loading-spinner-dark {
        display: inline-block;
        width: 8px;
        height: 8px;
        border: 2px solid var(--black);
        border-radius: 50%;
        border-top: 2px solid transparent;
        animation: loader-spin 0.8s linear infinite;
        margin-left: 6px;
    }

    @keyframes loader-spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

.button-primary-minimal.red {
    padding: 12px 15px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--red-200);
    border-radius: 4px;
    background-color: var(--red-200);
    font-family: 'Lexend', sans-serif;
    color: var(--white);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.15s ease-out; 
}

.button-primary-minimal.red:hover {
    background-color: var(--red-300);
    border-color: var(--red-300);
    color: var(--white);
    transition: 0.15s ease-out; 
}

.button-primary-minimal-small {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
    border-radius: 4px;
    background-color: var(--purple-400);
    border: solid 1px var(--purple-400);
    padding: 5px 6px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: .15s ease-out;
}

.button-primary-minimal-small:hover {
    background-color: var(--purple-500);
    border: solid 1px var(--purple-500);
    transition: .15s ease-out;
}

.button-primary-minimal.w-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
}

.button-primary-minimal.w-icon:hover {
    background-color: var(--purple-500);
    border-color: var(--purple-500);
    transition: 0.15s ease-out; 
    text-decoration: none;
}

.button-secondary-minimal {
    padding: 12px 15px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--purple-400);
    border-radius: 4px;
    background-color: var(--purple-100);
    font-family: 'Lexend', sans-serif;
    color: var(--purple-400);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s ease-out; 
}

.button-secondary-minimal:hover {
    background-color: var(--purple-100);
    color: var(--purple-500);
    border-color: var(--purple-500);
    transition: 0.15s ease-out;  
}

.button-secondary-minimal.w-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-family: 'Lexend', sans-serif;
    color: var(--purple-400);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
}

.button-secondary-minimal.w-icon:hover {
    background-color: var(--purple-100);
    color: var(--purple-500);
    border-color: var(--purple-500);
    transition: 0.15s ease-out; 
}

.button-tertiary-minimal {
    padding: 8px 0px;
    border-radius: 4px;
    background-color: transparent;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--grey-400);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    border: none;
    transition: 0.15s ease-out; 
}

.button-tertiary-minimal:hover {
    color: var(--black);
    transition: 0.15s ease-out;  
}

.button-primary:hover {
    background-color: transparent;
    color: #7ddfaf;
    transition-timing-function: ease-out;  
}

.button-primary.dark-purple {
    border-color: #504ebe;
    background-color: #504ebe;
}

.button-primary.dark-purple:hover {
    background-color: transparent;
    color: #504ebe;
    transition: 0.2s;
    transition-timing-function: ease-out;  
}

.button-primary.light-blue {
    border-color: #9ce9f3;
    background-color: #9ce9f3;
    color: #fff;
}

.button-primary.light-blue:hover {
    border-color: #9ce9f3;
    background-color: transparent;
    color: #9ce9f3;
    transition-timing-function: ease-out;  
}

.button-primary.light-purple {
    border-color: #9580d2;
    background-color: #9580d2;
}

.button-primary.light-purple:hover {
    background-color: transparent;
    color: #9580d2;
    transition-timing-function: ease-out;  
}

.button-primary.white {
    border-color: #fff;
    background-color: #fff;
    color: #504ebe;
}

.button-primary.white:hover {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
    transition: 0.2s;
    transition-timing-function: ease-out;
}

.button-secondary {
    padding: 12px 20px;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    border-color: #7ddfaf;
    background-color: transparent;
    font-family: 'Polysans bulky', sans-serif;
    color: #7ddfaf;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.button-secondary:hover {
    background-color: #fff;
    transition-timing-function: ease-out;  
}

.button-secondary.dark-purple {
    border-color: #504ebe;
    color: #504ebe;  
}

.button-secondary.dark-purple:hover {
    border-color: #3e3e3e;
    color: #3e3e3e;  
    transition-timing-function: ease-out; 
}

.button-secondary.light-blue {
    border-color: #9ce9f3;
    color: #9ce9f3;
}

.button-secondary.light-purple {
    border-color: #9580d2;
    color: #9580d2;
}

.button-secondary.white {
    border-color: #fff;
    color: #fff;
}

.button-secondary.white:hover {
    border-color: #050505;
    color: #050505;
    background-color: transparent;
    transition: 0.2s;
    transition-timing-function: ease-out;
}

.button-tertiary {
    padding: 8px 20px;
    border-style: none;
    font-family: 'Polysans bulky', sans-serif;
    color: #504EBE;
    font-size: 18px;
    line-height: 20px;
    text-decoration: underline;
    box-sizing: border-box;
    cursor: pointer;
}

.dash-button-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    max-width: 300px;
    border-style: solid;
    border-width: 2px;
    border-color: #504EBE;
    border-radius: 4px;
    background-color: #504EBE;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.15s;
    transition-timing-function: ease-out;
    cursor: pointer;
}

.dash-button-primary:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    max-width: 300px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--purple-500);
    border-radius: 4px;
    background-color: var(--purple-500);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: var(--white);
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s;
    transition-timing-function: ease-out;
}

.dash-button-secondary { 
    padding: 8px 15px;
    max-width: 200px;
    border-style: solid;
    border-width: 2px;
    border-color: #504EBE;
    border-radius: 4px;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #504EBE;
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.dash-button-active{
    background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
    background-size: 200% 200%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    min-height: 36px;
    max-width: 300px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--green-200);
    border-radius: 4px;
    background-color: var(--green-200);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: var(--black);
    font-weight: 400;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    cursor: pointer;
    transition: 0.15s;
    transition-timing-function: ease-out;

    -webkit-animation: dash-active-button--animation 7s ease infinite;
    -moz-animation: dash-active-button--animation 7s ease infinite;
    animation: dash-active-button-animation 7s ease infinite;
}

@-webkit-keyframes dash-active-button-animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes dash-active-button-animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes dash-active-button-animation { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

.dash-button-active:hover {
    border-color: var(--black);
}

/* DROPDOWN BUTTON MOBILE */

.dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #504ebe;
    color: var(--black);
    padding: 12px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
}

.dropbtn:hover {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 12px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
  
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5;
    border-radius: 4px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, 0.60);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid var(--purple-200);
}
  
.dropdown-content a {
    color: #9580d2;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    }
  
.dropdown-content a:hover {
    color: #504ebe;
    background-color: #f6f6fc;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}
  
.dropdown:hover .dropbtn {
    background-color: #9580d2;
}

/* MULTI DROPDOWN BUTTON MOBILE */

.submenu-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 8px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.submenu-button:hover {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--black);
    padding: 8px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 14px;
    border: var(--black);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
  
.submenu-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
  
.submenu-dropdown-content-wrapper {
    display: none;
    position: absolute;
    right: 0px;
    width: 100%;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 5;
    border-radius: 8px;
    padding: 12px 10px 10px 10px;
    background-color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.submenu-dropdown-content-wrapper a {
    display: flex;
    align-items: center;
    color: var(--grey-400);
    padding: 10px 14px;
    text-decoration: none;
    transition: ease .2s;
    }
  
.submenu-dropdown-content-wrapper a:hover {
    color: var(--grey-500);
    background-color: var(--purple-100);
    border-radius: 4px;
}
  
.submenu-dropdown:hover .submenu-dropdown-content-wrapper {
    display: block;
}

.submenu-horizontal-spacer {
    width: 100%;
    height: 1px;
    background-color: var(--purple-200);
    margin: 12px 0;
}

.update-roster-holder {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.update-roster-holder a {
    display: flex;
    align-items: center;
    color: var(--black);
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: ease .2s;
    background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
    background-size: 200% 200%;

    -webkit-animation: update-roster-animation 7s ease infinite;
    -moz-animation: update-roster-animation 7s ease infinite;
    animation: update-roster-animation 7s ease infinite;
    }

    @-webkit-keyframes update-roster-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes update-roster-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes update-roster-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }


.update-roster-holder a:hover {
    color: var(--black);
    transition: ease .2s;
    border: 1px solid var(--black);
}


/* NAV BAR CSS */

.nav-wrapper { 
    width: 100vw;
    min-width: 100vw; 
    min-height: 85px;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.70);
    border-radius: 0px 0px 15px 15px;
    display: none;
}

.nav-holder { 
    width: 100%;
    min-width: 100%; 
    min-height: 85px ;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

.nav-left { 
    width: auto;
    min-width: 50%;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding-left: 50px; 
}

.nav-right { 
    width: auto;
    padding-right: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-link { 
    width: auto;
    min-width: 110px;
    height: 25px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: #504EBE;
    color: white;
    padding: 5px 15px;
    margin-right: 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: #504EBE;
}

.nav-link:hover { 
    width: auto;
    min-width: 110px;
    height: 25px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: #050505;
    color: #fff;
    padding: 5px 15px;
    margin-right: 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: #050505;
}

.nav-link-secondary { 
    width: auto;
    min-width: 110px;
    height: 25px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #504EBE;
    padding: 5px 15px;
    margin-right: 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: #504EBE;
}

.nav-link-secondary:hover { 
    color: #050505;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: #050505;
}

.nav-profile { 
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border-radius: 50px;
    border: 1px solid var(--purple-200);
    background-image: url("/static/fundraiser/placeholder-headshot.f35c16df9a65.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: ease .25s;
}

.nav-profile:hover { 
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border-radius: 50px;
    border: 1px solid var(--purple-200);
    background-image: url("/static/fundraiser/placeholder-headshot.f35c16df9a65.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: ease .25s;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
}

.profile-modal-holder { 
    display: none; 
    justify-content: flex-end;
    position: fixed; 
    padding: 15px;
    z-index: 20; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0,0,0,0.6); 
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-modal {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 21;
    right: 0px;
    width: 95vw;
    height: 100%;
    max-height: 100%;
    background-color: var(--white);
    padding: 30px 0 170px 0;
    border: 1px solid var(--purple-200);
    border-radius: 8px;
    overflow: scroll;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-close-holder { 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--purple-200);
    width: 20px;
    height:20px;
    padding: 5px;
    border-radius: 20px;
    position: absolute;
    z-index: 16;
    top: 12px;
    right: 12px;
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-close {
    color: var(--grey-500);
    font-size: 22px;
    margin-bottom: 3px;
}

.profile-close:hover, .profile-close:focus {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

.profile-top-content { 
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-subhead {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--purple-200);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.profile-fundraisers-wrapper{
    display: block;
}

.profile-fundraisers-holder{
    margin: 10px 0 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow: scroll;
}

.profile-fundraisers-item {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    width: 100%;
    min-height: 100px;
    padding: 8px;
    border-radius: 8px;
    background-color: var(--purple-100);
    border: 1px solid var(--purple-100);
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-decoration: none;
    transition: .25s ease;
}

.profile-fundraisers-item:hover {
    border: 1px solid var(--purple-200);
    transition: .25s ease;
}

.profile-fundraisers-item-text {
    width: auto;
    max-width: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 1px;
    color: var(--grey-500);
}

.profile-settings-item-subtext {
    display: flex;
    flex-direction: column;
}

#text-spacer { 
    display: none;
}

.profile-fundraisers-item-tag {
    position: absolute;
    z-index: 12;
    top: 5px;
    right: 5px;
    padding: 2px 4px;
    border-radius: 8px;
}

.profile-fundraisers-item-tag.onboarding {
    background-color: var(--orange-100);
    color: var(--orange-300);
    border: 1px solid var(--orange-300)
}

.profile-fundraisers-item-tag.active {
    background-color: var(--green-100);
    color: var(--green-400);
    border: 1px solid var(--green-300)
}

.profile-fundraisers-item-tag.complete {
    background-color: var(--purple-200);
    color: var(--purple-400);
    border: 1px solid var(--purple-300)
}

.profile-fundraisers-view-tag {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 3px;
    z-index: 12;
    bottom: 5px;
    right: 5px;
    padding: 2px 4px;
    border-radius: 8px;
    color: var(--grey-400);
}

.profile-fundraisers-view-tag svg {
    transition: ease .2s;
}

.profile-fundraisers-item:hover svg {
    transform: translateX(2px);
    transition: ease .2s;
}

.profile-fundraisers-item:hover .profile-fund-photo {
    transform: scale(1.1);
    transition: ease .35s;
}

.profile-fund-photo-holder {
    width: 95px;
    min-width: 95px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.profile-fund-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: ease .35s;
}

.profile-add-fund-wrapper { 
    width: 100%;
    display: flex;
    justify-content: stretch;
}

.profile-settings-wrapper {
    position: fixed;
    z-index: 15;
    bottom: 15px;
    width: calc(100% - 35px);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 10px;
    background-color: var(--white);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 0 0 8px 8px;
}

.profile-settings-button-holder {
   display: grid;
   grid-template-rows: 1fr;
   row-gap: 10px;
   box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-top: 10px;
}

/* MOBILE NAV */

.mobiletopnav {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    position: fixed;
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.80);
    top: 0;
    right: 0;
    z-index: 10;
    padding: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid var(--purple-200);
  }

.mobile-nav-logo-holder {
    max-width: 22%;
}

.mobile-nav-logo{
    width: 100%;
}

.mobile-nav-link {
    border-radius: 4px;
    font-family: 'Lexend', sans-serif;
    color: var(--purple-400);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
}


.create-fund-modal-wrapper { 
    display: none; 
    justify-content: flex-end;
    position: fixed; 
    padding: 15px;
    z-index: 20; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0,0,0,0.6); 
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-modal {
    position: relative;
    height: auto;
    min-height: 95vh;
    width: 100%;
    overflow: scroll;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--white);
    border-radius: 8px;
    padding: 50px 15px 15px 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-content-holder {
    width: 100%; 
    height: auto;
    display: flex;
    flex-direction: column;
}

.create-fund-header-holder { 
    width: 100%; 
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 5px;
}

.create-fund-steps-wrapper { 
    width: 100%; 
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.create-fund-steps-wrapper .ind-step {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 3px 5px;
    background-color: var(--purple-100);
    border: 1px solid var(--purple-200);
    border-radius: 10px;
}

.create-fund-steps-wrapper .ind-step.inactive {
    opacity: 50%;
}

.create-fund-steps-wrapper .ind-step.complete {
    background-color: var(--green-100);
    border-color: var(--green-300);
    color: var(--green-300);
}

.create-fund-steps-wrapper .ind-step-spacer {
    width: 15px;
    height: auto;
    border-top: 2px dotted var(--purple-200);
}

.create-fund-steps-wrapper .ind-step-spacer.inactive {
    opacity: 100%;
}

.create-fund-steps-wrapper .ind-step-spacer.complete {
    border-color: var(--green-300);
}

.create-fund-main-holder {
    width: 100%;
    height: auto;
    min-height: 250px;
    border-top: 1px solid var(--purple-200);
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.create-fund-content-container {
    width: 100%;
    height: auto;
    overflow: scroll;
}

.create-fund-start-option-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.create-fund-start-option {
    position: relative;
    width: 100%;
    min-width: 85vw;
    height: 195px;
    border: 1px solid var(--purple-200);
    border-radius: 15px;
    padding-top: 15px;
    color: var(--black);
    background-color: var(--purple-100);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .25s ease;
    overflow: hidden;
}

.create-fund-start-option:hover {
    color: var(--black);
    border-color: var(--purple-300);
    box-shadow: 3px 3px 10px var(--grey-300);
    transition: .25s ease;
}

.create-fund-image {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .25s ease;
}

.create-fund-start-option:hover img {
    scale: 1.05;
    transition: .25s ease;
}

.create-fund-radio-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.create-fund-radio-item {
    position: relative;
}

.create-fund-radio-wrapper input[type="radio"] {
    -webkit-appearance:none;
    appearance: none;
    position: absolute;
    top: 18px; 
    left: 8px;
    width: 14px;
    height: 14px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--purple-200);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:hover {
    background: var(--white);
    border: 1px solid var(--purple-300);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:checked {
    background: var(--purple-400);
    border: 1px solid var(--purple-500);
}

.create-fund-radio-wrapper label {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 3px;
    background-color: var(--purple-100);
    padding: 8px 16px 8px 40px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    border: 1px solid var(--purple-200);
    border-radius: 8px;
    transition: ease-out .10s;
}

.create-fund-radio-wrapper label:hover {
    border-color: var(--purple-300);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:focus + label {
    border: 1px dashed var(--purple-300);
    transition: ease-out .10s;
}

.create-fund-radio-wrapper input[type="radio"]:checked + label {
    background-color: var(--purple-200);
    border-color: var(--purple-400);
    transition: ease-out .10s;
}

.create-fund-roster-item-holder { 
    width: 100%;
    max-height: 325px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-fund-roster-item-holder.smaller { 
    width: 100%;
    max-height: 305px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-fund-roster-item-holder-header { 
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.create-fund-roster-item-holder-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-roster-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    background-color: var(--purple-200);
    padding: 8px 15px;
    border-radius: 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-roster-item-number {
    width: auto;
    height: 100%;
    min-height: 25px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding-right: 15px;
    border-right: 1px solid var(--grey-300);
}

.create-fund-roster-item-content {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.create-fund-roster-item-name {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.create-fund-footer-holder { 
    width: 100%;
    border-top: solid 1px var(--purple-200);
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
}

.create-fund-footer-error {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--red-200);
    background-color: var(--red-100);
    border-radius: 4px;
    padding: 0px 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    flex-shrink: 1;
}

.create-fund-confirmation-wrapper {
    width: 100%;
    background-color: var(--purple-100);
    border: 1px solid var(--purple-200);
    border-radius: 8px;
    padding: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-confirmation-top {
    width: 100%;
    min-height: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    border-bottom: 2px dotted var(--purple-200);
    padding: 0 0 10px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-confirmation-logo { 
    width: 175px;
    height: 125px;
    background-color: var(--purple-200);
    border-radius: 8px;
}

.create-fund-confirmation-middle {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 2px dotted var(--purple-200);
    padding: 10px 0 10px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.create-fund-confirmation-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-fund-confirmation-bottom {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* FOOTER CSS */

    .footer-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        width: 100vw;
        background-color: var(--purple-100);
        background-size: contain;
        background-repeat: no-repeat;
        background-position-y: bottom;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding-bottom: 10px;
    }
    
    .footer-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        width: 95%;
        margin: auto;
        min-height: 100%;
        padding: 1.5em;
        background-color: var(--white);
        border-radius: 10px;
        border: 1px solid var(--purple-200);
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    
    .footer-logo { 
        width: 10em;
        margin: auto;
        margin-bottom: 10px;
    }

    .footer-top { 
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid var(--purple-200);
        padding-bottom: 1.5em;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
      }
    
      .footer-middle {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
        row-gap: 20px;
        width: 100%;
        padding: 1.5em 0;
        border-bottom: 1px solid var(--purple-200);
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
      }
    
      .footer-bottom {
        display: flex;
        flex-direction: column-reverse; 
        justify-content: center;
        align-items: center;
        row-gap: 12px;
        width: 100%;
        padding-top: 1.5em;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
      }

    .footer-socials-holder {
        width: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: row;
        column-gap: 5px;
    }
    
    .footer-content-column {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }

    .footer-content-column-subgroup {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 20px;
    }

    .legal-holder { 
        display: flex;
        column-gap: 5px;
      }
    
    .footer-links-group { 
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .footer-link-label {
        text-align: center;
        margin-bottom: 8px;
    }

    .footer-link { 
        display: flex;
        column-gap: 3px;
        align-items: center;
        justify-content: center;
        font-family: 'Lexend', sans-serif;
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 8px;
        color: var(--grey-300);
        transition: ease .2s;
        text-decoration: none;
    }

    .footer-link:hover { 
        color: var(--black);
        opacity: 40%;
        transition: ease .2s;
    }

    .footer-link-new-tag {
        width: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3px 4px;
        background-color: var(--green-300);
        font-family: 'Lexend', sans-serif;
        font-size: 10px;
        line-height: 10px;
        font-weight: 400;
        color: var(--white);
        border-radius: 5px;
      }




/* TOOL TIPS */

  .tooltip {
    position: relative;
    /* display: inline-block; */
  }

  .tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #0505058f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 3px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%; 
    margin-left: -70px; /* Use half of the width (120/2 = 60), to center the tooltip */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
  
  .tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0505058f transparent transparent transparent;
  }

  .tooltip:hover .tooltip-text {
    visibility: visible;
  }

  .tooltip .tooltip-text-long {
    visibility: hidden;
    width: 160px;
    background-color: #0505058f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 16px;
    font-weight: 400;
    border-radius: 5px;
    padding: 8px 8px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%; 
    margin-left: -89px; /* Use half of the width (120/2 = 60), to center the tooltip */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
  
  .tooltip .tooltip-text-long::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0505058f transparent transparent transparent;
  }

  .tooltip:hover .tooltip-text-long {
    visibility: visible;
  }

  .tooltip .tooltip-text-auto-left {
    visibility: hidden;
    width: 160px;
    background-color: #0505058f;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 10px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    left: auto;
    right: 0;
    margin-left: 0; 
  }
  
  .tooltip .tooltip-text-auto-left::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 5px;
    left: auto;
    margin-left: 0;
    border-width: 5px;
    border-style: solid;
    border-color: #0505058f transparent transparent transparent;
  }

  .tooltip:hover .tooltip-text-auto-left {
    visibility: visible;
  }

  .rounded-left { 
    border-radius: 5px 0px 0px 5px;
  }
  
  .rounded-right { 
    border-radius: 0px 5px 5px 0px;
  }
  
  .rounded-top { 
    border-radius: 5px 5px 0px 0px;
  }

  .rounded-top-left { 
    border-radius: 5px 0px 0px 0px;
  }

  .rounded-top-right { 
    border-radius: 0px 5px 0px 0px;
  }

  .rounded-bottom-left { 
    border-radius: 0px 0px 0px 5px;
  }

  .rounded-bottom-right { 
    border-radius: 0px 0px 5px 0px;
  }
  
  .rounded-bottom { 
    border-radius: 0px 0px 5px 5px;
  }

  .no-border { 
    border-width: 0px;
    border-width: 0px;
  }

  /* ICONS FOR MOBILE */

    .icon-holder{
        width: 16px;
        height: 16px;
    }

    .icon-holder.centered{
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .question-icon {
        width: 15px;
        height: 15px;
        color: #fff;
    }

    .question-icon-current {
        width: 15px;
        height: 15px;
        color: #fff;
    }

    .question-icon-light-purple {
        font-size: 20px;
        color: #9580d2;
    }

    .question-icon-future {
        font-size: 20px;
        color:#504ebe;
    }

    .check-icon {
        font-size: 15px;
        color:#504ebe;
    }

    .close-icon {
        font-size: 20px;
        color: #504ebe;
    }

    .share-link-icon {
        font-size: 15px;
    }

    .twitter-icon {
        font-size: 16px; 
    }

    .facebook-icon {
        font-size: 16px; 
    }

    .add-icon {
        font-size: 16px;  
    }

    .link-icon {
        font-size: 16px;  
    }

    .help-icon {
        font-size: 16px;
    }

    .footer-icon {
        height: 16px;
        width: 16px;
    }

    .qr-icon {
        font-size: 16px;  
    }

    /* MESSAGES STYLING (MOBILE) */

    .messages-holder {
        width: 100vw;
        position: fixed;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 15px;
    }

    .light-green-message {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90vw;
        margin-right: auto;
        margin-left: auto;
        padding: 15px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(0,0,0,0.7); 
        border-radius: 8px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        color: #7DDFAF;
        border: #7DDFAF;
        border-width: 1px;
        border-style: solid;
    }

    .red-message {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90vw;
        margin-right: auto;
        margin-left: auto;
        padding: 15px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(0,0,0,0.7); 
        border-radius: 8px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        color: #E05454;
        border: #E05454;
        border-width: 1px;
        border-style: solid;
    }

    /* GLOBAL GRADIENTS MOBILE */

    #pending-gradient {
        background: linear-gradient(90deg, #F6F6FC, #F6F6FC, #E0E0f3,#F6F6FC, #F6F6FC);
        background-size: 200% 200%;

        -webkit-animation: Animation 7s ease infinite;
        -moz-animation: Animation 7s ease infinite;
        animation: Animation 7s ease infinite;
    }

    @-webkit-keyframes Animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes Animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes Animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    #active-gradient {
        background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
        background-size: 200% 200%;

        -webkit-animation: active-animation 7s ease infinite;
        -moz-animation: active-animation 7s ease infinite;
        animation: active-animation 7s ease infinite;
    }

    @-webkit-keyframes active-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes active-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes active-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    .active-button {
        background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
        background-size: 200% 200%;
        padding: 12px 20px;
        max-width: 275px;
        border-style: solid;
        border-width: 1px;
        border-color: #7ddfaf;
        border-radius: 4px;
        background-color: #7ddfaf;
        font-family: 'Polysans bulky', sans-serif;
        color: var(--black);
        font-size: 18px;
        line-height: 18px;
        font-weight: 700;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;

        -webkit-animation: active-button--animation 7s ease infinite;
        -moz-animation: active-button--animation 7s ease infinite;
        animation: active-button-animation 7s ease infinite;
    }

    @-webkit-keyframes active-button-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes active-button-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes active-button-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    .active-button:hover {
        border-style: solid;
        border-width: 1px;
        border-color: var(--black);
    }

    .active-button-smaller {
        background: linear-gradient(90deg, #7ddfaf, #7ddfaf, #56BB89, #7ddfaf, #7ddfaf);
        background-size: 200% 200%;
        padding: 8px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 300px;
        border-style: solid;
        border-width: 1px;
        border-color: #7ddfaf;
        border-radius: 4px;
        background-color: #7ddfaf;
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        line-height: 14px;
        color: var(--black);
        font-weight: 700;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;

        -webkit-animation: active-button-smaller--animation 7s ease infinite;
        -moz-animation: active-button-smaller--animation 7s ease infinite;
        animation: active-button-smaller-animation 7s ease infinite;
    }

    @-webkit-keyframes active-button-smaller-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @-moz-keyframes active-button-smaller-animation {
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }
    @keyframes active-button-smaller-animation { 
        0%{background-position:10% 0%}
        50%{background-position:91% 100%}
        100%{background-position:10% 0%}
    }

    .active-button-smaller:hover {
        border-style: solid;
        border-width: 1px;
        border-color: var(--black);
    }

     /* CKEDITOR STYLES */

     .ck-main-container {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ck-content {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .editor-container_classic-editor .editor-container__editor {
        min-width: 100%;
        max-width: 100%;
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }

    .editor-container_classic-editor .editor-container__editor p {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }

    .ck.ck-editor__editable > .ck-placeholder::before {
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: var(--grey-300);
    }

    figure.image {
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    figure.image img {
        margin: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: hidden;
    }


}