html, body {
    display: block;
    height: 100%;
    font-family: "Roboto";
    background: rgb(245,245,245);
}

* {
    box-sizing: border-box;
    text-decoration: none;
}

button , input[type=submit] {
    cursor: pointer;
}

a, img {
    user-drag: none; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.site_header {
    height: 540px;
    background: grey;
    background-image: url("../img/header_bg.jpg");
    background-size: cover;
    background-position: center;
}

.header_content {
    font-family: "Roboto";
    height: 100%;
    background: -moz-linear-gradient(-45deg, rgba(203,45,62,0.95) 0%, rgba(239,71,58,0.95) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(203,45,62,0.95) 0%,rgba(239,71,58,0.95) 100%);
    background: linear-gradient(135deg, rgba(203,45,62,0.95) 0%,rgba(239,71,58,0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1cb2d3e', endColorstr='#e6ef473a',GradientType=1 );

}

.default_scaling {
    max-width: 1000px;
    width: 100%;
}

.header_nav {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 48px;
    height: 50px;
}

.nav_logo img {
    height: 33px;
}

.nav_menu {
    position: relative;
}

.nav_menu img {
    position: relative;
    top: 5px;
    height: 30px;
    cursor: pointer;
    display: block;
}

.menu_popup:after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    background: white;
    border-top-left-radius: 3px;
    transform: rotateZ(45deg);
    top: -6px;
    right: 8px;
}

.menu_popup {
    display: none;
    width: 160px;
    position: absolute;
    top: 50px;
    right: 3px;
    padding: 12px 18px;
    background: white;
    border-radius: 4px;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.25);
}

.nav_menu .menu_popup a {
    display: block;
    color: rgb(60,60,70);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    padding-bottom: 8px;
    padding-top: 8px;
    text-decoration: none;
}

.noscript-alert {
    height: 50px;
    background: #FFFF00;
    color: black;
    font-size: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 500;
}

.header_intro {
    padding-top: 108px;
}

.intro_text {
	margin: 0 auto;
    color: white;
    text-align: center;
}

.intro_text h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Roboto';
    letter-spacing: -0.5px;
}

.intro_text h2 {
    font-size: 22px;
}

.site_main {

}

.build_card {
    margin: 0 auto;
    position: relative;
    max-width: 500px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgb(220,220,220);
    box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.3);
    margin-top: -254px;
    padding: 36px 38px;
    margin-bottom: 32px;
}

.card_title {
    font-size: 19px;
    display: block;
    text-align: center;
    font-weight: 500;
    color: rgb(80,80,90);
    margin-bottom: 34px;
}

@keyframes slideIn {
    0% {max-height: 0px}
    100% {max-height: 300px}
}

.animate_slide {
    animation-name: slideIn;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    overflow: hidden;
}

.form_group {
    margin-bottom: 24px;
}

.form_btns {
    overflow: visible;
}

.form_btns {
    position: relative;
    top: -12px;
    left: -4px;
    height: 40px;
    margin-bottom: 16px;
}

.form_btns a {
    line-height: 38px;
    height: 100%;
    float: left;
    padding: 0 14px;
    border-radius: 8px;
    margin-right: 8px;
    color: rgba(239,71,58,1);
    font-weight: 700;
    font-size: 14px;
    font-family: "Roboto";
    background: white;
    cursor: pointer;
}

.form_btns a::first-letter {
    font-weight: 500;
    font-size: 17px;
    margin-right: 3px;
}

.form_btns a[disabled] {
    color: rgb(42, 41, 44);
    opacity: 0.5;
    font-weight: 500;
    pointer-events: none;
    box-shadow: none;
    cursor: initial;

}


.form_btns a:hover {
    background: rgba(0,0,0,0.01);
}

.form_btns a:active {
    transform: scale(0.97);
}

.build_card label,
.modal_card label {
    display: block;
    font-size: 15px;
    color: rgb(120,120,120);
    margin-bottom: 6px;
}

.build_card select,
.modal_card select {
    display: block;
    padding: 13px 16px;
    border-radius: 8px;
    border: 1px solid rgb(210,210,210);
    width: 100%;
    font-size: 17px;
    font-family: "Roboto";
    color: rgb(60,60,60);
    background: white;
}

.build_card input[type="url"],
.modal_card input[type="url"]{
    display: block;
    padding: 13px 16px;
    border-radius: 8px;
    border: 1px solid rgb(210,210,210);
    width: 100%;
    font-size: 17px;
    font-family: "Roboto";
    color: rgb(60,60,60);
    background: white;
}

.submit_arrow {
	display: inline-block;
	width: 100%;
	max-width: 158px;
	position: relative;
	height: 52px;
	margin-left: -20px;
}

.build_card input[type="submit"],
.modal_card input[type="submit"]{
    display: block;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: 16px 22px;
    color: white;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: 700;
    border: 0;
    border-radius: 11px;
    position: relative;
    transition: box-shadow 0.2s, opacity 0.3s;
    background: rgba(239,71,58,1);
    position: relative;
    outline: none;
}

.modal_card .form_group {
    margin-bottom: 18px;
}

.modal_card input {
    padding: 8px;
}

.submit_arrow:active {
    transform: scale(0.95);
    outline: none;
}

.submit_arrow:after{

	height: 34px;
	width: 34px;
	background: rgba(239,71,58,1);
	position: absolute;
	top: 7px;
	right: -16px;
	transform: rotateZ(45deg);
	border-radius:7px 4px 7px 0;
}

.captcha {
    position: relative;
    left: -0px;
    margin-bottom: 20px;
}

.build_error {
    display: none;
    border-radius: 6px;
    padding: 18px;
    color: #F44336;
    margin-top: 8px;
    border: 1px solid #F44336;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}

.site_success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.72);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 0 16px;
}

