html {
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: 'Roboto', Arial, sans-serif;
	color: #3e3e3e;
}

::-moz-selection {
	background: #f78b3b;
	color: #fff;
}

::selection {
	background: #f78b3b;
	color: #fff;
}

.wrapper {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.wrapper .container {
	max-width: 728px;
}

.wrapper > .container {
	padding-bottom: 4rem;
	padding-top: 4rem;
}

@media only screen and (min-width: 992px) {
	.wrapper > .container {
		padding-bottom: 7.5rem;
		padding-top: 7.5rem;
	}
}

.header {
	background-color: #f4f5f6;
	padding-top: 1rem;
}

@media(min-width: 40rem) {
	.header {
		padding-top: 5rem;
	}
}

.header + section {
	border-top: 0;
}

.header .container {
	border-top: 0;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
	position: relative;
	text-align: center;
}

.header .img {
	height: 15rem;
	margin-bottom: 2rem;
}

.header .img path {
	animation: 7s a forwards;
	fill: #f78b3b;
	stroke: #f78b3b;
	stroke-dasharray: 38321;
	stroke-miterlimit: 10;
	stroke-width: 15px;
}

.header .button {
	margin-bottom: 4rem;
	margin-top: 2rem;
}

@media(min-width:40rem) {
	.header .button {
		margin-bottom: 4rem;
		margin-top: 2rem;
	}
}

@keyframes a {
	0% {
		fill-opacity: 0;
		stroke-dashoffset: 38321;
	}
	25% {
		fill-opacity: 0;
		stroke: #f78b3b;
	}
	to {
		fill-opacity: 1;
		stroke-dashoffset: 0;
	}
}

.navigation {
	background: #f4f5f6;
	border-bottom: 0.1rem solid #d1d1d1;
	display: block;
	height: 5.2rem;
	left: 0;
	max-width: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

.navigation .container {
	padding-bottom: 0;
	padding-top: 0;
}

.navigation .navigation-list {
	list-style: none;
	margin-bottom: 0;
}

.navigation .navigation-item {
	float: left;
	margin-bottom: 0;
	margin-left: 2.5rem;
	position: relative;
}

.navigation .img {
	fill: #f78b3b;
	height: 2rem;
	position: relative;
	top: .3rem;
}

.navigation .navigation-title,
.navigation .title {
	color: #606c76;
	font-family: Roboto, Arial, sans-serif;
	position: relative;
}

.navigation .navigation-link,
.navigation .navigation-title,
.navigation .title {
	display: inline;
	font-size: 1.77rem;
	line-height: 5.2rem;
	padding: 0;
	text-decoration: none;
}

.navigation .navigation-link {
	color: #606c76;
}

.navigation .navigation-link.active {
	color: #f78b3b;
}

@keyframes b {
	0%,
	50% {
		transform: rotate(0);
	}
	25%,
	75% {
		transform: rotate(-25deg);
	}
}

@media(min-width:40rem) {
	.only-mobile {
		display: none;
	}
}

.navigation a.navigation-title:hover,
.navigation a.navigation-title:active {
	color: #f78b3b;
}

a {
	color: #f78b3b;
}

/* Forms */

input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
	border-color: #f78b3b;
}

/* Buttons */

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background-color: #f78b3b;
	border: 0.1rem solid #f78b3b;
}

.button.button-outline,
button.button-outline,
input[type="button"].button-outline,
input[type="reset"].button-outline,
input[type="submit"].button-outline,
.button.button-clear,
button.button-clear,
input[type="button"].button-clear,
input[type="reset"].button-clear,
input[type="submit"].button-clear {
	color: #f78b3b;
}

.button-share {
	position: absolute;
	display: none;
	background-color: #fff;
	margin: 1px 15px 0 0;
	padding: 0 1.5rem;
	top: 0;
	right: 0;
	height: 36px;
	line-height: 36px;
	font-weight: 300;
}

.button.button-share {
	color: #f78b3b;
}

.button-share span {
	margin-right: 0.125rem;
}

@media only screen and (min-width: 768px) {
	.button-share {
		display: inline-block;
	}
}

.button-block {
	display: block;
	width: 100%;
}

.share-mobile {
	display: none;
}

@media only screen and (max-width: 480px) {
	.share-mobile,
	.share-mobile .button-share {
		display: inline-block;
	}
}

.share-mobile,
.share-mobile .button-share {
	position: relative;
}

/* Shortened URL */

.shortened-url {
	font-size: 2rem;
}

.shortened-input {
	margin-bottom: 1rem;
}

.shortened-input input[type="url"] {
	color: #3e3e3e;
}

/* Pretty Print */

.prettyprint.code {
	border: 0;
	border-left: 0.3rem solid #f78b3b;
	color: #655d5d;
}

.prettyprint.code .str {
	color: #4b8b8b;
}

.prettyprint.code .kwd {
	color: #8464c4;
}

.prettyprint.code .com {
	color: #adadad;
}

.prettyprint.code .typ {
	color: #7272ca;
}

.prettyprint.code .lit {
	color: #f78b3b;
}

