/* INSTRUCTIONS + KEY*/
/**  | To replace the bold font, find "CircularStdBlack" and replace with the relevant font family name.*/
/**  | To replace the normal font, find "CircularStdBook" and replace with the relevant font family name.*/
/**  | To replace the submit button color, find "background:#000000!important;" and replace 000000 with the relevant hex value.*/
/**  | To replace the submit button hover color, find "background:#FFFFFF!important;" and replace FFFFFF with the relevant hex value.*/
/**  | To replace the white font color, find "color:#FFFFFF" and replace FFFFFF with the relevant hex value.*/
/**  | To replace the black font color, find "color: #000000!important;" and replace 0000000 with the relevant hex value.*/
/**  | To replace the background image, find "https://d3m889aznlr23d.cloudfront.net/img/events/458706345/assets/75a85220.paramount-bg-2000x12001.png" with the image URL.*/
/**  | To replace the logo image, find "http://d3m889aznlr23d.cloudfront.net/img/events/458706345/assets/51582807.pglobal-brandmark-wordmark-white_sm.png" and replace with the logo URL.*/
/**  | To replace the down arrow color, find "linear-gradient(45deg, transparent 50%, black 50%)" and replace all instances of black on that line with the hex value.*/



/********************************************************************************************/
/************************************* FONT FAMILY CODE *************************************/
/********************************************************************************************/

@font-face {
    font-family: "ParamountVistaSansSemiCondensedBold";
    src:    url("https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/id/458/458667584/fonts/ParamountVistaSans-SemiCondensedBold.ttf") format("ttf"), 
            url("https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/id/458/458667584/fonts/ParamountVistaSans-SemiCondensedBold.eot") format("eot"), 
            url("https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/id/458/458667584/fonts/ParamountVistaSans-SemiCondensedBold.woff") format("woff"),
            url("https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/id/458/458667584/fonts/ParamountVistaSans-SemiCondensedBold.svg") format("svg");
}


.private-content h1, 
.private-content #access-code-error,
.private-content .form-holder #access-code-form input,
.private-content form input, 
.private-content .form-holder #access-code-form .login-button {
    font-family:'ParamountVistaSansSemiCondensedBold'!important;
    float:left;
}

.private-content h1 small,
.private-content .form-holder #access-code-form h4,
.private-content select,
.private-content .form-holder #access-code-form input::placeholder {
    font-family:'PeakSans_Regular'!important;
}

/********************************************************************************************/
/************************************** FONT COLOR CODE *************************************/
/********************************************************************************************/

 /*Page Title */
.private-content h1 {
    color:#ffffff;
}

 /*"is a private event" text */
.private-content h1 small{
    color:#ffffff;
}

 /*"validate DOB" text */
.private-content .form-holder #access-code-form h4 {
    color:#0064FF;
}

 /*Error Code */
.private-content #access-code-error {
    color:#0064FF;
    text-align:left;
    float:left;
}

 /*Form Input Boxes */
.private-content .form-holder #access-code-form input,
select{
    color: #ffffff!important;
}

 /*Submit Button */
.private-content .form-holder #access-code-form input[type="submit"],
.private-content .form-holder #access-code-form .login-button {
    color:#ffffff!important;
}

 /*Submit Button Hover */
.private-content .form-holder #access-code-form input[type="submit"]:hover,
.private-content .form-holder #access-code-form .login-button:hover {
    color: #ffffff!important;
}

 /*Placeholder copy for the input field */
.private-content .form-holder #access-code-form input::placeholder {
    color: #ffffff!important;
    text-align:left;
}

/********************************************************************************************/
/******************************** FONT SIZE/STYLE CODE **************************************/
/********************************************************************************************/

 /*Page Title */
.private-content h1 {
    font-size:6rem;
    text-align:left;
    float:left;
    letter-spacing: 0;
    line-height: 0.9;
}

 /*"is a private event" text*/
.private-content h1 small{
    font-size:1.125rem;
    text-decoration: none;
    letter-spacing: 0;
    padding: 1rem 0 0 0;
}

 /*"validate DOB" text */
.private-content .form-holder #access-code-form h4 {
    font-size:1.125rem;
}

 /*Country Dropdown */
.private-content .form-holder #access-code-form select {
    font-size:1rem!important;
}

 /*Form Input Boxes */
.private-content .form-holder #access-code-form input {
    font-size:1.25rem!important;
}

 /*Placeholder copy for the input field for all validation types */
.private-content .form-holder #access-code-form input::placeholder {
    font-size:1.25rem!important;
}

 /*Submit button */
.private-content .form-holder #access-code-form input[type="submit"] {
    font-size:1.25rem!important;
}


/********************************************************************************************/
/******************************* BACKGROUNDS AND LOGOS CODE *********************************/
/********************************************************************************************/

 /*Background Image */
 /*delete background property and change background color property to the desired hex value */