@keyframes appear {
    0% {
        transform: scale(0.6);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success_popup {
    animation-name: appear;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.7), 0px 1px 10px rgba(0,0,0,0.7);
    overflow: hidden;
}

.success_top {
    padding: 28px 16px;
    background: #4CAF50;
}

.success_top img {
    display: block;
    width: 60px;
    margin: 0 auto;
    margin-bottom: 12px;
}

.success_top h1 {
    font-size: 24px;
    color: white;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.success_top p  {
    font-size: 15px;
    color: white;
    text-align: center;
}

.success_content {
    padding: 24px;
}

.success_content label {
    font-size: 13px;
    color: rgb(70,70,80);
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    text-transform: uppercase;
}

.success_content .result_url {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 17px;
    border-radius: 4px;
    border: 1px solid lightgrey;
    box-shadow: inset 0px 1px 3px rgba(0,0,0,0.12);
}

.success_content button {
    padding: 14px;
    width: 100%;
    border-radius: 99px;
    color: rgb(50,60,70);
    font-weight: 700;
    font-size: 17px;
    border: 0;
    margin-top: 38px;
    background: rgb(228, 228, 228);
}

.result_url + .result_url {
    margin-top: 8px;
}

.site_features{
    padding: 64px 0;
    padding-bottom: 76px;
}

.triple_row {
    overflow: hidden;
    margin: 0 auto;
}

.triple_row .row_container {
    float: left;
    width: 33.333333%;
    padding: 0 10px;
}

.site_features .row_container {
    text-align: center;
}

.site_features .row_container img {
    height: 56px;
    margin-bottom: 20px;
}

.site_features .row_container h1 {
    font-size: 19px;
    font-weight: 700;
    color: rgb(60,60,60);
    margin-bottom: 14px;
}

.site_features .row_container p {
    font-size: 15px;
    color: rgb(130,130,130);
    line-height: 145%;
    padding: 0 8px;
    margin: -3px 0;
}

.site_wave {
    width: 100%;
    /* background-image: url("/assets/img/clouds.png"); */
    background-size: 1080px;
    background-position: center;
    height: 90px;
    display: flex;
    margin-bottom: -32px;
    overflow: hidden;
   	justify-content: center;
 
}

.site_wave img {
	pointer-events: none;
	height: 100%;
	width: 100%;
	min-width: 920px;
}

.wave_closure {
	transform: rotateZ(180deg);
	margin: -32px 0 0 0;
    display: none;
}

.section_title {
    font-size: 21px;
    font-weight: 500;
    display: block;
    text-align: center;
    margin-bottom: 38px;
    color: rgb(50,50,60);
}

.site_reviews_desktop,
.site_reviews {
    padding: 72px 0 100px 0;
    position: relative;
    background: white;
    z-index: 3;
}

.mediocre_scaling {
	max-width: 880px;
}

.reviews_align {
	margin: 0 auto;
	padding: 0 18px;
}

.reviews_top {
	margin-bottom: 14px;
}

.reviews_bubbles {
	display: flex;
}

.bubble_text {
	color: rgb(80,80,85);
	line-height: 1.6;
	font-size: 15.5px;
	margin: -4px 0;
	position: relative;
	z-index: 69;
}

.reviews_bubble {
	position: relative;
	width: 100%;
	min-height: 150px;
	border-radius: 10px;
	background: rgb(239,239,239);
	padding: 32px 22px;
	display: flex;
	align-items: center;
}

.reviews_bubble:after {
	width: 28px;
	height: 36px;
	content: "";
	position: absolute;
	right: 0;
	bottom: -10px;
	background: rgb(239,239,239);
	transform: skewY(50deg);
}

.bubble_topright:after {
	left: 0;
	transform: skewY(-50deg);
}

.bubble_bottomleft:after {
	top: -10px;
	right: 0;
	transform: skewY(-50deg);
}

.bubble_bottomright:after {
	top: -10px;
	left: 0;
	transform: skewY(50deg);
}

.reviews_bubble:nth-child(1){
	margin-right: 16px;
}

.reviews_bubble:nth-child(2){
	margin-left: 16px;
}

.reviews_authors {
	width: 100%;
	margin-top: 38px;
	display: flex;
	justify-content: center;
	height: 56px;
}

.reviews_bottom .reviews_authors {
	margin: 0;
	margin-bottom: 38px;
}

.reviews_author:nth-child(1) {
	margin-right: 8px;
	flex-direction: row-reverse;
	text-align: right;
}

.reviews_author:nth-child(2) {
	margin-left: 8px;
}

.reviews_author {
	height: 100%;
	display: flex;
	width: 100%;
}

.author_image {
	height: 56px;
	width: 56px;
	border-radius: 50%;
}

.author_details {
	margin: 0 12px;
}

.author_title {
	display: block;
	font-weight: 500;
	font-size: 17px;
}

.author_subtitle {
	font-size: 14.5px;
	margin-top: 6px;
	display: block;
	color: rgb(80,100,105);
}

.reviews_bottom {
	display: flex;
	flex-direction: column-reverse;
}

.site_reviews {
	display: none;
}

.site_reviews .row_container {
    padding-bottom: 3px;
    padding-right: 16px;
}

.site_reviews .row_container p {
    padding: 18px;
    background: white;
    border-radius: 12px;
    color: rgb(70,70,70);
    font-size: 16px;
    line-height: 140%;
    margin: -2px 0;
    background: rgb(239,239,239);
    position: relative;
}

.site_reviews .row_container p:before {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    top: -9px;
    left: 16px;
    transform: rotateZ(45deg);
    background: white;
    background: rgb(239,239,239);
    border-bottom: 0;
    border-right: 0;
    border-top-left-radius: 6px;
}

.reviewer_profile {
    overflow: hidden;
    margin-bottom: 18px;
}

.reviewer_profile img {
    width: 50px;
    float: left;
    border-radius: 50%;
    margin-right: 12px;
}

.reviewer_profile .profile_title {
    display: block;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 4px;
}

.reviewer_profile .profile_subs {
    font-size: 14px;
    color: rgb(110,110,110);
}

.stats_field {
    padding: 16px 0;
    transform: rotateZ(-2deg);
    padding-left: 32px;
    padding-right: 20px;
}

.stats_field img {
    width: 80px;
    opacity: 0.5;
    float: right;
}

.stats_field h2 {
    font-size: 18px;
    font-weight: 500;
    color: rgb(90,90,90);
    margin-bottom: 4px;
}

.stats_field h1 {
    font-size: 40px;
    font-weight: 700;
    color: rgb(70,70,85);
    font-family: 'Titillium Web';
}

.stats_title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 500;
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    color: rgb(100,100,100);
}

.stats_title b {
    z-index: 10;
    position: relative;
    padding: 16px;
    background-color: white;
    font-family: 'Titillium Web';
    white-space: nowrap;
}

.stats_title:before {
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    background: rgb(221, 221, 221);;
    position: absolute;
    top: 9px;
}

.site_about {
	padding: 72px 0 98px 0;
    
}

.about_align {
	margin: 0 auto;
    max-width: 950px;
}

.comic_container {
    width: 100%;
    height: 287px;
    background: white;
    border: 2px solid rgb(190,190,190);
}

.comic_align {

    display: flex;
    width: 100%;
    height: 100%;
}

.comic_strip {
    width: 100%;
    height: 100%;
    position: relative;
}

.comic_strip:nth-child(3)::after,
.comic_strip:nth-child(2)::after {
    content: "";
    width: 24px;
    height: calc(100% + 4px);
    position: absolute;
    left: -12px;
    top: -2px;
    transform: skewX(-6deg);
    border-left: 2px solid rgb(190,190,190);
    border-right: 2px solid rgb(190,190,190);
    background: rgb(245,245,245);
}

.comic_doublestrip {
    flex-direction: column;
}

.comic_substrip {
    width: 100%;
    height: 50%;
    position: relative;
}

.comic_substrip:nth-child(2)::after {
    content: "";
    height: 24px;
    width: calc(100% - 9.1px);
    position: absolute;
    right: -3px;
    top: -6px;
    border-top: 2px solid rgb(190,190,190);
    border-bottom: 2px solid rgb(190,190,190);
    background: rgb(245,245,245);
    z-index: 99;
}

.comic_step {
    position: absolute;
    width: 50px;
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    border-radius: 50%;
    color: rgb(60,60,70);
}

.comic_illu {
    position: absolute;
    top: 60px;
    left: 102px;
    width: 100px;
    pointer-events: none;
}

.illu_big {
    width: 180px;
    left: 60px;
}

.comic_label {
    position: absolute;
    bottom: 38px;
    width: 100%;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: rgb(60,60,70);
    line-height: 135%;
}

.comic_substrip .comic_label {
    bottom: 22px;
}

.comic_substrip .comic_illu {
    top: 20px;
    left: 80px;
    width: 126px;
}

.comic_substrip .illu_grow {
    left: 100px;
}

.step_topleft {
    top: 4px;
    left: 5px;
    z-index: 100;
}

.step_bottomleft {
    bottom: 2px;
    left: 0px;
    z-index: 100;
}

.step_topright {
    top: 5px;
    right: 0px;
}

.step_last {
    top: 12px;
}

.convert_button {
    width: 180px;
    height: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(239,51,38,1);;
    border-radius: 6px;
    position: absolute;
    top:  44px;
    left: 64px;
    font-weight: 500;
    color: white;
    background: rgba(239,51,38,1);
}

.convert_button:hover {
    background: rgba(200,61,40,1);
    border: 3px solid rgba(200,61,40,1);;
}

.site_platforms {
    padding: 74px 0 86px 0;
    background: white;
}

.platforms_mobile {
    display: none;
}

.platforms_align {
    max-width: 1080px;
    margin: 0 auto;
}

.platforms_image {
    width: 100%;
    pointer-events: none;
}

.platforms_mobile .platforms_align {
    padding: 0 20px;
}

.platforms_mobile .platforms_image {
    max-width: 660px;
    margin: 0 auto;
    display: block;
}

.site_numbers {
    padding: 72px 0 98px 0;
}

.numbers_align {
    max-width: 1000px;
    margin: 0 auto;
}

.numbers_row {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

.numbers_column {
    width: 100%;
    margin: 0 12px;
}

.numbers_card {
    padding: 28px 28px;
    height: 174px;
    background: white;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgb(220,220,220);
}

/*
.numbers_card + .numbers_card {
    margin-top: 18px;
}

.numbers_subcard {
    height: 130px;
    display: none;
}

.numbers_subcard .numbers_title {
    top: 24px;
}
*/

.card_badge {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: grey;
    top: -26px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

i.badge_icon {
    font-size: 26px;
    color: white;
    display: block;
    line-height: 100%;
}

.badge_blue {
    background: #03A9F4;
    box-shadow: 0px 2px 4px rgb(3,169,244,0.3)
}

.badge_green {
    background: #4CAF50;
    box-shadow: 0px 2px 4px rgba(76,175,80,0.3)
}

.badge_red {
    background: #F44336;
    box-shadow: 0px 2px 4px rgb(244,67,54,0.3)
}

.numbers_title {
    position: absolute;
    left: 20px;
    top: 56px;
    color: rgb(90,90,98);
    font-size: 16px;
}

.numbers_value {
    position: absolute;
    right: 20px;
    bottom: 22px;
    font-size: 28px;
    font-weight: 500;
    color: rgb(60,60,67);
}

.site_footer {
    background: black;
    padding: 48px 0;
}

.site_footer img {
    display: block;
    margin: auto;
    max-width: 120px;
    opacity: 0.9;
}

.site_footer p {
    display: block;
    text-align: center;
    color: white;
    margin-top: 16px;
    font-size: 15px;
    opacity: 0.9;
}

.site_footer a {
    color: white;
    font-weight: 500;
}

/* Shortened Site */

.site_slimheader {
    font-family: "Roboto";
    height: 74px;
    background: url("../img/header_bg.jpg"), #fff;
    background-size: cover;
    background-position: center;
    transition-property: height;
    transition-duration: 300ms;
    position: relative;
    z-index: 99;
}

.site_evenslimmer {
    height: 59px;
}

.site_slimheader_expandedNOJUSTNO {
    height: 100%;
    z-index: 100;
    position: fixed;
    width: 100%;
}

.slimheader_content {
    height: 100%;
    background: -moz-linear-gradient(-45deg, rgba(203,45,62,0.98) 0%, rgba(239,71,58,0.98) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(203,45,62,0.98) 0%,rgba(239,71,58,0.98) 100%);
    background: linear-gradient(135deg, rgba(203,45,62,0.98) 0%,rgba(239,71,58,0.98) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1cb2d3e', endColorstr='#e6ef473a',GradientType=1 );
    align-content: center;
    display: flex;
}

.slimheader_nav {
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.outer_logo {
    padding-top: 2px;
}

.outer_logo img {
    height: 32px;
}

.navigation_container {
    display: flex;
    align-items: center;
}

.slimheader_expanded_container {
    font-weight: 500;
    text-decoration: none;
    color: white;
    white-space: nowrap;
}

.navigation_container a {
    font-weight: 500;
    text-decoration: none;
    border-radius: 99px;
    border: 2px solid white;
    padding: 8px 21px;
    color: white;
    white-space: nowrap;
}

.navigation_away a {
    border-radius: 6px 4px 4px 6px;
    padding-left:18px;
    border-left: 0;
    position: relative;
}

.navigation_away a:before {
    position: absolute;
    height: 28px;
    width: 28px;
    content: "";
    border-radius: 4px;
    border-top: 2.4px solid white;
    border-left: 2.4px solid white;
    transform: rotateZ(-45deg);
    top: 3px;
    left: -12px;
}

.site_locker {
    position: relative;
    height: calc( 100% - 59px );
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    padding-top: 20px;
}

.adjust_align {
    justify-content: initial;
    height: auto;
}

.locker_card {
    font-family: "Roboto";
    max-width: 470px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.3);
    border: 1px solid rgb(220,220,220);
    padding: 32px 38px;
    pointer-events: all;
    flex-shrink: 0;
    overflow: hidden;
}

div.spacing_big {
    /* margin-bottom: 200px; */
}

div.spacing_medium {
    /* margin-bottom: 62px; */
}

.card_top {
    margin-bottom: 14px;
}

.card_top h1 {
    font-size: 19px;
    color: rgb(50,50,60);
    margin-bottom: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.card_top h1:before {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    margin-right: 14px;
    background-image: url("../img/lock_icon.png");
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: center;
}

.card_desc {
    margin: -3px 0;
    margin-bottom: 32px;
}

.card_desc p {
    line-height: 140%;
    color: rgb(80,80,84);
    font-size: 15px;
}

.card_monetize {
    display: flex;
    max-width: 320px;
    margin: 0 auto;
}

.all_steps {
	position: relative;
}

.step_block {
    display: block;
    overflow: auto;
    border-radius: 8px;
    border: 1px solid rgb(220, 220, 220);
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.step_block + .step_block {
    margin-top: 16px;
}

.step_left {
    width: 80px;
    height: 80px;
    float: left;
    background-size: 38px;
    background-position: center;
    background-repeat: no-repeat;
}

.step_content {
    padding: 23px 0;
}

.step_content h2 {
    font-weight: 500;
    font-size: 16px;
    color: rgb(50,50,60);
    margin-bottom: 6px;
}

.step_content p {
    font-size: 14px;
    color: rgb(100,100,105);
    padding-right: 32px;
    line-height: 125%;
    margin: -1 0;
}

.step_arrow {
    top: 0;
    right: 0;
    position: absolute;
    height: 100%;
    width: 80px;
    background-position: center;
    background-size: 26px;
    opacity: 0.7;
    background-repeat: no-repeat;
    background-image: url("../img/arrow.png");
    transition: right 0.2s;
}

.ads_soil {
    padding: 0 16px;
}

.step_done {
    pointer-events: none;
    overflow: hidden;
}

.step_block:hover .step_arrow {
    right: -12px;
}

.step_done .step_arrow {
    background-size: 38px;
    background-image: url("../img/check.png");
    animation-name: appear;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.step_done .step_content {
    opacity: 0.5;
}

.step_done .step_left {
    opacity: 0.5;
}

.tiny_link {
	margin-top: 8px;
	color: rgb(150,150,160);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	float: right;
}

.tiny_link:hover {
	text-decoration: underline;
	color: rgb(100,100,110);
}

.complete_btn {
    margin-top: 54px;
    display: block;
    width: 100%;
    padding: 16px 14px;
    border-radius: 8px;
    color: white;
    background: #4CAF50;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    font-family: "Roboto";
    border: 0;
    box-shadow: 0px 2px 5px rgba(76, 175, 79, 0.514);
}

.complete_btn:disabled {
    background: lightgrey;
    color: grey;
    box-shadow: none;
    cursor: no-drop;
}

.locker_footer {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgb(80,80,80);
}

.footer_line {
    display: block;
    text-align: center;
    pointer-events: all;
    line-height: 130%;
}

.footer_line a {
    color: #1e87f0;
    text-decoration: none;
}

.monetize_top {
    display: flex;
    width: 100%;
    justify-content: center;
    position: absolute;
    padding-top: 24px;
    z-index: 1;
}

.banner_sideways {
    width: 100%;
    max-width: 728px;
    height: 90px;
    background: lightgrey;
    position: absolute;
}

.monetize_remaining {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    margin-top: 136px;
}

.monetize_align {
    max-width: 850px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.monetize_container {
    width: 160px;
    height: 600px;
    pointer-events: all;
}

.monetize_additional {
    margin: 0px 0 16px 0;
    justify-content: center;
    pointer-events: all;
    width: 100%;
    max-width: 970px;
    max-height: 90px;
    overflow: hidden;
    flex-shrink: 0;
}

.card_share {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 4px;
}

.card_share a {
    float: right;
    height: 40px;
    width: 25%;
    background: grey;
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}

.card_share .share_google {
    background-color: #d34836;
    background-image: url("../img/googleplus_white.png");
}

.card_share .share_facebook {
    background-color: #3b5998;
    background-image: url("../img/facebook_white.png");
    background-size: 20px;
}

.card_share .share_twitter {
    background-color: #1da1f2;
    background-image: url("../img/twitter_white.png");
    background-size: 24px;
}

.card_share .share_whatsapp {
    background-color: #128C7E;
    background-image: url("../img/whatsapp_white.png");
}

/* FAQ and more */

.site_shelf {
    margin: 0 auto;
    padding: 32px 24px;
    background: white;
    min-height: calc( 100% - 74px);
    overflow: auto;
}

.shelf_shrink {
    min-height: calc( 100% - 174px );
}

.shelf_title {
    display: block;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 32px;
    font-family: "Titillium Web";
    font-size: 26px;
    color: rgb(70,70,80);
    border-bottom: 1px solid lightgrey;   
}

.shelf_split {
    overflow: hidden;
}

.shelf_split .shelf_half {
    float: left;
    width: 50%;
}

.shelf_split .shelf_half:nth-child(1) {
    padding-right: 24px;
}

.shelf_split .shelf_half:nth-child(2) {
    padding-left: 24px;
}

.faq_container + .faq_container {
    margin-top: 28px;
    padding-top: 28px;

}

.faq_container span {

    padding:  16px 18px;
    border-radius: 16px;
    display: block;
    color: rgb(100,100,110);
    font-size: 15px;
    line-height: 140%;
    position: relative;

}

.faq_container span:before {
    font-size: 24px;
    position: absolute;
    top: 14px;
    font-weight: 500;
}

.faq_container span:after {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    border: 1px solid rgb(235,235,235);
    top: 18px;
    border-top: 0;
    border-right: 0;
}

.faq_q {
    background: rgb(246,246,246);
    border: 1px solid rgb(235,235,235);
    margin-top: 1px;
    margin-bottom: 18px;
    margin-left: 38px;
}

.faq_q:after {
    transform: rotateZ(45deg);
    background: rgb(246,246,246);
    left: -9px;
}

.faq_q:before {
    content: "Q";
    left: -34px;
}

.faq_a {
    background: white;
    border: 1px solid rgb(235,235,235);
    margin-bottom: 1px;
    margin-right: 38px;
}

.faq_a:after {
    transform: rotateZ(225deg);
    background: white;
    right: -9px;
}

.faq_a:before {
    content: "A";
    right: -34px;
}

/* Error Page */

.site_fill {
    width: 100%;
    height: 100%;
    background-image: url(../img/header_bg.png);
    background-size: cover;
    background-position: center;
}

.site_innerfill {
    background: -moz-linear-gradient(-45deg, rgba(203,45,62,0.95) 0%, rgba(239,71,58,0.95) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(203,45,62,0.95) 0%,rgba(239,71,58,0.95) 100%);
    background: linear-gradient(135deg, rgba(203,45,62,0.95) 0%,rgba(239,71,58,0.95) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1cb2d3e', endColorstr='#e6ef473a',GradientType=1 );
    height: 100%;
    width: 100%;
    padding-top: 38px;
}

.fill_header {
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.site_remaining {
    height: calc( 100% - 150px );
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error_container {
    color: white;
}

.error_container h1 {
    font-size: 78px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 100%;
}

.error_container h2 {
    font-size: 18px;
}

/* Profile and shit */

/*

.site_toolbar {
    height: 100px;
    background: white;
    width: 100%;
    background: white;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.24);
    position: relative;
} 

.toolbar_inner {
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.profile_nav {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.profile_nav a {
    text-align: center;
    display: block;
    float: left;
    width: 100px;
    height: 100%;
    opacity: 0.9;
    text-decoration: none;
    color: black;
}

.profile_nav a img {
    width: 40px;
    margin: 0 auto;
    margin-bottom: 8px;
    display: block;
}

.profile_nav a span {
    font-weight: 600;
    font-family: "Open Sans";
    font-size: 15px;
}

.profile_data {
    position: absolute;
    top: 15px;
    right: 2px;
}

.profile_data .data_name {
    font-weight: 500;
    display: block;
}

.profile_data .data_name a {
    float: none;
    text-align: initial;
    display: initial;
    width: initial;
    height: initial;
    opacity: initial;
    text-decoration: initial;
    color: rgb(255, 19, 50);
    text-decoration: underline;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 400;
}

.profile_data .data_stats {
    color: rgb(70,70,70);
    display: block;
    font-size: 13px;
    margin-top: 7px;
}

.profile_avatar {
    position: absolute;
    top: 0;
    left: -45px;
    height: 37px;
    width: 37px;
}

.tab_title {
    font-size: 24px;
    display: block;
    margin-bottom: 14px;
    color: rgb(50,50,60);
    width: 100%;
}

.tab_desc {
    font-size: 15px;
    color: rgb(100,100,110);
    line-height: 140%;
    margin: -2px 0;
}


.tab_title + .tab_desc {
    margin-bottom: 24px;
}

@keyframes tabPush {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.8);
    }
    80% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(0.85);
        opacity: 0.5;
    }
}

.tab_sel {
    animation-name: tabPush;
    animation-duration: 0.18s;
    animation-fill-mode: forwards;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3;
}

b {
    font-weight: 700;
    color: rgb(50,50,50);
}

.quick_drawer {
    margin: 0 auto;
    margin-top: 42px;
    width: 100%;
    max-width: 655px;
}

.quick_drawer .third_cont {
    float: left;
    width: 33.3333%;
}

.panel_tab {

}

.panel_hidden {
    display: none;
}

.profile_app {

}

.profile_left {
    float: left;
    width: 340px;
}

.profile_right {
    float: left;
    width: calc( 100% - 340px );
}

.profile_itself img {
    float: left;
    width: 100px;
    padding-right: 18px;
}

.profile_name {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.profil_details {
    font-size: 14px;
    color: rgb(80,80,80);
}

.collection_list {
 padding-top: 4px;
 padding-bottom: 32px;
}

.collection_card {
    padding: 18px 22px;
    
    border-radius: 2px;
    position: relative;
    display: block;
    text-decoration: none;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}

.collection_card + .collection_card {
    margin-top: 16px;
}

.collection_title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    color: black;
}

.collection_id {
    display: block;
    font-size: 14px;
    color: rgb(120,120,120);
}

.collection_indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background-image: url("/assets/img/arrow.png");
    background-position: center;
    background-size: 28px;
    background-repeat: no-repeat;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.collection_amount {
    position: absolute;
    text-align: left;
    left: -64px;
    font-size: 13px;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
}

.link_list {
    padding-top: 4px;
}

.link_card {
    display: block;
    padding: 14px 0px;
    padding-bottom: 13px;
    background-image: url("/assets/img/link_open.png");
    background-size: 24px;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    color: rgb(50,50,50);
    text-decoration: none;
}

.link_card + .link_card {
    border-top: 1px solid rgb(230,230,230);
}

.link_title {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 100%;
    display: block;
}

.link_id {
    font-size: 12px;
    color: rgb(150,150,150);
    font-weight: 500;
    line-height: 100%;
    margin-right: 4px;
}

.link_belongs {
    font-size: 11px; 
    background: #E2E2E2;
    color: #1F1F1F;
    padding: 2px 7px;
    border-radius: 99px;
    font-weight: 500;
}

.link_controls,
.collection_controls {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection_controls {
    right: 16px;
}

.link_controls img,
.collection_controls img {
    width: 28px;
    opacity: 0.7;
    padding-left: 8px;
    margin-left: 8px;
}

.link_controls img + img,
.collection_controls img + img {
    border-left: 1px solid #D9D9D9;
}

.link_controls img:hover,
.collection_controls img:hover {
    opacity: 1;
    cursor: pointer;
}

.split_screen {

}

.screen_left {
    width: 330px;
    float: left;
}

.screen_right {
    padding-left: 24px;
    float: left;
    width: calc( 100% - 330px );
}

.link_form {
    padding-bottom: 12px;
}

.screen_left form {
    padding: 18px;
    border-radius: 3px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}

.shrink_captcha {
    transform: scale(0.9);
    transform-origin: top left;
    margin-bottom: 6px;
}

.screen_left form input[type="text"], 
.screen_left form input[type="url"], 
.screen_left form select {
    display: block;
    border: 1px solid rgb(190,190,190);
    border-radius: 3px;
    padding: 8px;
    font-size: 16px;
    color: rgb(60,60,60);
    width: 100%;
}

.screen_left form label {
    font-size: 15px;
    color: rgb(70,70,70);
    margin-bottom: 6px;
    display: block;
}

.screen_left .form_group {
    margin-bottom: 12px;
}

.screen_left .form_btns {
    position: relative;
    top: 0;
    height: 40px;
    margin-top: 6px;
    margin-bottom: 30px;
}

.screen_left .form_btns a {
    padding: 0 14px;
    line-height: 37px;
}

.screen_left form .form_submit {
    margin: 0 auto;
    display: block;
    padding: 10px 34px;
    font-size: 18px;
    border-radius: 99px;
    background: -moz-linear-gradient(-45deg, rgba(203,45,62,1) 0%, rgba(239,71,58,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(203,45,62,1) 0%,rgba(239,71,58,1) 100%);
    background: linear-gradient(135deg, rgba(203,45,62,1) 0%,rgba(239,71,58,1) 100%);
    color: white;
    text-align: center;
    font-family: "Roboto";
    font-weight: 500;
    border: 0;
}

.screen_right .link_list {
    padding-top: 0;
}

.site_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.modal_card {
    padding: 22px;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    background: white;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.35), 0px 0px 24px 3px rgba(0,0,0,0.4);
    margin: 16px;
}

.modal_card form {
    padding-bottom: 0;
}

.modal_card .card_title {
    font-size: 21px;
}

.tab_hidden {
    display: none;
}

.screen_right .collection_list {
    padding-top: 0;
}

.screen_right .collection_indicator, .screen_right .link_card {
    background-image: none;
}

*/

/* Site Login */

.site_login {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.login_modal {
    width: 620px;
    height: 440px;
    border-radius: 3px;
    background: white;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.28);
    overflow: hidden;
}

.modal_left {
    float: left;
    height: 100%;
    width: 220px;
    background-image: url("../img/header_bg.png");
    background-size: cover;
    background-position: center;
}

.modal_right {
    float: left;
    height: 100%;
    width: calc( 100% - 220px );
    padding: 28px;
}

.left_content {
    color: white;
    height: 100%;
    width: 100%;
    padding: 24px;
    background: -moz-linear-gradient(-45deg, rgba(203,45,62,0.95) 0%, rgba(239,71,58,0.95) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(203,45,62,0.95) 0%,rgba(239,71,58,0.95) 100%);
    background: linear-gradient(135deg, rgba(203,45,62,0.95) 0%,rgba(239,71,58,0.95) 100%);
}

.left_content img {
    width: 116px;
    display: block;
    margin: 0 auto;
    margin-bottom: 38px;
}

.left_content h1 {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.left_content ul {
    font-size: 14px;
    list-style-type: disc;
    line-height: 140%;
    position: relative;
    left: 16px;
}

.modal_right h1 {
    font-size: 26px;
    display: block;
    color: rgb(50,50,50);
    margin-bottom: 14px;
}

.modal_right p {
    font-size: 14px;
    color: rgb(80,80,80);
    line-height: 132%;
    margin: -2px 0;
    margin-bottom: 42px;
}

/* More Profile Stuff */

.do_blur {
    filter: blur(4px);
}

.site_preloader {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    height: calc(100% - 74px);
    background: rgba(255,255,255,0.8);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader_card {

}

/* New Control Panel */

.panel_header {
    height: 70px;
    width: 100%;
    background: #EF473A;
    position: relative;
}


.panel_scaling {
    margin: 0 auto;
    width: 100%;
    max-width: 1048px;
    padding: 0 24px;
}

.panelheader_align {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel_logocontainer {
    height: 34px;
}

.panel_logo {
    height: 100%;
    user-select: none;
}

.panel_profile {
    height: 100%;
}

.profile_align {
    height: 100%;
    display: flex;
    align-items: center;
}

.profile_container {
    display: flex;
}

.profile_details {
    color: white;
}

.profile_image {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: white;
    margin-left: 8px;
    transition-property: border-radius;
    transition-duration: 300ms;
}

.profile_image:hover {
	border-radius: 0;
}

.profile_details {
    padding-top: 5px;
    font-size: 14px;
}

.profile_name {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.profile_link {
    color: white;
    text-decoration: none;
    text-align: right;
    font-size: 13px;
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
}

.profile_link i.material-icons {
    font-size: 25px;
    position: absolute;
    top: -6px;
    margin-left: -21px;
}

.panel_navigation {
    background: white;
    height: 55px;
    border-bottom: 1px solid rgb(215,215,215);
}

.navigation_align {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.panel_navitemlist {
    display: flex;
}

.panel_navitem {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 18px;
    text-decoration: none;
    color: rgb(100,100,100);
    font-size: 15px;
}

.navitem_icon {
    margin-right: 4px;
    padding-top: 2px;
}

.navitem_sel {
    padding-top: 3px;
    border-bottom: solid 3px #EF473A;
    color: #EF473A;
    font-weight: 500;
}

.panel_navactions {
    display: flex;
    align-items: center;
}

.nav_buttongroup {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    height: 34px;
}

.buttongroup_button {
    background: #EF473A;
    color: white;
    height: 100%;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto";
    border: 0;
    outline: 0;
}

.buttongroup_button:active {
    opacity: 0.7;
}

.buttongroup_button:nth-child(1) {
    border-right: 1px solid white;
}
.buttongroup_button:nth-child(2) {
    border-left: 1px solid white;
}

.panel_creation {
    position: relative;
}

.creation_window {
    position: absolute;
    right: 24px;
    top: 5px;
    width: 295px;
    background: white;
    border: 1px solid rgb(214,214,214);
    border-radius: 6px;
    box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.24);
}

.creation_window:after {
    content: "";
    height: 16px;
    width: 16px;
    transform: rotateZ(45deg);
    background: white;
    border-left: 1px solid rgb(214,214,214);
    border-top: 1px solid rgb(214,214,214);;
    border-top-left-radius: 4px;
    position: absolute;
    right: 24px;
    top: -9px;
}

.creation_link:after {
    right: 188px;
}

.creation_form {
    padding: 26px 20px;
}

.creation_label {
    font-size: 11.5px;
    color: rgb(90,90,100);
    display: block;
    margin-bottom: 5px;
}

.creation_input {
    padding: 6px 8px;
    border: 2px solid rgb(200,200,200);
    border-radius: 5px;
    display: block;
    width: 100%;
    color: rgb(60,60,70);
    font-family: "Roboto";
    margin-bottom: 12px;
    height: 34px;
}

.creation_amount {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.amount_button {
    border: 2px solid rgb(200,200,200);
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto";
    width: 31px;
    height: 31px;
    border-radius: 50%;
    margin: 0 3px;
    background: white;
    color: rgb(80,80,90);
}

.creation_submit {
    margin-top: 24px;
    display: block;
    border-radius: 5px;
    font-family: "Roboto";
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 8.5px 0;
    font-size: 15px;
    background: #EF473A;
    border: none;
    width: 100%;
}

.panel_content {
     padding-top: 40px;
}

.panel_app {
    display: none;
}

.panel_current {
    display: block;
}

.app_title {
    font-size: 18px;
    color: rgb(68,68,75);
    display: block;
    margin-bottom: 24px;
}

.analytics_container {
    margin: 0 auto;
    max-width: 800px;
    background: white;
    height: 368px;
    border-radius: 3px;
    border: 2px solid rgb(225,225,230);
    display: flex;
    flex-direction: column;
}

.analytics_toprow {
    height: 175px;
    border-bottom: 1px solid rgb(225,225,230);
    display: flex;
    width: 100%;
    flex-shrink: 0;
}

.bottomrow_segment,
.toprow_segment {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.bottomrow_inner,
.toprow_inner {
    width: 100%;
}

.analytics_bottomrow + .analytics_bottomrow {
    border-top: 1px solid rgb(225,225,230);
}

.toprow_title {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: rgb(110,110,120);
}

.toprow_value {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 36px;
    color: rgb(40,40,50);
    font-weight: 500;
}

.bottomrow_segment:nth-child(2),
.toprow_segment:nth-child(2) {
    border-left: 1px solid rgb(225,225,230);;
}

.analytics_bottomrow {
    display: flex;
    height: 100%;
    width: 100%;
}

.bottomrow_title {
    font-size: 12px;
    display: block;
    text-align: center;
    color: rgb(110,110,120);
    margin-bottom: 10px;
}

.bottomrow_value {
    font-size: 24px;
    display: block;
    text-align: center;
    font-weight: 500;
    color: rgb(50,50,58);
}

.links_container {
    display: none;
    margin: 0 auto;
    max-width: 740px;
    border: 2px solid rgb(225,225,230);
    background: white;
    height: 400px;
}

.emptyillustration_container {
    width: 230px;
    margin: 0 auto;
    user-select: none;
}

.emptyillustration {
    width: 100%;
    pointer-events: none;
}

@keyframes spin {
    0% {transform: rotateZ(0deg);}
    100% {transform: rotateZ(360deg);}
}

.preloader_spinner {
    animation-name: spin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 5px solid lightgrey;
    border-left-color: rgba(239,71,58,0.95);
    float: left;
    margin-right: 12px;
}

.preloader_text {
    display: table;
}

.preloader_card h1 {
    font-size: 22px;
    color: rgb(60,60,75);
    font-weight: 600;
    margin-bottom: 8px;
}

.preloader_card p {
    font-size: 15px;
    color: rgb(80,80,80);
}

.profile_panel {
    position: relative;
}

.profile_hidden {
    display: none;
}

.back_btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8.5px 12px;
    padding-left: 7px;
    color: rgb(70,70,70);
    text-decoration: none;
    font-size: 15px;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}

.back_btn:before {
    position: absolute;
    content: "";
    border: 1px solid rgb(206, 206, 206);
    border-bottom: none;
    border-right: none;
    border-bottom-right-radius: 100px;
    border-radius: 4px;
    top: 4px;
    left: -12px;
    background: white;
    transform: rotateZ(-45deg);
    width: 23px;
    height: 23px;
}

.back_btn span {
    position: relative;
    z-index: 1;
}

.collection_empty {
    display: block;
    margin-top: 48px;
    font-size: 15px;
    text-align: center;
    color: rgb(100,100,100);
}

/* Responsive */

@media (max-width: 1100px){
    .monetize_sides {
        padding: 0 0;
    }
}

@media (max-width: 1060px){
    .default_scaling {
        padding-left: 16px;
        padding-right: 16px;
    }
    .site_innerfill {
        padding-top: 16px;
    }
}

@media (max-height: 950px){
    .monetize_sides {
        align-items: initial;
        padding-top: 148px;
    }
}

@media (max-width: 840px){
    .site_platforms {
        display: none;
    }
    .platforms_mobile {
        display: block;
    }
    .header_nav {
        padding-top: 16px;
    }
    .header_intro {
        padding-top: 48px;
    }
    .intro_text h1 {
        font-size: 34px;
    }
    .build_card {
        margin-top: -300px;
    }
    .monetize_remaining {
        display: none;
    }
}

@media (max-width: 830px){
    .monetize_top {
        overflow: hidden;
        position: relative;
    }
    .banner_sideways {
        position: relative;
        display: block;
    }
    .monetize_sides {
        display: none;
    }
    .comic_container {
        max-width: 340px;
        height: auto;
        margin: 0 auto;
    }
    .comic_align {
        display: block;
    }
    .comic_strip {
        width: 100%;
        height: 280px;
    }
    .comic_substrip:nth-child(2)::after,
    .comic_strip:nth-child(3)::after, 
    .comic_strip:nth-child(2)::after {
        content: "";
        height: 24px;
        width: calc(100% + 4px);
        position: absolute;
        top: -12px;
        left: -2px;
        transform: skewY(-3deg);
        border: 0;
        border-top: 2px solid rgb(190,190,190);
        border-bottom: 2px solid rgb(190,190,190);
        background: rgb(245,245,245);
        z-index: 69;
    }
    .comic_doublestrip {
        height: 300px;
    }
    .comic_illu {
        left: 120px;
    }
    .illu_big {
        left: 80px;
    }
    .comic_substrip .illu_grow {
        left: 100px;
        top: 28px;
    }
    .convert_button {
        left: 72px;
    }
}

@media (max-width: 710px){
    .shelf_split .shelf_half {
        padding: 0 !important;
        display: block;
        float: none;
        width: 100%;
    }
    .faq_container + .faq_container {
        padding-top: 20px;
        margin-top: 20px;
    }
    .shelf_half + .shelf_half {
        margin-top: 24px;
    }
    .numbers_row {
        display: block;
        padding: 0 16px;
    }
    .numbers_column {
        margin: 0;
    }
    .numbers_card {
        max-width: 364px;
        margin: 0 auto;
    }
    .numbers_column + .numbers_column {
        margin-top: 48px;
    }
}

@media (max-width: 600px){
	.site_reviews {
		display: block;
	}
	.site_reviews_desktop {
		display: none;
	}
    .monetize_additional {
        max-height: auto;
    }
    .site_main {
        padding: 0 16px;
    }
    .build_card {
        margin-top: -320px;
    }
    .intro_text {
        padding: 0 16px;
    }
    .intro_text h1 {
        font-size: 34px;
    }
    .intro_text h2 {
        font-size: 20px;
    }
    .site_features {
        padding-top: 24px;
        padding-bottom: 52px;
    }
    .site_reviews {
    	padding-top: 32px;
        padding-bottom: 18px;
    }
    .site_features .row_container img {
        margin-bottom: 10px;
    }
    .row_container + .row_container {
        margin-top: 28px;
    }
    .row_container {
        float: none !important;
        display: block;
        width: 100% !important;
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
    .monetize_top {
        padding-top: 0 !important;
        width: 100%;
    }
    .site_locker {
        display: block;
       /* margin-top: 100px !important; */
        padding: 16px;
        height: auto;
    }
    .locker_card {
        margin: 0 auto;
        padding: 18px;
    }
    .build_card {
        padding: 20px;
    }
    .card_monetize {
        position: relative;
        height: auto;
        left: -5px;
    }
}

@media (max-width: 500px){
    .site_main {
        padding: 0 16px;
    }
    .build_card {
        margin-top: -310px;
        overflow: hidden;
    }
    .intro_text {
        padding: 0 16px;
    }
    .intro_text h1 {
        font-size: 34px;
    }
    .intro_text h2 {
        font-size: 20px;
    }
    .stats_title b {
        font-size: 16px;
    }
    .step_block {
    }
    .step_left {
        display: none;
    }
    .step_arrow {
        background-size: 27px;
        width: 60px;
        opacity: 0.7;
    }
    .step_done .step_arrow {
        height: 60px;
        width: 60px;
        background-size: 32px !important;
    }
    .step_content {
        padding: 12px 0;
        padding-left: 12px;
        padding-right: 50px;
    }
    .step_content p {
        padding-right: 0;
    }
    .complete_btn {
        margin-top: 32px;
    }
    .card_top h1 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .card_top h1:before {
        width: 32px;
    }
    .card_desc p {
        font-size: 14px;
        opacity: 0.9;
    }
    .site_reviews,
    .site_about,
    .platforms_mobile,
    .site_numbers {
        padding: 50px 0 60px 0;
    }
    .numbers_row {
        margin-top: 48px;
    }
}

@media (max-width: 490px) {
    .build_card {
        margin-top: -280px;
    }
}

@media (max-width: 360px){
    .build_card {
        margin-top: -314px;
        overflow: hidden;
    }
    .intro_text h1 {
        font-size: 30px;
    }
    .stats_title b {
        font-size: 15px;
    }
    .build_card {
        margin-top: -280px;
    }
    .form_btns a {
        white-space: nowrap;
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: center;
    }
    .locker_card .card_monetize {
        position: relative;
        height: auto;
        left: -18px;
    }
    .card_top h1:before {
        width: 26px;
        background-size: 18px;
        margin-right: 6px;
        background-position: left center;
    }
}

@media (max-width: 310px){
    .build_card {
        margin-top: -320px;
        overflow: hidden;
    }
    .intro_text h1 {
        font-size: 28px;
    }
}

@media (max-width: 300px){
    .build_card {
        margin-top: -290px;
        overflow: hidden;
    }
    .intro_text h1 {
        font-size: 28px;
    }
}

@media (max-height: 950px ){
    .monetize_top {
        padding-top: 16px;
    }
    .site_locker {
    /*  display: block; */
     /* margin-top: 106px; */
        padding: 16px;
        height: auto;
    }
    .locker_card {
        margin: 0 auto;
    }
}

/* Dashboard */

.db-header {
    height: 56px;
    background: rgba(239,71,58,1);  
}

.db-align {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 0 16px;
}

.align-header {
    justify-content: space-between;
    height: 100%;
}

.db-logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.db-logo {
    width: 104px;
}

.db-user-container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.db-user-icon {
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
}

.db-user-image {
    width: 38px;
    height: 38px;
}

.db-user-actionpanel {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 210px;
    height: 110px;
    background: white;
    border-radius: 4px;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.29);
    padding: 16px 0;
}

.db-user-actionpanel-shown {
    display: block;
}

.db-user-welcome {
    font-size: 13px;
    color: rgb(70,70,70);
    display: block;
    margin-bottom: 0px;
    padding: 0 16px;
}

.db-user-name {
    display: block;
    font-size: 15px;
    padding: 0 16px;
    padding-bottom: 11px;
    border-bottom: 0px solid rgb(230,230,230);
}

.db-user-signout-btn {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13.5px;
    cursor: pointer;
    color: rgba(239,71,58,1);;
}

.db-user-signout-btn .material-icons {
    font-size: 20px;
    margin-right: 4px;
}

.db-navbar {
    height: 64px;
    border-bottom: 1px solid rgb(220,220,220);
    background: white;
}

.db-nb-align {
    height: 100%;
    display: flex;
    justify-content: center;
}

.db-nb-item {
    height: 100%;
    padding: 0 16px;
    margin: 0 8px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.db-nb-item-title {
    font-size: 16px;
    font-weight: 500;
    color: rgb(140,140,140);
}

.db-nb-sel {
    cursor: initial;
}

.db-nb-sel .db-nb-item-title {
    color: rgb(24,24,24);
}

.db-nb-sel:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 99px 99px 0 0;
    background: rgb(239,71,58);
}

.db-overlay {
    position: fixed;
    z-index: 4;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
}

.db-overlay-active {
    display: flex;
}

.db-modal-edit {
    padding: 34px 34px;
    background: white;
    width: 470px;
    border-radius: 4px;
    box-shadow: 0px 6px 24px -5px rgba(0,0,0,0.5);
}

.db-modal-title {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: rgb(30,30,30);
}

.db-modal-subtitle {
    font-size: 15px;
    display: block;
    margin-bottom: 44px;
    color: rgb(50,50,50);
}

.db-modal-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: row-reverse;
}

.db-content {
    height: calc(100% - 120px);
    display: flex;
    background: white;
    font-family: "Roboto";
}

.db-content * {
    font-family: "Roboto";
}

.db-content-tabs {
    height: 100%;
}

.db-tab {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    display: none;
}

.tab-current {
    display: block;
}

#tab-creator, #tab-overview, #tab-statistics {
    padding-top: 50px;
}

.db-card {
    border: 1px solid rgb(220,220,220);
    border-radius: 8px;
    padding: 60px;
    background: white;
}

.creator-card {
    width: 460px;
    padding: 50px 42px 34px 42px;
    margin: 0 auto;
}

.overview-card {
    width: 640px;
    margin: 0 auto;
    padding: 0px 0;
    margin-bottom: 36px;
}

.db-none {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgb(90,90,90);
}

.db-none-active {
    display: flex;
}

.db-ov-item {
    height: 52px;
    display: flex;
    align-items: center;
    color: rgb(50,50,50);
    padding: 0 60px;
    justify-content: space-between;
}

.db-ov-item-left, .db-ov-item-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.db-ov-item + .db-ov-item {
    border-top: 1px solid rgb(220,220,220);
}

.db-ov-title {
    font-size: 14px;
    font-weight: 500;
    width: 110px;
    text-overflow: ellipsis;
    color: rgb(20,20,20);
}

.db-ov-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
}

.db-ov-btn .material-icons {
    font-size: 19px;
    color: rgb(110,110,110);
}

.db-ov-label {
    width: 90px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.db-ov-label .material-icons {
    font-size: 16px;
    margin-right: 4px;
    color: rgb(90,90,90);
}

.db-input-group + .db-input-group {
    margin-top: 20px;
}

.db-input-group {
    margin-bottom: 10px;
}

.db-input-group + .db-input-group {
    margin-top: 32px;
}

.db-input-container {
    height: 48px;
    margin-bottom: 16px;
    position: relative;
}

.db-input-label {
    position: absolute;
    margin-left: 10px;
    top: -7px;
    font-size: 13px;
    color: rgb(120,120,120);
    padding: 0 6px;
    background: white;
    pointer-events: none;
    user-select: none;
}

.db-input + .db-input-label {
    top: 16px;
    font-size: 16px;
    transition: font-size 0.1s, top 0.1s; 
}

.db-input:focus + .db-input-label,
.db-input:valid + .db-input-label {
    top: -6px;
    font-size: 12px;
    color: rgb(130,130,130);
}

.db-input:focus {
    border: 2px solid #4285f4;
    padding-left: 15px;
}

.db-select:focus {
    padding-left: 11px;
}

select:focus + .db-input-label,
.db-input:focus + .db-input-label {
    color: #4285f4;
}

.db-input {
    height: 100%;
    border: 1px solid rgb(220,220,220);
    border-radius: 4px;
    width: 100%;
    display: block;
    padding: 0 16px;
    outline: none;
    font-size: 16px;
    color: rgb(60,60,60);
}

.db-input-container + .db-input-group {
    margin-top: 36px;
}

.db-steps {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 30px;
}

.db-modal-btn,
.db-step-btn {
    border: none;
    background: none;
    outline: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 10px;
    color: rgb(180,180,180);
    border: 0px solid rgb(220,220,220);
    border-radius: 4px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: initial;
}

.db-modal-btn-enabled,
.db-step-btn-enabled {
    color: rgba(239,71,58,1);
    cursor: pointer;
}

.db-modal-btn-secondary {
    color: rgb(100,100,100);
    cursor: pointer;
}

.db-modal-btn .material-icons,
.db-step-btn .material-icons {
    font-size: 20px;
    margin-right: 5px;
}

.db-creator-btn {
    display: block;
    margin: 0 auto;
    margin-top: 38px;
    background: none;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(239,71,58,1);
    color: white;
    border-radius: 4px;
    padding: 14px 32px;
    outline: none;
    box-shadow: 0px 1px 3px rgba(239,71,58,0.2);
    cursor: pointer;
}

.db-select {
    padding-left: 12px;
}

.db-snackbar {
    pointer-events: none;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 32px 0;
    display: none;
    width: 100%;
    justify-content: center;
}

.db-snackbar-active {
    display: flex;
}

.snackbar {
    font-size: 15px;
    color: white;
    padding: 16px 22px;
    background: #323232;
    border-radius: 4px;
    box-shadow: 0px 2px 8px -1px rgba(0,0,0,0.25);
}

.db-stats-glance {
    margin: 0 auto;
    width: 720px;
    height: 120px;
    display: flex;
}

.db-stats-glance-card {
    height: 100%;
    width: 100%;
    border: 1px solid rgb(220,220,220);
    margin: 0 12px;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.db-stats-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: rgb(80,80,80);
}

.db-stats-value {
    font-size: 30px;
    width: 100%;
    text-align: right;
}

.db-stats-links {
    margin: 0 auto;
    margin-top: 24px;
    width: 696px;
    border: 1px solid rgb(220,220,220);
    border-radius: 4px;
    padding: 24px;
}
