﻿:root {
    --font-size: 18px;
}

.cat-details {
    font-size: var(--font-size);
}

.lable-box {
    text-align: right;
    padding: 0px 10px;
}

.lable-text {
    font-size: 15px;
    color: var(--font-color);
}

.input-text {
    font-size: 15px;
    color: var(--font-color);
}

.modal-sizing {
    position: absolute;
    top: 0px;
    width: 100%;
    max-width: unset;
    padding: 0px 150px;
}

.modal-title {
    margin-top: 5px;
}

.modal-body-with-image > div {
    width: 40%;
}

.modal-left-side {
    /*    max-height:unset;
*/
}

.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.lable-box {
    width: 50%;
}

.input-box {
    width: 50%;
}

.text-mode-color {
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0px;
}

.form-control:focus {
    background: white !important;
}

.game-image {
    filter: unset;
    border-radius: 20px;
}

.mega-game-image {
    height: 150px;
    width: 200px !important;
    padding: 10px;
    background-size: cover;
}

.btn-play {
    margin-top: 10px;
    box-shadow: none;
    background-image: url('../images/btnPlay.png');
}

.provider-items {
    width: 200px !important;
}

footer {
    padding: 40px 0px;
}

    footer a {
        color: #898f97;
        font-weight: 700;
        font-size: 14px;
    }

    footer .f-links li {
        display: inline-block;
    }

        footer .f-links li a:after {
            content: " ";
            margin-right: 15px;
            padding-right: 15px;
            border-right: 1px solid #fff;
            display: inline-block;
            height: 10px;
        }

@media screen and (max-width: 1000px) {
    .side-menu-div {
        visibility: hidden;
        clear: both;
        display: none;
    }

    .modal-sizing {
        padding: 0px 150px;
    }
}

@media screen and (max-width: 836px) {
    .modal-sizing {
        padding: 0px 100px;
    }

    .modal-body-with-image > div {
        width: 50%;
    }
}


#scroll-container {
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    font-size: var(--font-size);
    width: 100%;
}

#scroll-text {
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
    --font-size: small;
}

/* for Firefox */
@-moz-keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
    }

    to {
        -moz-transform: translateX(-100%);
    }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from {
        -webkit-transform: translateX(100%);
    }

    to {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
