/* ============ footer Common ====================================== */
.footer {
    background: linear-gradient(to right, #04495E, #011d25);
    color: white;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 60px;
    width: 100%;
}

.footer .column {
    flex: 1;
    margin: 10px;
    max-width: 35%;
}

.footer a {
    color: NavajoWhite;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: #fff;
}
.footerPageLink{
    margin-right: 20px;
    text-decoration: none;
    cursor: pointer;
}
.footerSocial a {
    width: 25px;
    height: 25px;
    text-decoration: none;
    border: none; /* Entfernt eventuelle R�nder */
    box-shadow: none; /* Entfernt eventuelle Umrandungen */
    outline: none; /* Entfernt eventuelle Umrandungen */
}

.footerPageLink,
.footerPageLink:hover,
.footerSocial a,
.footerSocial a:hover {
    text-decoration: none; /* Ensures no underline */
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    text-align: left; 
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.logo_icon {
    max-width: 30%; 
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons img {
    width: 30px; /* Gr��e der Social Icons */
    margin-right: 10px;
}

.footerNews {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 400px; 
    margin: auto;
}

.footerNews .form-control {
    width: 100%;
    margin-bottom: 10px;
}

.footerNews .btn {
    width: 100%;
}

.footerNews label {
    margin-left: 5px; /* Abstand zum Checkbox-Label */
}
.text-center {
    text-align: center;
    padding: 0px 0;
    margin-bottom: 0; /* Weniger Platz unter dem Copyright */
}

.statistics {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.staticLineContent {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.staticLineText, .staticLineValues {
    flex: 1;
}

.staticLineText span, .staticLineValues span {
    display: block;
    margin-bottom: 5px;
}

.staticLineValues span {
    color: NavajoWhite;
}
.captcha-container {
    border: 1px #d9d6d6 solid;
    border-radius: 5px;
    padding: 2px;
    display: flex;
    justify-content: space-between;
}
#captchCode1 {
    width: 210px;
    height: 70px;
    background: url(../img/captcha.png);
    font-size: 41px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 12px;
    color: #96b3e7;
    cursor: pointer;
}
#captchaInput1 {
    font-size: 30px;
    border: none !important;
    width: 170px;
    padding: 7px 10px;
    outline: none;
    letter-spacing: 7px;
}
.saveSuccessMessage1 {
    position: fixed;
    border: 1px solid green;
    top: 10px;
    right: 20px;
    background: #f3fff3;
    color: #007000;
    padding: 10px 20px;
    border-left: 10px solid green;
    border-radius: 10px;
    font-size: 18px;
    z-index: 100;
}
.inviteSocialContainter{
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: space-between;
}
.inviteSocialItem{
    margin: 0px 4px 10px 4px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 50px;
    color: white;
    text-decoration: none;
}
.inviteSocialItem:hover{
    cursor: pointer;
    filter: brightness(1.3);
}
.inviteSocialItem i{
    font-size: 25px;
}
.premSelContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dddddd;
    padding:10px;
    font-weight: 600;
}
.premSelContainer img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
}
.adsPremStaus{
    border: 1px solid #dddddd;
    border-radius: 100px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
}
.adsPremStaus img{
    width: 18px;
    margin-right: 5px;
}
.statusPrem{
    padding: 3px 10px;
}
.adsPremStaus .statusPrem:not(:first-child){
    border-left: 1px solid #dddddd;
}
.coinText{
    background: #FFF8E1 !important;
    color: #FF6D00 !important;
    border: 1px solid #FFB74D !important;
}
.giftModalLevel{
    font-weight: normal !important;
}
.topGiftCounts{
    border-radius: 5px;
    padding: 2px 7px;
    background-color: #ff4759;
    color:white;
    font-size: 12px;
}
.topGiftCounts img{
    width: 20px;
    height: auto !important;
    margin-right: 2px;
}
.divSign{
    margin: 0px 5px;
    display: inline;
}
.newf{
    width: 400px;
}
.mRow {
    margin: 20px 0px 30px 0px;
}
@media (max-width: 540px) {
    .staticLine{
        display: flex;
        flex-direction: column;
    }
    .footer .column {
        max-width: 100% !important;
    }.frontCat {
        margin-right: 20px;
    }
    .frontCat {
        padding: 20px;
        width: 100%;
       
    }
    .itemImg {
        width: 32px;
        height: 32px;
        object-fit: contain;
        margin-right: 10px;
    }
    .prodItem {
        width: 100%;
    }
    .mRow {
        align-items: normal;
    }
    .divSign{
        display: none;
    }
    .newf {
        width: 100%;
    }
    .footer .container{
        padding-right: 0px !important;
    }
}