:root{ 

    --pri-color-1: #835e0d;
    --pri-color-2: #fdd788;
    --sec-color-1: #6d191b;
    --sec-color-2: #ce201e;
    --ter-color-1: #fe311f;
    --ter-color-2: #fc6a01;

    --positiv: #94f39f;
    --negativ: #f39494;

    --header-footer-bg: #080808;           
    --link-color: #7e7e7e;                 
    --background-1: #1C1B1A; 
    --background-2: #1C1B1A;   
    --btn-color: #ffffff;                  
    --font: #ededed;                       

    --font-txt: 'Outfit';
    --font-link: 'Solitreo';

} 



/* ---------- ---------- ---------- Allgemein ---------- ---------- ---------- */


html{
    scroll-behavior: smooth;
}

body{
    background: -webkit-linear-gradient( var(--background-1),var(--background-2));
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


a{
    text-decoration: none !important;
}

p{
    margin: 0px;
    color: var(--font);
    font-family: var(--font-txt);
}

h1{
    text-transform: uppercase;
    background: -webkit-linear-gradient(var(--pri-color-1), var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-link);
    font-weight: bold !important;
}

.padding-tb-casino{
    padding-top: calc(120px - 15px + 100px)!important;
    padding-bottom: calc(50px - 15px)!important;
}

.padding-tb{
    padding: 50px 0 50px 0 !important;
}

.padding-tb-othersides{
    padding-top: calc(120px + 100px) !important;
    padding-bottom: 50px;
}


/* ---------- ---------- ---------- Popup ---------- ---------- ---------- */

.txt-popup{
    text-align: center;
    margin: 0 20px;
    color: var( --header-footer-bg);
    font-size: 12pt;
}

.modal-backdrop {
    opacity: 0.8 !important;
}

/* ---------- ---------- ---------- Navbar ---------- ---------- ---------- */
nav {
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 20;
    width: 100%;
    background-color: var(--header-footer-bg);
    top: 0;
}

.nav-toggle-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar{
    position: fixed;
    width: 100%;
    height: 0px;
    overflow: hidden;
    z-index: 10;
    top: 120px;

    border-bottom: double 2px transparent;
    background-image: linear-gradient(var(--header-footer-bg), var(--header-footer-bg)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

#navbar-links a:nth-child(3), #navbar-links a:nth-child(4){
    font-size: 18px;
}


/* ---------- Navbar Links ---------- */
#navbar-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

#navbar-links a{
    color: var(--link-color) !important;
    font-family: var(--font-link);
    font-size: 20pt;
    margin-top: 10px;
}

#navbar-links a:hover{
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#active{
    background: -webkit-linear-gradient( var(--sec-color-1),var(--sec-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ---------- Navbar Animation ---------- */
.nav-toggle {
    background: transparent;
    border: 1px solid transparent;
    padding: 0px;
  }
  
    .nav-toggle:focus {
        outline-width: 0;
    }
  
.nav-toggle [class*='bar-'] {
    background: var(--font);
    display: block;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .2s ease all;
            transition: .2s ease all;
    border-radius: 2px;
    height: 2px;
    width: 25px;
    margin-bottom: 4px;
  }

  .nav-toggle:hover [class*='bar-'] {
    background: var(--pri-color-1);
  }

  
.nav-toggle .bar-bot {
    margin-bottom: 0;
  }
  
.opened .bar-top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 15% 15%;
            transform-origin: 15% 15%;
  }

.opened .bar-mid {
    opacity: 0;
  }

.opened .bar-bot {
    -webkit-transform: rotate(45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 15% 95%;
            transform-origin: 15% 95%;
  }


/* ---------- Navbar Logo ---------- */
#logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    overflow: hidden;
}

#Logo {
    height: 85%;
}




/* ---------- ---------- ---------- Arrow-Up ---------- ---------- ---------- */
#arrow-up {
    position: fixed;
    right: 22px;
    bottom: 15px;
    width: 40px;
    opacity: 50%;
    z-index: 1;
    cursor: pointer;
    display: none;
    transition: all 0.3s;
    opacity: 50%;
}

#arrow-up:hover{
    opacity: 100%;
}



/* ---------- ---------- ---------- Video Hintergrund ---------- ---------- ---------- */
#video_background {
    position: fixed;
    top: 0px;
    right: 0px;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    background-image: url(vid/back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}




