.ohsol {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

.ohs-popup {
    width: 700px;
    background: #fff;
    position: fixed;
    z-index: 999999;
    left: 50%;
    top: 50%;
    margin-left: -350px;
    margin-top: -250px;
    text-align: center;
}

.ohs-anim {
    transform-origin: center center;
    animation: shake-slow 0.25s ease-in-out infinite;
}

.ohs-popup img {
    max-width: 100%;
    padding: 10px 0;
}

.ohs-header {
    background: linear-gradient(to bottom, #9B0712 , #9B0712, #9B0712, #710000);
    background: -moz-linear-gradient(to bottom, #9B0712 , #9B0712, #9B0712, #710000);
    background: -webkit-linear-gradient(to bottom, #9B0712 , #9B0712, #9B0712, #710000);
    background: -o-linear-gradient(to bottom, #9B0712 , #9B0712, #9B0712, #710000);
    background:  -ms-linear-gradient(to bottom, #9B0712 , #9B0712, #9B0712, #710000);
    text-align: center;
}

.ohs-popup h1 {
    text-align: center;
    margin: 10px 0;
    color: #9B0712;
}

.ohs-popup h4 {
    text-align: center;
    margin: 0 0 10px;
    color: #710000;
}

.ohs-popup h5 {
    margin: 0 0 10px;
    padding: 0px;
}

.ohs-huge-button {
    font-size: 48px;
    background: #9B0712;
    padding: 10px 20px;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    margin: 60px 0 0;
    transition: background 0.5s;
    line-height: 52px;
}

.ohs-huge-button:hover {
    color: #fff;
    background: #710000;
}

.ohs-left-col, .ohs-right-col {
    float: left;
    width: 349px;
    padding: 20px;
    text-align: left;
}

.ohs-left-col  {
    border-right: 1px solid #999;
}

.ohs-popup input[type="text"], .ohs-popup input[type="password"] {
    width: 100%;
    border: 1px solid #9B0712;
    transition: background 0.3s, color 0.3s;
}

.ohs-popup input[type="text"]:focus, .ohs-popup input[type="password"]:focus {
    color: #fff;
    background: #9B0712;
}

.clear {
    clear: both;
}

.ohs-popup input[type="submit"] {
    margin-top: 23px;
    text-transform: uppercase;
}

.ohs-popup input[type="submit"], .ohs-big-button {
    font-size: 16px;
    background: #9B0712;
    padding: 5px 0px;
    color: #fff;
    display: inline-block;
    width: 100%;
    transition: background 0.5s;
    line-height: 24px;
    text-align: center;
    font-weight: 700;
}
.ohs-popup input[type="submit"]:hover, .ohs-big-button:hover {
    background: #710000;
    color: #fff;
}

.ohs-footer {
    margin: 20px 0;
    text-align: center;
}

@media all and (max-width: 700px) {
    .ohs-popup {
        width: 100%;
        height: auto;
        position: absolute;
        left: 0%;
        top: 0%;
        margin-left: 0;
        margin-top: 0;
    }
    .ohs-left-col, .ohs-right-col {
        float: none;
        width: 88%;
        padding: 5%;
    }

    .ohs-popup input[type="submit"], .ohs-big-button, .ohs-popup input[type="text"], .ohs-popup input[type="password"] {
        width: 90%;
        padding: 5px 0;
    }
}


@keyframes shake-slow {
    25% {
        transform: translate(-10px, 0) rotate(0); }
    50% {
        transform: translate(0px, 0) rotate(0); }
    75% {
        transform: translate(10px, 0) rotate(0); }
    0%, 100% {
        transform: translate(0, 0) rotate(0); } }