@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

html, body {
    height: 100%;
}

html {
    display: table;
    margin: auto;
    margin-top: 0;
    background: #3ea198;
    scroll-behavior: smooth;
}

body {
    display: table-cell;
    background: #ffffff;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
}

h1 {
    width: auto;
    text-align: left;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 20px;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
}

h2 {
    width: auto;
    text-align: left;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
}

h3 {
    margin: 15px 0px 5px 0px;
    text-transform: uppercase;
}

p {
    width: auto;
    text-align: left;
    font-family: Montserrat, serif;
    text-transform: none;
    margin: 0;
}

#core {
    width = 100%;
    max-width: 960px;
    font-family: Montserrat, sans-serif;
    text-transform: none;
}

#pagetitle {
    display: block;
    font-size: 32px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #017269;
    font-weight: 400;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    text-align: left;
    margin-left: 4%;
    margin-top: 16px;
    margin-bottom: 16px;
}

#checkout-button {
    width: 100%;
    max-width: 593px;
    height: 48px;
    padding-top: 10px;
    color: #dddddd;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
    background: #017269;
    margin: auto;
}

#checkout-button>a {
    display: block;
    padding: 0px;
    font-size: 32px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #dddddd;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: color .25s ease;
    -moz-transition: color .25s ease;
    transition: color .25s ease;
    text-align: center;
}

#grid-image img{
    width: 100%;
}

#grid-image {
    width: 100%;
    max-width: 310px;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 15px;
    padding-top: 10px;
    max-width: 960px;
}

@media screen and (max-width:640px) {
    .grid-container {
        grid-template-columns: auto auto;
    }
}

@media screen and (max-width:320px) {
    .grid-container {
        grid-template-columns: auto;
    }
}

table.regconfirmation {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-bottom: 20px;
    border: 0;
}

table.regconfirmation th {
    text-align: left;
    padding-left: 2%;
    padding-right: 2%;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
}

table.regconfirmation td {
    font-family: Montserrat, serif;
    text-transform: capitalize;
}

.staffbio {
    width: 96%;
    height: auto;
    padding: 2%;
    margin-bottom: 10px;
}

.staffbio .staffheadshot {
    display: inline-block;
    width: 38%;
    height: auto;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 10px;
}

.staffbio .staffheadshot img{
    width: 100%;
    height: auto;
}

.staffbio .bioblock{
    display: inline-block;
    width: 100%;
}

#arrow {
    width: 50%;
    height: 50%;
    margin: auto;
}

#arrow img {
    width = 100%;
    height = auto;
}

.cartButton {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-box-shadow:inset 0px 1px 3px 0px #91b8b3;
	-webkit-box-shadow:inset 0px 1px 3px 0px #91b8b3;
	box-shadow:inset 0px 1px 3px 0px #91b8b3;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #3ea199), color-stop(1, #017269));
	background:-moz-linear-gradient(top, #3ea199 5%, #017269 100%);
	background:-webkit-linear-gradient(top, #3ea199 5%, #017269 100%);
	background:-o-linear-gradient(top, #3ea199 5%, #017269 100%);
	background:-ms-linear-gradient(top, #3ea199 5%, #017269 100%);
	background:linear-gradient(to bottom, #3ea199 5%, #017269 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3ea199', endColorstr='#017269',GradientType=0);
	background-color: #3ea199;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #566963;
	display: inline-block;
	cursor: pointer;
    width: 100%;
    height: 25px;
    padding-top: 10px;
    color: #dddddd;
	font-family: Montserrat, sans-serif;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0px -1px 0px #2b665e;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
}

.cartButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #017269), color-stop(1, #3ea199));
	background:-moz-linear-gradient(top, #017269 5%, #3ea199 100%);
	background:-webkit-linear-gradient(top, #017269 5%, #3ea199 100%);
	background:-o-linear-gradient(top, #017269 5%, #3ea199 100%);
	background:-ms-linear-gradient(top, #017269 5%, #3ea199 100%);
	background:linear-gradient(to bottom, #017269 5%, #3ea199 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#017269', endColorstr='#3ea199',GradientType=0);
	background-color:#017269;
}

.cartButton:active {
	position:relative;
	top:1px;
}

.closeButton {
    position: inline-block;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.arrowButton {
    position: inline-block;
    top: 5px;
    right: 5px;
}

@media screen and (max-width: 480px) {
    .staffbio .staffheadshot{
        display: block;
        width: 100%;
        margin: 0;
    }
    
    #arrow {
        display: none !important;
    }
    
    .cartbutton {
        padding-top: 5px;
    }
}




.button {
    background: #3ea198;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #dddddd;
    padding: 16px;
    width: 100%;
}

.button:active {
    background: #3ea198;
    color: #dddddd;
}

.button:hover {
    cursor: pointer;
    background-color: #017269;
}

input[type=text], input[type=password], input[type=email], input[type=number] {
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    display: inline-block;
    border: 1px solid #bbb;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type=number]:disabled {
    background: #ffffff;
    border: 0px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    display: inline-block;
    border: 1px solid #bbb;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    
  background-image:
    linear-gradient(45deg, transparent 50%, darkgray 50%),
    linear-gradient(135deg, darkgray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: darkgray;
  outline: 0;
}


input[type="radio"] {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px 1px hsla(0,0%,100%,.8),
                0 0 0 1px hsla(0,0%,0%,.6),
                0 2px 3px hsla(0,0%,0%,.6),
                0 4px 3px hsla(0,0%,0%,.4),
                0 6px 6px hsla(0,0%,0%,.2),
                0 10px 6px hsla(0,0%,0%,.2);
    cursor: pointer;
    display: inline-block;
    height: 20px;
    margin-right: 15px;
    position: relative;
    width: 20px;
    -webkit-appearance: none;
}

input[type="radio"]:after {
    background-color: #fff;
    border-radius: 25px;
    content: '';
    display: block;
    height: 12px;
    left: 4px;
    position: relative;
    top: 4px;
    width: 12px;
}

input[type="radio"]:checked:after {
    background-color: #017269;
    box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.4),
                inset 0 2px 2px hsla(0,0%,100%,.4),
                0 1px 1px hsla(0,0%,100%,.8),
                0 0 2px 2px hsla(0,70%,70%,.4);
}

.radio_container:hover {
    cursor: pointer;
}

textarea {
    width: 100%;
    min-height: 50px;
    resize: none;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.error {
    display: inline-block;
    color: red;
}

.full-row {
    width: 96%;
    margin: 2%;
}

.half-row {
    display: inline-block;
    width: 46%;
    margin: 2%;
}

.large_phi_column {
    display: inline-block;
    width: 61%;
    vertical-align: top;
}

.small_phi_column {
    display: inline-block;
    width: 38%;
    vertical-align: top;
}

@media screen and (max-width: 480px) {
    .large_phi_column {
        display: block;
        width: 100%;
    }

    .small_phi_column {
        display: block;
        width: 100%;
    }
}