/*
Author: Mark Mortensen
Version: 1.0
*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:     100%;
	text-size-adjust:		100%;
    margin:0;
    padding:0;
}

body {
    margin: 0;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #737373;
    background-color: #ffffff;
}

/**
 * Boxed WebLayout
*/
body.boxed {
    width: 85%;
    margin: 0 auto;
}
body.boxed .container {
    padding-right: 0px;
    padding-left: 0px;
}
body.boxed .site {
    background: #fff none repeat scroll 0 0;
    border-right: 1px solid rgba(171, 170, 170, 0.1);
    border-left: 1px solid rgba(171, 170, 170, 0.1);
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 15px;
}
.gallery figure {
    margin:0px;
    padding: 3px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
	resize: none;
}

optgroup {
    font-weight: bold;
}

table {
    margin: 0 0 15px;
    width: 100%;
    border-collapse: collapse;
}

th {
    font-weight: bold;
    border: 1px solid #CCCCCC;
	color: white;
	background-color: #292969;
}

td {
    border: 1px solid #CCCCCC;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #737373;
    background-color: #ffffff;
}

h1,h2,h3,h4,h5,h6 {
	color: #202070;
    font-weight: normal;
    clear:both;
}
h1{
    font-size:42px;
    line-height: 44px;
}
h2{
    font-size: 32px;
    line-height: 34px;
}
h3{
	margin-top: .4em;
	margin-bottom: .3em;
    font-size: 24px;
	font-weight: bold;
}
h4{
	margin-top: .25em;
	margin-bottom: .4em;
    font-size:20px;
	font-weight: bold;
}
h5{
	margin-top: .5em;
	margin-bottom: .3em;
	font-weight: bold;
    font-size:16px;
}
h6{
	margin-top: 0;
	margin-bottom: .25em;
	font-weight: bold;
    font-size: 14px;
}

p, span {
    font-size: 14px;
}

label 
{
	font-size: 14px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 15px;
}

