/* CSS NORMALIZE */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

/* MAIN CSS */

* { 
    box-sizing:border-box; 
}

body {
    background-color: #f6f6f6;
    font-family: 'Source Sans Pro', sans-serif; 
}

a {
    text-decoration: none;
    color: #007cff;
    transition: 0.2s ease all;
}

a:hover {
    color: #009fff;    
}

p, ul, ol {
    line-height: 25px;
}

ol {
    padding-left: 15px;
}

hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

::selection {
    background-color: #4ab8d1;
}

button {
    cursor: pointer;
}

.container {
    width: 75%;
    margin: 0 auto;
}

/* FORM STYLES */

form {
    margin-top: 30px;
}

.flex-con {   
    display: flex; 
    max-width: 950px;
    height: 100%;
    margin: 6% auto;   
    box-shadow: #a6a6a6 2px 2px 7px;
}

.part-1, .part-2 {
    flex: 1;  
    height: 560px;
}

form a {
    margin-top: 10px;
    color: #fff;
    float: right;
    font-size: 15px;
    transition: ease all 0.2s;
}

form a:hover {
    color: #c7c7c7;    
}

/* PART 1 */

.part-1 h1 {
    font-size: 23px;
    font-weight: 600;
}

.part-1 h2 {
    font-size: 19px;
    font-weight: 600;
}

.part-1 {
    background-color: #ffffff;
    padding: 50px;  
}

.part-1 .app-desc p {
    margin-top: -13px;
        
}

/* PART 2 */

.part-2 {
    background: linear-gradient(to bottom right, #003366 -8%, #00cc99 110%);
    padding: 50px;    
}

.part-2 h3 {
    color: #FFF;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.3); 
}

@media screen and (max-width: 1186px) {
    .container {
        width: 87%;
    }    
}

@media screen and (max-width: 1186px) {
    .container {
        width: 90%;
    }    
}

@media screen and (max-width: 990px) {
    .container {
        width: 70%;
    }
    .flex-con {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 750px) {
    .container {
        width: 80%;
    }    
}

@media screen and (max-width: 560px) {
    .container {
        width: 90%;
    }    
}

@media screen and (max-width: 490px) {
    .container {
        width: 90%;
    }
    .part-1, .part-2 {
        padding: 40px;
        height: auto;
    }
    .app-lm h4 {
        text-align: center;
        margin-bottom: 30px;
    }
    .app-lm p {
        text-align: center;
        line-height: 15px;
    }
}

/* INPUT STYLES */

.no-s {
    margin-top: -24px !important;
}

.group { 
    position:relative; 
    margin-bottom:35px; 
}

input {
    display:block;
    width:100%;
    background-color: transparent;
    padding:10px 10px 10px 5px;
    border:none;
    border-bottom: 1px solid #8adccf;
    font-size:18px;   
}

input[type=text] {
    color: #FFF;
}

input[type=password] {
    color: #FFF;
}

input:focus { 
    outline:none;    
}

label:focus {
    display: none;
}

label {
    left:5px;
    top:10px;
    position:absolute;  
    font-size:18px;
    font-weight:normal;
    color:#e4e4e4;
    pointer-events:none;
    transition:0.4s ease all; 
    -moz-transition:0.4s ease all; 
    -webkit-transition:0.4s ease all;
}


input:focus ~ label, input:valid ~ label {
    top:-20px;
    font-size:14px;
    color:#8adccf;
}

label .icon {
    margin-right: 15px;  
    font-size: 14px;
}

input:focus ~ label span.icon, input:valid ~ label span.icon  {
    margin-right: 5px;  
     font-size: 12px;
}

.bar { 
    position:relative; 
    display:block; 
    width:100%; 
}

.bar:before, .bar:after {
  content:'';
  height:2px; 
  width:0;
  bottom:-1px; 
  position:absolute;
  background: #e6f0ef; 
  transition:0.4s ease all; 
  -moz-transition:0.4s ease all; 
  -webkit-transition:0.4s ease all;
}

.bar:before {
  left:50%;
}

.bar:after {
  right:50%; 
}

input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}

/* RADIO BUTTON */


.radio-label {
  display: inline-block;
  font-size: .9em;
  line-height: 1.4em;
  color: #333;
  position: relative;
  outline: none;
}
.radio-label:hover {
  cursor: pointer;
}

input[type="radio"].radio {
  opacity: 0; 
    cursor: pointer;
}
input[type="radio"] + .radio-label:before {
  content: '';
  background: #fff;
  border-radius: 100%;
  border: 1px solid #ccc;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
}
input[type="radio"]:checked + .radio-label:before {
  background-color: #44C8BA;
  box-shadow: inset 0 0 0 4px #fff;
}
input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: #44C8BA;
}
input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

