@import url(https://fonts.googleapis.com/css?family=Jockey+One);

body {
    margin  : 0px; 
    padding : 0px;
    background-image: url(images/bg.png);
    background-size: 65%;
    background-color: RGBA(32,39,50,1);
	font-family: arial, helvetica, sans-serif;
	font-size: 1.5em; 
	color: white; 
}

h1, h2, h3, h4 {
	font-family: 'Jockey One', Arial, sans-serif;  margin: 0; line-space: 110%; 
}

h1 { font-size: 2.5em; color: white; }
h2 { font-size: 2em; color: white; }
h3 { font-size: 1.75em; color: #F17120; }
h4 { font-size: 1.5em; color: #F17120; }

img {
    width: 100%;
    height: auto;
}

#ie8 img {
	width: auto;
}

/* Clearfix */
.clear {
	clear: both;
}

a { text-decoration: none; color: #F37321;  font-weight: regular; }

    /*
     * Animation configurations ( duration and fill mode )
    */
    .animated {
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    } 

    /*
     * Pulse animation
    */
    @-webkit-keyframes pulse {
        0% { -webkit-transform: scale(.1); opacity: 0.25;
		filter: alpha(opacity =10);}
        50% { -webkit-transform: scale(.5); opacity: 0.50;
		filter: alpha(opacity =50);}
        100% { -webkit-transform: scale(1); opacity: 0.75;
		filter: alpha(opacity =40);}
    }
    @keyframes pulse {
        0% { transform: scale(.1);opacity: 0.25;
		filter: alpha(opacity =10);}
        50% { transform: scale(.5); opacity: 0.50;
		filter: alpha(opacity =50);}
        100% { transform: scale(1);opacity: 0.75;
		filter: alpha(opacity =40);}
    }
    .pulse {
        -webkit-animation-name: pulse;
        animation-name: pulse;
		animation-iteration-count:infinite; 
    } 

    /*
     * Flash animation
    */
    @-webkit-keyframes flash {
        0%, 50%, 100% {opacity: 0;}
        25%, 75% {opacity: .25;}
    }
    @keyframes flash {
        0%, 50%, 100% {opacity:0;}
        25%, 75% {opacity: .25;}
    }
    .flash {
        -webkit-animation-name: flash;
        animation-name: flash;
		animation-iteration-count:infinite;
    } 

.shadow {
	-webkit-box-shadow: 0 10px 10px 0 rgba(0,0,0,.5);
	box-shadow: 0 10px 10px 0 rgba(0,0,0,.5);
}



#content {
		position: relative; 
		width: 693px; 
		margin: 0 auto; 
		max-width: 100%;
		}

#preview {
		display: block;
		position: absolute; 
		top: 280px; 
		left: 80px; 
		width: auto; 
		height: auto;
		z-index: 1000; 
		/*background: transparent url('images/chrome-extension.png') no-repeat center center; */
		overflow: visible;
		/*-webkit-box-shadow: 0 10px 10px 0 rgba(0,0,0,.5);
		box-shadow: 0 10px 10px 0 rgba(0,0,0,.5);*/
		}

#previewTablet {
        display: block;
        position: absolute;
        top: 325px;
        left: -45px;
        width: auto;
        height: auto;
        z-index: 1000;
        overflow: visible;
}

#androidmobileOn {
		display: none;
		}

#chromestoreOn {
		display: none;
		}

/* Modal Box */

