﻿/* ============================================================
  Regular CSS
============================================================ */
html {
	height: 100%;
	overflow: hidden;
}
body {
    background-color: rgb(50, 48, 47);
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #ffffff;
    margin: 0;
    padding: 0;
}
a {
	color: #fff;
	text-decoration: underline;
}
a:hover {
	color: #e32526;
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
h1 {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 80px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 0.8em;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align: center;
}
h2 {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 60px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.4em;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align: center;
}
h3 {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align:center;
}
h4 {
	font-family: 'Futura Cond', sans-serif;
	font-size: 19px;
	font-weight: 300;
	line-height: 1.3em;
	margin-bottom: 0;
	letter-spacing: 5px
}
hr {
	border: none;
	color: rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.5);
	height: 1px;
	margin-top: 35px;
	margin-bottom: 35px;
}
img {
	border: none;
	max-width: 100%;
	/* just in case, to force correct aspet ratio */
	height: auto !important;
	margin: 0;
	vertical-align: middle;
}
input[type="email"] {
	background: rgba(0, 0, 0, 0.5);
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: large;
	border-radius: 2px;
	color: #fff;
	height: 60px;
	border: 1px solid #fff;
	-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
}
input[type="password"] {
	background: rgba(0, 0, 0, 0.5);
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: large;
	border-radius: 2px;
	color: #fff;
	height: 60px;
	border: 1px solid #fff;
	-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
}
input[type="password"]:placeholder-shown {
 text-transform: uppercase;
}
input[type="text"] {
	background: rgba(0, 0, 0, 0.5);
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: large;
	border-radius: 2px;
	color: #fff;
	height: 60px;
	border: 1px solid #fff;
	-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
}
input[type="checkbox"] {
	-webkit-appearance: checkbox !important;
	-moz-appearance: checkbox !important;
	-ms-appearance: checkbox !important;
	-o-appearance: checkbox !important;
	appearance: checkbox !important;
}
p {
	margin: 16px auto;
	width: 600px;
}
select {
	background: rgba(0, 0, 0, 0.5);
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: large;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 7px;
	color: #fff!important;
	height: 60px;
	border: 1px solid #fff;
}
select:active, select:focus {
	background: rgba(0, 0, 0, 0.5); /* to prevent Edge/IE extra background padding */
}
select option[value=""] {
	color: rgba(255, 255, 255, 1) !important;
}
select option {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: large;
	background: #00a651;
	padding: 7px;
	color: #fff;
}
.select-selected {
	color: #fff!important;
}
textarea {
	background: rgba(0, 0, 0, 0.5);
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: large;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 7px;
	color: #fff;
	border: 1px solid #fff;
}
table.center {
	width: 55%;
	margin: 0 auto;
}
::selection {
	background: #fff;
	color: #008a39;
}
::-moz-selection {
 background: #fff;
 color: #e32526;
}
::placeholder {
 color: rgba(255, 255, 255, 0.5);
}
::-webkit-input-placeholder {
 color: rgba(255, 255, 255, 0.5);
}
::-moz-placeholder {
 color: rgba(255, 255, 255, 0.5);
}
:-ms-input-placeholder {
 color: rgba(255, 255, 255, 0.5) !important;
}
#contentbody {
	width: 800px;
	margin: 0 auto;
	padding: 50px 50px 50px;
	font-size: large;
	line-height: 1.5em;		
}
#footer {
    background-color: #32302F;
    background-image: url(/images/bg-btm.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 200px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0;
}

    #footer .logo {
        width: 1100px;
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
        padding: 0px;
        text-align: right;
    }
#header {
	width: 1000px;
	margin: 0 auto;
	text-align: center;
	padding: 25px 0 25px;
}
#selects {
	margin-bottom: 18px;
}
#selects select {
	width: 30%;
	color: #fff;
}
#selects select.dm {
	margin-right: 4%;
}
#selects select.y {
	margin-right: 0;
}
.text-danger {
    color: #ec4a32;
}
.huge {
	font-size: 36px;
}
.largetxt {
	font-size: 22px;
}
.hiddenfile {
	width: 0px;
	height: 0px;
	overflow: hidden;
}
.highlight {
	color: #000;
	font-weight: bold;
}
.enjoy_responsibly {
	padding-bottom: 50px;
}
.error {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	color: #ed1c24;
	background-color: #fff;
	border-radius: 2px;
	width: 90%;
	font-size: medium;
	padding: 5%;
	text-align: center;
}
.validation-error {
	color: #ed1c24;
	font-size: large;
	padding-top: 10px;
}
.left {
	margin-right: 15px;
}
.right {
	margin-right: 0;
}
.no_u18s {
	width: 700px;
	margin: 0 auto;
	padding: 0 50px;
	text-align: right;
}

#agecheckblock {
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
}

#agecheckcountry {
    position: relative;
    max-width: 100%;
    margin: 0 0 12px 0;
}

    #agecheckcountry select {
        position: relative;
        width: 266px;
        margin: 0 3px;
        text-align: left;
        text-transform: uppercase;
        padding: 0 43px 0 12px;
    }