address {
    margin: 0 0 1.5px;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: transparent;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #ffffff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ul,
ol {
    margin: 0;
    padding: 0;
    margin-left: 15px;
}

ul {
    list-style:disc;
}

ol {
    list-style:decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 15px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 15px 15px;
}

img {
    vertical-align: middle;
    height: auto; /* Make sure `s are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

table {
    margin: 0 0 15px;
    width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #000064;
    background-color:#000064;;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    padding:10px 18px;
}


button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #000064;
    color: #000064;
    background-color:transparent;
}


button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #a8a8a8;
    border: 1px solid #cccccc;
    padding: 2px;
    font-size: 14px;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Miscellaneous
--------------------------------------------------------------*/
.hr-line
{
	clear: both;
	display: block;
	width: 100%;
	height: 5px;
	border-style: solid;
	border-top: 1px;
	border-bottom: 1px;
	margin: 0;
	background-color: gray;
	
}

.hr-line-1
{
	border-top: 1px solid #bfbfbf;
	width: 100%;
	height: 1px;
}
.hr-line-2
{
	border-top: 1px solid #292969;
	width: 100%;
	height: 1px;
}

.top0
{
	margin-top: 0;
}
.top25
{
	margin-top: .25em;
}
.top50
{
	margin-top: .5em;
}
.bottom0
{
	margin-bottom: 0;
}
.bottom25
{
	margin-bottom: .25em;
}
.bottom50
{
	margin-bottom: .5em;
}

.hyperlink
{
	color: blue;
}

.center
{
	text-align: center;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    text-decoration: none;
    color: #555;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
    color: #000064;;
}

a:focus {
    outline: 0;
    border:0;
    box-shadow: 0;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 15px;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 15px;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.sa-floatleft{
    float: left;
}
.sa-floatright{
    float: right;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.sa-clear:before,
.sa-clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.sa-clear:before,
.sa-clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.header-top {
    background-color: #000000;
    color: #fff;
	height: 34px;
}
.header-main {
	background-image: url("../images/header-home2.jpg");
	background-repeat: no-repeat; 
	background-position: center center; 
	background-size: cover;
    padding: 0 0;
	height: 150px;
}
.sa-topheader .sa-topleft ul li {
    font-family: 'Poppins', sans-serif;
    float: left;
    list-style-type: none;
    padding: 0 12px;
}
.sa-topheader .sa-topleft ul li span{
    color: #000064;
    padding-right: 5px;
}
.sa-topheader .sa-topleft ul li a{
    color: #fff;
}
.sa-topheader .sa-topleft ul li a:hover{
    color: #000064;
}
.sa-topheader .sa-topleft ul li:first-child{
    padding-left: 0;
}

.sa-logo {
    float: left;
	padding-left: 10px;
}
.sa-logo-title {
    float: left;
    text-align: center;
}
.sa-site-title {
    margin:0;
    font-weight:600;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
}
.sa-site-title a {
    color:#000064;
}
.sa-site-description {
    margin:0;
    line-height: 1;
    font-size: 13px;
    color:#2b2c2c;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.section-title
{
	margin-top: .5em;
}
.page-title
{
	margin-top: .75em;
}
.page-title-disabled
{
	color: #AAAAAA;
}

.thumbnail-title
{
	color: #292969;
	margin-top: .5em;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# ships
--------------------------------------------------------------*/
.ship-plan
{
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	padding-top: 20px;
}
.ship-plan:last-child
{
	padding-bottom: 10px;
}
.ship-image
{
	flex: 0 1 auto;
}
.ship-image img
{
	border: none;
}
.ship-name
{
	color: #202070;
}
.ship-name-new
{
	color: #FF0000;
}
.ship-text
{
	flex: 1 1 40em;
	padding: 0px 10px;
}
.plan-container-lines
{
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
}
.mini-deckplan
{
	flex-basis: 50%;
}
.mini-deckplan-text
{
	flex-basis: 60%;
	margin: .3em;
}

.plan-container-decks
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	margin-top: .25em;
	margin-left: .5em;
	margin-right: .5em;
	margin-bottom: .25em;
}
.plan-image
{
	flex-basis: 100%;
	border: 1px solid #CCCCCC;
	margin-bottom: 5px;
}
.plan-text
{
	flex-basis: 100%;
}
.plan-preview
{
	position: relative;
	display: block;
}

.plan-item
{
	flex-basis: 100%;
}
.plan-item img
{
	border: 1px solid #CCCCCC;
	margin-bottom: 5px;
}
.plan-left
{
	margin-right: .5em;
}
.plan-right
{
	margin-left: 5px;
}
.text-item
{
	flex-basis: 100%;
}
.preview-text
{
	position: absolute;
	font-size: 3.25em;
	color: #DD0C0C;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-weight:  700;
	letter-spacing:  4px;

}
.linesplan-text
{
	margin-top: 0; 
	margin-bottom: 0;
}

.max-640
{
	max-width: 640px;
}
.max-600
{
	max-width: 600px;
}
.max-535
{
	max-width: 535px;
}
.max-508
{
	max-width: 508px;
}
.bridge-margin
{
	margin-top: 33px;
}
.nc-bridge-margin
{
	margin-top: 28px;
}
.nc-superstructure-margin
{
	margin-top: 28px;
}

.platform-fix
{
	margin-top: .02px;
}

@media screen and (max-width: 1348px)
{
	.bridge-margin
	{
		margin-top: 0px;
	}
}

@media screen and (max-width: 1392px)
{
	.nc-superstructure-margin
	{
		margin-top: 0px;
	}
}
@media screen and (max-width: 1121px)
{
	.nc-bridge-margin
	{
		margin-top: 0px;
	}
}


@media screen and (max-width: 600px){
	.plan-container
	{
		width: 100%;
	}
}

@media screen and (max-width: 899px)
{
	.ship-plan
	{
		display: flex;
		flex-flow: column nowrap;
		width: 100%;
		padding-top: 15px;
	}
	.ship-text
	{
		flex: 0 1 auto;
		padding: 10px 5px;
	}
}

@media screen and (min-width: 1252px)
{
	.ran-padding
	{
		margin-bottom: 19px;
	}
}


/*--------------------------------------------------------------
## Main Container
--------------------------------------------------------------*/
.sa-container{
    max-width: 1400px;
    margin: 0 auto;
    padding-left:10px;
    padding-right:10px;
}
.site-main {
    padding: 5px 0;
}
.sa-row{
margin-left:-15px;
margin-right:-15px;
}

#primary{
    width: 100%;
    float: left;
    padding-left:15px;
    padding-right:15px;
}

/*--------------------------------------------------------------
## Main Header Cart Product Lists
--------------------------------------------------------------*/
.sa-cart-main{
    float:right;
    height: 34px;
    position: relative;
    padding-left:43px;
}
.sa-cart-main:before{
    content: "\f07a";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    text-decoration: inherit;
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 0;
    width:44px;
    height:34px;
    background:#FFFFFF;
    color:#000000;
    z-index:9;
    text-align:center;
    line-height:34px;
	border-top: 1px solid #000064;
	border-left: 1px solid #000064;
	border-bottom: 1px solid #000064;
}

.sa-cart-remove-item{
    content: "\f00d";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
    position: relative;
    top: 0;
    left: 0;
    width:44px;
    height:30px;
    background:#ffffff;
    color:#ff0000;
    z-index:9;
    text-align:center;
    line-height:34px;
}

.view-cart a{
    display: block;
    height: 34px;
    line-height: 34px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    padding: 0px 10px;
    background: #fff;
	border-top: 1px solid #000064;
	border-right: 1px solid #000064;
	border-bottom: 1px solid #000064;
}
.cart-summary
{
	font-weight: bold;
	color: red;
}
.view-cart .header-icon{
    display: none;
}

/*--------------------------------------------------------------
## Main Navigation Menu
--------------------------------------------------------------*/
.sa-menulink {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #dedede;
    margin: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
	line-height: 2.25;
}
.menu-shiplist
{
	float: left;
}

.menu-other
{
	float: right;
}
.secondary-menu
{
	padding: 0 5px;
}

.sa-menulink ul  {
    margin:0;
    padding: 0;
    list-style: none;
}
.sa-menulink ul li {
    display: inline-block;
    position: relative;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
}

.submenu li {
	width: 100%
}

.sa-menulink .menu-other ul li a{
    display: inline-block;
    padding: 0px 10px 0px 0px;
    position: relative;
    border-right: 1px solid #cccccc;
}
.sa-menulink ul li:last-of-type a{
    border-right: 0px solid #cccccc;
}
.sa-menulink ul li.menu-item-has-children a{
    padding-right:30px;
}

.submenu > li > a{
    border-right: 0;
}

.sa-menulink ul li:hover > a, 
.submenu > li:hover > a, 
.sa-menulink ul ul > li.current_page_item a,
.sa-menulink ul > li.current-menu-item>a {
    color: #000064;;
}

.submenu li{
    font-size: 12px;
    position: relative;
    padding-left: .5em;
    display: block;
}

.submenu li {
    display: block;
    line-height: 2em;
}
.submenu li a {
    display: block;
    padding: 3px;
}
.submenu li:hover {
    background-color:#DDDDDD;
}
.submenu
{
	border: 2px solid #CECECE;
}

.ul-break
{
	border-top: 1px solid #CECECE;
}


/*--------------------------------------------------------------
## Hamburger Menu
--------------------------------------------------------------*/
.sa-menulink #menu-toggle-id {
    display:none;
    width:35px;
    margin:15px 0;
    float: left;
    cursor: pointer;
	height: 30px;
	background-color: rgba(0, 0, 0, 0.25);
	padding-top: 2px;
}
/* This displays the three horizontal lines */
.sa-menulink .hamburger-menu div {
    width:100%;
    height:5px;
    background-color:#000064;
	margin:3px 0;
    -webkit-transition:all 0.4s ease-in-out;
    -moz-transition:all 0.4s ease-in-out;
    transition:all 0.4s ease-in-out;
}
/* Next statements display an X when menu-active has been enabled. */
.sa-menulink .hamburger-menu.menu-active div.one {
    transform: rotate(45deg) translate(5px, 5px);
	background-color: red;
}
.sa-menulink .hamburger-menu.menu-active div.two {
    opacity: 0;
}
.sa-menulink .hamburger-menu.menu-active div.three {
    transform: rotate(-45deg) translate(6px, -7px);
	background-color: red;
}


/*--------------------------------------------------------------
## Add to Cart
--------------------------------------------------------------*/
.purchase-container
{
	display: block;
	float: left;
	position: relative;
	width: 200px;
	margin-left: 20px;
	margin-bottom: 1em;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: rgba(245,245,220,.5);
}
.purchase-container-custom
{
	width: 300px;
	text-align: left;
}
.purchase-container .plan-title
{
	width: 100%;
	height: 2em;
	background-color: #292969;
	font-weight: 100;
	padding-top: 4px;
}
.plan-title .plan-title-text
{
	display: block;
	text-align: center;
	color: white;
	margin: 0 auto;
	font-weight: bold;
}
.plan-price
{
	display: block;
	text-align: center;
	color: black;
	margin: 0 auto;
	font-weight: bold;
	margin-top: 1em;
}
.plan-quantity
{
	color: black;
	font-weight: bold;
}
.purchase-table
{
	border: none;
	font-size: .85em;
	width: 85%;
	margin: 0 auto;
	table-layout: fixed;
}
.purchase-table td, th
{
	padding: 1px;
	text-align: center;
}
.purchase-fraction
{
	font-size: .84em;
}
.purchase-table-caption
{
	font-weight: bold;
	padding-top: .25em;
	color: black;
}
.purchase-table-header
{
	text-align: center;
}
.ptable_1
{
	width: 40%;
}
.ptable_2
{
	width: 60%;
}

.purchase-text
{
	font-size: .8em;
}

.cart-form
{
	text-align: center;
	width: 100%;
}

.custom-plans
{
	display: block;
	font-size: 1em;
	text-align: left;
	padding: .5em;
}

.add-to-cart-form
{
	position: relative;
	display: block;
	text-align: center;
	width: 100%;
	margin-top: .5em;
	margin-bottom: .5em;
	height: 4.5em;
}

#add-to-cart-form_custom
{
	margin-top: .5em;
	margin-bottom: .75em;
	text-align: center;
	width: 100%;
}

.custom-input
{
	height: 2em;
	margin-left: .25em;
	margin-right: .25em;
	margin-bottom: .5em;
	width: 80%;
}

input[type=submit].add-to-cart-button
{
	padding: 0.3em 1.2em;
	border-radius: 0.75em;
	border: 1px solid #000000;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Roboto',sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	background-color: #2F43A3;
	transition: all 0.2s;
	margin-top: .5em;
}

input[type=submit].add-to-cart-button:hover
{
	background-color: #4095c6;
}

.order-quantity
{
	max-width: 4em;
}
.order-quantity:invalid
{
	border: red solid 1px;
}
.edit-cart-button
{
	position: relative;
	background-color: #292969;
	color: #FFFFFF;
	margin-top: .5em;
	padding-top: .25em;
	padding-bottom: .25em;
	width: 10em;
	text-align: center;
}
.edit-cart
{
	color: #FFFFFF;
}

#custom-error-text
{
	display: inline-block;
	color: red;
	margin-left: 1em;
	margin-right: 1em;
}

@media all and (max-width:30em)
{
	input[type=submit].add-to-cart-button{
		display: block;
		margin: 0.2em auto;
	}
}

/*--------------------------------------------------------------
## images
--------------------------------------------------------------*/
div:target
{
  border: 4px solid #801c1c;
}

.thumbnails a img
{
	margin: 1px;
	border: 2px solid white;
}

.thumbnails a img:hover
{
	
	border: 2px solid #801c1c;
}

.photo_container
{
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
}
.photo-container-wrap
{
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}
.photo-container-425  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 425px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-500  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 500px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-525  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 525px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-550  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 550px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-600  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 600px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-625  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 625px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-650  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 650px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-container-700  /* photo and text */
{
	float: left;
	display: flex;
	flex-flow: column nowrap;
	max-width: 700px;
	margin-top: .5em;
	margin-left: .5em;
	margin-right: .5em;
	padding: 5px;
}
.photo-image
{
	flex: 0 1 100%  /* grow shrink basis */
}
.photo-text
{
	flex: 0 1 100%  /* grow shrink basis */
}

.photo_box_photo
{
	flex-basis: 100%;
}
.photo_box_text
{
	flex-basis: 100%;
}

/*-------------------------------------------------------------*/
@media screen and (max-width: 700px)
{
	.photo_container
	{
		display: flex;
		flex-flow: column nowrap;
		width: 100%;
		padding-top: 10px;
	}
}

.photo_separator
{
	display: none;
}

/*--------------------------------------------------------------
## Shopping cart
--------------------------------------------------------------*/
.continue-shopping{
	display: block;
	position: relative;
	padding: 2px 5px;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Roboto',sans-serif;
	font-weight: 600;
	color: #000000;
	background-color: #eeeeee;
	transition: all 0.2s;
	width: 225px;
	text-align: center;
	margin: 0 0 10px 10px;
	font-size: 46px;
	height: 46px;
	flex-basis: auto;
}
.continue-shopping:hover{
	background-color: #888888;
}
.continue-shopping-text{
	font-size: 16px;
	padding-top: .75em;
}
.continue-shopping-text::before{
	content: "\f104";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    text-decoration: inherit;
    font-size: 46px;
	position: absolute;
	top: -8px;
	left: 5px;
}

.shopping-checkout{
	display: block;
	position: relative;
	padding: 2px 5px;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Roboto',sans-serif;
	font-weight: 600;
	color: #000000;
	background-color: #eeeeee;
	transition: all 0.2s;
	width: 225px;
	text-align: center;
	margin: 0 0 10px 10px;
	font-size: 46px;
	height: 46px;
	flex-basis: auto;
}
.shopping-checkout:hover{
	background-color: #888888;
}
.shopping-checkout-text{
	font-size: 16px;
	padding-top: .75em;
}
.shopping-checkout-text::after{
	content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    text-decoration: inherit;
    font-size: 46px;
	position: absolute;
	top: -8px;
	right: 10px;
}
.cart-buttons
{
	display: flex;
	flex-flow: row nowrap;
	width: 450px;
}

.cart-quantity
{
	width: 4em;
}

.cart-quantity:invalid
{
	border: red solid 1px;
}

input[type=number].cart-quantity::-webkit-inner-spin-button, 
input[type=number].cart-quantity::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

@media screen and (max-width:650px)
{
	.cart-quantity
	{
		width: 2em;
	}
}


/*--------------------------------------------------------------
## Shipping
--------------------------------------------------------------*/
.shipping-prep
{
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
}
.shipping-prep-item
{
	flex: 0 1 auto;
}

.shipping-prep-item:first-child
{
	margin-right: 3em;
}

.restricted_650
{
	max-width: 650px;
}

#shipping-address
{
	flex: 1 1 auto;
	max-width: 30em;
	margin-right: .5em;
}

#billing-address
{
	flex: 1 1 auto;
	max-width: 30em;
	display: none;
}
#shipping-content
{
	float: left;
	max-width: 30em;
/*	margin-right: 2em; */
	margin-bottom: 1em;
}
#shipping-form-id 
{
	display: flex;
	width: 100%;
	flex-direction: column;
	flex-wrap: nowrap;
}
#address-form-id 
{
	display: flex;
	width: 100%;
	flex-direction: column;
	flex-wrap: nowrap;
}
.shipping-fieldset
{
	padding-left: 0px;
	padding-right: 0px;
	border: 0;
}
.shipping-legend
{
	font-size: 1.25em;
	background-color: #292969;
	color: #FFFFFF;
	font-weight: bold;
	width: 100%;
	padding-left: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.shipping-form-label
{
	display: block;
}
.shipping-form-input
{
	display: inline-block;
	margin-bottom: .3em;
}
#ship-method-container
{
	margin-bottom: .75em;
}
.shipping-method
{
	margin-bottom: 0;
}
.shipping_form_textarea{
	margin-bottom: .75em;
}
.required-input{
	color: red;
}
.shipping-form-field-container
{
	border: 1px solid #CCCCCC;
	padding: .4em;
}
.shipping-input
{
}
.shipping-zero
{
	color: red;
}
/*
#verify-address-id
{
	display: inline-block;
	margin-top: .6em;
	margin-bottom: .6em;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
*/
#address-error-text
{
	display: inline-block;
	color: red;
	margin-left: 1em;
}
#bill-error-text
{
	display: none;
	color: red;
	margin-left: 1em;
}
#final-payment
{
	position: relative;
	margin-top: 1em;
	margin-bottom: 2em;
/*	left: 50%; */
/*	transform: translate(-50%,0); */
}


/*--------------------------------------------------------------
## Cart Page
--------------------------------------------------------------*/
.shopping-cart
{
	max-width: 800px;
	margin: 0 auto 20px 0;
	display: table;
	border-collapse: collapse;
	table-layout: fixed;
}
.shopping-cart td, th
{
	text-align: left;
	padding-left: 0.5em;
	text: nowrap;
}
.shopping-cart tr
{
	height: 2em;
}

.double-top-border
{
	border-top-style: double;
}

.shopping-cart-total
{
	font-weight: bold;
	border-top-style: double;
}
.table-cart-summary
{
	max-width: 500px;
	min-width: 400px;
	display: table;
	border-collapse: collapse;
	table-layout: fixed;
	text-align: left;
}
.table-cart-summary td, th
{
	text-align: left;
	padding-left: .5em;
}
#shopping-cart-summary
{
	float: right;
	width: calc(100% - 30em);
	text-align: left;
	margin-bottom:  1em;
}

@media screen and (max-width:799px)
{
	#shopping-cart-summary
	{
		float: left;
		width: 100%;
		text-align: left;
	}
}


/*--------------------------------------------------------------
## Breadcrumbs Section
--------------------------------------------------------------*/
.breadcrumb {
    padding: 4px 5px 3px 5px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.25);
	border-top: 2px solid rgb(200,200,0);
	border-bottom: 2px solid rgb(200,200,0);
	text-align: left;
}

.breadcrumb .sa-container{
    position: relative;
	margin: auto;
}

.breadcrumb .sa-container a:hover
{
    color: #FFFF00;
}



/************************************************************************************************************************************
* Payment form
************************************************************************************************************************************/
#payment-form {
  max-width: 550px;
  min-width: 300px;
  margin: 50px auto;
}

.buyer-inputs {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border: none;
  margin: 0;
  padding: 0;
}

#card-container {
  margin-top: 45px;
  /* this height depends on the size of the container element */
  /* We transition from a single row to double row at 485px */
  /* Setting this min-height minimizes the impact of the card form loading */
  min-height: 90px;
}

@media screen and (max-width: 500px) {
  #card-container {
    min-height: 140px;
  }
}

