/*
This CSS / CSS3 is Internet Explorer 9+ compatible!
-- designed by j4ke @codecanyon 2014 
*/


/* logo KeyFrames */
@keyframes logo-rotate {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}
@-webkit-keyframes logo-rotate {
   0% { -webkit-transform: rotate(0deg); }
   100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes logo-rotate {
   0% { -moz-transform: rotate(0deg); }
   100% { -moz-transform: rotate(360deg); }
}
@-o-keyframes logo-rotate {
   0% { -o-transform: rotate(0deg); }
   100% { -o-transform: rotate(360deg); }
}
@-ms-keyframes logo-rotate {
   0% { -ms-transform: rotate(0deg); }
   100% { -ms-transform: rotate(360deg); }
}



/* default styles */
* {
   font-family: helvetica, arial, verdana, sans-serif;
}

*:focus {
   outline: none;
}

html, body {
   height: 100%;
   font-size: 0.7em;
   margin: 0;
   padding: 0;
}

.container {
   width: 800px;
   position: relative;
   display: block;
   overflow: hidden;
   margin: 0 auto;
}

a, a:visited {
   position: relative;
   text-decoration: none;
}

a:hover {
   cursor: pointer;
   text-decoration: underline;
}

h2, h3, h4, h5, h6 {
   position: relative;
   display: block;
   padding: 0;
   margin: 0;
   font-weight: bold;
}

img {
   border: none;
   text-decoration: none;
   color: transparent;
}

.pull-left {
   float: left;
}

.pull-right {
   float: right;
}

::selection {
   background: #444;
   color: #DDD;
}

::-moz-selection {
   background: #444;
   color: #DDD;
}



/* awkward CheckBox WorkAround (IE9+) */
.checkbox {
   width: 16px;
   height: 16px;
   position: relative;
   display: inline-block;
   *display: inline;
   zoom: 1;
}

.checkbox input[type=checkbox],
.checkbox input[type=radio]
 {
   visibility: hidden;
}

.checkbox label {
   width: 16px;
   height: 16px;
   position: absolute;
   top: 0;
   display: block;
   cursor: pointer;
}

.checkbox label:after {
   width: 12px;
   height: 4px;
   position: absolute;
   top: 2px;
   left: 4px;
   content: '';
   background: transparent;
   border-top: none;
   border-right: none;
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
}

.checkbox label:hover::after {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
   filter: alpha(opacity=30);
   opacity: 0.3;
}

.checkbox input[type=checkbox]:checked + label:after,
.checkbox input[type=radio]:checked + label:after
 {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}

.checkbox-label {
   margin: 0 1em 0 0.5em;
   font-size: 1.6em;
   text-transform: capitalize;
}



/* header styles */
#header {
   width: 100%;
   position: relative;
   display: block;
   overflow: hidden;
   padding: 4em 0;
}

#header .pull-left #logo-icon {
   width: 2.8em;
   height: 2.8em;
   background-repeat: no-repeat;
   background-size: 100%;
   display: inline-block;
   *display: inline;
   zoom: 1;
   animation: logo-rotate 4s infinite linear;
   -webkit-animation: logo-rotate 4s infinite linear;
   -moz-animation: logo-rotate 4s infinite linear;
   -o-animation: logo-rotate 4s infinite linear;
   -ms-animation: logo-rotate 4s infinite linear;
}

#header .pull-left span {
   font-size: 3em;
   font-weight: bold;
}



/* footer styles */
#footer {
   width: 100%;
   position: relative;
   display: block;
   overflow: hidden;
   padding: 2em 0;
}

#footer .pull-left,
#footer .pull-right {
   font-size: 1.8em;
   font-weight: lighter;
}



/* main form styles */
#main {
   width: 100%;
   position: relative;
   display: block;
}

#main .content {
   width: initial;
   position: relative;
   display: block;
   margin: 0 0 2em 0;
   padding: 1.8em;
   border-radius: 4px;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
}

#main .content:last-child {
   margin: 0 0 0 0;
}

#main .content h4 {
   position: relative;
   display: block;
   font-size: 1.8em;
   text-transform: capitalize;
   padding: 0 0 0.8em 0;
}

#main .content h4 i {
   position: relative;
   display: inline-block;
   *display: inline;
   font-style: italic;
}

.content button[type=submit] {
   width: 100%;
   position: relative;
   display: block;
   cursor: pointer;
   padding: 0.8em;
   font-size: 2em;
   font-weight: bold;
   color: #FFF;
   border: none;
   border-radius: 4px;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
}

.content button[type=submit]:active {
   top: 2px;
}

.content button.loading,
.content button.loading:hover {
   background-image: url('../img/loading.gif');
   background-repeat: no-repeat;
   background-position: 14px center;
}



/* password model styles */
#password-model {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: none;
   z-index: 9999;
   background: rgba(34, 34, 34, 0.6);
   *background: #222;
}

#password-model .container {
   top: 20%;
   background: #FDFDFE;
   border-radius: 4px;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
}

#password-model .container textarea {
   position: relative;
   display: block;
   width: 98%;
   min-width: 98%;
   max-width: 98%;
   height: 30em;
   padding: 1%;
   background: #FDFDFE;
   border: none;
   border-radius: 4px 4px 0 0;
   -webkit-border-radius: 4px 4px 0 0;
   -moz-border-radius: 4px 4px 0 0;
}

#password-model .container div {
   position: relative;
   display: block;
   overflow: hidden;
   width: 98%;
   padding: 1%;
   margin: 0 auto;
   text-align: center;
   border-top: 1px solid #DDD;
}

#password-model .container div button {
   position: relative;
   display: inline-block;
   width: 48%;
   color: #FDFDFE;
   text-transform: capitalize;
   margin: 0 1%;
   padding: 8px;
   float: left;
   border-radius: 2px;
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
}

#password-model .container div button#close {
   background: #EA6153;
   border: none;
   border-bottom: 3px solid #D14233;
}

#password-model .container div button#close:hover {
   cursor: pointer;
   background: #F56758;
   border-bottom: 3px solid #E04838;
}

#password-model .container div button#select-all {
   background: #1ABC9C;
   border: none;
   border-bottom: 3px solid #16A085;
}

#password-model .container div button#select-all:hover {
   cursor: pointer;
   background: #1DD2AF;
   border-bottom: 3px solid #19B698;
}

#password-model .container div button:active {
   top: 2px;
}



/* error message styles */
#error-message {
   width: 100%;
   position: relative;
   display: none;
   padding: 2em 0;
   background: #E34B4B;
   text-align: center;
}

#error-message span {
   color: #FFF;
   font-size: 1.6em;
   text-transform: capitalize;
}