#agecheckcountry.captureform select  {
	width: 224px !important;
	 margin: 0;	
    }


#agecheck {
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    margin: 0 0 12px 0;
}

    #agecheck input {
        position: relative;
        width: 100px;
        margin-left: -3px;
        -moz-appearance: textfield;
        -o-appearance: textfield;
        -webkit-appearance: textfield;
        appearance: textfield;
        box-sizing: border-box;
        line-height: 41px;
        display: inline-block;
        padding: 0 0.8em 0 0.8em;
        text-align: center;
    }

    #agecheck.captureform input  {
	width: 75px !important;
    }

    #agecheck input:focus {
        color: #000;
        background-color: #fff;
    }   


.notforsale {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	color: #000;
	background-color: #FFF;
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5em;
	padding-top: 5px;
	text-align: center;
}
.shortpage_padding {
	padding: 75px 0!important;
}
.smalltxt {
	font-size: small;
	line-height: 1.5em;
}
.table_padding {
	table-layout: fixed;
}
.table_padding input[type="email"] {
	width: 100%;
}
.table_padding input[type="password"] {
	width: 100%;
}
.table_padding input[type="text"] {
	width: 100%;
}
.table_padding select {
	width: 100%;
}
.table_padding textarea {
	width: 100%;
	box-sizing: border-box;
}
.table_padding td {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
}
.td_padding {
	padding-top: 15px;
	color: #000;
}
.threecolumns {
	font-size: 0;
}
.threecolumns div {
	font-size: 14px; /*reset font size*/
	display: inline-block;
	width: 30%;
	-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.threecolumns div.centre {
	padding: 0 2.5%;
	width: 40%;
	vertical-align: bottom;
}

.twocolumns {
    font-size: 0;
}

    .twocolumns div {
        font-size: 14px; /*reset font size*/
        display: inline-block;
        width: 50%;
        -box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


/*Button Padding*/
.buttons {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding-top: 40px;
}
.buttons_dblpad {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}
/*Button Styles*/

.colour-change {
	border-radius: 2px;
	font-family: 'Futura Cond', sans-serif;
	font-size: 36px;
	padding: 6px 25px 10px;
	cursor: pointer;
	color: #fff;
	background-color: #008a39;
	border: 1px solid #008a39;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	height: auto;
	-webkit-appearance: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	width: 250px;
}
.colour-change:hover {
	background-color: #008a39;
	color: #fff;
	border: 1px solid #008a39;
}
.accept {
	margin-bottom: 25px;
	width: 400px;
}
.decline {
	background-color: #e32526;
	color: #fff;
	border: 1px solid #e32526;
	width: 400px;
}
.decline:hover {
	background-color: #e32526;
	color: #fff;
	border: 1px solid #e32526;
}
.able {
	width: 400px;
}
.unable {
	background-color: #e32526;
	color: #fff;
	border: 1px solid #e32526;
	width: 400px;
	margin-bottom: 25px;
}
.unable:hover {
	background-color: #e32526;
	color: #fff;
	border: 1px solid #e32526;
}

.share {
	font-size: 20px;
	padding: 10px;
	width: 194px;
	margin: 0 5px;
	vertical-align: middle;
}
.share:hover {
	background-color: #fff;
	color: #008a39;
}
.sms {
	width: 260px;
	padding: 12px;
}
.share i {
	font-size: 26px;
	padding: 0 0 0 10px;
	vertical-align: middle;
	color: #fff;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	margin-bottom: 2px;
}
.share:hover i {
	color: #008a39;
}
/* Fix identing on label for checkbox */

sup {
    vertical-align: top;
    position: relative;
    top: -0.5em;
}

/* Custom Radio Buttons */
/* ------------------------------------------ */


/* Radio button */
.custom-radio input[type="radio"] {
	display: none;
}
.custom-radio input[type="radio"] + label {
	font-size: 14px;
	cursor: pointer;
	margin: 0 4px 0 0;
}
.custom-radio input[type="radio"] + label span {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: -1px 8px 0 0;
	vertical-align: middle;
	cursor: pointer;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
/* The trick: border creates same look as the radio button usually have */
/* remove it to see what happens */
.custom-radio input[type="radio"] + label span {
	background-color: #fff; /* have to be of the same color */
	border: 4px solid #fff; /* have to be of the same color */
}
/* Checked state for radio */
.custom-radio input[type="radio"]:checked + label span {
	background-color: #e32526;
}

/* Checkbox */

.styled-checkbox label {
    display: inline-block;
    padding-left: 2em !important;
    text-indent: -2em;
}

.styled-checkbox input {
    position: absolute; /* take it out of document flow */
    left: -9999px;
    opacity: 0; /* hide it */
}

    .styled-checkbox input + label {
        position: relative;
        cursor: pointer;
        padding: 0;
    }
        /* Box. */
        .styled-checkbox input + label:before {
            content: '';
            margin-right: 10px;
            display: inline-block;
            vertical-align: text-top;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 2px;
        }
    /* Box hover */
    .styled-checkbox input:hover + label:before {
        background: #008a39;
    }
    /* Box focus */
    .styled-checkbox input:focus + label:before {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }
    /* Box checked */
    .styled-checkbox input:checked + label:before {
        background: #008a39;
    }
    /* Disabled state label. */
    .styled-checkbox input:disabled + label {
        color: #b8b8b8;
        cursor: auto;
    }
        /* Disabled box. */
        .styled-checkbox input:disabled + label:before {
            box-shadow: none;
            background: #ddd;
        }
    /* Checkmark. Could be replaced with an image */
    .styled-checkbox input:checked + label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 11px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg);
    }

.unstyled {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .unstyled li {
        margin: 4px 0;
    }



.contact {
    padding-bottom: 35px;
    padding-top: 25px;
}

.contactleft {
    float: left;
    width: 50%;
    text-align: left;
}

.contactright {
    float: right;
    width: 50%;
    text-align: left;
}

.contact:after {
    content: "";
    display: table;
    clear: both;
}

@media only screen and (min-width : 768px) and (max-width : 1024px) {

    #footer .logo {
        width: 95%;
    }
}

@media only screen and (max-width: 767px) {

    #footer {
        height: auto;
    }

        #footer img {
            border: none;
            max-width: 100%;
            /* just in case, to force correct aspet ratio */
            height: auto !important;
        }

        #footer .logo {
            width: 100%;
            margin-top: 0;
            margin-right: auto;
            margin-bottom: 0;
            margin-left: auto;
            padding: 0px;
            text-align: right;
        }

    .contactleft, .contactright {
        float: none;
        width: auto;
    }

    .contactleft {
        padding-bottom: 25px;
    }
}


    /*Responsive Styles*/
    @media only screen and (min-width : 1024px) and (max-width : 1024px) {
        #contentbody {
            width: 95%;
            padding: 50px 2.5% 50px;
        }

        #header {
            width: 760px;
        }

        .validation-error {
            width: 50%;
        }

        #agecheck.captureform input {
            width: 75px !important;
        }

        #agecheckcountry.captureform select {
            width: 311px !important;
            margin: 0;
        }
    }

    @media only screen and (min-width : 768px) and (max-width : 1023px) {
        #contentbody {
            width: 95%;
            padding: 50px 2.5% 50px;
        }
  

        #header {
            width: 760px;
        }

        .validation-error {
            width: 50%;
        }

        #agecheck.captureform input {
            width: 65px !important;
        }

        #agecheckcountry.captureform select {
            width: 215px !important;
            margin: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        #contentbody {
            font-size: medium;
            width: 95%;
            padding: 50px 2.5% 35px;
        }

        #header {
            margin: 0 auto;
            padding: 25px 2.5% 25px;
            width: 95%;
        }
      
        h1 {
            font-size: 62px;
        }

        h2 {
            font-size: 32px;
        }

        h3 {
            font-size: 28px;
        }

        h4 {
            font-size: 18px;
            letter-spacing: normal;
        }

        p {
            margin: 16px 0;
            width: 100%;
        }

        #selects {
            text-align: center;
        }

            #selects select {
                width: 100%
            }

                #selects select.dm {
                    margin-top: 15px;
                    margin-right: 0px;
                }

                #selects select.y {
                    margin-top: 15px;
                }

        #agecheck {
            width: 80%;
            margin: 0 0 15px 0;
        }

            #agecheck input {
                margin-left: 0;
                width: 100%;
            }

        #agecheckcountry {
            width: 80%;
            margin: 0 0 15px 0;
        }

            #agecheckcountry select {
                width: 100%;
                margin: 0;
            }

        .accept {
            width: 100%;
            font-size: 22px;
        }

        .decline {
            width: 100%;
            font-size: 22px;
        }

        .able {
            width: 100%;
            font-size: 22px;
        }

        .unable {
            width: 100%;
            font-size: 22px;
        }

        .left {
            margin-right: 0;
            margin-bottom: 20px;
            width: 100%;
        }

        .right {
            width: 100%;
        }

        .notforsale {
            font-size: large;
        }

        .shortpage_padding {
            padding: 45px 0 !important;
        }

        .table_padding td {
            text-align: left;
        }

        .share {
            margin: 0 0 20px;
        }
    }

    @media only screen and (max-width: 480px) {
        h1 {
            font-size: 42px;
        }

        table.center {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .colour-change {
            font-size: 24px;
            width: 80%;
        }

        .collapse {
            display: none !important;
        }

        #agecheckcountry.captureform {
            width: 100% !important;
        }

            #agecheckcountry.captureform select {
                width: 100% !important;
            }

        #agecheck.captureform {
            width: 100% !important;
        }

            #agecheck.captureform input {
                width: 33% !important;
            }
    }