/* ---------- ---------- ---------- Casinos ---------- ---------- ---------- */
.gradient {
    width: 100%;
    border: double 3px transparent;
    border-radius: 20px;
    background-image: linear-gradient(var(--background-1), var(--background-1)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin: 15px 0;
}

.singlesides{
    margin: auto;
}


/* ---------- Casino Img ---------- */
.casino-img-wrapper{
    background-color: var(--header-footer-bg);
    border-radius: 20px 0 0 20px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.casino-img{
    height: 80%;
}


/* ---------- Casino Texte ---------- */

.casino-txt{
    margin-bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.pri-txt {
    font-size: 30pt;
    line-height: 30pt;
    top: 3px;
    position: relative;
}

.pri-txt-extra {
    font-size: 16pt;
    position: relative;
    bottom: 9pt;
    left: 5pt;
}

.sec-txt {
    font-size: 12pt;
    line-height: 20pt;
}

.ter-txt{
    font-size: 10pt;
    line-height: 16pt;
}

.mediascreen-mar-ter-txt{
    margin: 11px 0 0 0;
}

.center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.center-2 {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}


/* ---------- Casino Button ---------- */
.btn-claim {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    border-style: none;
    background-size: 300% 100%;
    color: var(--btn-color);
    height: 40px;
    font-size: 14pt;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, var(--sec-color-1),var(--sec-color-2), var(--pri-color-1), var(--pri-color-2));

}
.btn-claim:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    scale: 107%;
}

.btn-te {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    border-style: none;
    background-size: 300% 100%;
    color: var(--btn-color);
    /* height: 60px; */
    font-size: 14pt;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #072d5e,#072d5e, #25a2d3, #25a2d3);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.btn-te:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    scale: 107%;
}

.btn-te img{
    margin: 0 10px 0 0;
    width: 40px;
}

.btn-te p{
    margin: 0px;
}

.btn-te div{
    display: flex;
    align-items: center;
}

.btn-dc {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    border-style: none;
    background-size: 300% 100%;
    color: var(--btn-color);
    /* height: 60px; */
    font-size: 14pt;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #5865F2,#5865F2, #8d96f0, #8d96f0);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.btn-dc:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    scale: 107%;
}

.btn-dc img{
    margin: 0 10px 0 0;
    width: 40px;
}

.btn-dc p{
    margin: 0px;
}

.btn-dc div{
    display: flex;
    align-items: center;
}

/* ---------- Casino Extras ---------- */

.topdeal-txt {
    font-size: 11pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    width: 100px;
    text-align: center;
    border-radius: 15px 0;
    color: var(--header-footer-bg);
    position: absolute;
    left: 15px;
}

.topdeal-txt-hide {
    display: none;
}

.nonsticky-txt-1 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--ter-color-1),var(--ter-color-2));
    width: 100px;
    text-align: center;
    border-radius: 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
}

.nonsticky-txt-2 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--ter-color-1),var(--ter-color-2));
    width: 100px;
    text-align: center;
    border-radius: 0 16.5px 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
    top: 30px;
}

.nonsticky-txt-3 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--ter-color-1),var(--ter-color-2));
    width: 100px;
    text-align: center;
    border-radius: 0 16.5px 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
    top: 60px;
}

.nonsticky-txt-hide{
    display: none;
}

.wagerfree-txt-1 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--sec-color-1),var(--sec-color-2));
    width: 100px;
    text-align: center;
    border-radius: 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
}

.wagerfree-txt-2 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--sec-color-1),var(--sec-color-2));
    width: 100px;
    text-align: center;
    border-radius: 0 16.5px 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
    top: 30px;
}

.wagerfree-txt-3 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--sec-color-1),var(--sec-color-2));
    width: 100px;
    text-align: center;
    border-radius: 0 16.5px 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
    top: 60px;
}

.wagerfree-txt-hide{
    display: none;
}

.new-txt {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--sec-color-1),var(--sec-color-2));
    width: 100px;
    text-align: center;
    border-radius: 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
}

.new-txt-2 {
    font-size: 9pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--sec-color-1),var(--sec-color-2));
    width: 100px;
    text-align: center;
    border-radius: 0 16.5px 16.5px 0;
    color: var(--font);
    position: absolute;
    left: 15px;
    top: 30px;
}

.new-txt-hide{
    display: none;
}

/* ---------- TOP DEAL PARAMETER EXTRAS ---------- */
.screen-mar{
    margin: 10px 0;
}

.screen-mar-ter-txt{
    margin: 21px 0 10px 0;
}

.casino-img-wrapper-para{
    border-radius: 20px 20px 0 0;
}

.feedback-flex-para {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.casino-img-para{
    height: 120%;
}

/* ---------- Info ---------- */
.info-btn-all {
    position: absolute;
    right: 26px;
    top: 26px;
    z-index: 1;
    opacity: 50%;
    cursor: pointer;
    width: 20px;
}

.info-all{
    display: none;
    padding: 20px 25px; 
}

.info-all p{
    margin: 0px !important;
}

.positiv-fb{
    color: var(--positiv);
}

.negativ-fb{
    color: var(--negativ);
}

hr{
    background-color: var(--pri-color-2);
    bottom: 20px;
    position: relative;
}

.payments{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.info-padding{
    padding-left: 40px !important;
}

h3{
    color: var(--font);
}

.feedback-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}



/* ---------- ---------- ---------- Filter ---------- ---------- ---------- */
.filter-wrapper {
    display: flex;
    justify-content: space-evenly;
    margin: 30px 0 0 0;
}

.filter-btn{
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    background-size: 300% 100%;
    color: var(--btn-color);
    height: 40px;
    font-size: 14pt;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #ffffff00, #ffffff00, var(--pri-color-1), var(--pri-color-2));
    background-color: #ffffff00;
    border: 2px solid var(--pri-color-1);
    margin-bottom: 15px;
}

.filter-btn:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    border: none;
}

