.usercard {
    max-height: 50px !important;
    height: 20vh !important;
    margin-left: .2em !important;
    box-shadow: 0 0 7px #e9ebec;
    -webkit-box-shadow: 0 0 7px #000;
    -moz-box-shadow: 0 0 7px #000;
    border-radius: 1px;
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .usercard {
        max-height: 50px !important;
        height: 20vh !important;
        margin-left: .2em !important;
    }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .usercard {
        max-height: 50px !important;
        height: 50vh !important;
        margin-left: .2em !important;
    }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .usercard {
        max-height: 100px !important;
        height: 50vh !important;
        margin-left: .2em !important;
    }
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .usercard {
        max-height: 100px !important;
        height: 50vh !important;
        margin-left: .2em !important;
    }
}

#mark_black {

    position: absolute;
    background-color: rgba(1, 0, 0, 0.3);
    margin-left: 1px;
    width: 100%;
    height: 100%;
}

#mark_red {

    position: absolute;
    background-color: rgba(255, 60, 33, 0.3);
    margin-left: 1px;
    width: 100%;
    height: 100%;
}

#mark_renegades {
    position: absolute;
    background-color: rgba(255, 0, 255, 0.3);
    margin-left: 1px;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.back_to_top {
    position: fixed;
    bottom: 80px;
    right: 40px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #343a40;
    background: #fff !important;
    cursor: pointer;
    border-radius: 2px;
    display: none;
}

.back_to_top:hover {
    background: #fff;
}

.back_to_top-show {
    display: block;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Firefox */
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Webkit */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* IE */
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Opera and prob css3 final iteration */
#img {
    /*border: 1px solid #000;*/
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    /* order: name, direction, duration, iteration-count, timing-function */
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}