/* =============================================================================
  #RESET
============================================================================= */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0;margin:0 0 1em}


/* =============================================================================
  #TOOLS
============================================================================= */
html{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
*,:after,:before{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}


/* =============================================================================
  #CSS VARIABLES
============================================================================= */
:root {
    --primary-color: #663366;
    --primary-color-dark: #663366;
 
    --accent-color: #E5007D;

    --secondary-color: #000000;
    --secondary-color-dark: #000000;

    --text-color: #524D43;

    --grey: #CBD0D6;
    --grey-light: #ececec;
    --white: #FFF;

    --border-settings: 2px solid #CBD0D6;
    --border-settings-light: 2px solid #ececec;
    --border-radius: 20px;
    --border-radius-small: 6px;

    --default-padding: 24px;
    --default-large-padding: 30px;
    --default-medium-padding: 16px;
    --default-small-padding: 12px;

    --min-btn-width: 200px;

    --default-font: 'Roboto', sans-serif;
    --heading-font: 'Roboto Condensed', sans-serif;

    --tabbar-height: 80px;
    --negative-tabbar-height: -80px;
    /* --font-size-px: 18px;
    --font-size-rem: 1.8rem;
    --medium-font-size-px: 16px; */
    /* --medium-font-size-rem: 1.6rem; */
    /* --small-font-size-px: 12px;
    --small-font-size-rem: 1.2rem; */

    --default-transition: all 150ms ease-in-out;
    --basic-transition: 150ms ease-in-out;
}
/* =============================================================================
  #GENERAL
============================================================================= */
* {
    font-family: inherit;
    line-height: inherit;
    color: inherit;
}

html {
    min-height: 100%;
    height: 100%;

    /* font-size: 16px; */
    /* font-size: 62.5%; */
}

body {
    overflow-x: hidden;

    font-family: var(--default-font);
    color: var(--text-color);
    /* font-size: var(--medium-font-size-px);  */
    font-size: var(--medium-font-size-rem);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* black overlay */
body.menu-is-open::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2000;
}

body.menu-is-open > * {
    position: relative;
}

.tabbar-container {
    position: relative;
    z-index: 2500;
}
/* =============================================================================
  #BUTTONS
============================================================================= */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: var(--default-medium-padding) var(--default-padding);
    min-width: var(--min-btn-width);

    color: var(--white);
    font-size: var(--font-size-px); font-size: var(--font-size-rem);
    text-decoration: none;
    text-align: center;

    cursor: pointer;
    font-weight: 700;

    background-color: #DA0077;
    border: none;
    border-radius: var(--border-radius-small);

    transition: var(--default-transition);
}

.btn:hover { background-color: #b50063; }  

.btn:disabled {
    pointer-events: none;
    opacity: 50%;
}

.btn:disabled:hover { background-color: var(--primary-color); }
  
/* Button modifiers */
.btn--block {
    display: block;
    width: 100%;
}

/* Button icon */
.btn i { margin-right: var(--default-small-padding); }

.btn--cta { background-color: var(--secondary-color); }

.btn--back {
    margin-bottom: 30px;
    padding: var(--default-small-padding);
    width: 100%;

    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
}

.link {
    color: var(--primary-color);
    font-size: var(--small-font-size-px); font-size: var(--small-font-size-rem);
    font-weight: 700;
}

.btn--icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    max-width: 48px;
    min-width: 48px;

    height: 48px;
    max-height: 48px;
    min-height: 48px;
    
    padding: 0;
    border-radius: 50%;
    margin: 0;
}
    .btn--icon i  {
        font-size: 18px;
        margin: 0;
    }

.btn--fixed {
    position: fixed;
    right: 12px;
    bottom: calc(var(--tabbar-height) + 12px);
    background-color: #000!important;
}

.toggles {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    background-color: #EFECEF;

    border-radius: 10px;
}



    .toggles .btn--toggle {
        position: relative;
        border: none;
        flex: 1;
        color: var(--primary-color);
        background-color: transparent;
        border-radius: 0;
        min-width: auto;
        padding: 14px 10px;
        font-size: 14px;
    }

        .btn--toggle::before {
            content: "";
            position: absolute;
            bottom: -8px;
    
            left: 50%;
            transform: translateX(-50%);
    
            width: 0;
            height: 0;
            
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid var(--primary-color);

            opacity: 0;
            transition: opacity 250ms ease-in-out;
        }

    .btn--toggle.active {
        color: #FFF;
        background-color: var(--primary-color);
    }

    .btn--toggle.active::before {
        opacity: 1;
    }

    .btn--toggle:first-of-type {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .btn--toggle:last-of-type {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }


/* =============================================================================
  #UTILITIES
============================================================================= */
.hide { display: none!important; }

/* Text aligns */
.ta-left { text-align: left; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }

/* Put this on the wrapping div you want to clear */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after { clear: both; }

.videoWrapper {
    position: relative;
    padding-bottom: 56.5%;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
    margin: 0 auto;
    padding: 0 var(--default-small-padding);
    max-width: 560px;
    width: 100%;
}

a.hide, .hide { display: none; }

/* =============================================================================
  #TYPOGRAPHY
============================================================================= */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;

    color: var(--secondary-color);
    line-height: 1.1;
    font-family: var(--heading-font);
}

/* Heading 1 */
h1 {
    margin-bottom: var(--default-padding);
    font-size: 32px; font-size: 3.2rem;
}

/* Heading 2 */
h2 {
    margin-bottom: var(--default-medium-padding);
    /* font-size: 24px;  */
    font-size: 1.688rem;
}

/* Heading 3 */
h3 {
    margin-bottom: var(--default-small-padding);

    text-transform: none;
    font-size: 18px; font-size: 1.8rem;
}

