@-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 i*/

@keyframes type {
    from {
        opacity: 0;
    }
}
@keyframes type2 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 50%;
    }
    50% {
        opacity: 50%;
    }
    75% {
        opacity: 50%;
    }
    100% {
        opacity: 100%;
    }
}
a {
    color: #820000;
}
* {
    font-family: tahoma;
}
h1.title-block {
    margin: 0;
    font-family: 'GoodVibrationsScript-Regular';
    color: #c9aa5d;
    font-size: 60px;
    padding: 8% 0 2%;
    text-align: center;
}
h1.title-block2 {
    margin: 0;
    font-family: 'GoodVibrationsScript-Regular';
    color: #c9aa5d;
    font-size: 60px;
    padding: 4% 0 2%;
    text-align: center;
}
.disclaimer {
    width: 90%;
    margin: auto;
    background-color: #8f1d1d;
    color: white;
    text-align: left;
    padding: 20px;
}
.disclaimer h1 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
}
.button-set a,
.button-set button {
    font-family: 'GoodVibrationsScript-Regular';
    text-decoration: none;
}
.button-set {
    text-align: center;
    display: inline-flex;
    font-size: 20px;
    margin-top: 25px;
    width: 100%;
}
.gold-button {
    width: 145px;
    display: block;
    text-align: center;
    background-color: #c9aa5d;
    padding: 5px 0;
    color: black;
    margin: auto;
    font-size: 20px;
    border: 0;
    position: relative;
}
.gold-button-wide {
    width: 320px;
    display: block;
    text-align: center;
    background-color: #c9aa5d;
    padding: 15px 0;
    color: black;
    margin: auto;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    position: relative;
}
.gold-button:hover {
    cursor: pointer;
}
.red-button {
    width: 145px;
    display: block;
    text-align: center;
    background-color: #820000;
    padding: 5px 0;
    color: white;
    margin: auto;
    margin-left: 50px;
    font-size: 20px;
    border: 0;
}
.red-button-wide {
    width: 320px;
    display: block;
    text-align: center;
    background-color: #820000;
    padding: 15px 0;
    color: white;
    margin: auto;
    margin-left: 15px;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    position: relative;
}
.red-button:hover {
    cursor: pointer;
}
h1.first-page {
    color: white;
    font-family: serif;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 50px;
    animation: type 8s ease-in-out;
    -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;
}
.secret-title {
    font-family: 'GoodVibrationsScript-Regular';
    text-transform: capitalize;
    letter-spacing: 4px;
    color: #c9aa5d;
    font-size: 50px;
    background: url('images/border-bot.png') no-repeat;
    background-position: 87% 140%;
    background-size: 100%;
    padding-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 30em;
    margin: 10px 0 0 10px;
    animation: type 8s ease-in-out;
    -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;
}
.secret-title:nth-child(2) {
    animation: type2 8s ease-in-out;
}
.container {
    width: 50%;
    margin: auto;
    padding: 15% 0;
    background: url('images/body.png')no-repeat;
    background-size: 49%;
    background-position: 50% 130%;
    animation: type 4s ease-in-out;
    -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;
}
.fancybox-skin {
    position: relative;
    background: rgba(249, 249, 249, 0);
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.bg1 {
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    -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 */
}
.bg2 {
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    -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 3s infinite ease-in-out;
    /* Firefox */
    
    -webkit-animation: blink normal 3s infinite ease-in-out;
    /* Webkit */
    
    -ms-animation: blink normal 3s infinite ease-in-out;
    /* IE */
    
    animation: blink normal 3s infinite ease-in-out;
    /* Opera and prob css3 final iteration */
}
.bg3 {
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    -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 5s infinite ease-in-out;
    /* Firefox */
    
    -webkit-animation: blink normal 5s infinite ease-in-out;
    /* Webkit */
    
    -ms-animation: blink normal 5s infinite ease-in-out;
    /* IE */
    
    animation: blink normal 5s infinite ease-in-out;
    /* Opera and prob css3 final iteration */
}
.bg4 {
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    -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 6s infinite ease-in-out;
    /* Firefox */
    
    -webkit-animation: blink normal 6s infinite ease-in-out;
    /* Webkit */
    
    -ms-animation: blink normal 6s infinite ease-in-out;
    /* IE */
    
    animation: blink normal 6s infinite ease-in-out;
    /* Opera and prob css3 final iteration */
}
.warning-letter p {
    font-size: 15px;
}
.warning-letter p,
.warning-letter h1 {
    font-family: tahoma;
}
.background-apply p {
    color: white;
    font-size: 15px;
    margin: 0 0 5px;
}
.apply-html {
    background-color: #000;
    position: relative;
    animation: type 3s ease-in-out;
    -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;
}
.background-apply {
    width: 45%;
    margin: auto;
    text-align: center;
}
.apply-img {
    width: 19%;
    float: left;
    margin-left: 7%;
}
.apply-img2 {
    width: 19%;
    margin-left: -40px;
    float: left;
}
.apply-img3 {
    width: 21%;
    margin-left: -30px;
    float: right;
    margin-right: 7%;
}
.apply-img4 {
    width: 16%;
    float: right;
    margin-top: 14px;
}
a.zoom img:hover {
    transform: scale(1.1);
}
a.zoom img {
    transition: all .5s;
    animation: type 1s ease-in-out;
    -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;
}
a.zoom {
    position: relative;
}
.title-signup {
    display: none;
    position: absolute;
    top: -50px;
    padding: 5px 10px;
    left: -10px;
    width: 100%;
    font-size: 13px!important;
    background-color: rgba(0, 0, 0, 0.55);
}
.title-signin {
    display: none;
    position: absolute;
    top: -50px;
    padding: 5px 10px;
    left: -10px;
    width: 100%;
    font-size: 13px!important;
    background-color: rgba(0, 0, 0, 0.55);
}
.gold-button:hover .title-signup,
.gold-button:hover .title-signin {
    display: block;
}
.sign-design {
    width: 65%;
}
.footer {
    margin-top: 35px;
}
input, select  {
    padding: 5px 10px;
    margin: 10px 0;
    border-radius: 4px;
    width: 100%;
    background-color: #000;
    color: #fff;
    border-color: #6D6D6D;
    border-bottom-color: #292929;
    border-right-color: #292929;
}
.btn-submit {
    width: 121px;
    background-color: #c9aa5d;
    padding: 5px 0;
    color: black;
    font-size: 20px;
    border: 0;
    font-family: 'GoodVibrationsScript-Regular';
    margin: 10px 10px 10px 0;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
	margin: 20px auto 0;
}
.sign-in {
    background-color: #000;
    padding: 4% 9%;
    width: 50%;
    margin: auto;
    text-align: center;
}
.sign-in h1 {
    color: white;
    font-weight: normal;
    font-size: 20px;
}
.firstname,
.lastname,
.security {
    width: 200px;
}
.forgot-pass {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 12px;
}
.sign-in form {
    color: white;
}
.required {
    color: red;
}
.sign-up {
    background-color: #000;
    padding: 2%;
    min-height: 445px;
}
.sign-up h1 {
    color: white;
    font-family: serif;
    font-weight: normal;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
}
.sign-up p {
    color: white;
    font-size: 15px;
}
.sign-up i.secret-title2 {
    font-family: 'GoodVibrationsScript-Regular';
    text-transform: capitalize;
    letter-spacing: 4px;
    color: #c9aa5d;
    font-size: 24px;
}
.signup-page {
    width: 50%;
    margin: auto;
    padding: 17.5% 0;
    background: url('images/body.png')no-repeat;
    background-size: 49%;
    background-position: 50% 130%;
    animation: type 4s ease-in-out;
    -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;
}
.guestpass h1 {
    font-size: 20px;
    color: white;
    font-weight: normal;
	text-align: center;
}
.guestpass {
    display: block;
    margin: auto;
    background-color: #000;
    padding: 4% 10%;
    overflow-y: hidden;
}
.guestpass form {
    color: white;
    text-align: left;
}
.gentlemensignup h1 {
    font-size: 20px;
    color: white;
    font-weight: normal;
	text-align: center;
}
.gentlemensignup {
    display: block;
    margin: auto;
    background-color: #000;
    padding: 4% 10%;
    overflow-y: hidden;
}
.gentlemensignup form {
    color: white;
    text-align: left;
}
.sign-up-women h1 {
    font-size: 20px;
    color: white;
    font-weight: normal;
	text-align: center;
}
.sign-up-women {
    display: block;
    margin: auto;
    background-color: #000;
    padding: 4% 10%;
    overflow-y: hidden;
    width: 51%;
}
.sign-up-women form {
    color: white;
    text-align: left;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0);
    border-radius: 0;
    background-color: rgb(0, 0, 0);
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}
.guestpass form h3 {
    font-weight: normal;
    margin-bottom: 0;
}
.num3 {
    width: 20px;
    margin-right: 5px;
    padding: 5px 9px;
}
.num4 {
    width: 30px;
    padding: 5px 9px;
}
.footer p,
.footer a {
    color: white;
    font-size: 14px;
    margin: 0;
}
.seperate{
    margin: 30px 0;
}
.security-code p{
    margin: 0;
    background-color: #c9aa5d;
    padding: 10px;
	color: white;
}
.security-code-content{
    background-color: white;
    padding: 15px 20px;
}
.security-code-content p{
    color: black;
    background-color: white;
	font-size: 13px;
}
a.security-link {
    color: black;
}
a.security-link {
    color: black;
}
a.security-link:hover div.security-code {
    display: block;
}
div.security-code {
    display: none;
    position: absolute;
    width: 400px;
}
input.num3 {
    width: 23px;
}
input.num4 {
    width: 30px;
}
input:focus, select:focus {
    outline-color: #c9aa5d;
}
.fileUpload.btn.btn-primary span{
    margin: 0;
    padding-top: 18px;
    display: block;
}
.fileUpload.btn.btn-primary input{
    padding: 0;
}
.id-policy {
    background-color: #000;
    color: white;
    padding: 30px;
}
.id-policy p {
    text-align: left;
}
.id-policy img {
	width: 100%;
}
.id-policy h1 {
    font-size: 24px;
    text-align: left;
}
.double-button .btn-submit {
    display: inline-block;
    margin: 20px 40px 0;
}