body.private {
    background:url('http://d3m889aznlr23d.cloudfront.net/img/events/458706345/assets/112676b4.paramount-bg-2000x12001.png')!important;
    background-color:#0C133B!important;
}

 /*Optional Background Image Color Mask */
 /*change background color to be on brand if desired, and mix-blend-mode to screen if you are using a light color 
body.private:before {
    background-color: rgba(12, 19, 59, 0.5);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    width:50%;
}*/

 /*Logo */
 /*resize before uploading to maintain sizing control */
.private-content h1:before {
    content:url('https://d3m889aznlr23d.cloudfront.net/img/events/id/458/458667584/assets/ca1bbd8e33b32d0267f38dde34d9d5c0.ParaSkyCorp25_BrandMark_Wordmark_White_RGB.png');
    background-size:9.125rem;
    float:left;
    width:50%;
}

 /*Country Select Dropdown Arrow */
.private-content .form-holder #access-code-form select {
    background-image: linear-gradient(45deg, transparent 50%, black 50%),
                    linear-gradient(135deg, black 50%, transparent 50%);
}

 /*Form Input Boxes */
.private-content .form-holder #access-code-form input {
    background: #0064FF!important;
    color: #FFFFFF!important;
}

 /*Hover and focus states for all input fields  */
.private-content .form-holder #access-code-form input:focus,
.private-content .form-holder #access-code-form input:hover {
    background: rgba(0, 0, 0, 0)!important;
}

 /*Submit Button */
.private-content .form-holder #access-code-form input[type="submit"],
.private-content .form-holder #access-code-form .login-button {
    background:rgba(0, 0, 0, .0)!important;
}

 /*Submit Button Hover */
.private-content .form-holder #access-code-form input[type="submit"]:hover,
.private-content .form-holder #access-code-form .login-button:hover {
    background:rgba(0, 0, 0, .0)!important;
}

/********************************************************************************************/
/************************************** BORDERS CODE ****************************************/
/********************************************************************************************/

 /*Form Input Boxes and Country Dropdown */
.private-content .form-holder #access-code-form input,
.private-content .form-holder #access-code-form select{
    border-color: rgba(0, 0, 0, 0)!important;
    border-width: 3px!important;
    border-style: solid!important;
    transition: border-color .15s ease-in-out!important;
}

 /*Hover and focus states for all input fields and country dropdown */
.private-content .form-holder #access-code-form input:focus,
.private-content .form-holder #access-code-form input:hover,
.private-content .form-holder #access-code-form select:focus,
.private-content .form-holder #access-code-form select:hover{
    border-color: rgba(0, 0, 0, 0.0)!important;
}

 /*Submit Button */
.private-content .form-holder #access-code-form input[type="submit"],
.private-content .form-holder #access-code-form .login-button {
    border-bottom: 3px solid #ffffff!important;
    border-left: 0px!important;
    border-right: 0px!important;
    border-top: 0px!important;
}

 /*Submit Button Hover */
.private-content .form-holder #access-code-form input[type="submit"]:hover,
.private-content .form-holder #access-code-form .login-button:hover {
    border-bottom: 3px solid #0064FF!important;
    border-left: 0px!important;
    border-right: 0px!important;
    border-top: 0px!important;
    color:#FFFFFF!important;
}

/*******************************************************************************************************************************************/
/*******************************************************************************************************************************************/
/**************************************** STRUCTURAL CODE **********************************************************************************/
/*******************************************************************************************************************************************/
/*******************************************************************************************************************************************/

 /*Privacy Page Background 👇 */
body.private {
    background-repeat: no-repeat!important;
    background-position: right bottom!important;
    background-attachment: fixed!important;
    -webkit-background-size:cover!important;
    -moz-background-size:cover!important;
    -o-background-size:cover!important;
    background-size:cover!important;
    top:0;
    z-index:1;
    width:100%;
    height:100%;
}
 /*Privacy Page Contents 👇 */
.private-content {
    vertical-align:middle;
    top:50%;
    width:60%;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    position:absolute;
    padding:0 5%;
}
 /*Page Title 👇 */
.private-content h1 {
    display:inline-block;
    text-shadow:none;
    padding:0;
    margin-bottom:4rem;
}
 /*Logo 👇 */
 /*resize before uploading to maintain sizing control */
.private-content h1:before {
    background-size:9.125rem;
    display:block;
    float:left!important;
    padding-bottom:4rem;
    margin:auto auto 2rem auto;
    width:100%!important;
}
 /*Subtitle 👇 */
.private-content h1 small,
.private-content .form-holder #access-code-form h4 {
    text-shadow:none;
    text-transform:none;
    letter-spacing:0;
    margin:0;
    line-height:1.25;
    display:block;
}
 /*Privacy Page Form 👇 */