/* Heading 4 */
h4 {
    font-size: 20px; font-size: 2rem;
}

.lead { font-size: 120%; }
strong { font-weight: bold; }
em, i { font-style: italic; }

p { 
    margin-bottom: 1em;
}

/* Lists */

.ol, .ul {
    margin-bottom: 2rem;
    padding-left: var(--default-large-padding);
}

.ul {
    list-style: disc;
}

.ol {
    list-style: decimal;
}

    .ul li + li,
    .ol li + li {
        margin-top: .25em;
    }

/* =============================================================================
  #ELEMENTS
============================================================================= */
img {
    max-width: 100%;
    font-style: italic;
    vertical-align: middle;
}

img[width], img[height] { max-width: none; }

hr {
    margin: var(--default-large-padding) 0;

    height: 2px;

    background-color: var(--grey-light);
    border: none;
}


/* =============================================================================
  #MESSAGES
============================================================================= */
/* Messages */
.message {
    display: block;
    margin: var(--default-medium-padding) 0;
    padding: 8px var(--default-small-padding);
  
    color: var(--white);
    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
    font-weight: 700;
  
    border-radius: var(--border-radius-small);
  }
  
    .message h1,
    .message h2,
    .message h3,
    .message h4 {
        margin-bottom: 5px;
    }
  
    /* No margin on last item in message */
    .message *:last-child { margin-bottom: 0; }

.message--error   { background-color: #e23c3c; }
.message--warning { background-color: #df920d; }
.message--success { background-color: #71b62c; }
.message--info    { background-color: #3484cf; }
  

.toast {
    position: fixed;
    bottom: var(--tabbar-height);

    right: var(--default-small-padding);
    left: var(--default-small-padding);

    transform: translateY(100%);

    z-index: 50;   
    transition: transform 500ms ease-in-out;
}
.toast-open .toast {
    transform: translateY(0);
}

    .toast .message {
        text-align: center;
    }
/* =============================================================================
  #FORM STYLING
============================================================================= */
/* FORM LABEL BLOCK */
.form__section { margin-bottom: var(--default-large-padding); }

/* Form button */
.form__section .btn {
    min-width: 200px;
}


/* Labels */
.form__label {
    display: block;
    margin-bottom: var(--default-small-padding);
    margin-right: 0;

    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
    font-weight: 600;
}

label + label { margin-left: var(--default-large-padding); }
.form__label + label { margin-left: 0; }

.form__label--radio {
    display: block;
}

.form__label--radio + .form__label--radio {
    margin-left: 0;
    margin-top: 5px;
}

/* Default */
select,
input {
    font-size: var(--font-size-px);
    font-size: var(--font-size-rem);
}

select,
textarea,
input:focus {
    outline: none;
}


/* Radio and checkbox input */
input[type="radio"],
input[type="checkbox"] {
    margin-right: 8px;
}


/* General text inputs */
textarea,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
    display: block;
    padding: 14px 16px;
    width: 100%;
    /* max-width: 320px; */

    color: #000000;
    font-family: var(--default-font);
    font-size: var(--font-size-px); font-size: var(--font-size-rem);
    line-height: 1.4;

    border-radius: 10px;
    background-color: var(--white);
    border: var(--border-settings);

    transition: box-shadow var(--basic-transition);
}

textarea:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    border: 2px solid var(--primary-color);
}


/* Textarea */
textarea {
    min-height: 140px;
    max-width: 360px;
    width: 100%;
}

/* Select input */
select {
    height: 42px;
    width: 100%;

    border: none;
    background-color: #f3f3f3;

    cursor: pointer;
}


/* Error input */
textarea.error,
input[type="text"].error,
input[type="tel"].error,
input[type="email"].error,
input[type="password"].error,
input[type="number"].error {
    border: 2px solid #e23c3c;
}

.field-error.hide {
    display: none;
}

.form--login label.error,
.field-error {
    display: block;
    margin-top: 10px;
    padding: 10px;
    margin-left: 0 !important;
    border-radius: 3px;

    font-size: var(--medium-font-size-px);
    font-size: var(--medium-font-size-rem);
    color: var(--white);
    background-color: var(--primary-color);
}

.form__section--switch {
    margin: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--default-small-padding);
}

.form__section--switch label { cursor: pointer; }

.form__section--switch input[type="checkbox"] {
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
}


.form__label { font-weight: bold; }

    .form__label small {
        display: block;

        font-weight: normal;
        line-height: 1.1;
    }

/* =============================================================================
  ##FORM UPLOAD ============================================================= */
  .form__upload__input {
    height: 0;
    width: 0;
    opacity: 0;
    float: left;
  }
  
  
  .progress-bar {
    padding: 8px;
    max-width: 100%;
    width: auto !important;
  
    color: var(--white);
    text-align: right;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .6);
  
    background-image: linear-gradient(135deg, #4e1b57 25%, #663a6d 25%, #663a6d 50%, #4e1b57 50%, #4e1b57 75%, #663a6d 75%, #663a6d 100%);
    background-size: 28.28px 28.28px;
    border-radius: 22px;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, .1), inset 0 -2px 2px 0 rgba(0, 0, 0, .15);
  }
  
  .progress-bar[aria-valuenow="0"] { display: none; }
  
/* =============================================================================
  ##INPUT TOGGLE ============================================================= */
.toggle {
    position: relative;
    width: 40px;
    height: 24px;

    background-color: #ffffff;
    border: 2px solid #072b45;
    border-radius: 12px;

    cursor: pointer;

    transition: background-color var(--basic-transition);
}

.toggle__switch {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 16px;
    width: 16px;

    background-color: #CEE3F3;
    border-radius: 50%;

    transition: var(--default-transition);
}