.filter-active{
    background-image: linear-gradient(var(--sec-color-1), var(--sec-color-2));
    border: none;
}



/* ---------- ---------- ---------- Giveaways ---------- ---------- ---------- */
.giveaway-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#giveaway-h1{
    display: block;
}

#giveaway-h1-mobil{
    display: none;
}

#timer{
    text-transform: uppercase;
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font);
    margin-bottom: 16px;
}



/* ---------- ---------- ---------- Footer ---------- ---------- ---------- */
footer{
    margin-top: 50px;
}

footer .container-fluid{
    border-top: double 2px transparent;
    background-image: linear-gradient(var(--header-footer-bg), var(--header-footer-bg)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

footer .container {
    padding-top: 50px;
    padding-bottom: 12px;
}

footer h3{
    color: var(--pri-color-1);
}

footer a{
    color: var(--font);
}

footer a:hover{
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social {
display: flex;
justify-content: space-evenly;
margin: 8px 0;
}

.social-links {
background-color: var(--pri-color-1);
width: 40px;
height: 40px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}

.social-links:hover {
    background-color: var(--sec-color-1); 
}

.social-links-img{
    filter: brightness(0) saturate(100%) invert(5%) sepia(6%) saturate(614%) hue-rotate(349deg) brightness(97%) contrast(88%);
}

footer hr{
background-color: var(--background-1);
opacity: 100 !important;
bottom: 0px !important;
}

.copyright{
font-size: 10px;
}

#copyright-desktop {
display: block;
margin: 0px;
}

#copyright-mobile{
margin: 20px 0 5px 0;
text-align: center;
display: none;
}

#gambleaware-img {
    width: 70%;
}

#gambleaware-img:hover {
    cursor: pointer;
}

#gambleaware-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}


/* ---------- ---------- ---------- Slideshow ---------- ---------- ---------- */
.h2-win{
    text-transform: uppercase;
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-link);
    font-weight: bold;
    margin-bottom: 16px;
}

.carousel-caption {
    background-color: #000000;
}


/* ---------- ---------- ---------- Exclusive ---------- ---------- ---------- */

.screen-mar-exclusive{
    margin: 25px 0;
}

.screen-mar-ter-txt-exclusive{
    margin: 40px 0 10px 0;
}

.btn-claim-exclusive {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    border-style: none;
    background-size: 300% 100%;
    color: var(--btn-color);
    height: 50px;
    font-size: 14pt;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, var(--sec-color-1), var(--sec-color-2), var(--pri-color-1), var(--pri-color-2));
}

.btn-claim-exclusive:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    scale: 107%;
}

.exclusive-txt {
    font-size: 11pt;
    line-height: 16pt;
    background: linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    width: 152px;
    text-align: center;
    border-radius: 15px 0;
    color: var(--header-footer-bg);
    position: absolute;
    left: 15px;
}

.exclusive-txt-hide {
    display: none;
}


.exclusive-mobile{
    display: none;
}

@media (max-width: 768px){
    .exclusive-mobile{
        display: block;
    }

    .exclusive-pc{
        display: none;
    }
}





/* Mediascreen */
@media only screen and (max-width: 991px) {
    
    .casino-img-wrapper{
        border-radius: 20px 20px 0 0;
    }

    .mediascreen-mar{
        margin: 10px 0;
    }

    .mediascreen-mar-ter-txt{
        margin: 21px 0 10px 0;
    }

    .feedback-flex {
        flex-direction: column;
    }

    #copyright-mobile{
        display: block;
    }

    #copyright-desktop {
        display: none;
    }

    .social{
        margin-top: 10px;
    }

    #gambleaware-img {
        width: 30%;
    }

    .casino-img{
        height: 100%;
    }

    .footer-info{
        margin: 10px 0;
    }

    #giveaway-h1{
        display: none;
    }

    #giveaway-h1-mobil{
        display: block;
        margin-bottom: 0px !important;
        text-align: center;
    }

    #timer{
        text-align: center;
    }
    
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

@media (max-width: 411px) {
    .pri-txt-extra{
        bottom: 0;
    }

    .pri-txt{
        display: flex;
        flex-direction: column;
    }

    #Logo{
        height: 75% !important;
    }

    .padding-tb-casino{
        padding-top: calc(120px - 15px + 50px)!important;
    }

    .padding-tb-othersides{
        padding-top: calc(120px + 50px) !important;
    }
}