form {
    width:100%;
    margin:0 auto;
    float:left;
}
.private-content .form-holder {
    vertical-align:bottom;
    margin:0 auto 2rem 0;
    width:100%;
    max-width:50rem;
    display:inline-block;
    float:left;
}
 /*Error Code 👇 */
.private-content #access-code-error {
    margin-top:1rem;
    float:left;
}

 /*SSO Button*/
.private-content .form-holder #access-code-form .login-button, 
.private-content .form-holder #access-code-form input {
    background:rgba(0, 0, 0, .0)!important;
    font-family: 'ParamountVistaSansSemiCondensedBold'!important;
    font-size: 2rem;
    line-height: 1.2;
    float: left;
    transition: all linear 0.3s!important;
    padding: 0 0 .25rem 0;
    border-radius: 0 !important;
    border-bottom: 3px solid #FFFFFF!important;
    border-left: 0px!important;
    border-right: 0px!important;
    border-top: 0px!important;
}

.private-content .form-holder #access-code-form .login-button:hover, 
.private-content .form-holder #access-code-form input:hover {
    border-bottom: 3px solid #0064FF!important;
    color: #FFFFFF!important;
}

 /*AGE VALIDATION SECTION 👇 */
 /*Age Validation Form Input */
.private-content .form-holder #access-code-form input {
    letter-spacing:0;
    width:100%;
    padding:1.5rem 1rem;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    float:left;
}

 /*Age Validation Button */
.private-content .form-holder #access-code-form #age-restricted-submit {
    position:inherit;
    width:auto;
    max-width:14rem;
    height:100%;
    padding:1.5rem 2rem;
    float:left;
    margin-top:1rem!important;
    margin-bottom:2rem;
    float:left;
}

select {
    background:#FFFFFF;
    border:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -webkit-border-radius:0px;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}

select:focus {
    outline:0;
}

.private-content .form-holder #access-code-form select {
    background-position:calc(100% - 20px) 1.75rem, calc(100% - 13px) 1.75rem;
    background-size:7px 7px;
    background-repeat:no-repeat;
    width:100%;
    max-width:15rem;
    padding:1.5rem 1rem;
    margin-top:1rem;
    float:left;
}

 /*Container surrounding Age Validation Form */
.age-input-wrap {
    display:inline-block;
    margin:1rem 0 2rem 0;
}

.age-input-wrap input {
    max-width:6rem;
}

 /*EMAIL VALIDATION SECTION 👇 */
 /*Privacy Page Form Input for Email Validation */
form input,
.private-content .form-holder #access-code-form .login-button {
    margin:0!important;
    letter-spacing:0!important;
    border-radius:0!important;
}

.private-content .form-holder #access-code-form #access-code-input.email_access,
.private-content .form-holder #access-code-form input[name=access_code]{
    padding:1.5rem 1rem;
    float:left;
    width:68%;
    height:100%;
    margin-right:2%;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    text-align:left;
} 

 /*Privacy Page Button for Email and Password Validation 👇 */
.private-content .form-holder #access-code-form input.form-submit.normal {
    position:inherit;
    width:auto;
    height:100%;
    padding:0rem 0rem;
    margin-top:1.5rem!important;
    margin-left:1.5rem!important;
    float:left;
    margin-left:2%
}


 /*Media Queries for tablet and mobile devices 👇 */
@media screen and (max-width: 800px) {
    body.private {overflow:scroll;}
    .private-content h1 {font-size:3rem;}
    .private-content h1:before {margin:auto;}
    .private-content .form-holder {max-width:35rem!important;}
    input[type=text] {-webkit-appearance: none; -moz-appearance: none; appearance: none;}
}
@media screen and (max-width: 667px) {
    .private-content {padding-bottom:0.5rem; top:50%;}
    body.private:before {width: 75%;}
    .private-content h1 {font-size:2rem;}
    .private-content {top:35%; width:75%;}
    .private-content .form-holder {max-width:30rem!important;}
    .private-content .form-holder #access-code-form input[name=email_access] {padding:1rem;}
    .private-content .form-holder #access-code-form input[name=access_code] {padding:1rem;}
    .private-content .form-holder #access-code-form input.form-submit.normal {padding:1rem;}
}
@media screen and (max-width: 550px) {
    .private-content {position:absolute;}
    .private-content {top:35%; width:100%;}
    body.private:before {width:100%; height:75%;}
    body.private {background-position: right center!important;}
    .private-content h1 {margin-bottom:2rem;}
    .private-content h1:before {padding-bottom:2rem;}
    .private-content .form-holder {max-width:20rem!important;}
    .private-content .form-holder #access-code-form #access-code-input.email_access, .private-content .form-holder #access-code-form input[name=access_code] {width:100%; margin-bottom:1rem!important;}
    .private-content .form-holder #access-code-form input.form-submit.normal {width:auto; float:left; padding:0rem 0rem; margin-top:1rem!important; margin-left:0rem!important;}
}