.toggle:hover .toggle__switch { background-color: #96bddb; }

input:checked + .toggle {  background-color: #4FB360; }
input:checked + .toggle .toggle__switch {
    background-color: var(--white);
    transform: translateX(100%);
}


/* ==========================================================================
	#HAMBURGER TOGGLE
========================================================================== */
.no-nav .nav__burger { display: none; }

.nav__burger {
    position: relative;

    height: 3em;
    width: 3em;
    
    font-size: 8px;
    
    cursor: pointer;
    
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
    
    -webkit-tap-highlight-color: transparent;
    
    z-index: 1100;
}

.nav__burger .nav__burger__lines:after {
    left: 0;
    top: -1em;
}

.nav__burger .nav__burger__lines:before {
    left: 1em;
    top: 1em;
}

.nav__burger:after {
    content: '';

    display: block;
    position: absolute;
    
    top: -25%;
    left: -25%;

    height: 150%;
    width: 150%;
}

.nav__burger .nav__burger__lines {
    top: 50%;
    margin-top: -0.125em;
}

.nav__burger .nav__burger__lines,
.nav__burger .nav__burger__lines:after,
.nav__burger .nav__burger__lines:before {
    content: '';
    position: absolute;
    
    display: block;
    
    width: 100%;
    height: 0.25em;
    
    border-radius: 0.25em;
    background-color: var(--white);

    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);

    pointer-events: none;
}

.menu-is-open .nav__burger .nav__burger__lines,
.menu-is-open .nav__burger .nav__burger__lines:after,
.menu-is-open .nav__burger .nav__burger__lines:before {
    background-color: #ffffff;
}

.nav__burger .nav__burger__lines:after {
    left: 0;
    top: -1em;
}

.nav__burger .nav__burger__lines:before {
    left: 1em;
    top: 1em;
}

.nav__burger.nav__burger--squeeze .nav__burger__lines,
.nav__burger.nav__burger--squeeze .nav__burger__lines:after,
.nav__burger.nav__burger--squeeze .nav__burger__lines:before {
    -webkit-transition: .2s top .2s, .1s left, .2s transform, .4s background-color .2s;
    -o-transition: .2s top .2s, .1s left, .2s transform, .4s background-color .2s;
    transition: .2s top .2s, .1s left, .2s transform, .4s background-color .2s;
}

.nav__burger.nav__burger--squeeze .nav__burger__lines:after,
.nav__burger.nav__burger--squeeze .nav__burger__lines:before {
    width: 2em;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines,
.nav__burger.nav__burger--squeeze.open .nav__burger__lines:after,
.nav__burger.nav__burger--squeeze.open .nav__burger__lines:before {
    -webkit-transition: .2s background-color, .2s top, .2s left, .2s transform .15s;
    -o-transition: .2s background-color, .2s top, .2s left, .2s transform .15s;
    transition: .2s background-color, .2s top, .2s left, .2s transform .15s;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines {
    background-color: transparent;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines:before,
.nav__burger.nav__burger--squeeze.open .nav__burger__lines:after {
    left: 0.5em;
    top: 0px;
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav__burger.nav__burger--squeeze.open .nav__burger__lines:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* =============================================================================
  #POPUP
============================================================================= */
.popup-wrapper {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
    height: 100vh;
    width: 100vw;
    
    padding: var(--default-large-padding) 12px 12px 12px;
    /* padding: var(--default-large-padding); */
    
    background-color: rgba(0, 0, 0, .55);
    
    opacity: 0;
    pointer-events: none;
    
    overflow: auto;
    z-index: 2000;

    transition: opacity 500ms ease-in-out;
}

.popup-wrapper.is-active {
    opacity: 1;
    pointer-events: all;
}

/* Question wrapper */
.popup {
    margin: 0 auto;
    max-width: 520px;
    padding: var(--default-medium-padding);

    background-color: var(--white);
    border-radius: 6px;

    transform: translateY(150%) scale(.5);

    transition: transform 750ms ease-in-out;
}

.popup-wrapper.is-active .popup {
    transform: translateY(0) scale(1);
}

.popup hr {
    margin: 16px -16px 16px -16px;
    height: 2px;
}

/* Heading of window */
.popup__heading {
    display: inline-block;
    margin-top: -25px;
    margin-bottom: 10px;
    padding: 5px 8px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    background-color: var(--primary-color);
}

/* Close option */
.popup__close {
    position: absolute;

    top: -12px;
    right: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 15px;
    height: 24px;

    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 24px;

    cursor: pointer;

    background-color: var(--secondary-color);
    border-radius: 12px;
}

.is-inactive{ display:none; }


/* =============================================================================
  #TABBAR
============================================================================= */
.no-nav .tabbar { display: none; }

.tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    height: var(--tabbar-height);
    background-color: var(--primary-color);

    z-index: 2500;
}

    .tabs {
        display: flex;
        align-items: flex-start;
        justify-content: center;

        height: 100%;
        /* padding: 16px 0 0 0; */
    }

        .tabs__item {
            height: 100%;
            min-width: calc(100% / 4);
        }

            .tabs__item a {
                display: flex;            
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;    
              
                height: 100%;
                gap: 4px;
                padding-top: 14px;
                /* padding-top: 16px; */

                text-decoration: none;
                color: #AF98AF;
            }

            .tabs__item.active a {
                color: var(--white);
            }

            .tabs__item i {
                font-size: 20px;
            }

            .tabs__item span {
                font-size: 12px;
                font-weight: 700;
                text-transform: uppercase;
            }

/* ==========================================================================
	#MENU
========================================================================== */
.menu-wrapper {
    position: fixed;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 30px 18px 30px 18px;
    
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;

    background-color: #FFF;
    
    transform: translateY(120%);
    transition: all 350ms ease-in-out;

    z-index: 1000;
}

.menu-is-open .menu-wrapper { transform: translateY(var(--negative-tabbar-height)); }

.menu {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 8px;

    margin: 0 auto;

    max-width: 560px;
}


.menu--inline { grid-template-columns: 1fr; }

/* .menu--inline .menu__item a {} */

.menu__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 12px;
    /* min-height: 68px; */
    gap: 10px;

    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: var(--small-font-size-px); font-size: var(--small-font-size-rem);
    text-align: center;
    line-height: 1;

    background-color: #FFF;
    border-radius: 12px;
    border: 2px solid #DCD6DC;
    height: 100%;

    word-break: break-word;
}

.tabbar-container .menu__item--inline-only {
    display: none;
}

.menu__item i {
    margin: 0;
}

.menu__item a.disabled {
    opacity: 50%;
    pointer-events: none;
}

.menu--inline .menu__item a {
    background-color: white;
    color: var(--primary-color);
    flex-direction: row;
    justify-content: flex-start;
    min-height: 0;
    padding: 16px 12px;
}

.menu-wrapper .menu__item.active a {
    color: var(--primary-color);
    background-color: #e4dbe3;
    border-color: #e4dbe3;
}

.menu__item.active a { background-color:  #e4dbe3;
     border-color: #e4dbe3;}

.menu__item i {
    margin-bottom: 6px;
    font-size: var(--default-padding);
}

.menu--inline .menu__item i {
    margin-right: 6px;
    margin-bottom: 0;
    width: 30px;

    font-size: 20px;
    text-align: center;
}

.menu__item--chat {
    position: relative;
}

.menu__item--chat::before,
.tabs__item--more::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 12px;
    height: 12px;

    color: var(--white);
    font-size: 12px;
    font-weight: 700;

    background-color: #DA0077;
    border-radius: 50%;

    animation: pulse 1s infinite;

    opacity: 0;
}

.tabs__item--more::before {
    width: 8px;
    height: 8px;

    right: 26px;
    animation: none;
}

.menu__item--chat.menu__item--notification::before,
.tabs__item--more.tabs__item--notification::before {
    opacity: 1;
}

.menu--inline .menu__item--chat::before {
    top: 50%;
    right: 18px;
    transform: translateY(-50%);

}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(218, 0, 119, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(218, 0, 119, 0); }
    100% { box-shadow: 0 0 0 0 rgba(218, 0, 119, 0); }
}

/* =============================================================================
  #CHAT
============================================================================= */
.chat-overview {
    background-color: #EFECEF;
}


.chat-is-open {
    height: 100vh;
    overflow: hidden;
}

.chat-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;

    background-color: #EFECEF;

    transform: translateX(120%);
    transition: all 250ms ease-in-out;
    z-index: 3000;
}

.chat-is-open .chat-overlay {
    transform: translateX(0);
}

.chat-header, .chat-footer {
    z-index: 10;
}

.chat-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;

    padding: 0 30px;
    height: 105px;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #FCFCFC;
}

    .chat-header .btn {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
        margin: 0;

        width: 30px;
        height: 30px;
        min-width: auto;

        background-color: transparent;
    }

        .chat-header .btn i {
            margin: 0;
            font-size: 22px;

            color: var(--primary-color)
        }

    .chat-header picture {
        display: block;

        min-width: 46px;
        width: 46px;
        height: 46px;

        border-radius: 50%;
        overflow: hidden;
    }

        .chat-header picture img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

    .chat-header__content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

        .chat-header__content__text {
            display: block;
        }

        .chat-header__content__text--heading {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1rem;
        }

        .chat-header__content__text--subtitle {
            color: #BBAFBB;
            font-size: .875rem;
        }

    .chat-body {
        display: flex;
        flex-direction: column;

        gap: 40px;

        flex: 1;
        padding: 0 16px;
        overflow-y: scroll;

        /* margin-top: -105px; */
        padding-top: calc(105px + 16px);

        margin-bottom: -82px;
        padding-bottom: calc(82px + 16px);
    }

        .chat-message {
            position: relative;
            display: block;

            max-width: 70%;
            padding: 18px;
            color: #FFF;
            
            background-color: var(--primary-color);
            border-radius: 16px;
            border-top-right-radius: 0;

            margin-left: auto;
        }

            .chat-message__text {
                display: block;
                word-wrap: break-word;
                margin: 0;
            }

            .chat-message__time {
                position: absolute;
                right: 0;
                bottom: -30px;

                color: #BBAABB;
                margin: 0;
            }

        .chat-message--incoming {
            background-color: #D0C8D0;
            border-top-left-radius: 0;
            border-top-right-radius: 16px;

            color: #705C70; 

            margin-left: unset;
            margin-right: auto;
        }

        .chat-message--incoming .chat-message__time {
            left: 0;
            right: unset;
        }

    .chat-footer {
        position: relative;
        display: flex;
        align-items: center;

        padding: 16px;
        gap: 12px;        
    }

        .chat-footer .chat-input {
            resize: none;
            
            min-height: 50px;
            height: 50px;
            max-height: 90px;
            
            width: 100%;
            max-width: unset;
            
            flex-grow: 0;
            padding: var(--default-small-padding);
            
            word-wrap: break-word;
            font-size: var(--medium-font-size-px);
            font-size: var(--medium-font-size-rem);
            color: var(--text-color);
            
            border-radius: 10px;
            border: none;
            outline: none;
            box-shadow: none;
        }

        .chat-footer .chat-input::-webkit-scrollbar,
        .chat-body::-webkit-scrollbar {
            display: none;
        }

        .chat-footer .btn {
            display: flex;
            align-items: center;
            justify-content: center;

            padding: 0;

            height: 48px;
            max-height: 48px;
            min-height: 48px;
            
            width: 48px;
            max-width: 48px;
            min-width: 48px;

            border-radius: 50%;
            background-color: var(--primary-color);
        }

            .chat-footer .btn i {
                margin: 0 3px 0 0;
            }
    
    .chat-footer::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        
        top: -16px;
        height: calc(100% + 16px);

        background: linear-gradient(0deg, rgb(239 236 239) 40%, rgb(239 236 239 / 0%) 100%);
        z-index: -1;
    }