#landing-page-layout {
  width: 80%;
  margin: 150px auto;
  max-width: 1000px;
}

#its-working {
  color: #737373;
}
#payment-status-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  border-radius: 50px;
  margin: 0 auto;
  max-width: 50em;
  height: 3em;
  visibility: hidden;
}

/************************************************************************************************************************************
* 404 Page not Found
************************************************************************************************************************************/
.not-found{
    text-align: center;
}
.not-found .page-header h1 {
    color: #000064;
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 0;
}
.no-results.not-found .page-content p {
    font-size: 18px;
    line-height:1.6;
    margin-bottom:30px;
}
.no-results.not-found .page-content input[type="search"] {
        max-width: 400px;
    width: 100%;
}
.not-found .sa-backhome {
    margin-top: 70px;
}
.not-found .sa-backhome a {
    background-color: #000064;
    border-radius: 2px 2px 2px 2px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border:1px solid #000064;
}
.not-found .sa-backhome a:hover{
    background: transparent;
    border-color: #000064;
    color: #000064;
}

/*--------------------------------------------------------------
## Main Footer
--------------------------------------------------------------*/
.sa-footer
{
	clear: both;
    background-color: rgba(0, 0, 0, 0.25);
	border-top: 2px solid rgb(200,200,0);
	border-bottom: 2px solid rgb(200,200,0);
	min-height: 2.25em;
	text-align: left;
	font-size: 1em;
	padding-top: 6px;
	padding-bottom: 6px;
}
.footer_HR
{
	margin-top: 0px;
	background-color: rgb(100,100,50);
	height: 2px;
    background-color: rgba(0, 0, 0, 0.25);
	border-top: 2px solid rgb(200,200,0);
	border-bottom: 2px solid rgb(200,200,0);
}

