body {
    margin: 40px;
    background-image: url(../img/1.jpg);
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-color: #202223;*/
}

.texthref {
    color: #FFFFFF;
    text-decoration: none;
    text-shadow: 4px 4px 4px black;
    margin-left: 20px;
}

.texthref:hover {
    color: darkorange;
}

.adrescenter {
    text-align: center;
    text-shadow: 4px 4px 4px black;
}

.typeleft {
    text-align: center;
    text-shadow: 4px 4px 4px black;
}

.gamecolor {
    color: darkorange;
    text-decoration: none;
    text-shadow: 4px 4px 4px black;
}

.title {
    font-size: 50px;
    font-weight: bold;
    font-family: Tahoma;
    color: darkorange;
    text-align: center;
    text-shadow: 4px 4px 4px black;
}

.footer {
    text-align: center;
    font-size: 25px;
    color: darkorange;
    margin-top: 0px;
    text-shadow: 4px 4px 4px black;
}

.footline {
    border-radius: 10.905px;
    background: linear-gradient(180deg, #01F6D9 0%, #024D52 100%);
    box-shadow: 0px 0px 25.11397361755371px 0px rgba(1, 245, 245, 0.80);
    padding: 3px 80px;
}

.btndwn, .btnup {
    font-size: 15px;
    font-weight: bold;
    color: #ebebeb;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 10.905px;
    background: linear-gradient(180deg, #01F6D9 0%, #024D52 100%);
    padding: 20px 30px;
    transition: all 0.6s ease;
}

.btndwn:hover, .btnup:hover {
    box-shadow: 0px 0px 25.11397361755371px 0px rgba(1, 245, 245, 0.80);
    transform: scale(1.1);
    transition: all 0.6s ease;
}

.ico {
    border-radius: 20.905px;
    box-shadow: 0px 0px 25.11397361755371px 0px rgba(1, 245, 245, 0.80);
    padding: 10px 10px;
    transition: all 0.6s ease;
}

.ico:hover {
    background: linear-gradient(180deg, #01F6D9 0%, #024D52 100%);
    transform: scale(1.1);
    transition: all 0.6s ease;
}

.hovertxt {
    transition: all 0.6s ease;
    
}

.hovertxt:hover {
    /*font-size: 18px;*/
    border-radius: 30px;
    transform: scale(1.1);
    transition: all 0.6s ease;
    background: linear-gradient(180deg, #01F6D9 0%, #024D52 100%);
    box-shadow: 0px 0px 25.11397361755371px 0px rgba(1, 245, 245, 0.80);
}

.hovertxtIP:hover {
    /*font-size: 18px;*/
    background: linear-gradient(180deg, #01F6D9 0%, #024D52 100%);
    box-shadow: 0px 0px 25.11397361755371px 0px rgba(1, 245, 245, 0.80);
    /*transform: scale(1.1);*/
    transition: all 0.6s ease;
}

table {
    width: 100%;
    margin-bottom: 18px;
    padding: 0;
    font-size: 13px;
    border: 1px solid #141415;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 15px;
    background-color: #37393c;
    font-family: Helvetica, Arial;
    font-size: 16px;
    color: white;
}

table th, table td {
    padding: 10px 10px 9px;
    line-height: 18px;
    text-align: left;
}

table th {
    padding-top: 20px;
    padding-bottom: 25px;
    font-weight: bold;
    vertical-align: middle;
    color: darkorange;
    text-align: center;
    text-decoration: none;
    text-shadow: 4px 4px 4px black;
}

table td {
    vertical-align: top;
    border-top: 1px solid #ddd;
}

table th+th, table td+td, table th+td {
    border-left: 1px solid #ddd;
}

table thead tr:first-child th:first-child, table tbody tr:first-child td:first-child {
    border-radius: 5px 0 0 0;
}

table thead tr:first-child th:last-child, table tbody tr:first-child td:last-child {
    border-radius: 0 5px 0 0;
}

table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

table tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

table tbody tr:nth-child(odd) td {
    background-color: #323841;
}

table tbody tr:hover td {
    background-color: #202223;
    cursor: pointer;
}

/* Preloader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #363434;
    z-index: 1001;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #337ab7;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    body {
        margin: 20px;
    }

    .title {
        font-size: 30px;
    }

    .footer {
        font-size: 18px;
    }

    .footline {
        padding: 3px 40px;
    }

    .btndwn, .btnup {
        font-size: 12px;
        padding: 15px 20px;
    }

    .btndwn:hover, .btnup:hover {
        padding: 20px 25px;
    }

    .ico {
        padding: 5px 5px;
    }

    .ico:hover {
        padding: 10px 10px;
    }

    table th, table td {
        padding: 8px 5px;
    }

    .preloader__row {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }

    .preloader__item {
        width: 25px;
        height: 25px;
    }
}