/* =============================================================================
  #ATTENDEES / #GUESTLIST
============================================================================= */
.participants {
    display: flex;
    flex-direction: column;

    padding: 0;

    overflow: auto;
}

.participant.new-message {
    order: 0;
}

/* Participant item */
.participant {
    order: 2;

    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 24px 18px;

    cursor: pointer;
    color: var(--primary-color);

    background-color: transparent;

    transition: 350ms all ease-in-out;
    border-bottom: 2px solid #d0c8d0;
}

/* .participant:nth-of-type(even) {
    background-color: #fff;
} */

.participant.is-online {
    order: 1;
    cursor: pointer;
}

.hide-offline .participant {
    display: none;
}
.hide-offline .participant.is-online {
    display: block;
}

/* Participant thumbnail */
.participant__thumb {
    position: relative;

    display: block;
    width: 44px;
    max-width: 44px;
    min-width: 44px;

    height: 44px;
    max-height: 44px;
    min-height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #d0c8d0;
}

.participant__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.participants--has-thumb .participant__thumb {
    display: block;
}

/* Online or offline indiciation */
.participant__thumb::after {
    content: "";

    position: absolute;

    top: -2px;
    left: -7px;

    height: 18px;
    width: 18px;

    border: 2px solid #fff;

    background-color: #ea0b0b;
    border-radius: 50%;
}