/*--------------------------------------------------------------
## Responsive Style ( Media Queries )
--------------------------------------------------------------*/
@media screen and (max-width: 1400px){
    .sa-container {
        width: 100%;
    }
    .sa-topheader .sa-topleft ul li {
        border-right: 0;
        padding: 0 5px;
    }
    .sa-topheader .sa-topright ul li:first-child,
    .sa-topheader .sa-topright ul li{
        border: 0;
    }
}
/*-------------------------------------------------------------*/
@media screen and (min-width:769px){  /* used to be min-width 881 */
}

/*-------------------------------------------------------------*/
@media screen and (max-width: 768px){
    #main-slider .item .main-slider_content h3{
        font-size:24px;
    }
    .sa-titlewrap .sa-title{
        font-size:24px;
    }
    #main-slider .main-slider_desc p{
        display:none;
    }
    .widget_sastore_blog_widget_area .sastore-blogwrap li {
        width: 50%;
        margin-bottom: 40px;
    }
    .widget_sastore_full_promo_area figcaption {
        top: 25px;
    }

    .sa-servicesarea .sa-serviceswrap .sa-services {
        width: 50%;
    }
    .widget_sastore_blog_widget_area .sastore-blogwrap li:last-child{
        width: 100%;
    }
    .sa-servicesarea .sa-serviceswrap .sa-services{
        border-right: 0;
        width: 100%;
    }
    .copyright {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    .payment_card {
        float: none;
        text-align: center;
        width: 100%;
    }
    #primary {
        float: none !important;
        width: 100%;
    }
    .rightsidebar #secondaryright,
    .leftsidebar #secondaryleft {
        float: none;
        width: 100%;
    }
    .widget_sastore_full_promo_area .promoright {
        position: static;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
    .widget_sastore_full_promo_area .promoleft {
        display: block;
        float: none;
        margin: 0 auto;
    }
    .widget_sastore_full_promo_area figcaption {
        position: static;
        background: #ccc;
        padding: 20px 0;
    }
    .sa-topheader .sa-topleft ul li {
        float: none;
        display: inline-block;
    }
    body {
        overflow-x: hidden; 
    }
}