.prettyprint.code .pun {
	color: #5485b6;
}

.prettyprint.code .clo,
.prettyprint.code .opn {
	color: #f4ecec;
}

.prettyprint.code .atn,
.prettyprint.code .tag {
	color: #f78b3b;
}

.prettyprint.code .atv {
	color: #5485b6;
}

.prettyprint.code .dec {
	color: #b45a3c;
}

.prettyprint.code .var {
	color: #ca4949;
}

.prettyprint.code .fun {
	color: #7272ca;
}

.prettyprint.code.lang-md * {
	color: #655d5d;
}

.form,
.link-container {
	margin-top: 4rem;
}

.container {
	max-width: 640px;
}

.form input[type=submit] {
	width: 100%;
}

.short-url {
	text-align: center;
	font-size: 15px;
}

.custom-link {
	display: flex;
}

.custom-link span {
	padding: 0 1rem;
	font-size: 0.9em;
	letter-spacing: 0;
	height: 3.8rem;
	padding: 0.6rem 0 0.7rem 1.0rem;
	border: 0.1rem solid;
	border-radius: 0.4rem 0 0 0.4rem;
	border-color: #d1d1d1 transparent #d1d1d1 #d1d1d1;
}

.custom-link input[type="text"] {
	margin-left: -1px;
	padding: 0.6rem 1.0rem 0.7rem 0.4rem;
	border-color: #d1d1d1 #d1d1d1 #d1d1d1 transparent;
	border-radius: 0 0.4rem 0.4rem 0;
}

.custom-link input[type="text"]:focus {
	border-color: #f78b3b;
}

.custom-link input[type="text"]::placeholder {
	color: #999;
}

.link-clicks-wrap {
	margin: 5rem 0;
	padding: 5rem 1rem;
	text-align: center;
}

.link-clicks-address,
.link-clicks-text {
	font-size: 2rem;
}

@media only screen and (min-width: 992px) {
	.shortened-url-content {
		margin-bottom: 1rem;
		max-width: 100%;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

}

.shortened-url-content a {
	color: #3498db;
}

.shortened-url-content a:hover {
	text-decoration: underline;
}

.copy-shortened-url button span {
	margin-right: 0.25rem;
}

.shortened_url_actions a {
	margin: 0 1.5rem;
}

#qr-code .light-modal-content {
	max-width: 400px;
}

.link-clicks-num {
	font-size: 5rem;
	font-weight: 700;
}

.link-clicks-text {
	text-transform: uppercase;
}

.error-icon {
	margin: 1.5rem;
	font-size: 64px;
}

.not-found-number {
	margin: 1.5rem;
	font-size: 96px;
	font-weight: 700;
	text-shadow: 3px 3px 0 #f78b3b;
	-webkit-text-stroke: 2px #fff;
	letter-spacing: 0.25rem;
}


/* Footer */

.footer {
	margin-top: 5rem;
	font-size: 95%;
	margin-bottom: 2rem;
}

@media only screen and (max-width: 480px) {
	.footer {
		text-align: center;
	}
}

.footer,
.footer a {
	color: #aaa;
}

.footer .copyright-text a:hover {
	border-bottom: 0.1rem dashed #f78b3b;
}

@media only screen and (max-width: 480px) {
	.footer .copyright-text {
		margin: 1.5rem 0;
	}
}

@media only screen and (min-width: 768px) {
	.footer .social-profiles {
		text-align: right;
	}
}


.footer .social-profiles a {
	margin: 0 0.25rem;
}

.footer .copyright-text a:hover,
.footer .social-profiles a:hover {
	color: #f78b3b;
}

.footer .follow-us-text {
	margin-right: 0.125rem;
}

/* Advertising banner */

#ad-block.container {
	padding: 0;
}

.ad-block {
	padding-left: 1rem;
	padding-right: 1rem;
	text-align: center;
}

/* Popover Styles */

.popover {
	display: none;
	background: #fff;
	border: 0.05rem solid #dbe5e8;
	border-radius: 0.4rem;
	filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.1));
	left: 50%;
	min-width: 13.4rem;
	position: absolute;
	top: 94%;
	transform: translateX(-50%);
}

@media only screen and (max-width: 480px) {
	#popover-menu.popover {
		transform: translateX(-80%);
	}
	#popover-menu.popover::after,
	#popover-menu.popover::before {
		left: 80% !important;
	}
	#popover-share-mobile {
		min-width: 220px;
	}
	#popover-share-mobile.popover {
		transform: translate(-50%, -50%);
	}
	#popover-share-mobile.popover::after,
	#popover-share-mobile.popover::before {
		left: 50% !important;
	}
}

.popover.popover-open {
	display: block;
}

.popover:after,
.popover:before {
	border: solid transparent;
	border-color: transparent;
	border-width: 1rem;
	content: ' ';
	height: 0;
	left: 50%;
	pointer-events: none;
	position: absolute;
	right: 1.7rem;
	top: 0;
	width: 0;
}

.popover:after {
	border-bottom-color: #fff;
	transform: translate(-50%, -100%);
}