.participants--has-thumb .participant::after {
    top: 50%;
    transform: translateY(-16px);
    left: 5px;
}

.participant.is-online .participant__thumb::after {
    background-color: #1ba02a !important;
}

/* Participant details */
.participant__name,
.participant__company {
    display: block;
    line-height: 1.2;
}

.participant__name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.participant__company {
    font-size: 13px;
    color: #666;
}

/* New message indiciation */
.new-message .participant__notification::before {
    content: "New";

    position: absolute;

    top: 50%;
    right: 10px;

    display: flex;
    align-items: center;

    padding: 4px 8px 4px 8px;

    color: #755915;
    line-height: normal;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    background-color: #ffcd55;
    border-radius: 16px;

    transform: translateY(-50%);
}

/* Participant actions */
.participant__actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
}

.participant__actions .actions__item {
    display: flex;
    justify-self: center;
    align-self: center;

    padding: 5px;

    width: 30px;
    height: 30px;

    cursor: pointer;

    background-color: #ffaa22;
    box-shadow: inset 0 -2px 0 0 #cc7e00;
    border-radius: 3px;
}

.participant__actions .actions__item + .actions__item {
    margin-left: 5px;
}

.participant__actions .actions__item img {
    opacity: .75;

    transition: opacity var(--basic-transition);
}

.participant__actions .actions__item:hover img {
    opacity: 1;
}

/* =============================================================================
  #SEARCH FORM
============================================================================= */
.search {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;
}

    .search .btn {
        flex-grow: 1;
        white-space: nowrap;
    }