/*-------------------------------------------------------------*/
@media screen and (min-width: 481px) {
	.submenu {
		background-color:#ffffff;
		min-width: 175px;
		position: absolute;
		top: 100%;
		left: 1em; 
		opacity: 0;
		visibility: hidden;
		display: none;
		z-index: 999;
		text-align: left;    
		z-index:-1;
	}
    .sa-menulink span.sub-toggle{
        display: none;
    }
    .sa-menulink ul > li.menu-item-has-children > a:after {
        content: '\f107';  /* down arrow */
        position: absolute;
        top: 50%;
        right: 0;
        font-family: 'Font Awesome 5 Free';
		font-weight: 900;
        width: 10px;
        height: 10px;
        color: #000064;
        margin-top: -7px;
        line-height: 1;
        margin-right: 15px;
        -webkit-transition:all 0.3s ease-in-out;
        -moz-transition:all 0.3s ease-in-out;
        transition:all 0.3s ease-in-out;
    } 
    .sa-menulink ul ul.submenu li.menu-item-has-children > a:after{
        content: '\f105';   /* right arrow */
        position: absolute;
        top: 50%;
        right: 0;
        font-family: 'Font Awesome 5 Free';
		font-weight: 900;
        width: 10px;
        height: 10px;
        margin-top: -7px;
        line-height: 1;
        margin-right: 15px;
        -webkit-transition:all 0.3s ease-in-out;
        -moz-transition:all 0.3s ease-in-out;
        transition:all 0.3s ease-in-out;
    }
    .sa-menulink ul li:hover > ul, 
    .sa-menulink ul li:focus > ul  {
        opacity: 1;
        visibility: visible;
        margin-top:0;
        display: block;
        z-index:99;
    }
/*
    .sa-menulink ul ul ul.submenu{
        position:absolute;
        top:0;
        left:100%;
        margin-top: 0;
    }
*/
    .sa-menulink>div>div>div>ul>li>ul{
        padding-top:5px;
    }
}