/* BUTTON */

.prime-btn {
    width: 100%;  
    padding: 12px;
    border: none;
    background-color: #44C8BA;
    color: #FFF;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: #434343 2px 2px 6px; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.42);
    transition: ease 0.4s all;
}

.prime-btn:hover {
    background-color: #00aa8e;    
}

.dif-btn {
    display: block;
    border: solid 1px #e0e0e0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 5px;
    padding: 12px;
    transition: ease all 0.3s;
}

.dif-btn:hover {
    background-color: #c5c5c566;   
    color: #FFF;
}

/* LEARN APP */

.app-lm {
    margin-top: 65px;
    color: #FFF;    
}

.app-lm h4 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
}

.app-lm p {
    margin-top: -27px;    
    color: #e8e8e8;
}

/* ACCOUNT HOME PAGE */

header.accnt-h {
    text-align: center;
    background: linear-gradient(to bottom right, #003366 -8%, #00cc99 110%);
    color: #FFF;
    padding-top: 20px;
    padding-bottom: 30px;
    text-shadow: 0 3px 3px rgba(0,0,0,0.3);
}

header.accnt-h h1 {
    font-size: 45px;
    font-weight: 600;
}

header.accnt-h p {
    margin-top: -10px;
    font-size: 19px;
}

.l-container {
    width: 90%;
    margin: 30px auto;
}

.flex-c {
    display: flex;
}

.accnt-info {
    flex: 1;
    height: 400px;
    background-color: #e2e2e2;
    margin-top: 24px;
    padding-left: 55px;
}

.accnt-info h2 {
    margin-top: 40px;
}

.em-ps a {
    margin-top: -18px;
    padding-left: 13px;
    font-size: 15px;
}

.paypal {
    margin-bottom: 30px;
}

.a-h {
    color: #626262;
}

.a-p {
    margin-top: -18px;
    margin-bottom: 2px;
    padding-left: 13px;
    color: #000;   
}

a.edit {
    background-color: #44C8BA;
    color: #FFF;
    padding: 8px 40px 8px 40px;
    border-radius: 2px;
    box-shadow: #bdbdbd 2px 2px 6px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.42);
    font-weight: 600;
}

.other-info {
    flex: 2;
    padding-left: 45px;
}

.recent-purch, .device, .updates {
    margin-bottom: 40px;
}

.device {
    height: auto;
}

.device p {    
    font-size: 15px;   
    line-height: 0;
    padding-left: 25px;
}

.device .dev-h {
    margin-top: 31px;
}

a.see-r {
    float: right;
    margin-top: -38px;
}

img.dev-img {
    float: left;
    padding-right: 20px;
}

.a-icon {
    float: left;
    position: relative;
    top: 14px;
    right: 17px;
    color: #464646;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
}



@media screen and (max-width:965px) {
    .l-container {
        width: 96%;
    }
    .accnt-info {
        padding-left: 40px;
    }
    .other-info {
        padding-left: 30px;
    }
}

@media screen and (max-width:850px) {
    .flex-c {
        flex-direction: column;
    }
}

/* FOOTER */

.copyright {
    height: 80px;     
    text-align: center;
}

.copyright p {
    padding-top: 30px;
    font-size: 15px;
    color: #6f6f6f;
}