.searchbar {
    position: relative;
    width: 100%;
}

    .searchbar input {
        flex-grow: 2;
        max-width: none;
        padding-right: 32px !important;

        color: #000000;
        background-color: #EFECEF;
        border: 2px solid #EFECEF;
        border-radius: 10px;
        box-shadow: none;
    }

    .searchbar input::placeholder {
        color: #A48EA4;
    }

    .searchbar--small input {
        padding: 16px;

        font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
    }

    .searchbar i {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);

        color: #a3a3a3;
        font-size: .85em;
    }

    .searchbar input:focus + i { color: var(--primary-color); }
    .searchbar input:focus { border-color: #ddd3dd; }

.tab-area .search { flex-direction: column; }

    .tab-area .search > * + * {
        margin-left: 0;
        margin-top: 10px;
    }

/* =============================================================================
  #MAIN
============================================================================= */
.main { padding: var(--default-large-padding) 0 calc(var(--tabbar-height) + var(--default-large-padding)) 0; }
.chat-overview .main { padding-top: 0;}

/* =============================================================================
  #INPUT TOGGLE
============================================================================= */
/* .toggle-container {
    display: flex;
    margin-top: 24px;
    width: 100%;
  }

    .toggle-container input {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
    }

    .btn--toggle {
      color: #4e1b57;
      border: 2px solid #4e1b57;
      background-color: var(--white);
      margin-top: 0;
      padding: 10px;
      min-width: auto;
        width: 100%;
      cursor: pointer;
    }

    .btn--toggle:hover {
      color: var(--white);
      background-color: #4e1b57;
    }

    .btn--toggle.active {
      background-color: #4e1b57;
      color: var(--white);
    }

    .btn-container {
      width: 100%;
    }

    .btn-container + .btn-container label {
      border-left: none;
    } */

/* =============================================================================
  #HEADER
============================================================================= */
.chat-overview > .header:first-of-type,
.home > .header:first-of-type {
    display: none;
}

.header {
    position: sticky;
    z-index: 300;
    top: 0;
    padding: 12px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: var(--primary-color);
}

.header--app {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;

    padding: 66px 18px 18px 18px;
    background-color: #FFF;
}

    .header__bar {
        position: absolute;
        inset: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        height: 46px;
        width: 100%;

        background-color: var(--primary-color);
    }

        .header__bar a {
            display: block;
            height: 80%;
            width: auto;
        }

        .header__bar .header__logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

    .header--app h2 {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #000;
    }

    .header--app h2 i {
        font-size: 20px;
    }

/* ##HEADER LOGO ============================================================ */
.header__logo img {
    width: 60px;
    height: auto;
}

/* =============================================================================
  #BANNER
============================================================================= */
/* ##BASIC BANNER PROPERTIES ================================================ */
.banner {
    position: relative;
    padding: 28px 0 16px 0;
    color: var(--white);
    text-align: center;

    background-color: #EFECEF;

    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 100%;

    background-image: url('../img/header-arrow.png');
    background-repeat: no-repeat;
    background-position: -50% center;
    background-size: 60%;
}

.banner > * {
    position: relative;
}

.banner > img{
    width: 100%;
}


    .banner > .container *:last-child { margin-bottom: 0; }
    .banner h1 { color: inherit; }

.banner__logo {
    display: flex;
    align-items: center;
    justify-content: center;

    
    position: absolute;
    left: 18px;
    top: 0;

    /* width: 65px; */
    height: 20%;
    aspect-ratio: 1;

    padding: 0 6px;

    background-color: var(--primary-color);
}

    .banner__logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
/* =============================================================================
  #LOCATION
============================================================================= */
/* ##BASIC LOCATION PROPERTIES ============================================== */
.location {
    overflow: hidden;
    position: relative;
    padding: var(--default-medium-padding);
    padding-bottom: 150px;

    color: var(--white);
    text-shadow: 0 1px 2px rgb(0 0 0 / 50%);

    background-color: var(--grey);
    background-image: url('../img/bg-location.jpeg'); /* insert location img here */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    border-radius: 3px;
}

    .location > * { position: relative; }

    .location > *:last-child { margin-bottom: 0; }

    .location h2 {
        margin-bottom: 5px;
        color: inherit;
    }

/* ##LOCATION DARKEN OVERLAY ================================================ */
.location::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-color: rgb(0, 0, 0);
    /* 65 149 209  */
    background: linear-gradient(333deg, rgba(65, 149, 209, 0) 0%, rgba(65, 149, 209, 0) 60%, rgba(0, 0, 0, 0.5) 90%);
    pointer-events: none;
}

/* =============================================================================
  #GOOGLE MAPS
============================================================================= */
.maps {
    position: relative;
    height: 240px;
}

    .maps iframe {
        position: absolute;

        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 100%;
    }

    .maps + .btn {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
/* =============================================================================
  #SUPPORT
============================================================================= */
/* ##SUPPORT ITEM WRAPPER =================================================== */
.support {
    display: flex;
    align-items: center;
    padding: var(--default-medium-padding);

    color: var(--white);

    background-color: var(--primary-color);
}

.support + .support { margin-top: var(--default-medium-padding); }

/* ##SUPPORT ICON =========================================================== */
.support__icon { margin-right: var(--default-medium-padding); }

/* ##SUPPORT CONTENT ======================================================== */
.support__content h2 {
    margin-bottom: 5px;

    color: #ffffff;
    font-size: var(--small-font-size-px); font-size: var(--small-font-size-rem);
}

.support__content p { font-size: 17px; font-size: 1.7rem; }
.support__content > *:last-child { margin-bottom: 0; }

/* =============================================================================
  #E-TICKET
============================================================================= */
.ticket {
    overflow: hidden;
    position: relative;

    /* margin-bottom: 60px; */
    padding: var(--default-large-padding);

    text-align: center;
    
    box-shadow: inset 0 0 0 2px var(--grey-light);
    z-index: -1;
}


/* ##TICKET DECORATION ====================================================== */
.ticket::before,
.ticket::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 30px;
    width: 30px;

    border: var(--border-settings-light);
    background-color: var(--white);
    border-radius: 50%;
}

.ticket::before {
    left: 0;
    transform: translateY(-50%) translateX(-50%);
}

.ticket::after {
    right: 0;
    transform: translateY(-50%) translateX(50%);
}

/* ##TICKET USER NAME ======================================================= */
.ticket__user {
    margin-bottom: var(--default-small-padding);

    color: var(--primary-color);
    font-size: 28px;
    /* font-size: 22px; font-size: 2.2rem; */
}

/* ##TICKET TYPE ============================================================ */
.ticket__type {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .ticket__type i {
        margin-right: 5px;
        font-size: .75em;
    }

/* ##TICKET BARCODE ========================================================= */
.ticket__barcode { margin: 20px 0 0 0; }

.ticket__code {
    font-size: 14px; font-size: 1.4rem;
    letter-spacing: 2px;
}

.ticket-btn {
    margin-top: -2px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
}

.ticket__message {
    margin-top: 24px;
    text-align: center;
    color: #5ab401;
    font-weight: 600;
}

/* =============================================================================
  #SPONSOR
============================================================================= */
.sponsor + .sponsor { margin-top: var(--default-medium-padding); }

/* ##SMALL SPONSORS ========================================================= */
.small-sponsors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .small-sponsors .sponsor {
        flex: 0 0 33%;
        flex: 0 0 calc(100% / 3);
    }

        .small-sponsors .sponsor .sponsor__heading { border: none; }

    .small-sponsors .sponsor + .sponsor { margin-top: 0; }

    .small-sponsors .sponsor,
    .small-sponsors .sponsor__heading {
        height: 100%;
    }

    .small-sponsors .sponsor__thumb img {
        max-width: 100%;
        max-height: none;
    }

/* ##SPONSOR ITEM =========================================================== */
.sponsor__heading {
    position: relative;
    padding: var(--default-large-padding);
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: var(--border-settings-light);

    cursor: pointer;
}

.sponsor--static .sponsor__heading { cursor: default; }

/* ##SPONSOR CTA ============================================================ */
.sponsor__cta {
    position: absolute;
    
    bottom: -2px;
    right: -2px;

    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--white);

    background-color: var(--secondary-color);
}