.popover:before {
	border-bottom-color: #d1d1d1;
	transform: translate(-50%, -102%);
}

.popover .popover-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.popover .popover-item {
	margin: 0;
	padding: 0;
}

.popover .popover-item:first-child .popover-link {
	border-radius: .4rem .4rem 0 0;
}

.popover .popover-item:last-child .popover-link {
	border-bottom-width: 0;
	border-radius: 0 0 0.4rem 0.4rem;
}

.popover .popover-link {
	border-bottom: 0.1rem solid #dbe5e8;
	color: #f78b3b;
	display: block;
	font-size: 1.25rem;
	padding: 0.8rem 2rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	z-index: 2;
}

.popover .popover-link:hover {
	background: #f78b3b;
	border-bottom-color: #f78b3b;
	color: #fff;
}

#popover-share.popover {
	top: -300% !important;
	transform: translateX(155%);
}

#popover-share.popover:after,
#popover-share.popover:before {
	top: 99.5% !important;
	transform: rotate(180deg) !important;
	z-index: 1;
}

/* Modal Styles */

.light-modal {
	display: none;
	position: fixed;
	background: transparent;
	top: 0;
	bottom: 0;
	left: 0;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	right: 0;
	z-index: 9000;
	transition: background 1s;
	font-size: 16px;
	visibility: hidden;
}

.light-modal-content {
	background: #f1f3f5;
	color: #999;
	width: 100%;
	max-width: 760px;
	border-radius: 0.25rem;
	position: relative;
	max-height: calc(100vh - 150px);
	line-height: 1.4;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.light-modal-content img {
	max-width: 100%;
	border-radius: .2em;
}

.light-modal-content.large-content {
	width: 50vw;
}

.light-modal-header {
	padding: 20px 20px 20px 20px;
	background: rgba(0, 0, 0, 0.25);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	text-shadow: 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.125);
}

.light-modal-heading {
	margin: 0;
	font-size: 1.5em;
}

.light-modal-heading+.light-modal-close-icon {
	position: static;
}

.light-modal-body {
	padding: 20px;
	overflow: auto;
	max-height: 450px;
	scrollbar-width: thin;
}

.light-modal-body::-webkit-scrollbar {
	width: 0.5rem;
}

.light-modal-footer {
	padding: 20px 20px 20px 20px;
	background: rgba(0, 0, 0, 0.2);
	text-align: right;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.light-modal-close-icon,
.light-modal-close-btn {
	background: transparent;
	text-decoration: none;
	color: #fff;
	padding: 0 10px 4px 10px;
	font-size: 1.75em;
	line-height: 1;
	transition: background .2s ease-in-out;
	border-radius: 0.25rem;
}

#image-modal .light-modal-close-icon,
#image-modal .light-modal-close-btn {
	background: #5d5d5d;
	box-shadow: 0 0 0.125rem rgba(255, 255, 255, 0.5);
}

#image-modal .light-modal-close-icon:hover,
#image-modal .light-modal-close-btn:hover {
	background: #3d3d3d;
	color: #fff;
}

.light-modal-close-icon:hover,
.light-modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.75);
	text-shadow: none;
}

.light-modal-close-icon {
	position: absolute;
	top: -15px;
	right: -15px;
}

.light-modal-close-btn {
	font-size: 1em;
}

.light-modal-caption {
	position: absolute;
	left: 50%;
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 100%;
	padding: 10px 0;
	background: rgba(0, 0, 0, 0.2);
	border-radius: .2em;
	width: 100%;
	text-align: center;
	margin-top: 5px;
}

.light-modal:target {
	background: rgba(0, 0, 0, 0.66);
	display: -ms-flexbox;
	display: flex;
	visibility: visible;
}

.light-modal-navigation .navigation-next,
.light-modal-navigation .navigation-prev {
	width: 32px;
	height: 32px;
	border-color: #fff;
	transition: border-color .2s;
}

.light-modal-navigation .navigation-next:hover,
.light-modal-navigation .navigation-prev:hover {
	border-color: rgba(255, 255, 255, 0.7);
}

.light-modal-navigation .navigation-next {
	position: absolute;
	right: -50px;
	top: 50%;
	border-bottom: 1px solid;
	border-left: 1px solid;
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.light-modal-navigation .navigation-prev {
	position: absolute;
	left: -50px;
	top: 50%;
	border-bottom: 1px solid;
	border-left: 1px solid;
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media (max-width: 480px) {
	.light-modal-navigation .navigation-next {
		right: 5px;
	}
	.light-modal-navigation .navigation-prev {
		left: 5px;
	}
}

@keyframes basic {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.basic {
	animation-name: basic;
}

@media (max-width: 767px) {
	.light-modal {
		font-size: 14px;
	}
	.light-modal:target .light-modal-content {
		width: 70vw;
	}
}

@supports (display: flex) {
	@media (max-width: 767px) {
		.light-modal:target .light-modal-content {
			width: 70vw;
		}
	}
}


/* Utilities */

.relative {
	position: relative !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-danger {
	color:#e74c3c !important;
}
