/* --- White/Black Mode --- */
/* To apply dark mode in body */
body{
    overflow-x:hidden;
}
body.dark {
    background-color: #000;
}

.dark .table-striped {
    background: #efefef;
}

.dark footer {
    background: #000;
}

    .dark footer h5 {
        color: #fff;
    }

.dark h2 {
    color: #fff;
}

.dark .para {
    color: #fff;
}
@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.blink {
    color:#fff;
    background:#ff0000;
    text-transform:uppercase;
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}
@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.blink1 {
    color: #ff0000;
    text-transform: uppercase;
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}
.screen {
    display: inline-block;
    text-align: center;
    padding: 0px;
    width: 100%;
    text-align: center;
    color: #000;
}

    .screen a {
        text-decoration: none;
        cursor: pointer;
        color: #000;
        font-size: .9em;
        padding: 3px 5px;
        display:inline-block;
    }

.wb-back {
    background: #555;
}

.cm {
    text-align: center;
    padding: 10px;
    background: #fff;
}

    .cm img {
        width: 35%;
        height: auto;
        padding: 2px;
        border: 2px solid #ffa623;
        border-radius: 0px 30px;
    }

    .cm h4 {
        text-align: center;
        font-size: 1.2em;
        color: #000;
        font-weight: bold;
        margin: auto;
        padding: 10px 0px;
    }

    .cm p {
        text-align: center;
        margin-bottom: 0px;
        padding: 0px;
        font-size: 1.1em;
    }
/* To apply dark mode in p tag */
body.dark p {
    color: #fff;
}

.para {
    color: #000;
}

h2 {
    color: #000;
}

.table-striped {
    width: 100%;
    padding: 5px;
    border: 0px solid #ddd;
}

    .table-striped th {
        padding: 10px;
        text-align: left;
        font-weight: normal;
        font-size: 1em;
        border: 1px solid #f1f1f1;
        color: #fff;
        background: #3d404f;
    }

    .table-striped td {
        padding: 15px 10px;
        text-align: left;
        font-size: 1em;
        color: #333;
        border: 1px solid #f1f1f1;
    }

    .table-striped a {
        text-decoration: none;
    }

        .table-striped a:hover {
            text-decoration: none;
        }

.div-pad {
    padding: 30px 0px;
}

footer {
    margin: auto;
    font-size: 10px;
    color: white;
}

    footer a {
        color: gray;
        padding: 6px;
        transition: .8s;
        font-weight: bold;
        font-size: 12px;
        text-decoration: none;
    }

        footer a:hover {
            color: #fca604;
            text-decoration: none;
            transition: .8s;
        }

    footer img {
        opacity: 0.9;
    }

        footer img:hover {
            opacity: 1;
        }

    footer a:visited {
        color: gray;
    }
@media (max-width: 768px) {
.screen a{
    font-size:.9em;
}

}