.sponsor--static .sponsor__cta { display: none; }

/* ##SPONSOR CONTENT POP-UP ================================================= */
.sponsor__content h3 {
    margin-bottom: 15px;
    padding: 45px 0 15px 0;

    color: var(--primary-color);

    border-bottom: var(--border-settings);
}

.sponsor__content p {
    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
}

/* ##SPONSOR LOGO =========================================================== */
.sponsor__thumb {
    text-align: center;
}

    .sponsor__thumb img {
        max-height: 150px;
        max-width: 150px;
    }

/* ##SPONSOR DESCRIPTION ==================================================== */
.sponsor__desc {
    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
}

/* =============================================================================
  #MESSAGEBOARD
============================================================================= */
.post { background-color: var(--grey-light); }
.post + .post { margin-top: var(--default-medium-padding); }

.post__thumb {
    display: block;
    min-height: 80px;
    background-color:   var(--grey);
}

.post__content {
    position: relative;
    padding: var(--default-medium-padding);
}

    .post__content h2 { font-size: 20px; font-size: 2rem; }

    .post__content h2 small {
        display: block;
        font-size: var(--small-font-size-px); font-size: var(--small-font-size-rem);
    }

.post__desc { font-size: .9em; }

    .post__desc > *:last-child { margin-bottom: 0; }

/* ##NO MESSAGE NOTIFICATION ================================================ */
.no-message {
    padding: var(--default-medium-padding);

    color: #595959;
    text-align: center;

    background-color: #f4f4f4;
}

    .no-message > *:last-child { margin-bottom: 0; }

    .no-message i {
        margin-bottom: var(--default-small-padding);

        color: #cccccc;
        font-size: 58px; font-size: 5.8rem;
    }

/* ==========================================================================
  #PERSONAL PROGRAM
========================================================================== */
.personal-program .heading{
    background-color: var(--primary-color);
    padding: 0.7rem;
    display: flex;
    flex-direction: row;
    color: white;
    font-size: 1.125rem;
}
.personal-program .heading .program__time{ 
    width: 110px;
    font-family: var(--heading-font);
    font-weight: 800;
}
.personal-program .program__item{
    margin-bottom:1rem
}

.personal-program .heading .program__content{
    width: calc(100% - 150px);
    font-family: var(--heading-font);
}

.personal-program .content{
    background-color: #EFEFEF;
    padding: 0.7rem;
    font-family: var(--heading-font);
    font-size: 1.125rem;
}

.personal-program .content .room{
    color: var(--accent-color);
}
.personal-program .content .title{
    font-weight:800;
    color: black;
    font-size: 1.125rem;
}
.personal-program .content .speaker{
     color: black;
         font-size: 1.125rem;
}


/* ==========================================================================
  #PROGRAM
========================================================================== */
.program {
    display: flex;
    flex-direction: column;
    /* margin: var(--default-large-padding) 0; */
}

/* ##PROGRAM ITEM =========================================================== */
.program .program__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap:20px;

    border-top:3px solid #EFEFEF;
    font-size: 1.125rem;
    padding: 16px 0;
}

/* ##PROGRAM TIME =========================================================== */
.program .program__time {
    /* margin-bottom: 6px; */
    width: 100px;
    font-family: var(--heading-font);
    font-weight: 800;
 
    color: black;
}

.program__time p {
    margin: 0;
}

.program .program__content{
    width: calc(100% - 150px);
    font-family: var(--heading-font);

}

/* ##PROGRAM TITLE ========================================================== */
.program .program__title {
    margin-top: 0;
    margin-bottom: 0;

    font-size: var(--font-size-px); font-size: var(--font-size-rem);
    line-height: 1.4;
    color: var(--text-color);
}

/* ##PROGRAM SPEAKER ======================================================== */
.program__speaker {
    margin-bottom: 0;
    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
    /* opacity: .45; */
    font-weight: 700;
    color: var(--primary-color);
}

.program__title h4 + .program__speaker { margin-top: 6px; }

/* ==========================================================================
  #PROGRAM DETAIL PAGE
========================================================================== */
/* ##PROGRAM DETAIL HEADING ============================================== */
.program-detail__heading {
    margin-bottom: var(--default-medium-padding);
    padding-bottom: var(--default-medium-padding);

    text-align: center;

    border-bottom: var(--border-settings-light);
}


/* ##PROGRAM DETAIL TITLE ================================================ */
.program-detail__title {
    margin-bottom: 0;

    font-size: 22px; font-size: 2.2rem;
    line-height: 1.3;
}

/* ##PROGRAM DETAIL SUBTITLE ============================================= */
.program-detail__subtitle {
    margin-top: var(--default-medium-padding);
    margin-bottom: 0;

    color: var(--text-color);
    font-weight: normal;
    font-size: var(--font-size-px); font-size: var(--font-size-rem);
}

/* ##PROGRAM DETAIL DESCRIPTION ========================================== */
.program-detail__desc {
    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
}
/* ==========================================================================
  #SPEAKER PREVIEW ITEM
========================================================================== */
/* ##SPEAKER PREVIEW WRAPPER ============================================= */
.speaker-preview {
    display: flex;
    min-height: 80px;

    text-decoration: none;

    background-color: var(--white);
}

.speaker-preview + .speaker-preview { margin-top: var(--default-medium-padding); }

