/* HHH      ---CONTENT---      */
/* HHH      ---1)GENERAL---      */
/* HHH      ---2)LANDING PAGE---      */
/* HHH      ---3)ABOUT---      */
/* HHH      ---4)FAQ---      */
/* HHH      ---5)NEWS---      */
/* HHH      ---6)NAVBAR---      */

body {
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
    width: 0.5em;
}

body::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: linear-gradient(to top, #FAEC54, yellow, #FAEC54, yellow);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

html {
    scroll-behavior: smooth;
}

input[type=checkbox] {
    transform: scale(1.5);
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

hr {
    width: 85%;
    display: block;
    border: 0;
    border-top: 1px solid dimgray;
    padding: 0;
}

.slider-checkbox, input[type= "checkbox"] {
    margin-bottom: 0;
    transform: scale(1.2); /*use this to change size, otherwise all w and h need to be changed relative to eachother*/

    position: relative;
    width: 40px;
    height: 15px;
    -webkit-appearance: none;
    background: linear-gradient(0deg, #333, #000);
    outline: none;
    border-radius: 20px;
    box-shadow: 0 0 0 1px #282828, 0 0 0 2px #292929, inset 0 0 3px rgba(0, 0, 0, 1), 0 2px 3px rgba(0, 0, 0, .5), inset 0 0 3px rgba(0, 0, 0, .2);
}

.slider-checkbox, input:checked[type= "checkbox"] {
    background: linear-gradient(0deg, yellow, #FAEC54);
}


.slider-checkbox, input[type= "checkbox"]:before {
    content: "";
    position: absolute;
    /*top: 0;*/
    left: 0;
    width: 25px;
    height: 15px;
    background: linear-gradient(0deg, #000, #6b6b6b);
    border-radius: 20px;
    box-shadow: 0 0 0 1px #232323;
    transform: scale(.98, .96);
    transition: .5s;

}

.slider-checkbox, input[type= "checkbox"]:after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: 20px;
    width: 3px;
    height: 3px;
    background: linear-gradient(0deg, #6b6b6b, #000);
    border-radius: 50%;
    transition: .5s;

}

.slider-checkbox, input:checked[type= "checkbox"]:before {
    left: 14px;
}

.slider-checkbox, input:checked[type= "checkbox"]:after {
    left: 34px;
    background: #FAEC54;
    box-shadow: 0 0 2px #FAEC54, 0 0 7px #FAEC54;

}
/*hhh --GLOBAL ELEMENTS--*/
.btn-cta-main-m {
    background-color: #FAEC54;
    font-weight: bold;
    font-size: 1rem;
    color: #1c1c1c;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid #1c1c1c;
    transition: 150ms;
}

.btn-cta-main-m:hover {
     background-color: #f8e946;
}

@media only screen and (max-width: 767px) {
    .btn-cta-main-m {
        font-size: 0.7rem;

    }
}
.btn-wide-hover{
    padding: 6px 20px;
}



/*hhh Landing page ----START*/

.splash-landing-main-container {
}

.splash-landing-navbar-container {
    background-color: transparent;
    height: 100px;
    padding: 7px 0;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    z-index: 1000;

}


.splash-landing-navbar-inner-container {
    margin: auto;
    height: 100%;
    width: 100%;
    padding: 0 40px;
    max-width: 1540px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .splash-landing-navbar-inner-container {
        padding: 0 15px;
    }
}

.splash-landing-navbar-logo-img {
    width: auto;
    height: 26px
}

@media only screen and (max-width: 767px) {
    .splash-landing-navbar-logo-img {
        height: 20px
    }
}

.splash-landing-navbar-link-container {
    margin-left: auto;
    padding: 0 0 0 50px;
}

.splash-landing-navbar-link {
    color: white !important;
    font-weight: normal;
    font-size: 1rem;
    margin: 0 7px;
    padding: 7px 10px;
    border-radius: 6px;
}


.splash-landing-navbar-btn-container {
    width: fit-content;
}

.splash-landing-navbar-login-btn {
    background-color: transparent;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 0 0 32px;
    color: #fff;
    padding: 7px 22px;
    border-radius: 6px;
    transition: 50ms;
}

@media only screen and (max-width: 960px) {
    .splash-landing-navbar-login-btn {
        margin: 0;
        padding: 7px 16px;
        font-size: 0.75rem;
    }
}


.splash-landing-navbar-login-btn:hover {
    color: #fff;
    background-color: transparent;

}

.splash-landing-navbar-sign-up-btn {
    font-weight: bold;
    font-size: 1rem;
    margin: 0 0 0 10px;
    padding: 7px 22px;
    border-radius: 6px;
    transition: 50ms;
    color: #1c1c1c;
    background-color: #faec54;
}

@media only screen and (max-width: 960px) {
    .splash-landing-navbar-sign-up-btn {
        margin: 0;
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}


.splash-landing-navbar-sign-up-btn:hover {
    color: #faec54;
    background-color: #313131;
}


.splash-landing-welcome-container {
    height: 100vh;
    min-height: calc(700px + 10vw);
    display: flex;
}

@media only screen and (max-width: 767px) {
    .splash-landing-welcome-container {
        min-height: unset;
        height: calc(100vh + 50px);
        outline: #faec54 solid 1px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-welcome-container {
        min-height: calc(1000px + 10vw);
    }
}


.splash-landing-welcome-img-container {
    position: relative;
    width: 50%;
    overflow: hidden;
    display: flex;
    text-align: center;
    border: none;

}

@media only screen and (max-width: 767px) {
    .splash-landing-welcome-img-container {
        width: 100%;
        align-items: center;
    }
}

.splash-landing-welcome-img-container:before {
    content: "";
    -webkit-animation: bg_fade_out 2s forwards;
    -moz-animation: bg_fade_out 2s forwards;
    animation: bg_fade_out 2s forwards;
    animation-delay: 2s;
    animation-iteration-count: 1;
    background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 1;
}

@-webkit-keyframes bg_fade_out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.splash-landing-welcome-video-blender-r {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100%;
    width: 250px;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(28, 28, 28));
}


.splash-landing-welcome-video-blender-l {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 100px;
    z-index: 1;
    background: -webkit-linear-gradient(to left, rgba(0, 0, 0, 0), rgba(28, 28, 28, 1));
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(28, 28, 28, 1));

}

@media only screen and (max-width: 767px) {
    .splash-landing-welcome-video-blender-l {
        width: 250px;
    }
}

.splash-landing-welcome-video-bg {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.splash-landing-welcome-text-container {
    background-color: #1c1c1c;
    width: 50%;
    padding: 100px 10px 100px 30px;
    display: flex;
    align-items: center;
}

.splash-landing-welcome-text-header {
    color: white;
    font-size: 6vw;
    font-weight: 600;
    line-height: 1;
    -webkit-animation: main-header-glow 2s ease-in-out infinite alternate;
    -moz-animation: main-header-glow 5s ease-in-out infinite alternate;
    animation: main-header-glow 5s ease-in-out infinite alternate;
}

@media only screen and (max-width: 767px) {
    .splash-landing-welcome-text-header {
        font-size: 12.9vw;
        margin: 0 auto 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-landing-welcome-text-header {
        font-size: 6.8vw;
    }
}

@media only screen and (min-width: 2500px) {
    .splash-landing-welcome-text-header {
        font-size: 160px;
    }
}

@-webkit-keyframes main-header-glow {
    from {
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.69),
        0 0 15px rgba(95, 158, 160, 0.49),
        0 0 10px rgba(251, 240, 124, 0.58);
    }
    to {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.67),
        0 0 9px rgba(255, 255, 255, 0.47),
        0 0 9px rgba(182, 49, 235, 0.39),
        0 0 30px rgba(250, 236, 84, 0.50);

    }
}

.splash-landing-welcome-text-p {
    color: white;
    margin: 10px 0 0;
    font-size: 1.1rem;
    max-width: 660px;


}

@media only screen and (max-width: 767px) {
    .splash-landing-welcome-text-p {
        max-width: 100%;
        font-size: 1rem;
        padding: 10px 40px;
        text-shadow: 2px 2px 4px #1c1c1c;

    }
}

@media only screen and (min-width: 2000px) {

}

.splash-landing-welcome-text-btn {
    background-color: #faec54;
    color: #1c1c1c;
    margin: 50px 0 0;
    font-weight: bold;
    padding: 7px 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid transparent;
    font-size: 1.5rem;
    box-shadow: 0 0 10px #f8ee73, 0 0 50px rgba(251, 243, 152, 0.83);
}

@media only screen and (max-width: 767px) {
    .splash-landing-welcome-text-btn {
        font-size: 1.3rem;
        padding: 7px 50px;
    }
}

.splash-landing-customer-info-container {
    overflow: hidden;
    padding: 50px 0 300px;
    position: relative;
    margin-top: -100px;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-container {
        margin-top: -100px;
        padding: 50px 0 300px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
    .splash-landing-customer-info-container {
        margin-top: -100px;
        padding: 50px 0 300px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-customer-info-container {
        padding: calc(50px + 6vw) 0 300px;
        margin-top: calc(-100px - 7.5vw);

    }
}


.splash-landing-customer-info-container:before {
    z-index: 1;
    content: "";
    display: inline-block;
    width: 200%;
    height: calc(100% - 280px);
    background: #212121 linear-gradient(106deg, #313131, #313131,
    #363636, #262626,
    #1c1c1c, #1c1c1c,
    #161616, #111111,
    #101010, #080808);
    position: absolute;
    margin-left: -50%;
    transform: rotate(-3deg);
}

.splash-landing-customer-info-outer-content-container {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: 2500px;
}

.splash-landing-customer-info-outer-content {
    z-index: 2;
    position: relative;
    margin: 0;
}

.splash-landing-customer-info-img-container-fans {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-container-fans {
        padding: 70px 0 0;
        height: 800px;
        margin-top: -65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
    .splash-landing-customer-info-img-container-fans {
        padding: 70px 0 0;
        height: 1200px;
        margin-top: -100px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-customer-info-img-container-fans {
        padding: 70px 0 0;
        height: 1230px;
        margin-top: -110px;

    }
}


.splash-landing-customer-info-img-container-fans:before {
    z-index: 3;
    content: "";
    display: inline-block;
    width: 150%;
    position: absolute;
    margin-left: -25%;
    transform: rotate(-3deg);
    background: url("/static/feelloud/fl_landing_fans.png");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-container-fans:before {
        height: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
    .splash-landing-customer-info-img-container-fans:before {
        height: 1020px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-customer-info-img-container-fans:before {
        height: 1020px;
    }
}

.splash-landing-customer-info-img-container-artists {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;

}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-container-artists {
        padding: 70px 0 0;
        height: 800px;
        margin-top: -80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
    .splash-landing-customer-info-img-container-artists {
        padding: 70px 0 0;
        height: 1200px;
        margin-top: -150px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-customer-info-img-container-artists {
        padding: 70px 0 0;
        height: 1230px;
        margin-top: -175px;
    }
}

.splash-landing-customer-info-img-container-artists:before {
    z-index: 3;
    content: "";
    display: inline-block;
    width: 150%;
    position: absolute;
    margin-left: -25%;
    transform: rotate(-3deg);
    background: url("/static/feelloud/fl_landing_artist.png");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-container-artists:before {
        height: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
    .splash-landing-customer-info-img-container-artists:before {
        height: 1020px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-customer-info-img-container-artists:before {
        height: 1020px;
    }
}


.splash-landing-customer-info-img-text-container-r {
    position: relative;
    width: 100%;
    z-index: 4;
    text-align: right;
    margin: 0 auto;
    max-width: 1540px;
    padding: 0 40px 0 0;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-text-container-r {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1580px) {
    .splash-landing-customer-info-img-text-container-r {
        padding: 0 80px 0 0;
    }
}


.splash-landing-customer-info-img-text-container-l {
    position: relative;
    width: 100%;
    z-index: 4;
    text-align: left;
    margin: 0 auto;
    max-width: 1540px;
    padding: 0 0 0 40px;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-text-container-l {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1580px) {
    .splash-landing-customer-info-img-text-container-l {
        padding: 0 0 0 80px;
    }
}


.splash-landing-customer-info-txt-r {
    margin: 0 0 0 auto;
}

.splash-landing-customer-info-txt-l {
    margin: 0 auto 0 0;
}

.splash-landing-customer-info-img-header {
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 3px #111;
    max-width: 650px;
}

.splash-landing-customer-info-img-header span {
    color: #faec54;
    text-shadow: 4px 4px 4px #000;
    font-size: 4rem;
}


@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-header {
        font-size: 1.6rem;
    }

    .splash-landing-customer-info-img-header span {

        font-size: 2.4rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
    .splash-landing-customer-info-img-header {
        font-size: 2.5rem;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-customer-info-img-header {
        font-size: 2.5rem;

    }
}


.splash-landing-customer-info-img-text {
    color: white;
    text-shadow: 3px 3px 5px #000;
    font-size: 1rem;
    max-width: 600px;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-text {
        font-size: 0.9rem;
    }
}


.splash-landing-customer-info-img-btn {
    background-color: #faec54;
    color: #1c1c1c;
    margin: 50px 0 0;
    font-weight: bold;
    padding: 7px 30px;
    border-radius: 50px;
    border: 1px solid transparent;
    font-size: 1.2rem;
    transition: 200ms;
}

@media only screen and (max-width: 767px) {
    .splash-landing-customer-info-img-btn {
        font-size: 1rem;
    }
}

.splash-landing-customer-info-img-btn:hover {
    text-decoration: underline;
    padding: 7px 36px;

}

.splash-landing-reasons-container {
    background-color: transparent;
    overflow: hidden;
    padding: 100px 0 350px;
    position: relative;
    margin-top: -455px;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .splash-landing-reasons-container {
        margin-top: -415px;
    }
}

@media only screen and (min-width: 2000px) {
    .splash-landing-reasons-container {
        margin-top: -475px;
    }
}


.splash-landing-reasons-container:before {
    z-index: 1;
    content: "";
    display: inline-block;
    width: 200%;
    height: calc(100% - 280px);
    background: #faec54;
    position: absolute;
    transform: rotate(-3deg);
    margin-left: -50%;
}


.splash-landing-reasons-content-container {
    padding: 0 40px;

    z-index: 2;
    width: 100%;
    margin: 125px auto 0;
    max-width: 1540px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #1c1c1c;

}

.splash-landing-reasons-content-inner-container {
    text-align: center;
    margin: 0 15px;
    padding: 0 10px;
    flex: calc(33% - 30px);
}

@media only screen and (max-width: 767px) {
    .splash-landing-reasons-content-inner-container {
        flex: 100%;
    }
}

.splash-landing-reasons-content-header {
    min-height: 72px;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 20px 0 0;
}

@media only screen and (max-width: 767px) {
    .splash-landing-reasons-content-header {
        margin: 0 0 15px;
        min-height: unset;
    }
}

.splash-landing-reasons-content-icon-container {
    height: 150px;
    width: 150px;
    text-align: center;
    margin: 30px auto;
    border-radius: 100px;
    background: linear-gradient(145deg, #e1d44c, #fffd5a);
    box-shadow: 15px 15px 30px #d5c947,
    -15px -15px 30px #ffff61;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .splash-landing-reasons-content-icon-container {
        height: 100px;
        width: 100px;
        margin: 0 auto;
    }
}

.splash-landing-reasons-content-icon {
    width: 100%;
    font-size: 3.5rem;
    background: -webkit-linear-gradient(145deg, #313131, #111);
    background: linear-gradient(145deg, #404040, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) {
    .splash-landing-reasons-content-icon {
        font-size: 2rem;
    }
}

.splash-landing-reasons-content-txt {
    color: #111;
    margin: 40px auto 0;
    font-size: 0.9rem;
    max-width: 400px;
}

@media only screen and (max-width: 767px) {
    .splash-landing-reasons-content-txt {
        margin: 20px auto 70px;
        font-size: 0.8rem;
    }
}

.splash-landing-visual-invite-container {
    width: 100%;
    background-color: #1c1c1c;
    padding: 100px 0;
    margin-top: -240px;
    z-index: 0;
    position: relative;
}


.splash-landing-visual-cta-content-container {
    margin: 100px auto 0;
    width: 100%;
    position: relative;
    padding: 0;
    text-align: center;
    overflow-x: hidden;

}

.splash-landing-visual-cta-content-header {
    font-weight: bold;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    text-shadow: 2px 2px 4px #1c1c1c;
}

@media only screen and (max-width: 767px) {
    .splash-landing-visual-cta-content-header {
        margin: 0 auto -20px;
        font-size: 2.5rem;
        padding: 0 20px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-landing-visual-cta-content-header {
        margin: 100px auto -150px;
        font-size: 2.2rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .splash-landing-visual-cta-content-header {
        margin: 150px auto -175px;
        font-size: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .splash-landing-visual-cta-content-header {
        margin: 175px auto -250px;
        font-size: 3rem;
    }
}

.splash-landing-visual-cta-content-img {
    height: auto;
    z-index: 0;
    position: relative;
    margin: auto;
}


@media only screen and (max-width: 767px) {
    .splash-landing-visual-cta-content-img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-landing-visual-cta-content-img {
        width: 700px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .splash-landing-visual-cta-content-img {
        width: 800px;
    }
}

@media only screen and (min-width: 1200px) {
    .splash-landing-visual-cta-content-img {
        width: 1200px;
    }
}

.splash-landing-visual-cta-content-btn {
    background-color: #faec54;
    color: #1c1c1c;
    margin: 50px 0 0;
    font-weight: bold;
    border-radius: 50px;
    border: 1px solid transparent;
    display: block;
    position: absolute;
    transition: 200ms;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}


@media only screen and (max-width: 767px) {
    .splash-landing-visual-cta-content-btn {
        bottom: unset;
        left: unset;
        padding: 4px 40px;
        font-size: 1.4rem;
        position: relative;
        display: inline-block;
        transform: translate(0, 0);
        margin: 0 auto 50px;
    }


}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-landing-visual-cta-content-btn {
        bottom: 30px;
        padding: 7px 30px;
        font-size: 1.3rem;
    }

    .splash-landing-visual-cta-content-btn:hover {
        padding: 7px 36px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .splash-landing-visual-cta-content-btn {
        bottom: 55px;
        padding: 7px 30px;
        font-size: 1.3rem;
    }

    .splash-landing-visual-cta-content-btn:hover {
        padding: 7px 36px;
    }
}

@media only screen and (min-width: 1200px) {
    .splash-landing-visual-cta-content-btn {
        bottom: 60px;
        padding: 7px 50px;
        font-size: 1.6rem;
    }

    .splash-landing-visual-cta-content-btn:hover {
        padding: 7px 60px;
    }
}

.splash-landing-bottom-container {
    background-color: #212121;
    position: relative;
    z-index: 5;
}

.splash-landing-bottom-content-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;

    margin: 0 auto;
    width: 100%;
    max-width: 1540px;
    padding: 0 40px;
    min-height: 350px;
}

.splash-landing-bottom-content-logo-col {
    text-align: center;
    margin: 0 0 0 30px;
    padding: 50px 0 100px;
    display: flex;

}

@media only screen and (max-width: 767px) {
    .splash-landing-bottom-content-logo-col {
        flex: 100%;
        margin: 40px 0 0;
        padding: 30px 0 0;
    }
}

.splash-landing-bottom-content-logo-container {
    width: 150px;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .splash-landing-bottom-content-logo-container {
        width: 150px;
        margin: auto;
        text-align: center;
    }
}

.splash-landing-bottom-content-logo {
    width: 100%;
    height: auto;
}

.splash-landing-bottom-content-col {
    text-align: left;
    width: 100%;
    margin: 0 0 0 10px;
    max-width: 500px;
    padding: 50px 40px 100px;
    flex: 33%;
}

@media only screen and (max-width: 767px) {
    .splash-landing-bottom-content-col {
        flex: 100%;
        text-align: center;
        margin: 0 auto 10px;

    }
}

.splash-landing-bottom-content-header {
    font-size: 1rem;
    font-weight: bold;
    color: #faec54;
    margin-bottom: 20px;
}

.splash-landing-bottom-content-link {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    display: block;
    margin: 10px 0;
}

/*hhh Landing page---END*/

.splash-partner-container {
    margin: 400px auto 50px;
    width: 50%
}

@media only screen and (max-width: 768px) {
    .splash-partner-container {
        margin: 250px auto 50px;
    }

}

.splash-partner-header {
    font-size: 20px;
}

@media only screen and (max-width: 768px) {
    .splash-partner-header {
        font-size: 20px;
    }

}

.splash-partner-row {
    width: 900px;
    margin: auto
}

@media only screen and (max-width: 768px) {
    .splash-partner-row {
        width: 80%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-partner-row {
        width: 700px;
    }
}

@media only screen and (min-width: 992px) {
    .splash-partner-row {

    }
}

.partner-image {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}


@media only screen and (max-width: 768px) {
    .partner-image {

    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .partner-image {

    }
}

@media only screen and (min-width: 992px) {
    .partner-image {

    }
}

.partner-image-container {

}

@media only screen and (max-width: 768px) {
    .partner-image-container {
        border-radius: 50%;
        width: 50px;
        height: 50px
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .partner-image-container {
        border-radius: 50%;
        width: 150px;
        height: 150px
    }
}

@media only screen and (min-width: 992px) {
    .partner-image-container {
        border-radius: 50%;
        width: 200px;
        height: 200px
    }
}

.splash-partner-citat-txt {

    color: white;
    font-weight: bold
}

@media only screen and (max-width: 768px) {
    .splash-partner-citat-txt {
        font-size: 12px;
        margin-top: 5px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-partner-citat-txt {
        font-size: 20px;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .splash-partner-citat-txt {
        margin-top: 20px;

    }
}

.splash-partner-about-txt {
    color: #FAEC54;
    font-weight: bold
}

@media only screen and (max-width: 768px) {
    .splash-partner-about-txt {
        font-size: 8px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-partner-about-txt {
        font-size: 12px;
    }
}

@media only screen and (min-width: 992px) {
    .splash-partner-about-txt {


    }
}

.carousel-control-prev {

}

@media only screen and (max-width: 768px) {
    .carousel-control-prev {
        display: none;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-control-prev {

    }
}

@media only screen and (min-width: 992px) {
    .carousel-control-prev {

    }
}

.carousel-control-next {

}

@media only screen and (max-width: 768px) {
    .carousel-control-next {
        display: none;
    }


}

/*hhh ------------------LOGIN MODAL --------------------*/
.fl-modal-login-content {
    background: #1c1c1c linear-gradient(162deg, #313131, #212121, #1c1c1c, #111111);
    max-width: 700px;
    min-width: 300px;
    border: transparent 1px solid;
    border-radius: 10px;
}

.fl-modal-login-main-container {
    width: calc(100% - 16px);
    margin: 5px auto;
    padding: 6px 8px;

}

.fl-modal-login-img-container {
    margin: 30px auto 30px;
    text-align: center;
}

.fl-modal-login-img {
    width: 150px;
    height: auto
}

.fl-modal-login-header {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    margin: 0 0 20px;
}

.fl-modal-login-form {
    text-align: center;
    margin: auto;
}

.fl-modal-login-form-input {
    border-color: transparent;
    background-color: #111 !important;
    color: #FAEC54 !important;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin: 20px auto;
}

.fl-modal-login-form-psw-forgotten-a {
    text-align: center;
    margin: auto;
    font-size: 0.9rem;
    width: 100%;
    color: #757575;
}

.fl-modal-login-form-psw-forgotten-a:hover {
    color: #1e8e8e;
}

.fl-modal-login-form-confirm-button {
    background-color: #FAEC54;
    color: #1c1c1c;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: 300ms;
}

.fl-modal-login-form-confirm-button:hover {
    padding: 5px 25px;

}

.fl-modal-login-form-back-button {
    background-color: #696969;
    color: #363636;
    border-radius: 5px;
    border: 1px solid #1c1c1c;
    font-size: 0.9rem;
    margin: 0 20px 0 0 !important;
    transition: 300ms;
    font-weight: bold;
}

.fl-modal-login-form-back-button:hover {
    background-color: #606060;
    color: #1c1c1c;
}


/*hhh ------------------LANDING PAGE --------------------*/

.splash-call-to-action-register-btn {

    background-color: #FAEC54;
    color: #262626;
    font-weight: bold;
    border-radius: 12px;
    -moz-box-shadow: 0 10px 10px #000;
    -webkit-box-shadow: 0 10px 10px #000;
    box-shadow: 0 10px 10px #000;
    transition: 190ms;


}

@media only screen and (max-width: 768px) {
    .splash-call-to-action-register-btn {
        font-size: 1.2rem;
        padding: 4px 20px;
        margin: 25px auto 50px;
        text-align: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-call-to-action-register-btn {
        font-size: 1.4rem;
        padding: 6px 40px;
        margin: 35px auto 10px;
    }
}

@media only screen and (min-width: 992px) {
    .splash-call-to-action-register-btn {
        font-size: 1.4rem;
        padding: 6px 60px;
        margin: 35px auto 10px;
    }
}


.splash-call-to-action-register-btn:hover {

    -moz-box-shadow: 0 10px 10px 5px #000;
    -webkit-box-shadow: 0 10px 10px 5px #000;
    box-shadow: 0 10px 10px 5px #000;
    transform: translate(0, -5px);

}

.splash-call-to-action-register-btn i {
    margin-right: 15px;
}


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

    .splash-start-container {
        position: absolute;
        width: 100%;
        margin-top: 1px;
        height: 100vh;
        background: transparent;
        text-align: center;
        z-index: 1;
        pointer-events: none;

    }

    /*hhh top section SPLASH*/
    .splash-container-top {
        height: calc(100vh + 2px);
        width: 100%;
        min-height: 500px;
        margin: 0;
        padding: 0;
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;

    }


    .splash-container-top-left {
        height: 0;
    }

    .splash-logo-container {
        height: 100%;
        text-align: center;
    }

    .splash-call-to-action-container {
        height: calc(100vh + 2px);
        text-align: center;
        padding: 0;

        min-height: 500px;
        background-color: hsla(324, 0%, 21%, 0);
        opacity: 0;
        z-index: 2;
        overflow: hidden;
    }


    .splash-call-to-action-inner-container {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 20px);
        text-align: center;
        word-break: break-word;

        /*box-shadow: 0 0 10px 5px #1c1c1c;*/
    }

    .splash-call-to-action-header {
        color: #FAEC54;
        font-size: 18px;
        margin-top: 40px;
        font-weight: bold;
        word-break: break-all;


    }

    .splash-call-to-action-text {
        color: white;
        font-size: 14px;
        text-align: center;
        width: calc(160px + 30vw);
        font-weight: bold;
        margin: 15px auto 5px;
    }

    .splash-version-text {
        color: #696969;
        font-size: 0.8rem;
        text-align: center;
        margin: 30px auto 5px;
    }


    .splash-call-to-action-citat {
        font-family: 'Permanent Marker', cursive !important;
        color: #FAEC54;
        font-size: 1.1rem;
        text-shadow: 2px 2px #1c1c1c;

        text-align: center;
        margin: auto;
    }

    .splash-call-to-action-citat span {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .splash-call-to-action-line-container {
        margin-top: 30px;
        margin-left: 10%;
        filter: drop-shadow(0 0 10px #FAEC54);
        margin-bottom: 40px;
        width: 80%;

        height: 6px;

    }

    .splash-call-to-action-line {
        min-width: 100%;
        height: 6px;
        background-color: #FAEC54;
        position: absolute;

    }


    .splash-call-to-action-button-header {
        font-size: 16px;
    }

    .splash-call-to-action-no-break-mobile {
        display: none;
    }


    .splash-call-to-action-button-row {
        margin-top: 0
    }

    .splash-call-to-action-button-text {
        color: white;
        text-decoration: underline;
        max-width: 300px;
        font-weight: bold;
        font-size: 12px;
        text-align: center;
        margin: 10px auto 0;
    }


    .splash-logo-img {
        min-width: 80px;
        width: 30vw;
        height: auto;
        -webkit-filter: drop-shadow(5px 5px 5px #1c1c1c);
        filter: drop-shadow(0 0 10px #1c1c1c);
        transition: 0.2s;

    }

    .splash-down-icon {
        display: block;
        color: white;
        font-size: 2.5vw;
        -webkit-filter: drop-shadow(5px 5px 5px #1c1c1c);
        filter: drop-shadow(0 0 10px #1c1c1c);
        animation: scroll_pulse 2s infinite;
    }

    .pulse {
        display: inline-block;
        -moz-animation: pulse 2s infinite linear;
        -o-animation: pulse 2s infinite linear;
        -webkit-animation: pulse 2s infinite linear;
        animation: pulse 4s infinite linear;
        text-shadow: 0 0 5px #1c1c1c;
        pointer-events: auto;
        margin-top: 50px;
        font-size: 1rem;
    }


    .splash-down-icon:hover {
        color: white;
    }

    .splash-call-to-action-button {

        margin-top: 10px;
        background-color: #FAEC54;
        color: #404040;
        font-size: 12px;
        padding: 4px 10px;
    }

    .splash-center-vertical-helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    /*hhh middle section SPLASH*/
    .splash-container-mid {
        min-height: 600px;
        /*min-height: 900px;*/
        /*width: 100%;*/
        background-color: #1c1c1c;
    }

    .splash-mid-line-container {
        position: absolute;
        float: right;
        margin-top: 0;
        width: 100%;
        filter: drop-shadow(0 0 10px #FAEC54);
    }

    .splash-mid-line {
        width: 0%;
        height: 6px;
        background-color: #FAEC54;
        float: right;
    }

    .splash-video-container {
        /*height: 100%;*/
        text-align: center;
        padding-top: 30%;
    }

    .splash-video-header {
        color: white;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5vh;
        margin-left: -5vw;

    }

    .splash-video-container iframe,
    .splash-video-container object,
    .splash-video-container embed {
        vertical-align: middle;
        width: 80vw;
        max-width: 800px;
        height: 45vw;
        max-height: 450px;
        box-shadow: 0 0 20px #FAEC54;
    }

    /*hhh bottom section SPLASH*/
    .splash-container-bottom {
        /*height: 70vh;*/
        min-height: 80vh;
        padding-bottom: 50px;
        width: 100%;
        text-align: center;
        padding-top: 100px;
        background-image: linear-gradient(to bottom, #1c1c1c, #404040, #404040);
    }

    .splash-bottom-line-container {
        position: absolute;
        float: left;
        width: 100%;
        filter: drop-shadow(0 0 10px #FAEC54);
    }

    .splash-bottom-line {
        width: 0;
        height: 6px;
        background-color: #FAEC54;
        float: left;
    }

    .splash-bottom-main-header {
        color: white;
        font-size: 1rem;
        font-weight: bold;
        padding-top: 30px;
        margin: 7vh 0 25px 0;
    }

    .splash-bottom-main-header-number {
        color: #FAEC54;
        font-size: 2.3rem;
    }

    .splash-bottom-col {
        margin: auto;
        width: 100%;
        height: 100%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

    .splash-bottom-header {
        color: #FAEC54;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .splash-bottom-text {
        width: 250px;
        margin: 20px auto 40px;
        color: white;
        font-weight: bold;
        font-size: 11px;

    }


    .splash-bottom-img {
        -webkit-filter: drop-shadow(5px 5px 5px #FAEC54);
        filter: drop-shadow(0 0 10px #FAEC54);
        width: 50%;
        max-width: 300px;
        height: auto;
    }

    .splash-container-ending {
        height: 70vh;
        min-height: 500px;
        padding-bottom: 2%;
        width: 100%;
        background: url("/static/feelloud/screen_concert_no_logo_v0.5.png") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        text-align: center;

    }

    .splash-container-ending-text {
        color: white;
        font-weight: bold;
        position: absolute;
        margin-top: 10vh;
        text-align: left;
        max-width: 70%;
        left: 12vw;
        /*margin-bottom: calc(140px + 2vw + 1vh);*/
        text-shadow: 2px 2px 2px #1c1c1c;
        font-size: 13px;

    }

    .splash-glow-button {
        padding: 8px 30px;
        border: 3px solid #fff;
        background: #1c1c1c;
        max-width: 380px;
        outline: none;
        color: white;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
        font-weight: bold;
        font-size: 1.3rem;
        transition: 500ms;
    }

    .splash-glow-button:hover {
        color: #FAEC54;
        transition: 500ms;
    }

    .splash-glow-button:before {
        content: '';
        background: linear-gradient(45deg, #FFD800, gold, #FAEC54, #FAEC54, #FAEC54, #FFD800, #FAEC54);
        position: absolute;
        top: -3px;
        left: -3px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

    .splash-glow-button:active {
        color: #FAEC54;
    }

    .splash-glow-button:active:after {
        background: transparent;
    }

    .splash-glow-button:before {
        opacity: 1;
    }

    .splash-glow-button:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #111;
        left: 0;
        top: 0;
        border-radius: 10px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .splash-news-container {
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    /*hhh top section SPLASH*/
    .splash-container-top {
        height: calc(100vh + 2px);
        min-height: 800px;
        width: 100%;
        margin: 0;
        padding: 0;
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;

    }

    .splash-logo-container {
        height: 100%;
        text-align: center;
    }

    .splash-call-to-action-container {
        height: 100%;
        text-align: center;

        background-color: hsla(324, 0%, 21%, 0);
        opacity: 0;
        z-index: 2;
        overflow: hidden;

    }


    .splash-call-to-action-inner-container {
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        padding: 20px 10px;
        word-break: break-word;

        /*box-shadow: 0 0 10px 5px #1c1c1c;*/
    }

    .splash-call-to-action-header {
        color: #FAEC54;
        font-size: 1.5rem;
        font-weight: bold;

    }

    .splash-call-to-action-text {
        color: white;
        max-width: 385px;
        font-weight: bold;
        text-align: center;
        margin: 50px auto 0;
    }

    .splash-version-text {
        color: #696969;
        font-size: 0.8rem;
        text-align: center;
        margin: 30px auto 5px;
    }

    .splash-call-to-action-citat {
        font-family: 'Permanent Marker', cursive !important;
        color: #FAEC54;
        font-size: 1.5rem;
        text-shadow: 2px 2px #1c1c1c;
        max-width: 380px;
        text-align: center;
        margin: auto;
    }

    .splash-call-to-action-citat span {
        font-size: 1.6rem;
        font-weight: bold;
    }

    .splash-call-to-action-line-container {
        margin-top: 50px;
        /*margin-left: auto;*/
        filter: drop-shadow(0 0 10px #FAEC54);
        margin-bottom: 50px;
        width: 100%;
        height: 6px;

    }

    .splash-call-to-action-line {
        width: 100%;
        min-width: 100%;
        height: 6px;
        background-color: #FAEC54;
        position: absolute;

    }

    .splash-call-to-action-button-header {
        font-size: 1.5rem;
    }


    .splash-call-to-action-button-row {
        margin-top: 0
    }

    .splash-call-to-action-button-text {
        color: white;
        text-decoration: underline;
        max-width: 300px;
        font-weight: bold;
        text-align: center;
        margin: 20px auto 0;
    }

    .splash-start-container {
        position: absolute;
        width: 100%;
        margin-top: 1px;
        height: 100vh;
        min-height: 800px;
        background: transparent;
        text-align: center;
        z-index: 1;
        pointer-events: none;

    }

    .splash-logo-img {
        width: 40vw;
        height: auto;
        max-width: 350px;
        -webkit-filter: drop-shadow(5px 5px 5px #1c1c1c);
        filter: drop-shadow(0 0 10px #1c1c1c);
        transition: 0.2s;

    }

    .splash-down-icon {
        display: block;
        color: white;
        font-size: 2.5vw;
        -webkit-filter: drop-shadow(5px 5px 5px #1c1c1c);
        filter: drop-shadow(0 0 10px #1c1c1c);
        animation: scroll_pulse 2s infinite;
    }

    .pulse {
        display: inline-block;
        -moz-animation: pulse 2s infinite linear;
        -o-animation: pulse 2s infinite linear;
        -webkit-animation: pulse 2s infinite linear;
        animation: pulse 4s infinite linear;
        text-shadow: 0 0 5px #1c1c1c;
        pointer-events: auto;
    }


    .splash-down-icon:hover {
        color: white;
    }

    .splash-call-to-action-button {

        margin-top: 20px;
        background-color: #FAEC54;
        color: #404040;
    }

    .splash-center-vertical-helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    /*hhh middle section SPLASH*/
    .splash-container-mid {
        height: 100vh;
        min-height: 1300px;
        /*min-height: 1700px;*/
        width: 100%;
        background-color: #1c1c1c;
    }

    .splash-mid-line-container {
        position: absolute;
        float: right;
        margin-top: 0;
        width: 100%;
        filter: drop-shadow(0 0 10px #FAEC54);
    }

    .splash-mid-line {
        width: 0%;
        height: 6px;
        background-color: #FAEC54;
        float: right;
    }

    .splash-video-container {
        /*height: 100%;*/
        text-align: center;
        padding-top: 200px;
    }

    .splash-video-header {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 5vh;
        margin-left: -200px;

    }

    .splash-video-container iframe,
    .splash-video-container object,
    .splash-video-container embed {
        vertical-align: middle;
        width: 60vw;
        max-width: 1200px;
        height: 34.75vw;
        max-height: 675px;
        box-shadow: 0 0 20px #FAEC54;
    }

    /*hhh bottom section SPLASH*/
    .splash-container-bottom {
        /*height: 70vh;*/
        min-height: 70vh;
        padding-bottom: 150px;
        width: 100%;
        text-align: center;
        padding-top: 100px;
        background-image: linear-gradient(to bottom, #1c1c1c, #404040, #404040);
    }

    .splash-bottom-line-container {
        position: absolute;
        float: left;
        width: 100%;
        filter: drop-shadow(0 0 10px #FAEC54);
    }

    .splash-bottom-line {
        width: 0;
        height: 6px;
        background-color: #FAEC54;
        float: left;
    }

    .splash-bottom-main-header {
        color: white;
        font-size: 2rem;
        font-weight: bold;
        padding-top: 30px;
        margin: 20vh 0 50px 0;
    }

    .splash-bottom-main-header-number {
        color: #FAEC54;
        font-size: 2.3rem;
    }

    .splash-bottom-col {
        margin: auto;
        width: 100%;
        height: 100%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

    .splash-bottom-header {
        color: #FAEC54;
        font-weight: bold;
        margin-bottom: 40px;
    }

    .splash-bottom-text {
        width: 100%;
        margin: 40px auto 0;
        color: white;
        font-weight: bold;

    }


    .splash-bottom-img {
        -webkit-filter: drop-shadow(5px 5px 5px #FAEC54);
        filter: drop-shadow(0 0 10px #FAEC54);
        width: 50%;
        max-width: 300px;
        height: auto;
    }

    .splash-container-ending {
        height: 70vh;
        min-height: 500px;
        padding-bottom: 2%;
        width: 100%;
        background: url("/static/feelloud/screen_concert_no_logo_v0.5.png") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        text-align: center;

    }

    .splash-container-ending-text {
        color: white;
        font-weight: bold;
        position: absolute;
        margin-top: 10vh;
        text-align: left;
        max-width: 70%;
        left: 12vw;
        /*margin-bottom: calc(140px + 2vw + 1vh);*/
        text-shadow: 2px 2px 2px #1c1c1c;
        font-size: 1.5rem;

    }

    .splash-glow-button {
        padding: 8px 30px;
        border: 3px solid #fff;
        background: #1c1c1c;
        max-width: 380px;

        outline: none;
        color: white;

        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
        font-weight: bold;
        font-size: 1.5rem;
        transition: 500ms;
    }

    .splash-glow-button:hover {
        color: #FAEC54;
        transition: 500ms;
    }

    .splash-glow-button:before {
        content: '';
        background: linear-gradient(45deg, #FFD800, gold, #FAEC54, #FAEC54, #FAEC54, #FFD800, #FAEC54);
        position: absolute;
        top: -3px;
        left: -3px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

    .splash-glow-button:active {
        color: #FAEC54;
    }

    .splash-glow-button:active:after {
        background: transparent;
    }

    .splash-glow-button:before {
        opacity: 1;
    }

    .splash-glow-button:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #111;
        left: 0;
        top: 0;
        border-radius: 10px;
    }
}

@media only screen and (min-width: 992px) {

    .splash-news-container {
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    /*hhh top section SPLASH*/
    .splash-container-top {
        height: calc(100vh + 2px);
        min-height: 800px;
        width: 100%;
        margin: 0;
        padding: 0;
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;

    }

    .splash-logo-container {
        height: 100%;
        text-align: center;
    }

    .splash-call-to-action-container {
        height: 100%;
        text-align: center;

        background-color: hsla(324, 0%, 21%, 0);
        opacity: 0;
        z-index: 2;
        overflow: hidden;

    }


    .splash-call-to-action-inner-container {
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        padding: 20px 10px;
        word-break: break-word;

        /*box-shadow: 0 0 10px 5px #1c1c1c;*/
    }

    .splash-call-to-action-header {
        color: #FAEC54;
        font-size: 1.8rem;
        font-weight: bold;

    }

    .splash-call-to-action-text {
        color: white;
        max-width: 494px;
        font-weight: bold;
        text-align: center;
        margin: 20px auto 0;
    }

    .splash-version-text {
        color: #696969;
        font-size: 0.8rem;
        text-align: center;
        margin: 30px auto 5px;
    }

    .splash-call-to-action-citat {
        font-family: 'Permanent Marker', cursive !important;
        color: #FAEC54;
        font-size: 1.5rem;
        text-shadow: 2px 2px #2d5769;
        max-width: 494px;
        text-align: center;
        margin: auto;
    }

    .splash-call-to-action-citat span {
        font-size: 1.6rem;

    }

    .splash-call-to-action-line-container {
        margin-top: 50px;
        /*margin-left: auto;*/
        filter: drop-shadow(0 0 10px #FAEC54);
        margin-bottom: 50px;
        width: 100%;
        height: 6px;

    }

    .splash-call-to-action-line {
        width: 100%;
        min-width: 100%;
        height: 6px;
        background-color: #FAEC54;
        position: absolute;

    }

    .splash-call-to-action-button-header {
        font-size: 1.5rem;
    }


    .splash-call-to-action-button-row {
        margin-top: 0
    }

    .splash-call-to-action-button-text {
        color: white;
        text-decoration: underline;
        max-width: 300px;
        font-weight: bold;
        text-align: center;
        margin: 20px auto 0;
    }

    .splash-start-container {
        position: absolute;
        width: 100%;
        margin-top: 1px;
        height: 100vh;
        min-height: 800px;
        background: transparent;
        text-align: center;
        z-index: 1;
        pointer-events: none;

    }

    .splash-logo-img {
        width: 50vw;
        height: auto;
        max-width: 550px;
        -webkit-filter: drop-shadow(5px 5px 5px #1c1c1c);
        filter: drop-shadow(0 0 10px #1c1c1c);
        transition: 0.2s;
    }

    .splash-down-icon {
        display: block;
        color: white;
        font-size: 2.5vw;
        -webkit-filter: drop-shadow(5px 5px 5px #1c1c1c);
        filter: drop-shadow(0 0 10px #1c1c1c);
        animation: scroll_pulse 2s infinite;
    }

    .pulse {
        display: inline-block;
        -moz-animation: pulse 2s infinite linear;
        -o-animation: pulse 2s infinite linear;
        -webkit-animation: pulse 2s infinite linear;
        animation: pulse 4s infinite linear;
        text-shadow: 0 0 5px #1c1c1c;
        pointer-events: auto;
    }


    .splash-down-icon:hover {
        color: white;
    }

    .splash-call-to-action-button {

        margin-top: 20px;
        background-color: #FAEC54;
        color: #404040;
    }

    .splash-center-vertical-helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    /*hhh middle section SPLASH*/
    .splash-container-mid {
        height: 100vh;
        /*min-height: 1800px;*/
        min-height: 1400px;
        width: 100%;
        background-color: #1c1c1c;
    }

    .splash-mid-line-container {
        position: absolute;
        float: right;
        margin-top: 0;
        width: 100%;
        filter: drop-shadow(0 0 10px #FAEC54);
    }

    .splash-mid-line {
        width: 0%;
        height: 6px;
        background-color: #FAEC54;
        float: right;
    }

    .splash-video-container {
        /*height: 100%;*/
        text-align: center;
        padding-top: 200px;
    }

    .splash-video-header {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 5vh;
        margin-left: -200px;

    }

    .splash-video-container iframe,
    .splash-video-container object,
    .splash-video-container embed {
        vertical-align: middle;
        width: 60vw;
        max-width: 1200px;
        height: 34.75vw;
        max-height: 675px;
        box-shadow: 0 0 20px #FAEC54;
    }

    /*hhh bottom section SPLASH*/
    .splash-container-bottom {
        /*height: 70vh;*/
        /*min-height: 800px;*/
        min-height: 90vh;
        padding-bottom: 150px;
        width: 100%;
        text-align: center;
        padding-top: 100px;
        background-image: linear-gradient(to bottom, #1c1c1c, #404040, #404040);
    }

    .splash-bottom-line-container {
        position: absolute;
        float: left;
        width: 100%;
        filter: drop-shadow(0 0 10px #FAEC54);
    }

    .splash-bottom-line {
        width: 0;
        height: 6px;
        background-color: #FAEC54;
        float: left;
    }

    .splash-bottom-main-header {
        color: white;
        font-size: 2rem;
        font-weight: bold;
        padding-top: 30px;
        margin: 20vh 0 50px 0;
    }

    .splash-bottom-main-header-number {
        color: #FAEC54;
        font-size: 2.3rem;
    }

    .splash-bottom-col {
        margin: auto;
        width: 100%;
        height: 100%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

    .splash-bottom-header {
        color: #FAEC54;
        font-weight: bold;
        margin-bottom: 40px;
    }

    .splash-bottom-text {
        width: 100%;
        margin: 40px auto 0;
        color: white;
        font-weight: bold;
        max-width: 70ch;

    }


    .splash-bottom-img {
        -webkit-filter: drop-shadow(5px 5px 5px #FAEC54);
        filter: drop-shadow(0 0 10px #FAEC54);
        width: 50%;
        max-width: 300px;
        height: auto;
    }

    .splash-container-ending {
        height: 70vh;
        min-height: 500px;
        padding-bottom: 2%;
        width: 100%;
        background: url("/static/feelloud/screen_concert_no_logo_v0.5.png") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        text-align: center;

    }

    .splash-container-ending-text {
        color: white;
        font-weight: bold;
        position: absolute;
        margin-top: 10vh;
        text-align: left;
        max-width: 70%;
        left: 12vw;
        /*margin-bottom: calc(140px + 2vw + 1vh);*/
        text-shadow: 2px 2px 2px #1c1c1c;
        font-size: 1.5rem;

    }

    .splash-glow-button {
        padding: 8px 45px;
        border: 3px solid #fff;
        background: #1c1c1c;
        max-width: 380px;
        outline: none;
        color: white;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
        font-weight: bold;
        font-size: 2rem;
        transition: 500ms;
    }

    .splash-glow-button:hover {
        color: #FAEC54;
        transition: 500ms;
    }

    .splash-glow-button:before {
        content: '';
        background: linear-gradient(45deg, #FAEC54, #FAEC54, #2d5769, mediumvioletred,
        #2d5769, #FAEC54, #FAEC54,
        #2d5769, #FAEC54);
        position: absolute;

        top: -3px;
        left: -3px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 6px);
        height: calc(100% + 6px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

    .splash-glow-button:active {
        color: #FAEC54;
    }

    .splash-glow-button:active:after {
        background: transparent;
    }

    .splash-glow-button:before {
        opacity: 1;
    }

    .splash-glow-button:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #111;
        left: 0;
        top: 0;
        border-radius: 10px;
    }
}

/*hhh -----------------ABOUT----------------------*/
@media only screen and (max-width: 768px) {

    .splash-about-container {
        padding: 100px 0 50px;
        margin: -100px 0 0;
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .splash-about-container:before {
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        z-index: 2;
        filter: brightness(75%);
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;


    }

    .splash-background-1 {
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center;
        /*background-image: linear-gradient(to bottom, transparent, #1c1c1c, #1c1c1c);*/
        width: 100%;
        height: 100vh;
        background-size: cover;

    }

    .splash-about-neon-line {
        width: 100%;
        height: 6px;
        background-color: #FAEC54;
        position: absolute;
    }

    .splash-qANDa-main-container {

        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center fixed;
        /*background-image: linear-gradient(to bottom, transparent, #1c1c1c, #1c1c1c);*/
        width: 90%;
        margin: 50px;
        height: calc(100vh - 100px);
        background-size: cover;

    }

    .splash-absolute-content-outer-container {
        margin: 100px 10px 70px;
        width: calc(100% - 20px);
        z-index: 4;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 0 7px 5px #111;

    }
}

@media only screen and (min-width: 768px) {
    .splash-about-container {
        /*height: 100vh;*/
        padding: 100px 0 50px;
        margin: -100px 0 0;
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .splash-about-container:before {
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        z-index: 2;
        filter: brightness(100%);
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;

    }


    .splash-about-neon-line {
        width: 100%;
        height: 6px;
        background-color: #FAEC54;
        position: absolute;
    }

    .splash-qANDa-main-container {
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center fixed;
        /*background-image: linear-gradient(to bottom, transparent, #1c1c1c, #1c1c1c);*/
        width: 100%;
        margin: 50px;
        height: calc(100vh - 100px);
        background-size: cover;

    }

    .splash-absolute-content-outer-container {
        margin: 100px auto 50px;
        border-radius: 10px;
        width: calc(100% - 80px);
        max-width: 1460px;
        z-index: 4;
        position: relative;
        box-shadow: 0 0 7px 5px #111;
    }
}


.splash-absolute-content-inner-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;

}

.splash-absolute-content-background1 {

    background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center;
    width: 100%;
    height: 75vh;
    background-size: cover;
    border-radius: 5px;

}


.splash-absolute-content-background-blender {

    background-image: linear-gradient(to bottom, transparent, #1c1c1c, #1c1c1c);
    width: 100%;
    height: 40vh;
    position: absolute;
    margin-top: 55vh;

}


.navbar-splash {
    background-color: #404040;
    padding: 5px 1rem;
}

.navbar-not-auth-signup-btn {
    background-color: #FAEC54;
    font-weight: bold;
    font-size: 1rem;
    color: #1c1c1c;
    padding: 7px 22px;
    border-radius: 4px;
    border: 1px solid #1c1c1c;
    transition: 150ms;
}

@media only screen and (max-width: 767px) {
    .navbar-not-auth-signup-btn {
        font-size: 0.7rem;
    }
}

.navbar-not-auth-signup-btn:hover {
    padding: 7px 26px;
}

.navbar-not-auth-login-btn {
    background-color: #262626;
    font-weight: bold;
    font-size: 1rem;
    color: #ffffff;
    padding: 7px 22px;
    border-radius: 4px;
    border: 1px solid #1c1c1c;
    transition: 150ms;
}

@media only screen and (max-width: 767px) {
    .navbar-not-auth-login-btn {
        font-size: 0.7rem;
    }
}

.navbar-not-auth-login-btn:hover {
    color: #FAEC54;
    padding: 7px 26px;
}

.about-main-container {
    margin: 120px 0 0;
    background: linear-gradient(172deg, #313131, #1c1c1c, #111111);
    padding: 10px 15px;
    border-radius: 10px;
}

@media only screen and (max-width: 768px) {
    .about-main-container {
        margin: 80px 0 0;
        padding: 1px 15px 20px;
    }

}

.about-contact-row {

}

.about-contact-img-col {
    padding: 0 15px;
    text-align: right;
    margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
    .about-contact-img-col {
        text-align: center;
        margin-bottom: 30px;
    }
}

.about-contact-img-bh {
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 70%;
    max-width: 400px;
    height: auto;
}

.about-contact-address-col {
    padding: 0 0 20px 30px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
    .about-contact-address-col {
        text-align: center;
    }
}

.about-contact-address-header {
    font-size: 1.2rem;
    color: white;
    margin: 15px 0;

}

.about-contact-address-txt {
    font-size: 1rem;
    margin: 2px;
    color: #aaa;
}

.splash-about-contact-row {
    max-width: 750px;
    margin: 0 auto 0;
}

.about-contact-icon-header {
    color: #757575;
    font-size: 0.9rem;
}


@media only screen and (max-width: 768px) {
    .about-main-header {
        font-size: 1.7rem;
        color: white;
        font-weight: bold;
        text-shadow: 2px 2px #1c1c1c;
        text-align: center;
        margin: 60px auto 30px;
    }

    .about-main-content-container {
        max-width: 500px;
        display: block;
        margin: 0 auto 20px;
    }

    .about-citat-text {
        font-family: 'Permanent Marker', cursive !important;
        color: #FAEC54;
        font-size: 16px;
        text-shadow: 2px 2px #1c1c1c;
    }

    .team-card {
        position: relative;
        width: 55vw;
        height: 80vw;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 5vw;
        background: #1c1c1c;
        transition: 0.5s;
    }

    .team-card:hover {
        height: calc(80vw + 80px);

    }

    .team-card .team-img-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .team-card .team-img-box img {
        width: 100%;
        opacity: 0.9;
        transition: 0.5s;
        filter: grayscale(70%);
    }

    .team-card:hover .team-img-box img {
        opacity: 1;
        filter: grayscale(0%);
    }

    .team-card:before {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        left: -2px;
        bottom: -2px;
        background: #fff;
        z-index: -1;
    }

    .team-card:after {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        left: -2px;
        bottom: -2px;
        background: #fff;
        z-index: -2;
        filter: blur(40px);

    }

    .team-card:before,
    .team-card:after {
        background: linear-gradient(235deg, blue, #010615, #FAEC54);
    }

    .team-card:nth-child(2):before,
    .team-card:nth-child(2):after {
        background: linear-gradient(235deg, #ff0766, #010615, #FAEC54);
    }

    .team-card:nth-child(3):before,
    .team-card:nth-child(3):after {
        background: linear-gradient(235deg, rebeccapurple, #010615, #FAEC54);
    }

    .team-card .team-content {
        position: absolute;
        bottom: 0;
        left: 10px;
        right: 10px;
        height: 90px;

        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        opacity: 0;
        transition: 0.5s;

    }

    .team-card:hover .team-content {
        opacity: 1;
    }

    .team-card .team-content h2 {
        font-size: 16px;
        color: #FAEC54;
        line-height: 20px;
        letter-spacing: 1px;
    }

    .team-card .team-content h2 span {
        font-size: 14px;
        color: #fff;
        font-weight: 200;
        line-height: 20px;
        letter-spacing: 2px;
    }

    .about-contact-a {

        margin-left: auto;
        margin-right: auto;
        width: 50%;
        height: auto;

    }

    .about-contact-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 110px;
        margin-bottom: 20%;
        width: 80%;
        height: auto;

    }
}

.splash-about-txt-col {
    padding: 0 20px 0 0;
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .splash-about-txt-col {
        padding: 0;
        text-align: center;
    }
}

@media only screen and (min-width: 768px) {
    .about-main-header {
        font-size: 2rem;
        font-weight: bold;
        color: #fff;
        text-shadow: 2px 2px #1c1c1c;
        text-align: center;
        margin: 100px auto 50px;
    }

    .about-main-content-container {
        max-width: 500px;
        float: right;
        display: block;
        margin: 0 auto 20px;
    }

    .about-citat-text {
        font-family: 'Permanent Marker', cursive !important;
        color: #FAEC54;
        font-size: calc(36px);
        text-shadow: 2px 2px #1c1c1c;
    }

    .team-card {
        position: relative;
        width: 340px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 2vw;
        background: #1c1c1c;
        transition: 0.5s;
    }

    .team-card:hover {
        height: 590px;

    }

    .team-card .team-img-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .team-card .team-img-box img {
        width: 100%;
        opacity: 0.9;
        transition: 0.5s;
        filter: grayscale(80%);
    }

    .team-card:hover .team-img-box img {
        opacity: 1;
        filter: grayscale(0%);
    }

    .team-card:before {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        left: -2px;
        bottom: -2px;
        background: #fff;
        z-index: -1;
    }

    .team-card:after {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        left: -2px;
        bottom: -2px;
        background: #fff;
        z-index: -2;
        filter: blur(40px);

    }

    .team-card:before,
    .team-card:after {
        background: linear-gradient(235deg, blue, #010615, #FAEC54);
    }

    .team-card:nth-child(2):before,
    .team-card:nth-child(2):after {
        background: linear-gradient(235deg, #ff0766, #010615, #FAEC54);
    }

    .team-card:nth-child(3):before,
    .team-card:nth-child(3):after {
        background: linear-gradient(235deg, rebeccapurple, #010615, #FAEC54);
    }

    .team-card .team-content {
        position: absolute;
        bottom: 0;
        left: 10px;
        right: 10px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        opacity: 0;
        transition: 0.5s;

    }

    .team-card:hover .team-content {
        opacity: 1;
    }

    .team-card .team-content h2 {
        font-size: 16px;
        color: #FAEC54;
        line-height: 20px;
        letter-spacing: 1px;
    }

    .team-card .team-content h2 span {
        font-size: 14px;
        color: #fff;
        font-weight: 200;
        line-height: 20px;
        letter-spacing: 2px;
    }

    .about-contact-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20%;
        height: 120px;
        width: auto
    }
}


.about-header {
    font-size: 1.3rem;
    color: #FAEC54;
    text-shadow: 2px 3px #1c1c1c;
    text-align: right;

}

@media only screen and (max-width: 768px) {
    .about-header {
        text-align: center;
        margin: 45px auto 10px;
    }
}

.about-text {
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 1px #1c1c1c;
    margin: auto;
    max-width: 450px;
}

.splash-about-main-img-container {
    /*display: flex;*/
    /*align-items: center;*/
    /*text-align: center;*/
    /*width: 100%;*/
    display: table-cell;
    padding: 50px 0;
    vertical-align: middle;
    text-align: center;
}

.splash-about-main-img {
    width: 100%;
    max-width: 333px;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .splash-about-main-img {
        width: 100%;
        max-width: 200px;

    }
}

/*hhh ------------------FOR ARTIST --------------------*/


@media only screen and (max-width: 768px) {
    .splash-top-logo-container {
        padding: calc(10px + 0.2vw);
        text-align: center;
    }

    .splash-faq-logo-img {
        width: auto;
        height: 40px;
        margin-bottom: 10px;
    }

    .splash-faq-content-outer-container {
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        border: hsla(324, 0%, 21%, 5) solid 3px;
        border-radius: 5px;
        margin: auto;
        width: calc(100vw - 50px);
        height: calc(100vh - 160px);
        box-shadow: 0 0 15px 10px #000000;

    }

    .splash-faq-content-inner-container {
        background: rgba(28, 28, 28, 0.4);
        height: 100%;
        width: 100%;
        padding: 20px 10px 0;
        overflow-y: auto;
    }

    .splash-faq-content-header {
        font-size: 25px;
        color: white;
        text-shadow: 2px 2px #1c1c1c;
        text-align: center;
        margin-bottom: 5px;
    }

    .splash-faq-content-accordion-container {
        width: 95%;
        margin: auto;
        max-width: 1000px;
    }

    .splash-faq-content-accordion-card {
        background-color: #1c1c1c;
        border: #075270 solid 2px;
        margin: 15px 0;
        box-shadow: 0 0 10px 5px #000000;

    }

    .splash-faq-content-accordion-card-a {
        padding: 0
    }

    .splash-faq-content-accordion-card-header-container {
        text-align: left;
        width: 100%;
        margin: 0;
        background-color: #1c1c1c;
        cursor: pointer;

    }

    .splash-faq-content-accordion-card-header-container h5 {
        font-weight: bold;
        color: #FAEC54;
        font-size: 26px;
    }

    .splash-faq-content-accordion-card-body {
        padding: 5px
    }

    .splash-faq-content-accordion-card-question-container {
        background-color: #262626;
        border: 1px solid #606060;
        padding: 5px;
        border-radius: 5px;
        margin: 0 5px 30px;
        font-size: 12px;
        font-weight: bold;
    }

    .splash-faq-content-accordion-card-question-row {
        padding: 0;
        margin: 0;
    }

    .splash-faq-content-accordion-card-question-row p {
        color: white;
        max-width: 120ch;
        margin: 10px 0 7px;
    }

    .splash-faq-content-accordion-card-question-row p span {
        color: #808080;

    }

    .splash-faq-content-accordion-card-answer-hr {
        width: 100%;
    }

    .splash-faq-content-accordion-card-answer-p {
        color: white;
        font-size: 12px;
        margin: 0 0 15px 0;
        line-height: 190%;
    }

    .splash-faq-content-accordion-card-answer-p span {
        color: #808080;
    }
}

@media only screen and (min-width: 768px) {
    .splash-top-logo-container {
        padding: calc(10px);
        text-align: center;
    }

    .splash-faq-logo-img {
        width: auto;
        height: 60px;
        margin-bottom: 10px;
    }

    .splash-faq-content-outer-container {
        background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        margin: auto;
        border: hsla(324, 0%, 21%, 5) solid 3px;
        border-radius: 5px;
        width: calc(100vw - 100px);
        max-width: 1300px;
        height: calc(100vh - 200px);
        box-shadow: 0 0 15px 10px #000000;
    }

    .splash-faq-content-inner-container {
        background: rgba(28, 28, 28, 0.4);
        height: 100%;
        width: 100%;
        padding: 20px 10px 0;
        overflow-y: auto;
    }

    .splash-faq-content-inner-container::-webkit-scrollbar {
        width: 3px;
    }

    .splash-faq-content-inner-container::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background: linear-gradient(to top, #FAEC54, yellow, #FAEC54, yellow);
    }

    .splash-faq-content-inner-container::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .splash-faq-content-inner-container::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
    }

    .splash-faq-content-header {
        font-size: 32px;
        color: white;
        text-shadow: 2px 2px #1c1c1c;
        text-align: center;
        margin-bottom: 20px;
    }

    .splash-faq-content-accordion-container {
        width: 90%;
        margin: auto;
        max-width: 1000px;
    }

    .splash-faq-content-accordion-card {
        background-color: #1c1c1c;
        border: #075270 solid 2px;
        margin: 25px 0;
        box-shadow: 0 0 10px 5px #000000;

    }

    .splash-faq-content-accordion-card-a {
        padding: 0
    }

    .splash-faq-content-accordion-card-header-container {
        text-align: left;
        width: 100%;
        margin: 0;
        background-color: #1c1c1c;
        cursor: pointer;

    }

    .splash-faq-content-accordion-card-header-container h5 {
        font-weight: bold;
        color: #FAEC54;
        font-size: 22px;
    }

    .splash-faq-content-accordion-card-body {
        padding: 5px
    }

    .splash-faq-content-accordion-card-question-container {
        background-color: #404040;
        border: 1px solid transparent;
        padding: 5px;
        border-radius: 5px;
        margin: 40px 5px;
        font-size: 20px;
        font-weight: bold;

    }

    .splash-faq-content-accordion-card-question-row {
        padding: 0;
        margin: 0;
    }

    .splash-faq-content-accordion-card-question-row p {
        color: white;
        max-width: 120ch;
        margin: 10px 0 7px;
    }

    .splash-faq-content-accordion-card-question-row p span {
        color: #FAEC54;

    }

    .splash-faq-content-accordion-card-answer-hr {
        width: 100%;
    }

    .splash-faq-content-accordion-card-answer-p {
        color: white;
        font-weight: normal;
        font-size: 20px;
        margin: 0 auto 15px;
        line-height: 190%;

    }

    .splash-faq-content-accordion-card-answer-p span {
        color: #808080;
        font-weight: bold;
    }
}


/*hhh ------------------NEWS --------------------*/
.splash-news-container {
    background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.information-box-type1 {
    background-color: hsla(40, 100%, 5%, 0.5);
    border-radius: 6px;
    border: 1px solid #FAEC54;
    height: auto;
    min-height: 500px;
    max-width: 500px;
    padding: 5px 5px;
    margin: 10px;
    color: white;
    text-align: center;
}

.navbar_down-links:hover {
    color: #FAEC54 !important;
}

.splash-univeral-header {
    font-size: 1.6rem;
    text-align: center;
    margin: 20px auto 50px;
    font-weight: bold;
}

.splash-country-list {
    display: block;
    color: #cccccc;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid transparent;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: hsla(40, 50%, 5%, 0.8);
}

.splash-country-list:focus {
    background-color: hsla(50, 50%, 5%, 1.0) !important;
    border-color: #FAEC54 !important;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    outline: none;
}

.validatePassword_txt {
    color: darkgray;
    font-size: 18px;
    width: auto;
}


.normal-txt-w {
    color: white;
    font-size: medium;
}

.about-box {
    border: 1px solid #FAEC54;
    margin: 20px;
    border-radius: 10px;
}

/*hhh----------------NAVBAR----------------*/
.splash-navbar-item:hover {
    fill: #FAEC54 !important;
}

/*todo remove when in production*/
/*hhh----------------ALPHA LOGIN----------------*/
@media only screen and (max-width: 768px) {
    .alpha-login {
        width: 90%;
        border: white solid 1px;
        border-radius: 5px;
        margin: 10vh auto 30px;
        padding: 10px;
        background-color: hsla(0, 0%, 10%, 0.6);
    }

    .alpha-img-container {
        margin: 10vh auto 30px
    }

    .alpha-login-form {
        color: orangered;
        text-align: center;
    }

    .alpha-login-form-username-input {
        background-color: #1c1c1c;
        color: #FAEC54 !important;
        border-radius: 5px;
        font-size: 1.5rem;
        margin: 20px auto;
    }

    .alpha-login-form-password-input {
        background-color: #1c1c1c;
        color: #FAEC54 !important;
        border-radius: 5px;
        font-size: 1.5rem;
        margin: 20px auto;
    }

    .alpha-login-form-button {
        background-color: #FAEC54;
        color: #1c1c1c;
        border-radius: 5px;
        border: 1px solid #1c1c1c;
        font-size: 1.5rem;
        margin: 20px auto;
    }

    .alpha-login-form-button:hover {
        background-color: #1c1c1c;
        color: #FAEC54;
        margin: 20px auto;
        box-shadow: 0 0 10px #FAEC54;
    }

    .alpha-img {
        margin-left: auto;
        margin-right: auto;
        display: block;

    }
}

@media only screen and (min-width: 768px) {
    .alpha-login {
        width: 60%;
        max-width: 600px;
        border: white solid 1px;
        border-radius: 5px;
        margin: 10vh auto 30px;
        padding: 30px;
        background-color: hsla(0, 0%, 10%, 0.6);
    }

    .alpha-img-container {
        margin: 30px auto 30px
    }

    .alpha-login-form {
        color: orangered;
        text-align: center;
    }

    .alpha-login-form-username-input {
        background-color: #1c1c1c;
        color: #FAEC54 !important;
        border-radius: 5px;
        font-size: 1.5rem;
        margin: 20px auto;

    }

    .alpha-login-form-password-input {
        background-color: #1c1c1c;
        color: #FAEC54 !important;
        border-radius: 5px;
        font-size: 1.5rem;
        margin: 20px auto;
    }

    .alpha-img {

        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .alpha-login-form-button {
        background-color: #FAEC54;
        color: #1c1c1c;
        border-radius: 5px;
        border: 1px solid #1c1c1c;
        font-size: 1.5rem;
        margin: 20px auto;
    }

    .alpha-login-form-button:hover {
        background-color: #1c1c1c;
        color: #FAEC54;
        /*margin: -10px auto;*/
        box-shadow: 0 0 10px #FAEC54;
    }
}

@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        color: white
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        color: #FAEC54
    }
    75% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        color: white
    }
}

@-moz-keyframes pulse {
    0% {
        opacity: 1;
        color: white
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        color: #FAEC54
    }
    75% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        color: white
    }
}

@-o-keyframes pulse {
    0% {
        opacity: 1;
        color: white
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        color: #FAEC54
    }
    75% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        color: white
    }
}

@-ms-keyframes pulse {
    0% {
        opacity: 1;
        color: white
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        color: #FAEC54
    }
    75% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        color: white
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        color: white
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        color: #FAEC54
    }
    75% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        color: white
    }
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/*hhh testing remove before merge or add to main*/
/*hhh click funtions start*/
div.clickEffect {
    position: fixed;
    box-sizing: border-box;
    border-style: solid;
    border-color: #FFFFFF;
    border-radius: 50%;
    animation: clickEffect 0.4s ease-out;
    z-index: 99999;
}

@keyframes clickEffect {
    0% {
        opacity: 1;
        width: 0.5em;
        height: 0.5em;
        margin: -0.25em;
        border-width: 0.5em;
    }
    100% {
        opacity: 0.2;
        width: 15em;
        height: 15em;
        margin: -7.5em;
        border-width: 0.03em;
    }
}

/*hhh click funtions end*/

/*REMOVE LATER, ONLY ADDED FOR TEMP ALPHA V2 CLASSES AND STYLING*/
.splash-faq-content-subheader {
    text-align: center;
    font-size: 1rem;
    color: #aaaaaa;
}

.reset-password-login-button {
    background-color: #FAEC54;
    color: #1c1c1c;
    border-radius: 5px;
    border: 1px solid #1c1c1c;
    font-size: 1.5rem;
    margin: 20px auto;
}

.reset-password-login-button:hover {
    background-color: #1c1c1c;
    color: #FAEC54;
    margin: 20px auto;
    box-shadow: 0 0 10px #FAEC54;
}

/*hhh ----------------------- POST ---------------------*/

.home-center-post-card {


    background-color: #303030;
    border: transparent solid 1px;
    border-radius: 10px;


}

@media only screen and (max-width: 767px) {
    .home-center-post-card {

        -moz-box-shadow: 0 10px 10px #000;
        -webkit-box-shadow: 0 10px 10px #000;
        box-shadow: 0 10px 10px #000;
        margin: 25px auto 65px;
        width: 100%;
        padding: 10px 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card {

        -moz-box-shadow: 0 10px 20px #000;
        -webkit-box-shadow: 0 10px 20px #000;
        box-shadow: 10px 10px 20px #000;
        margin: 60px auto 0;
        width: 100%;
        padding: 25px 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home-center-post-card {

        -moz-box-shadow: 0 10px 20px #000;
        -webkit-box-shadow: 0 10px 20px #000;
        box-shadow: 10px 10px 40px #000;
        margin: 90px auto 0;
        width: 100%;
        padding: 25px 35px;
    }
}

@media only screen and (min-width: 1200px) {
    .home-center-post-card {

        -moz-box-shadow: 0 10px 20px #000;
        -webkit-box-shadow: 0 10px 20px #000;
        box-shadow: 10px 10px 40px #000;
        margin: 90px auto 0;
        max-width: 1000px;
        min-width: 490px;
        width: 85%;
        padding: 30px 40px;
    }
}

.home-center-post-card-r {
}

.home-center-post-card-l {
}

.home-center-post-card-avatar-img {
    border-radius: 5%;
    height: 70px;
    width: 39px;
    margin: 0 10px 0 0;
    vertical-align: top;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-avatar-img {

        margin: 0 10px 10px 0;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-avatar-img {

        margin: 0 10px 10px 0;

    }
}


.home-center-post-card-date {
    color: #aaa;
    font-weight: normal;
    font-size: 0.9rem;
    display: inline-block;

}

@media only screen and (max-width: 767px) {
    .home-center-post-card-date {

        font-size: 0.7rem;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-date {

        font-size: 0.8rem;

    }
}

.home-center-post-card-dropdown-toggle-btn {
    background-color: #303030;
    -moz-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    -webkit-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-dropdown-toggle-btn {
        -moz-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        -webkit-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        padding: 6px 8px;
        font-size: 0.6rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-dropdown-toggle-btn {
        -moz-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        -webkit-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

.home-center-post-card-dropdown-toggle-btn::after {
    content: none !important;
}

.home-center-post-card-dropdown-toggle-btn:hover {
    color: #FAEC54 !important;

}

.home-center-post-card-dropdown-menu {
    position: absolute;
    -moz-box-shadow: 10px 10px 20px 5px #000;
    -webkit-box-shadow: 10px 10px 20px 5px #000;
    box-shadow: 10px 10px 20px 5px #000;
    padding: 0;
    z-index: 1000;
    display: none;
    float: right;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    background-color: #303030;
    background-clip: padding-box;
    border: 1px solid #fff;
    border-radius: 5px;
}

.home-center-post-card-dropdown-divider {
    height: 0;
    margin: 0 5px !important;
    overflow: hidden;
    border-top: 1px solid #696969;
}

.home-center-post-card-dropdown-item {
    color: #fff;
    padding: 10px 24px;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-dropdown-menu {
        font-size: 0.7rem;
        -moz-box-shadow: 8px 8px 15px 2px #000;
        -webkit-box-shadow: 8px 8px 15px 2px #000;
        box-shadow: 8px 8px 15px 2px #000;
        transform: translate3d(-115px, 39px, 0px);
    }

    .home-center-post-card-dropdown-item {

        padding: 8px 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-dropdown-menu {
        font-size: 0.8rem;
        /*   top: 36% !important;*/
        /*right: -114px !important;*/
        -moz-box-shadow: 8px 8px 15px 2px #000;
        -webkit-box-shadow: 8px 8px 15px 2px #000;
        box-shadow: 8px 8px 15px 2px #000;
    }

    .home-center-post-card-dropdown-item {

        padding: 8px 20px;
    }
}


.home-center-post-card-dropdown-item:hover {
    background-color: #404040;
    color: #FAEC54 !important;
    font-weight: bold;
}

.home-center-post-card-img-container {
    margin: 5px auto 0;
    min-width: 400px;
    width: 100%;
    max-width: 45vh;
    min-height: 711px;
    height: 100%;
    max-height: 80vh;
    border: #FAEC54 solid 1px;
    border-radius: 5px;
}


.home-center-post-card-message {

    width: calc(100% - 20px);
    margin: 15px auto 50px;
    line-height: 200%;
    background-color: #303030;
    color: white;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-message {
        margin: 15px auto 20px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-message {
        margin: 15px auto 50px;

    }
}


.home-center-post-card-feel-filter-btn {
    background-color: #303030;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    -moz-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    -webkit-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    width: 100%;
    padding: 8px 0 8px 16px;
    border: none;
    transition: 0.5s;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-feel-filter-btn {
        font-weight: bold;
        -moz-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        -webkit-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        padding: 8px 0 8px 16px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-feel-filter-btn {

        font-weight: bold;
        -moz-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        -webkit-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        padding: 8px 0 8px 16px;

    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home-center-post-card-feel-filter-btn {

        font-weight: bold;
        -moz-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        -webkit-box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        box-shadow: 5px 5px 10px #191919,
        -5px -5px 10px #474747;
        padding: 8px 0 8px 16px;

    }
}

.home-center-post-card-feel-filter-btn:hover {
    background-color: #383838 !important;
    color: #FAEC54 !important;
    border: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;

}


.home-center-post-card-feel-filter-img {
    height: 21px;
    width: auto;
    display: inline-block;
    margin: 0 0 4px 7px;
    background-color: transparent;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-feel-filter-img {
        height: 15px;
        width: auto;
        margin: 0 0 0 7px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-feel-filter-img {
        height: 17px;
        width: auto;
        margin: 0 0 2px 7px;

    }
}

.home-center-post-card-comment-content-btn {
    background-color: #303030;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    -moz-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    -webkit-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    width: 100%;
    padding: 8px 16px;
    border: none;
    transition: 0.5s;
}

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

    .home-center-post-card-comment-content-btn {
        height: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-comment-content-btn {
        height: 36.3px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home-center-post-card-comment-content-btn {
        height: 41px;
    }
}

@media only screen and (min-width: 1200px) {
    .home-center-post-card-comment-content-btn {
        height: 41px;
    }
}


.home-center-post-card-comment-content-btn:hover {
    background-color: #383838 !important;
    color: #FAEC54 !important;
    border: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;

}

.home-center-post-card-feel-content-btn {
    background-color: #303030;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    -moz-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    -webkit-box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    box-shadow: 5px 5px 10px #191919,
    -5px -5px 10px #474747;
    width: 100%;
    padding: 8px 16px;
    border: none;
    transition: 0.5s;
}

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

    .home-center-post-card-feel-content-btn {
        height: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-feel-content-btn {
        height: 36.3px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home-center-post-card-feel-content-btn {
        height: 41px;
    }
}

@media only screen and (min-width: 1200px) {
    .home-center-post-card-feel-content-btn {
        height: 41px;
    }
}

.home-center-post-card-feel-content-btn:hover {
    background-color: #383838 !important;
    color: #FAEC54 !important;
    border: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;

}

@media only screen and (max-width: 767px) {
    .home-center-post-card-comment-content-btn-text {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-comment-content-btn-text {
        display: none;
    }
}

.home-center-post-card-remove-feel-btn {
    background-color: #303030;
    border: none;
    padding: 5px 10px;
    color: #696969;
    transition: 0.7s;
    font-size: 0.9rem;
}


.home-center-post-card-remove-feel-btn:hover {
    background-color: #383838;
    -moz-box-shadow: 0 5px 10px #000;
    -webkit-box-shadow: 0 5px 10px #000;
    box-shadow: 0 5px 10px #000;
    color: #808080;
}

.home-center-post-card-remove-feel-btn i {
    color: #696969;
    font-weight: bolder;
}

.home-center-post-card-remove-feel-btn:hover i {
    color: #808080;
}

@media only screen and (max-width: 767px) {
    .home-center-post-card-remove-feel-btn-text {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-center-post-card-remove-feel-btn-text {
        display: none;
    }
}

/*hhh REGISTER FANS ACCOUNTS*/

.register-start-main-container {
    max-width: 1500px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 10px 15px;
    background: #1c1c1c url("/static/feelloud/stage_v0.5.png") no-repeat center center fixed;
}

@media only screen and (max-width: 767px) {
    .register-start-main-container {
        padding: 10px 5px;
    }
}

.register-start-main-container-row {
    margin: 0;
}

.register-start-logo {
    width: 90%;
    max-width: 100px;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .register-start-logo {
        width: 70px;
    }
}

.register-start-content-container {
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: 5px;
    padding: 20px 30px;
    margin: 100px auto 30px;
}

@media only screen and (max-width: 767px) {
    .register-start-content-container {
        padding: 20px 8px;
    }
}

.register-start-content-header {
    color: #FAEC54;
    font-weight: bold;
    text-align: center;
    margin: 20px auto 30px;
}

@media only screen and (max-width: 767px) {
    .register-start-content-header {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .register-start-content-header {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .register-start-content-header {
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 1200px) {
    .register-start-content-header {
        font-size: 2rem;
    }
}

.register-start-content-error-txt {
    text-align: center;
    color: orangered;
    font-size: 0.9rem;
    font-weight: bold;

}

@media only screen and (max-width: 767px) {
    .register-start-content-error-txt {
        font-size: 0.75rem;
    }
}

.register-start-content-form-label {
    text-align: left;
    width: 100%;
    color: #fff;
    font-size: 0.85rem;
    margin: 20px auto 1px;
}

@media only screen and (max-width: 767px) {
    .register-start-content-form-label {
        font-size: 0.75rem;
        margin: 15px auto 1px 4px;
    }
}

.register-start-content-form-input {
    background-color: #d9d9d9;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: normal;
    padding: 7px 10px;
    width: 100%;
    color: #000;
}

.register-start-content-form-input::placeholder {
    color: #212121;
}

@media only screen and (max-width: 767px) {
    .register-start-content-form-input {
        font-size: 0.9rem;
    }
}

.register-start-content-form-input:focus {
    border: 1px solid #1e8e8e;
    background-color: #fff;
    outline: none;
}


.register-start-content-form-username-status-span {
    position: absolute;
    top: 12px;
    right: 15px;
    transition: right 0.2s;
}

.register-start-content-form-username-status-txt {
    color: orangered;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .register-start-content-form-username-status-txt {
        font-size: 0.85rem;
    }
}

.register-start-content-form-password-status-container {
    text-align: center;

}

.register-start-content-form-password-status-ul {
    color: #808080 !important;
    font-size: 0.9rem;
    width: 100%;
    margin: 35px auto 15px;
    border-radius: 4px;
    background-color: rgba(10, 10, 10, 0.6);
    display: inline-block;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .register-start-content-form-password-status-ul {
        padding: 0;
    }
}

.register-start-content-form-password-status-ul li {
    margin: 10px 30px;
}

.register-start-content-form-checkbox-input-container {

    margin: 5px auto 20px;
    text-align: center;
}

.register-start-content-form-terms-checkbox-span {
    background-color: rgba(10, 10, 10, 0.6);
    border: none;
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    margin-left: 10px;
    padding: 3px 8px;

}

@media only screen and (max-width: 767px) {
    .register-start-content-form-terms-checkbox-span {
        font-size: 0.8rem;
    }
}


.register-start-content-form-terms-checkbox-span a {
    text-decoration: underline;
    color: #1e8e8e !important;
    cursor: help;
    font-weight: bold;
}

.register-start-content-form-terms-checkbox-span a:hover {
    color: #25aaaa !important;
}

.register-start-content-form-news-and-updates-checkbox-span {
    background-color: rgba(10, 10, 10, 0.6);
    border: none;
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    margin-left: 10px;
    padding: 3px 8px;

}

@media only screen and (max-width: 767px) {
    .register-start-content-form-news-and-updates-checkbox-span {
        font-size: 0.8rem;
    }
}

.register-start-content-form-submit-btn {
    margin: 70px auto 50px;
    background-color: #404040;
    color: #ddd;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 7px;
    transition: 250ms;
    padding: 7px 28px;
    border: 1px solid #808080;

}

@media only screen and (max-width: 767px) {
    .register-start-content-form-submit-btn {
        font-size: 1rem;
        margin: 30px auto 50px;
    }
}

.register-start-content-form-submit-btn:hover {
    color: #ddd;
    border: 1px solid #808080;
    background-color: #404040;
}


.register-start-content-form-submit-btn-active {
    color: #FAEC54;
    background-color: #262626;
    border: 1px solid #FAEC54;
    animation: shadow-show 3000ms ease infinite;
}

.register-start-content-form-submit-btn-active:hover {
    padding: 7px 38px;
    color: #FAEC54;
    border: 1px solid #FAEC54;
    background-color: #313131;
}

@keyframes shadow-show {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 236, 84, 0.5);
    }
    50% {
        box-shadow: 0 0 13px 3px rgba(250, 236, 84, 0.5);
    }
    90% {
        box-shadow: 0 0 0 0 rgba(250, 236, 84, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(250, 236, 84, 0.5);
    }
}

.register-send-content-header {
    color: #FAEC54;
    font-size: 1.3rem;
    font-weight: normal;
    text-align: center;
    margin: 50px auto 50px;
}

@media only screen and (max-width: 767px) {
    .register-send-content-header {
        font-size: 1rem;
    }
}

/*hhh Error Pages*/
.error-pages-container {
    background-color: #262626;
    border-radius: 6px;
    width: calc(100% - 40px);
    max-width: 1250px;
    font-size: 100%;
    color: #FAEC54;
    margin: 10px auto 100px;
    padding: 15px 20px;
}

.error-pages-header {
    color: #faec54;
    font-size: 1.6rem;
    text-align: center;
    margin: 20px auto 50px;
    font-weight: bold;
}

.error-pages-txt {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin: 30px auto 20px;
}

.error-pages-txt a {
    color: #FAEC54;
    font-weight: bold;
    text-decoration: underline;
}

/*hhh FOR ARTIST Page*/


.splash-FA-container {
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    position: relative;
}

.splash-FA-header {
    font-weight: bold;
    font-size: 2.3rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 2px #111;
}

@media only screen and (max-width: 768px) {
    .splash-FA-header {
        margin: 45px 0 0;
        font-size: 1.8rem;
    }
}

.splash-FA-header span {
    color: #faec54;
}

.splash-FA-text {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin: 0 0 30px;
    text-shadow: 2px 2px 2px #111;
}

@media only screen and (max-width: 768px) {
    .splash-FA-text {
        font-size: 1rem;
    }
}

.splash-FA-flex-container {
    display: flex;
    flex-direction: row;
    z-index: 10;
    position: relative;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: auto;

}

@media (max-width: 1000px) {
    .splash-FA-flex-container {
        flex-direction: column;
    }
}

.splash-FA-flex-item {
    flex: 50%;
    padding: 0 5px;
    min-height: min-content;
}

.splash-FA-preview-img {
    width: 100%;
    height: auto;
}

.splash-FA-container-curves-svg-down {
    display: flex;
    position: absolute;
    z-index: 0;
    bottom: 0;
    filter: drop-shadow(0px -3px 10px #000);
}

.splash-FA-hook-icon-bubble {
    background-color: #faec54;
    background: linear-gradient(130deg, #f4eda4, #faec54, #3c3811);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: absolute;
    transform: translate(-50%, -50%);
}

.splash-FA-hook-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #1c1c1c;
    fill: #1c1c1c;
    transform: translate(-50%, -50%);
}

.carousel-indicators li.active {
    background-color: #faec54;
    opacity: 1;
}

.carousel-indicators li {
    background-color: #404040;
    opacity: .5;
    height: 7px;
}


.splash-FA-video-container {
    width: 100%;
    min-height: 1000px;
    max-width: 1040px;
    margin: auto;
    padding: 0;

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .splash-FA-video-container {
        min-height: 1000px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .splash-FA-video-container {
        min-height: 800px;
    }
}


@media only screen and (max-width: 768px) {
    .splash-FA-video-container {
        position: relative;
        min-height: 600px;
        width: 100%;
        height: 0;
        padding: 0;
    }
}

.splash-FA-container-curves-svg-down-shadow-first {
    position: absolute;
    bottom: 25px;
    filter: drop-shadow(0px -3px 10px #000);
}

.splash-FA-container-curves-svg-down-shadow-second {
    position: absolute;
    bottom: 50px;
    filter: drop-shadow(0px -3px 10px #000);
}

.splash-FA-container-inner {
    margin: 0 auto;
    max-width: 1340px;
    min-height: 700px;
    padding: 10px 40px 50px;
}

@media (max-width: 1000px) {
    .splash-FA-container-inner {
        padding: 10px 15px 50px;
    }
}

.splash-FA-carousel-img {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 292px;
}

@media (max-width: 1000px) {
    .splash-FA-carousel-img {
        height: 300px;
        width: auto;
    }
}

@media only screen and (max-width: 767px) {
    .splash-FA-carousel-img {
        height: 150px;
        width: auto;
    }
}

.splash-FA-carousel-txt {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 2px 2px 2px #111;
}

@media only screen and (max-width: 1000px) {
    .splash-FA-carousel-txt {
        font-size: 1.1rem;
        min-height: 150px;
        margin: 20px auto;
    }
}

@media only screen and (max-width: 767px) {
    .splash-FA-carousel-txt {
        font-size: 1rem;
        min-height: 250px;
        margin: 20px auto;
    }
}


.splash-FA-carousel-txt span {
    color: #faec54;
    font-weight: bold;
}

.splash-FA-benefits-flex-container {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: auto;
    flex-wrap: wrap;

}

@media (max-width: 1000px) {
    .splash-FA-benefits-flex-container {
        flex-direction: column;
    }
}

.splash-FA-benfits-flex-item {
    /*flex: 30%;*/
    padding: 0 30px;
    text-align: center;
    max-width: 400px;
    min-height: 430px;
    flex: 1 0 33%;
    margin: 10px 0 0;
}

@media (max-width: 1000px) {
    .splash-FA-benfits-flex-item {
        min-height: 0;
        margin: 0 0 75px;
        max-width: unset;
        width: 100%;
        padding: 0;
    }
}

.splash-FA-benfits-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.splash-FA-benefits-header {
    font-weight: bold;
    font-size: 1.6rem;
    color: #faec54;
    margin: 10px 0;
}

.splash-FA-benefits-header span {
    color: #faec54;
}

.splash-FA-benefit-txt {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin: 0 0 30px;
    text-shadow: 2px 2px 2px #111;
}


.splash-FA-bg-concert {
    background: url("/static/feelloud/main_fl_background_v0.5.jpg") no-repeat center;
    background-size: cover;
}


.splash-FA-bg-dg {
    background-color: #1c1c1c;
}

.splash-FA-bg-bluegrad {
    background: linear-gradient(180deg, #23323A, #1c1c1c, #1c1c1c, #23323A);
}


.splash-FA-main-container {
    background: linear-gradient(172deg, #313131, #1c1c1c, #111111);
    min-height: calc(100vh - 150px);
    padding: 40px 30px;
    margin: 120px 0 0;
    border-radius: 6px;
}


@media only screen and (max-width: 767px) {
    .splash-FA-main-container {
        padding: 40px 12px;
        border-radius: 6px;
        margin: 80px 0 0;
    }
}

.splash-FA-main-header {
    color: #FAEC54;
    font-size: 2rem;
    width: 100%;
    font-weight: bold;
    text-align: center;
    margin: 10px auto 50px;
}

@media only screen and (max-width: 767px) {
    .splash-FA-main-header {
        font-size: 1.4rem;
    }
}

.splash-FA-intro-txt {
    color: #fff;
    font-size: 1rem;
    margin: 0 auto 30px;
    max-width: 1000px;
}

@media only screen and (max-width: 767px) {
    .splash-FA-intro-txt {
        font-size: 0.9rem;
    }
}

.splash-FA-intro-txt span {
    color: #FAEC54;
    font-weight: bold;
}

.splash-FA-video-header {
    color: white;
    font-size: 1.2rem;
    margin: 20px auto 0;
}

.splash-FA-video-header span {
    font-size: 1.2rem;
    color: #FAEC54;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .splash-FA-video-header {
        font-size: 1rem;
    }

    .splash-FA-video-header span {
        font-size: 1rem;
    }
}


.splash-FA-hr {
    border: 1px solid #696969;
    margin: 100px auto;
    width: 70%;
}


.splash-FA-checklist-container p {
    text-align: center;
    font-size: 1.2rem;
    color: #1e8e8e;
    width: 100%;
    font-weight: bold;
    margin: 35px auto 50px;
}

@media only screen and (max-width: 768px) {
    .splash-FA-checklist-container p {
        font-size: 1rem;
        margin: 5px auto 50px;

    }
}


.splash-FA-checklist-timeline {
    width: 75%;
    height: 20px;
    list-style: none;
    padding: 0;
    text-align: justify;
    margin: 80px auto;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 45%,
    rgba(250, 236, 84, 0.51) 51%,
    rgba(255, 255, 255, 0) 57%,
    rgba(255, 255, 255, 0) 100%);
}

.splash-FA-checklist-timeline:after {
    display: inline-block;
    content: "";
    width: 100%;
}

.splash-FA-checklist-timeline li {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #FAEC54;
    text-align: center;
    line-height: 1.2;
    position: relative;
    border-radius: 50%;
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

.splash-FA-checklist-timeline li:before {
    display: inline-block;
    content: attr(data-year);
    font-size: 1rem;
    color: #1e8e8e;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}


.splash-FA-checklist-timeline li:after {
    display: inline-block;
    content: attr(data-text);
    font-size: 1rem;
    color: white;
    position: absolute;
    left: 50%;
    width: 175px;
    bottom: 0;
    margin-bottom: -10px;
    transform: translate(-50%, 100%);
}

@media only screen and (max-width: 767px) {
    .splash-FA-checklist-timeline li:after {
        font-size: 0.6rem;
        width: 75px;
    }
}

.splash-FA-info-row-container {
    margin: 120px auto 50px;
    max-width: 1000px;

}

.splash-FA-info-image-col {
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .splash-FA-info-image-col {
        text-align: center;
    }
}

.splash-FA-info-image {
    width: 95%;
    height: auto;


}

.splash-FA-info-txt-col {
    text-align: center;
}

.splash-FA-info-txt-col-header {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 20px auto 0;
    color: #FAEC54;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .splash-FA-info-txt-col-header {
        margin: 80px auto 0;
    }
}

.splash-FA-info-txt-col-txt {
    color: #ddd;
    font-size: 1.1rem;
    margin: 55px auto 30px;
}

.splash-FA-info-txt-col-txt a {
    color: #1e8e8e;
    font-weight: bold;
}

/*hhh cookies*/

.cookies-eu-banner {
    background: #faec54;
    color: #111;
    padding: 6px 15px;
    font-size: 1rem;
    text-align: left;
    position: fixed;
    bottom: 0;
    width: 100%;
    transition: 1000ms;
    z-index: 1500;
}

.cookies-eu-banner i {
    font-size: 2rem;
}

.cookies-eu-banner a {
    text-decoration: underline;
}

.cookies-eu-banner-btn-box {
    float: right;

}

.cookies-eu-banner #cookies_reject_btn {
    text-decoration: none;
    background: #404040;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 4px 10px 0;
    font-size: 0.8rem;
    border-radius: 3px;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner #cookies_reject_btn:hover {
    background: #606060;
}

.cookies-eu-banner #cookies_accept_btn {
    text-decoration: none;
    background: #262626;
    color: #faec54;
    border-radius: 3px;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 250ms;
}

.cookies-eu-banner #cookies_accept_btn:hover {
    background: #1c1c1c;
    padding: 4px 12px;
}

.hidden-cookies-eu-banner {
    display: none;
}


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

@media only screen and (min-width: 768px) and (max-width: 991px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

@media only screen and (min-width: 1200px) {
}


.password-container {
    position: relative;
    max-width: 300px;
}

.reg-psw-rules-container {
    display: none;
    position: absolute;
    top: 100%;
    border-radius: 6px;
    left: 5px;
    width: calc(100% - 10px);
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 0.9em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.password-container input {
    width: 100%;
    padding-right: 2rem;
}

.reg-toggle-show-psw-icon {
    position: absolute;
    right: 16px;
    top: 75%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}


