/* general css for all html-documents */

*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}

body{
	font-family: Bariol, Arial, sans-serif;
	color:#55556b;
}

h1{
	font-weight: 300;
	font-size: 1.5em;
	font-family: Lato;
	padding-bottom: 10px;
	color:#00b08d;
}

h2{
	font-weight: 400;
	font-size:1em;
	padding-bottom: 10px;
}

p{
	font-weight:300;
	font-family: Bariol-light;
}

strong{
	font-weight:400;
}

a{
	text-decoration: none;
	color: #55556b;
}

a:hover, a:active {
    color: black;
}

@font-face {
	font-family: 'Bariol-light';
	src: url('../fonts/bariol_light-webfont.woff2') format('woff2'),
         url('../fonts/bariol_light-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Bariol';
	src: url('../fonts/bariol_regular-webfont.woff2') format('woff2'),
         url('../fonts/bariol_regular-webfont.woff') format('woff');
}


.all{
	padding-top:40px;
	display: flex;
	justify-content: space-between;
	max-width: 1600px;
    margin: 0 50px;
}

.sidebar{
	padding-top: 42px;
	background-color:#F6F6F9;
	border-radius: 30px;
	box-shadow: 4px 2px 15px rgba(77, 128, 248, 0.2);
	width: 250px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	z-index:2;
}

.sidebar h1 {
	font-family: Lato, Arial, sans-serif;
	font-size:1em;
	font-weight: 300;
	color:#55556b;
}

.sidebar p {
	font-weight: 400;
}

.clickable-items{
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}

.sidebar-items{
	display:flex;
	align-items: center;
	padding-bottom: 25px;
}

.sidebar > img{
	margin-bottom: 20px;
	box-shadow: 4px 2px 15px rgba(77, 128, 248, 0.2);
	border-radius:100px;
}

.sidebar-items img{
	padding-right: 10px;
}

.content-container {
	width: 75%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.content-container > * {
	flex: 1;
	padding: 30px;
	min-width: 400px;
}

.plan {
	padding-top: 20px;
	background-color:#FFF;
}

.plan-content {
	padding-top: 20px;
	background-color:#FFF;
}

.plans {
	padding-top: 20px;
}

.current-plan {
	padding-top: 50px;
}

.card{
	padding-top: 50px;
}

.card-subdetails{
	display: flex;
	justify-content: space-between;
}

.card-expiry, .card-cvv{
	margin-top: 20px;
}

.premium-content{
	padding: 40px;
	background-color:#F6F6F9;
	border-radius: 30px;
	box-shadow: 4px 2px 15px rgba(77, 128, 248, 0.2);
}

.premium-items{
	display:flex;
	align-items: center;
	padding-bottom: 25px;
}

.premium-items:first-of-type{
	padding-top: 15px;
}

.premium-items p{
	padding-left: 15px;
}

.month{
	padding-top: 10px;
}

.footer{
	background-color:#55556B;
	height:400px;
}

/* form-related css */

input{
    font-family: Bariol, Arial, sans-serif;
}

input[type=number] {
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 30px;
    outline: none;
    border: 1px solid #EFEFF4;
    width:100%;
    font-size: 1em;

}

input[type=number]:focus {
    border: 1px solid #E3E3E9;
    appearance:none;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

select {
    width: 70px;
    height: 40px;
    border-radius: 30px;
    border: none;
    background-color: #F6F6F9;
    font-family: Lato, Arial, sans-serif;
    margin: 0;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    padding:30px 30px;
    outline:none;
}

select::-ms-expand {
    display: none;
}

input[type=text] {
	padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 30px;
    outline: none;
    border: 1px solid #EFEFF4;
    font-size: 1em;
    min-width: 200px;
}

/* css for buttons */

.btn:link, .btn:visited {
	display: flex;
	padding:10px 30px;
	font-weight:400;
	text-decoration: none;
	border-radius: 200px;
	transition: background-color 0.2s, border 0.2s, color 0.2s;
	margin-top: 10px;
	min-width: 280px;
	justify-content: center;
	box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, .1) !important;
}

.btn-full:link, .btn-full:visited{
	background-color:#00b08d;
	border: 1px solid #00b08d;
	color:#fff;
	margin-right: 15px;
}

.btn-ghost:link, .btn-ghost:visited{
	border: 1px solid #00b08d;
	color:#00b08d;
}

.btn:hover, .btn:active{
	background-color:#00A08D;
}

.btn-full:hover, .btn-full:active{
	border: 1px solid #00A08D;
}

.btn-ghost:hover, .btn-ghost:active{
	border: 1px solid #00A08D;
	color:white;
}

/* start.html-specific css */

.welcome{
	padding-top: 40px;
	background-color:#FFF;
}

.welcome ul{
	padding: 15px;
	padding-left:18px;
}

.welcome ul li{
	padding-top:10px;
	font-weight:300;
	font-family: Bariol-light;
}

.startguide{
	padding: 40px 50px;
	background-color:#F6F6F9;
	border-radius: 30px;
	box-shadow: 4px 2px 15px rgba(77, 128, 248, 0.2);
}

.startguide h2{
	font-size:1.2em;
	font-weight:400;
	padding: 5px 0px;
}

.store-buttons img{
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

/* antichurn.html-specific css */

.centered-link{
	display:flex;
	justify-content: center;
	padding-top: 10px;
}

/* media queries */

/* big tablets to 1200px (widths smaller than the 1140px row) */
@media only screen and (max-width: 1200px) {
   .all{
   		justify-content: center;
   }
   .sidebar{
		background-color:#F6F6F9;
		margin-right: 40px;
	}
	.premium-content, .startguide{
		padding: 40px;
		background-color:#FFFFFF;
		border-radius: 0px;
		box-shadow: none;
	}
	.content-container {
  		max-width: 500px;
  		justify-content: center; 
  }
    .btn:link,
    .btn:visited{
	  display:flex; 
	  justify-content: center; 
	}
 }

/* small tablets to big tablets: from 768px to 1023px */
@media only screen and (max-width: 1023px) {
  .all{
  	justify-content: flex-start;
  	margin: 0px;
  }
}

/* small phones to small tablets: from 481px to 767px */
@media only screen and (max-width: 767px) {
   .all{
   	justify-content: center;
   }
   .sidebar{
   	display: none;
   }
   .btn:link, .btn:visited{
	display:flex; 
	justify-content: center; 
   }
 }

/* small phones: from 0 to 480px */
 @media only screen and (max-width: 480px) {
   .all{
   	justify-content: center;
   }
   .sidebar{
   	display: none;
   }
   .premium-content, .startguide{
	padding: 40px;
	background-color:#F6F6F9;
   }
 }

.store-buttons{
	display:flex;
	align-items: center;
}
 
.disabled-btn:hover {
    background: #cacaca;
    cursor: not-allowed;
}
.disabled-btn {
    border: 1px solid #ccc !important;
    background: #cacaca;
    color: #fff !important;
}
p.letsdealErrorMsg {
    width: 100%;
    float: left;
    margin-top: 10px;
    color: #ff0000;
    font-weight: 600;
}