/*-------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	.submenu {
		background-color:#ffffff;
		min-width: 150px;
		position: relative;
		left: 1em; 
		z-index: 999;
		text-align: left;    
	}
	.sa-menulink #menu-container
	{
        display:none;
	}
    .sa-menulink #menu-toggle-id {
        display:block;
        float: none;
    }

	.sa-menulink .hamburger-menu #hamburger-submenu
	{
		display: none;
	}

	.sa-menulink .hamburger-menu.menu-active #hamburger-submenu
	{
		display: block;
	}
	
	.sa-menulink .hamburger-menu.menu-active #hamburger-submenu
	{
	}

}   
@media screen and (max-width:759px)
{
	#ship_plan_nj
	{
		display: flex;
		flex-flow: column nowrap;
		width: 100%;
		padding-top: 10px;
	}
	
}

/*-------------------------------------------------------------*/
@media screen and (max-width: 1000px) 
{
	.plan-container-lines
	{
		flex-flow: column nowrap;
		width: 600px;
	}
}

/*-------------------------------------------------------------*/
@media screen and (max-width: 600px) 
{
	.plan-container-decks
	{
		float: left;
		display: flex;
		flex-flow: column nowrap; 
	}
	.plan-container-lines
	{
		width: 100%;
	}

	.plan-image
	{
		flex-basis: auto;
		border: 1px solid #CCCCCC;
		margin-bottom: 5px;
	}

}


