/* arch defualt page*/

.arch-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.left-arch-column {
	flex-basis: 66.67%;
	padding: 20px;
}

.right-arch-column {
	flex-basis: 33.33%;
	padding: 20px;
}

.arch-gallery {
	height: 500px;
	overflow: auto;
}

.arch-gallery img {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.right-arch-column img {
	display: block;
	width: 140%;
    align-content: top;
	position: sticky;
	top: 20px;
}

/* luckyducky*/
#ducky {
  width: 3%;
  max-width: 25px; 
  height: auto;
  margin: 0 auto;
  text-align: center;
  cursor: pointer; 
}

.ducky img {
  width: 100%;
  height: auto;
  max-width: 100px; 
}
/* iframes*/
iframe {
			width: 100%;
			height: 600px;
			border: none;
		}

/* Prevent resizing*/
.maincontainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

@media only screen and (max-width: 767px) {
 .maincontainer {
    min-height: 100%;
    display: block;
    position: relative;
    margin: auto;
    width: 90%;
  }
    
}

@media only screen and (max-width: 767px) {
 .container {
    min-height: 100%;
    display: block;
    position: relative;
    margin: auto;
    width: 90%;
  }
    
}

/* HEADER*/
.homebutton{
	transition: transform 0.2s ease-in-out;
}
.homebutton:hover{
	transform: scale(1.1);
}
.CH {
  position: relative;
  overflow: hidden;
}
.default-txt {
  position: absolute;
  top: 50%;
  left: 45%;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.changed-txt {
  position: relative;
  top: 0%;
  left: 5%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.CH:hover .default-txt {
  opacity: 0;
}

.CH:hover .changed-txt {
  opacity: 1;
}

/* custom scroll bar*/
::-webkit-scrollbar{
	width: 15px;
}
::-webkit-scrollbar-track{
	background: #fff;
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(transparent,#a8a8a8, transparent);
    border-radius: 10px;
}
/* design page gallery*/
.designcontainer{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    justify-content: center;
	position: absolute;
}
.designgallery{
    position: relative;
    overflow: hidden;
	display: flex;
    align-items: center;
    justify-content: center;
}
.img-box{
    overflow: hidden;
	width:100px;
    height: 500px;
    margin: 10px;
    border-radius: 50px;
    background: url(https://freight.cargo.site/w/450/i/beac9944d374287886fb951b946b05052778440d102233edc87769d5d42aa08c/Screenshot-2022-08-13-205047.png);
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
}
.img-box2{
    overflow: hidden;
	width:100px;
    height: 500px;
    margin: 10px;
    border-radius: 50px;
    background: url(https://freight.cargo.site/t/original/i/254333cf7d98a21730dccf200ce8367750ce98442fd1d77e75dba2d086b0013f/thumbnail.png);
 	background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
}
.img-box3{
    overflow: hidden;
	width:100px;
    height: 500px;
    margin: 10px;
    border-radius: 50px;
	background: url(https://freight.cargo.site/t/original/i/a71ae1323e65401a4fbca45535a694b9aca5d8f9f6d1569b970871394ca272b9/Code-Snippit.png);
 	background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
}
.img-box4{
    overflow: hidden;
	width:100px;
    height: 500px;
    margin: 10px;
    border-radius: 50px;
	background: url(https://freight.cargo.site/w/350/i/16e70c18f4000905573c2983939742405f0e59f20f4938f5d3ef0e068bce29b4/9.png);
 	background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
}
.img-box small{
    position: absolute;
    bottom: 0;
    left: 30px;
    opacity: 0%;
    transition: bottom 0.5s, opacity 0.5s;
}
.img-box:hover{
	width: 500px;
    cursor: pointer;
}
.img-box:hover small{
	font-size: larger;
    opacity: 100%;
    bottom: 25px;
}
.img-box2 small{
    position: absolute;
    bottom: 0;
    left: 30px;
    opacity: 0%;
    transition: bottom 0.5s, opacity 0.5s;
}
.img-box2:hover{
	width: 500px;
    cursor: pointer;
}
.img-box2:hover small{
	font-size: larger;
    opacity: 100%;
    bottom: 25px;
}
.img-box3 small{
    position: absolute;
    bottom: 0;
    left: 30px;
    opacity: 0%;
    transition: bottom 0.5s, opacity 0.5s;
}
.img-box3:hover{
	width: 500px;
    cursor: pointer;
}
.img-box3:hover small{
	font-size: larger;
    opacity: 100%;
    bottom: 25px;
}
.img-box4 small{
    position: absolute;
    bottom: 0;
    left: 30px;
    opacity: 0%;
    transition: bottom 0.5s, opacity 0.5s;
}
.img-box4:hover{
	width: 500px;
    cursor: pointer;
}
.img-box4:hover small{
	font-size: larger;
    opacity: 100%;
    bottom: 25px;
}

/* nav hover*/
.text-wrapper {
  position: relative;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.text-wrapper:hover .default-text {
  opacity: 0;
}

.text-wrapper:hover .hover-text {
  opacity: 1;
}
/* scroll gallery*/

.tile { 
    pointer-events:auto;
}

body {
  height: 0px;  
  margin: 0px;
  overflow: auto;
}

#gallery {
  height: 140vmax;
  width: 140vmax;
  position: center;
  pointer-events: none;
  overflow: hidden;
  
}

.tile {
  border-radius: 0vmax;
  position: absolute;
  transition: transform 800ms ease;
}

.tile:hover {
  transform: scale(1.1);
}

.tile:hover > img {
  opacity: 1;
  transform: scale(1.01);
}

.tile > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 800ms ease,
    transform 800ms ease;
}

.tile:nth-child(1) {
  background-image: url(https://freight.cargo.site/t/original/i/afb0bffb12dacd242934f7cb97c87355af819682115ee791c4b13ee9f0458e9e/Meteor-Thumbnail.png);
  background-size: cover;
  opacity: 90%;
  height: 14%;
  width: 20%;
  left: 0%;
  top: 0%;
}

.tile:nth-child(2) {
  background-image: url(https://freight.cargo.site/t/original/i/205aaaedf47d13048e2ff1b3ea9613a25a94378c0ee57ae8da6f1dc15c9fd4fc/Bridge-Thumbnails.png);
  background-size: cover;
  opacity: 90%;
  height: 20%;
  width: 14%;
  left: 32%;
  top: 32%;
}

.tile:nth-child(3) {
  background-image: url(https://freight.cargo.site/t/original/i/03012e83132f134efc8788347fa6797b8b3027e0ac32208b0bb3161e18ef6552/Angel-Thumbnail.png);
  background-size: cover;
  opacity: 90%;
  height: 18%;
  width: 16%;
  left: 11%;
  top: 17%;
}

.tile:nth-child(4) {
  background-image: url(https://freight.cargo.site/t/original/i/ebadae109fab7a4ec6dddd9b62830c3bb0c7d75dda30f88ffab46dd88170dc05/Meteor-Model.png);
  background-size: cover;
  opacity: 90%;
  height: 14%;
  width: 12%;
  left: 65%;
  top: 25%;
}

.tile:nth-child(5) {
  background-image: url(https://freight.cargo.site/t/original/i/aacbbe7516f682f2b9acd044bb7f973141cb898bc4a592511f788d17c8973106/Lift-Outside-Thumbnail.png);
  background-size: cover;
  opacity: 90%;
  height: 7%;
  width: 7%;
  left: 52%;
  top: 23%;
}

.tile:nth-child(6) {
  background-image: url(https://freight.cargo.site/t/original/i/6fbb070010b80e6c19d9c29269e3a700b49cf3e8cbe7c65afb584cd18166cea2/Morillion-Thumbnail.png);
  background-size: cover;
  opacity: 90%;
  height: 8%;
  width: 15%;
  left: 9%;
  top: 38.2%;
}

.tile:nth-child(7) {
  background-image: url(https://freight.cargo.site/t/original/i/d10e919f335e2f988c2cbdace9c7998547fff9a11f9274b36f47a2029e11aba7/Lift-Room-Thumbnail.png);
  background-size: cover;
  opacity: 90%;
  height: 7%;
  width: 7%;
  left: 32%;
  top: 23%;
}


.tile:nth-child(8) {
  background-image: url(https://freight.cargo.site/t/original/i/6e46f93f43f037aeabe2a6045f1be23065ab7a816c77929ca485d3e5e9042011/Crossroads-Trace.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 90%;
  height: 14%;
  scale: 60%;
  width: 28%;
  left: 45%;
  top: 8%;
}

.tile:nth-child(9) {
  background-image: url(https://freight.cargo.site/t/original/i/7b39e7850309c57efc265f9d1e34a9b9c434e806432e9cfe2d6203670fc770ab/Lift-Gym-Thumbnail.png);
  background-size: cover;
  opacity: 90%;
  height: 7%;
  width: 7%;
  left: 42%;
  top: 23%;
}



/* mousemove image gallery*/
body {
  background-color: black;
  height: 100%;
  margin: 0px;
}

.image {
  width: 40vmin;
  position: absolute;
  display:flex;
  transform: translate(-100%,-60%);
}

.image[data-status="inactive"] {
  display: none;
}

.image[data-status="active"] {
  display: block;
}

/* keep everything under this line */
.hover-title {
    display: inline;
    pointer-events: auto;
    cursor: pointer;
}

.hover-image {
    visibility: hidden;
}

body:not(.mobile) .hover-title:hover + .hover-image {
    visibility: visible;
    pointer-events: none;
}
/* ARCH PAGE HOVER THUMBNAILS */
.hover-image {
    display: flex;
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: -9;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

/* Change width and height to scale images */
    width: 90vw;
    height: 90vh;
}

.hover-image img {
    max-width: 50% !important;
    max-height: 50% !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0;
}


.flier {
	pointer-events: none;
}

.flier > * {
/* Adjust animation duration to change the element’s speed */
        animation: fly 50s linear infinite;
        pointer-events: none !important;
	top: 0;
	left: 0;
	transform: translateX(-120%) translateY(-120%) rotateZ(0);
	position: fixed;
	animation-delay: 1s;
	z-index: 999999;
}

 /* Keyframe values control where the element will begin
    and end its trajectory across the screen. Each rule
    represents a path the element follows across the screen. */


@keyframes fly {

	98.001%, 0% {
                display: block;
		transform: translateX(-200%) translateY(100vh) rotateZ(0deg)
	}

	15% {
		transform: translateX(100vw) translateY(-100%) rotateZ(180deg)
	}

	15.001%, 18% {
		transform: translateX(100vw) translateY(-30%) rotateZ(0deg)
	}

	40% {
		transform: translateX(-200%) translateY(3vh) rotateZ(-180deg)
	}

	40.001%, 43% {
		transform: translateX(-200%) translateY(-100%) rotateZ(-180deg)
	}

	65% {
		transform: translateX(100vw) translateY(50vh) rotateZ(0deg)
	}

	65.001%, 68% {
		transform: translateX(20vw) translateY(-200%) rotateZ(180deg)
	}

	95% {
		transform: translateX(10vw) translateY(100vh) rotateZ(0deg)
	}
}


.rotate {
    display: inline-block;
    -webkit-animation: rotate 20s linear infinite;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

html {
    cursor: url("https://freight.cargo.site/t/original/i/3abcbeb8d08b481bb29e44483c0bf10d1b66f6440d0c326f7ba30b75eda384fc/Cursor-2.png"), auto !important;
}

a {
    cursor: url("https://freight.cargo.site/t/original/i/40c4d3ef31ce54b536285ad7fd39c1f233f2a78777ebaaca66d81c8a2417f9d2/Action-Cursor.png"), auto !important;
}

.content img {
    cursor: url("https://freight.cargo.site/t/original/i/40c4d3ef31ce54b536285ad7fd39c1f233f2a78777ebaaca66d81c8a2417f9d2/Action-Cursor.png"), auto !important;
}

#toolset {
	display: none;
}

body {
	background-color: transparent;
	color: transparent;
}

a:active {
    opacity: .7;
}

.page a.active {
	
}

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
	padding: 0;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 2.5em;
}

blockquote {
	margin: 0;
	padding: 0 0 0 1em;
}

hr {
	background: rgba(127, 127, 127, 0.4);
	border: 0;
	height: 1px;
	display: block;
}

.content img {
	float: none;
	margin-bottom: 0;
    outline-offset: -1px;
    vertical-align: bottom;
}

[image-gallery="slideshow"] {
    margin-bottom: 2rem;
}

.gallery_image_caption {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.2;
    text-align: left;
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
	font-size: 1.8rem;
	color: rgba(0, 0, 0, 0.75);
	font-family: "Optician Sans", Icons;
	line-height: 1.3;
    letter-spacing: 0.12rem;
	font-style: normal;
	font-weight: 400;
}

[data-predefined-style="true"] bodycopy a {
	color: rgba(0, 0, 0, 0.75);
	text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {

}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: "Optician Sans", Icons;
	font-style: normal;
	font-weight: 400;
    width: 100%;
    min-width: 800px;
    resize: none;
	padding: 0;
	margin: 0;
	font-size: 12.0vmin;
	line-height: 1;
	color: rgba(0, 0, 0, 0.85);
    letter-spacing: 0.3rem;
}

[data-predefined-style="true"] h1 a {
	color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] h2 {
	font-family: "Optician Sans", Icons;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	color: rgba(0, 0, 0, 0.75);
	font-size: 3.2rem;
	line-height: 1.1;
	}

[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.75);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.2;
	font-family: "Diatype Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

[data-predefined-style="true"] small a {
	color: rgba(0, 0, 0, 0.6);
	border-bottom-width: 0em;
}

/**
 * Breakpoints
 */


[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
    min-width: 75%;
    margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
	text-align: center /*!text_center*/;
}

[data-css-preset] body {
	background-color: transparent /*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100% /*!content_center*/;
}

[data-css-preset] .content_padding {
	padding-top: 0rem /*!main_margin*/;
	padding-bottom: 0rem /*!main_margin*/;
	padding-left: 0rem /*!main_margin*/;
	padding-right: 0rem /*!main_margin*/;
}

/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 100%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 0.75rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -1.5rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 0.5rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -1rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(0,0,0,.12);
    outline-offset: -1px;
}

.thumbnails .title {
    margin-top: 1.0rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.3;
}

.thumbnails .tags {
    margin-top: .8rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
	font-family: "Monument Grotesk Mono", Icons;
	font-style: normal;
	line-height: 1.2;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: 0rem;
}

/**
 * Site Menu Button
 */

[data-css-preset] #site_menu_button {
    color: rgba(0, 0, 0, 0.75);
    line-height: 10;
    font-size: 28px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    background: rgba(33, 32, 46, 0);
    position: fixed;
	top: 3rem /*!site_menu_button*/;
	left: 3rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -6px;
    font-size: 24px;
}

#site_menu_button.custom_icon {
	width: 40px;
    height: auto;
}

#site_menu_button.active {
	display: none;
}


/**
 * Site Menu
 */

#site_menu {
	font-family: -apple-system, BlinkMacSystemFont, "Optician Sans", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	background: rgba(20, 20, 20, 0.95);
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
}

body.mobile #site_menu {
	width: 70%;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .4;
}

#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 50px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}


/*
 * Image Zoom
 */

.content img.image-zoom:active {
  opacity: .7;
}

/**
 * Quick View
 */

[data-css-preset] .quick-view {
    padding-top: 2.5rem /*!quick_view_padding*/;
    padding-bottom: 2.5rem /*!quick_view_padding*/;
    padding-left: 2.5rem /*!quick_view_padding*/;
    padding-right: 2.5rem /*!quick_view_padding*/;
    height: 100% /*!quick_view_height*/;
    width: 100% /*!quick_view_width*/;
}

body.mobile .quick-view {
    width: 100%;
    height: 100%;
    margin: 0;
}

[data-css-preset] .quick-view-background {
	background: rgba(255, 255, 255, 1) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
    font-family: "Monument Grotesk Mono", Icons;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 3.5rem 0;
    text-align: center;
    font-size: 1rem;
	font-style: normal;
	font-weight: 400;
    line-height: 1.2;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.4);
    color: white;
}


/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
    left: 10px;
}

.quick-view-navigation .right-arrow {
    right: 10px;
}

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 0px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2px;
}

.quick-view-navigation .close-button {  
    top: 10px;
    right: 10px;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
}

.quick-view-navigation .close-button .inner-color {
    stroke: #fff;
    stroke-width: 0px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2px;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 36px;
   height: 36px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   stroke: #fff;
    stroke-width: 1.5px;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}


/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}