.modalDialog {
    position: fixed;
    font-family: sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
	width: 570px;
	position: relative;
	margin: 5% auto;
	padding: 5px 40px 0px 40px;
	border-radius: 10px;
	background: #EEE;
	border: 2px solid #fff;
	-webkit-box-shadow: 1px 3px 45px -11px rgba(0,0,0,0.62);
	-moz-box-shadow: 1px 3px 45px -11px rgba(0,0,0,0.62);
	box-shadow: 1px 3px 45px -11px rgba(0,0,0,0.62);
}
.close {
    font-size: 15px;
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.close:hover {
    background: #F17120;
}

.modalDialog h2, p {
    color: black;
}

.modalDialog h2 {
    font-size: 1.1em;
    color: #000;
    font-family: sans-serif;
    margin-top: 55px;
    font-weight: 500;
    width: 69%;
}

.modalDialog p {
    font-size: 0.6em;
    color: #000;
}

.modalDialog ol li {
    font-size: 0.6em;
    color: #000;
}

.modalDialog ol li span {
    font-weight: 600;
}

.modalDialog ol li span a {
    color: #F17120;
    text-decoration: underline;
}

.modalDialog ol li span a:hover {
    color: #FF904A;
    text-decoration: underline;
}

p.cssWarning {
    font-size: 0.5em;
    color: #000;
}

p.cssFileName {
    font-size: 0.4em;
    
}

.cssHeader {
    height: 180px;
}

.cssMark {
    float: left;
    width: 25%;
}

.cssMarkDownload {
    float: left;
    width: 15%;
    margin-top: 1.6em;
    margin-left: 1.5em;
}

.cssTitle {
    float: right;
    font-size: 0.8em;
}

.cssTitle span {
    font-size: 0.6em;
}

.cssContent {
    width: 500px;
    height: 400px;
}

.cssContentSmall {
    width: 500px;
    height: 300px;
}

.cssScreenshot {
    float: left;
    clear: both;
    width: 40%;
}

.cssInstructions {
    float: right;
    width: 60%;
    margin-right: -50px;
    margin-top: -15px;
}

.cssCenter {
    text-align: center;
}

/* Modal Box Ends */

.cssButton {
    background: #F17120;
    border-radius: 4px;
    width: 180px;
    font-size: 0.8em;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}

.cssPadding {
    padding-bottom: 0.5em;
}

.cssButton:hover {
    background: #FF904A;
    cursor: pointer;
}

.modalDialog a {
    color: white;
}
/* Source code */
.cssSourceCode {
/*    height: 30px;*/
    width: auto;
    background-color: #f47321;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    padding: 0 10px;
    position: relative;
    -moz-border-radius: 5px 5px 5px 5px;
    -khtml-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    line-height: 30px;
    padding: 2px 15px;
    right: 50px;
    left: auto;
}

.cssFileIcon {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    
    height: 40px;
	width: 40px;
	float: left;
	margin-right: 20px;
	cursor: pointer;
}

.cssTextViewHolder {
	background: #cccccc;
	height: 300px;
	color: #000;
}

.cssTextView {
    font-family: sans-serif;
    font-size: 15px;
    background: #cccccc;
    height: 100%;
    width: 100%;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    overflow-x: hidden;
    overflow-y: scroll;
    color: #000;
}

.noSelect {
    cursor: default;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

.noSelect:focus {
    outline: none;
}

.cssHeaderSourceView {
    height: 150px;
}

.cssFileSelector {
    padding-top: 20px;
    padding-bottom: 10px;
}
/* drop-down of version control */
.cssBox {
    margin-bottom: 1em;
    height: 60px;
}

.cssContentDownload {
    text-align: left;
    float: left;
    width: 50%;
}
.cssVersionControl {
    font-size: 0.6em;
    font-weight: 500;
    float: right;
    width: 50%;
    color: #333;
}
.cssVersionControl p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 1em;
}

.cssViewSourceModal {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

::selection {
    background: transparent; 
}

::-moz-selection {
    background: transparent; 
}
.cssWrapper {
    text-align: center;
    margin-top: 1em;
}
select.custom-dropdown {
 -webkit-appearance: none;  /*REMOVES DEFAULT CHROME & SAFARI STYLE*/
 -moz-appearance: none;  /*REMOVES DEFAULT FIREFOX STYLE*/
 border: 0 !important;  /*REMOVES BORDER*/
}
select.custom-dropdown {
 -webkit-appearance: none;  /*REMOVES DEFAULT CHROME & SAFARI STYLE*/
 -moz-appearance: none;  /*REMOVES DEFAULT FIREFOX STYLE*/
 border: 0 !important;  /*REMOVES BORDER*/

}
select.custom-dropdown {
 -webkit-appearance: none;  /*REMOVES DEFAULT CHROME & SAFARI STYLE*/
 -moz-appearance: none;  /*REMOVES DEFAULT FIREFOX STYLE*/
 border: 0 !important;  /*REMOVES BORDER*/

 color: #fff;
 -webkit-border-radius: 5px;
 border-radius: 5px;
 font-size: 14px;
 padding: 10px;
 width: 55%;
 cursor: pointer;

 background: #f47321 ;
 background-size: 15%; /*TO ACCOUNT FOR @2X IMAGE FOR RETINA */
}
/* copyright */
.copyright {
    right: auto;
    left: 50px;
    bottom: 5px;
    display: block;
    position: fixed;
}
.copyright p {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}