/* ##SPEAKER PREVIEW THUMBNAIL =========================================== */
.speaker-preview__thumb {
    position: relative;
    flex: 0 0 100px;


    background-color: #ececec;
}

    .speaker-preview__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ##SPEAKER PREVIEW CONTENT ============================================= */
.speaker-preview__content {
    padding: 8px;
    width: 100%;

    border-top: var(--border-settings-light);
    border-right: var(--border-settings-light);
    border-bottom: var(--border-settings-light);
    border-color: #EFECEF;
}

/* ##SPEAKER PREVIEW NAME ================================================ */
.speaker-preview__name {
    margin-bottom: 0;
    font-size: 24px;
    color: var(--primary-color);
}

/* ##SPEAKER PREVIEW ROLE ================================================ */
.speaker-preview__role {
    display: flex;
    align-items: center;

    font-size: .95em;
}

    .speaker-preview__role i {
        width: 25px;

        font-size: .85em;
        text-align: center;
    }

/* ##SPEAKER PREVIEW CTA ================================================= */
.speaker-preview__name--cta {
    margin-top: var(--default-small-padding);
    padding: 10px;
    width: 100%;

    font-size: 16px;
    font-weight: 700;
    background-color: #DA0077;
}

/* ==========================================================================
  #SPEAKER DETAILS
========================================================================== */
/* ##SPEAKER DETAIL WRAPPER ============================================== */
.speaker-details {
    padding: 8px;

    background-color: #EFECEF;
}

    .speaker-details li {
        display: flex;
        align-items: center;
        font-size: 16px;
    }
    
        .speaker-details li i {
            width: 24px;

            font-size: 16px;
            text-align: center;
            color: var(--primary-color);
        }


/* =============================================================================
  #WORKSHOPS
============================================================================= */
.workshops { margin: var(--default-large-padding) 0; }

/* ##WORKSHOP ITEM ========================================================== */
.workshop {
    background-color: #EFEFEF;
}

.workshop + .workshop { margin-top: var(--default-medium-padding); }


.workshop__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 12px;
    background-color: var(--primary-color);
    color: #FFF;
}

    .workshop__time {
        font-weight: 700;
    }

    .workshop__header p {
        margin-bottom: 0 !important;
    }

.workshop__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 15px;
}

    .workshop__location {
        font-weight: 700;
        color: #FFF;
        background-color: #DA0077;
        margin-bottom: 12px;
        
        display: inline;
        padding: 6px 10px;
        border-radius: 24px;
        line-height: normal;
    }

    .workshop__title {
        color: #000;
        font-size: 18px; 
        font-weight: 700;
        margin-bottom: 4px;
    }

    .workshop__speakers {
        margin-bottom: 0;
        color: #000;
    }

    .workshop__location--blue {
        background-color: #44a3c4;
    }
    .workshop__location--green {
        background-color: #43a748;
    }



/* ##WORKSHOP BTN =========================================================== */
.workshop .btn { 
    margin-top: 18px;
    padding: var(--default-small-padding); 
    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);
    background-color: #000;
}

/* ##WORKSHOP DESCRIPTION =================================================== */
.workshop__desc {
    /* margin-top: var(--default-medium-padding); */
    padding: 0 var(--default-medium-padding) var(--default-medium-padding) var(--default-medium-padding);

    font-size: var(--medium-font-size-px); font-size: var(--medium-font-size-rem);

    background-color: var(--grey-light);
}

.workshop__desc p { margin-bottom: 0; }

.workshop__desc p + p { margin-top: 10px; }

.accordion {
    margin-bottom: 2rem;
    border-bottom: 3px solid #EFEFEF;
}

.accordion__heading{
    font-family: var(--heading-font);
    position: relative;
    border-top: 3px solid #EFEFEF; /* Vervang $primary-color met de daadwerkelijke waarde */
    padding: 1rem 3rem 1rem 0;
    font-weight: 500;
    font-size:1.2rem;
    color: var(--primary-color); /* Vervang $primary-color met de daadwerkelijke waarde */
    cursor: pointer;
    transition: all 150ms ease-in-out;
}
.accordion__heading::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
      font-weight: 900;
    color: var(--accent-color); 
    /* top: 50%; */
    /* transform: translateY(-50%); */
    top: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    transition: transform 150ms ease-in-out;
}

.accordion__heading:hover {
    /* achtergrondkleur als je het wilt gebruiken */
    /* background-color: your-accordion-hover-color; vervang $accordion-hover-color met de daadwerkelijke waarde */
}



.accordion__body {
    display: none;
    padding: 0.875rem 0;
}

.accordion__item--open .accordion__heading::after {
    transform: rotate(90deg);
}

.accordion__item--open .accordion__body {
    display: block;
}

/* ==========================================================================
	#SPLASH
========================================================================== */
.splash .banner {
    height: 240px;
}

    .splash .banner .container {
        height: 100%;
    }


    .splash .banner__logo {
        height: 65px;
        width: 65px;
    }

    .splash .banner img {
        height: 100%;
    }


.splash main {
    padding: 0;
    height: calc(100svh - 240px);
}

    .splash h2 {
        margin: 0;
        line-height: 1.4;
        text-align: center;
        color: var(--primary-color);
    }

    .splash main .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

        padding: var(--default-large-padding);

        height: 100%;
    }

        .splash main img {
            margin: 0 auto;
            width: 60%;
        }


.splash .btn {
    display: flex;
    justify-content: space-between;
    min-width: auto;

    padding-left: 20px;
    padding-right: 20px;

    gap: 20px;

    color: #000000;

    border: 1px solid #000000;
    border-radius: 4px;

    background-color: #FFF;
}

    .splash .btn i {
        color: #E5007D;
        margin: 0;
    }