.fixed-icon-telegram {
    position: fixed;
    top: 20%;
    right: 20px;
    z-index: 1000;
}

.telegram-hover-menu {
    height: 65px;
    width: 65px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, border-radius 0.3s ease;
}

.telegram-hover-menu:hover {
    width: 280px;
    border-radius: 20px 50px 50px 10px;
}


.fixed-icon-telegram img {
    width: 60px;
    height: 60px;
    z-index: 2;
    position: absolute;
    right: 2px;
}

.tg-box {
    opacity: 0;
    background-color: #ffffff;
    transition: opacity 0.3s ease 0.2s;
    width: 75%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    color: black;
    border-radius: 10px;
    padding: 5px;
    display: none;
}
.tg-box img {
    position: relative;
    width: 40px;
    height: auto;
}
.tg-box a{
    text-decoration: none; 
    display: flex;
}
.tg-box a:hover {
    text-decoration: none;
  }
.tg-box a span {
    color: black;
}

.tg-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #5BABDC;
}

.telegram-hover-menu:hover .tg-box {
    opacity: 1;
    display: block;
}

#licensed-by {
    align-items: center;
    justify-content: flex-end;
}

#licensed-by h5 {
    font-size: 0.7rem;
    margin: 0;
    text-align: left;
}

#licensed-by img {
    width: 150px;
}

:root {
    --light-blue: #e3f2fd;
    --primary-blue: #2196F3;
}

.custom-footer {
    background-color: #1a2421;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 50px 0px;
}

.rectangle-logo:first-child {
    margin-left: 0;
}

.rectangle-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.footer-text {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-logo {
    max-width: 220px;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.social-link {
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.gambling-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
}

#licensed-by {
    display: flex;
}

.copyright-mobile {
    display: none;
}

#licensed-by-content p {
    text-align: right;
    width: 70%;
    float: right;
    margin-top: 5px;
    font-size: 0.7rem;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .col-md-6.text-md-end {
        text-align: left !important;
        margin-top: 2rem;
    }

    #licensed-by {
        display: block;
    }

    #licensed-by h5 {
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .copyright {
        display: none;
    }

    .copyright-mobile {
        display: block;
    }

    #licensed-by-content p {
        text-align: left;
        width: 100%;
        float: left;
    }
}

@media (max-width: 480px) {
    .footer-text {
        font-size: 0.7rem;
    }

    .custom-footer {
        font-size: 0.7rem;
    }

    #licensed-by img {
        width: 100px;
    }

    #licensed-by-content p {
        font-size: 0.6rem;
    }

}