@font-face {
    font-family: Pacifico;
	font-style: normal;
    src: url('fonts/Pacifico.ttf');
}

@font-face {
    font-family: OpenSans;
    font-style: normal;
	font-weight: 300;
    src: url('fonts/OpenSans-Light.ttf');
}

@font-face {
    font-family: OpenSans;
    font-style: normal;
	font-weight: 400;
    src: url('fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: OpenSans;
    font-style: normal;
	font-weight: 600;
    src: url('fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: OpenSans;
    font-style: bold;
	font-weight: 700;
    src: url('fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: OpenSans;
    font-style: bold;
	font-weight: 900;
    src: url('fonts/OpenSans-ExtraBold.ttf');
}

body {
    font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: normal;
    color: #0F0F0F;
    margin: 0;
    left: 0;
    right: 0;
}

h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: normal;
}

h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: normal;
}

h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: normal;
}

h4 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: normal;
}

p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: normal;
}

h5 {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: normal;
}

h6 {
    margin: 0;
    font-size: 0.75rem;
    font-weight: normal;
}

.display-none {
	display: none !important;
}

.show-scrollbar {
    overflow-y: scroll;
}

input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
}

input::placeholder, textarea::placeholder {
    color: #C8C8C8;
	font-weight: 400;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

a {
	text-decoration: none;
	color: #0F0F0F;
}

.input-textfield {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    outline: 0;
	border: 1px solid #C8C8C8;
    width: 100%;
    box-sizing: border-box;
    height: 44px;
    border-radius: 3px;
    padding: 0 12px;
    background-color: white;
    color: #0A0A0A;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    transition: 0.25s;
	transition-property: border, color, background-color;
}

#input-stripe {
	width: 100%;
	height: 44px;
	border: 1px solid #C8C8C8;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 12px;
	cursor: text;
}

.__PrivateStripeElement {
	width: 100%;
}

.input-search-container {
	border: 1px solid #C8C8C8;
    width: 350px;
    box-sizing: border-box;
    height: 44px;
    border-radius: 3px;
    padding: 0 12px;
    background-color: white;
    display: flex;
    align-items: center;
    transition: 0.25s;
    cursor: text;
    flex-shrink: 0;
}

.input-search {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    outline: 0;
    border: 0;
    width: calc(100% - 8px);
    color: #0A0A0A;
    margin-left: 8px;
    font-size: 0.875rem;
    transition: 0.25s;
}

.input-textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    outline: 0;
	border: 1px solid #C8C8C8;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border-radius: 3px;
    background-color: white;
	color: #0A0A0A;
    font-size: 0.875rem;
    height: 168px;
    line-height: 1.25rem;
    transition: 0.25s;
}

.input-textfield:focus, .input-textarea:focus {
    border: 1px solid #7D7D7D;
    transition: 0.25s;
}

.input-textfield.error, .input-textarea.error, .collection-editor-image.empty.error, .editor-arrangement-image.empty.error, .input-dropdown.error .input-textfield, .input-toggle.error .toggle-option, .input-picker.error, #input-stripe.error {
	border: 1px solid #CE0000;
}

.input-textfield:disabled, .input-textarea:disabled, .input-dropdown.disabled, .collection-editor-image.disabled, .editor-arrangement-image.disabled {
	opacity: 0.5;
    transition: 0.25s;
}

.input-dropdown.disabled, .collection-editor-image.disabled, .editor-arrangement-image.disabled {
	pointer-events: none;
}

.input-toggle {
    display: flex;
    width: 400px;
    height: 40px;
    border: 1px solid #0A0A0A;
    border-radius: 5px;
    overflow: hidden;
}

.toggle-option {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    background-color: white;
	user-select: none;
	border-right: 1px solid #0A0A0A;
	text-transform: capitalize;
}

.toggle-option:last-of-type {
	border: 0;
}

.toggle-option.selected {
    background-color: #0A0A0A !important;
    color: white;
}

.input-dropdown {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: 0.25s;
}

.input-dropdown-title {
	margin-right: auto;
	padding: 0 15px;
}

.input-dropdown-title.placeholder, .input-picker-title.placeholder {
	color: #C8C8C8;
    font-weight: 500;
}

.input-dropdown-items {
    pointer-events: none;
	opacity: 0;
	position: absolute;
	top: 42px;
	border: 1px solid #C8C8C8;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0 0 3px 3px;
	padding: 6px 0;
	background-color: white;
	overflow: hidden;
	color: #0A0A0A;
    transition: 0.25s;
	transition: opacity 0.1s;
	max-height: 220px;
	overflow-y: scroll;
}

.input-dropdown.active .input-textfield {
    border-radius: 3px 3px 0 0;
    border: 1px solid #7D7D7D;
}

.input-dropdown.active .input-dropdown-items {
	opacity: 1;
    pointer-events: auto;
    border: 1px solid #7D7D7D;
}

.input-dropdown-item {
	padding: 6px 15px;
}

.input-dropdown-arrow {
	position: absolute;
	right: 0;
	padding: 15px;
}

.input-picker {
	position: relative;
	border: 1px solid #C8C8C8;
	width: 100%;
	box-sizing: border-box;
	height: 44px;
	border-radius: 3px;
	padding: 0 15px;
	background-color: white;
	color: #0A0A0A;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: 0.25s;
}

.input-picker-title {
    margin-left: 12px;
}

.input-picker-title.placeholder {
    margin-left: 0;
}

.input-picker-image {
    display: block;
    width: 80px;
	min-width: 80px;
	height: 40px;
	min-height: 40px;
	border-radius: 2px;
    margin-left: -14px;
	object-fit: cover;
}

.input-picker-image.placeholder {
    display: none;
}

.input-picker-title {
	font-weight: 400;
	margin-right: auto;
}

.input-heading {
    margin-top: 30px;
    letter-spacing: 1px;
	color: #FF6161;
    font-weight: bold;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.input-quantity-container {
    display: flex;
}

.input-quantity-text {
    text-align: center;
    font-size: 1.125rem;
	min-width: 0;
    margin: 0 10px;
    width: calc(100% - 20px);
}

.input-quantity-text::placeholder {
    opacity: 0;
}

.input-quantity-button {
    flex-shrink: 0;
    border: 1px solid #C8C8C8;
    width: 100%;
    box-sizing: border-box;
    height: 44px;
    width: 60px;
    border-radius: 3px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;
}

.input-quantity-button div {
    background-color: #C8C8C8;
    transition: 0.25s;
    border-radius: 1px;
    position: absolute;
}

.input-quantity-minus div, .input-quantity-plus div:first-child {
    height: 2px;
    width: 16px;
}

.input-quantity-plus div:last-child {
    height: 16px;
    width: 2px;
}

.button {
	height: 44px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.875rem;
	transition: 0.25s;
}

.button.fill-black {
	background-color: #0A0A0A;
	color: white;
}

.button.fill-white {
	background-color: white;
	color: #0A0A0A;
}

.button.fill-pink {
	background-color: #FF6161;
	color: white;
}

.button.outline-white {
	background-color: transparent;
	border: 3px solid white;
	box-sizing: border-box;
	color: white;
}

.button.outline-black {
	background-color: transparent;
	border: 3px solid #0A0A0A;
	box-sizing: border-box;
	color: #0A0A0A;
}

.button.outline-pink {
	background-color: transparent;
	border: 3px solid #FF6161;
	box-sizing: border-box;
	color: #FF6161;
}

.activity {
    display: flex;
    align-items: center;
    position: fixed;
    right: 22px;
    bottom: 22px;
	max-width: calc(100% - 88px);
    transform: translateX(0);
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    padding: 16px 22px;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.15);
    transition: 0.5s;
    z-index: 1000;
    pointer-events: none;
}

#body-checkout .activity {
    bottom: 97px;
}

.activity.hidden {
    transform: translateX(18px);
    opacity: 0;
}

.activity-indicator {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.bar {
    width: 3px;
    height: 22px;
    margin: 0 3px;
    background-color: white;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: both;
}

.bar2 {
    animation-delay: 0.15s;
}

.bar3 {
    animation-delay: 0.3s;
}

.activity-success, .activity-error {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.activity.success .activity-indicator, .activity.error .activity-indicator, .activity-success, .activity-error {
    display: none;
}

.activity.success .activity-success, .activity.error .activity-error {
    display: block;
}

@keyframes activity-animation {
    0%, 80%, 100% {
        transform: scaleY(0.25);
    }

    40% {
        transform: scaleY(1.0);
    }
}

.activity-message {
    font-weight: 500;
    color: white;
}

.standard-heading {
	font-family: Avenir Next, OpenSans;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.standard-heading:after {
	content: '';
	width: 120px;
	height: 3px;
	background-color: #FF6161;
	margin-top: 12px;
}

.standard-heading.left {
	align-items: flex-start;
}

.nav {
	display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    height: 68px;
    z-index: 100;
    transition: background-color 0.25s;
}

.nav-button-wrapper {
	display: flex;
	align-items: center;
	width: 22px;
	padding: 8px;
	margin: 0 16px;
	position: relative;
}

.nav-logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 242px;
	height: 100%;
	margin-left: 45px;
	position: relative;
}

.nav-cart-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 100%;
	margin-right: 45px;
	position: relative;
	cursor: pointer;
}

.nav-cart-wrapper.active:after {
    content: "";
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 3.5px;
    left: 2.5px;
    bottom: 3px;
    animation: glow-pink 5s infinite;
}

.nav-cart-wrapper.active.white:after {
    animation: glow-white 5s infinite;
}

@keyframes glow-pink {
    0%, 25% {
      background-color: #FF6161;
    }
    50% {
      background-color: transparent;
    }
    75%, 100% {
      background-color: #FF6161;
    }
}

@keyframes glow-white {
    0%, 25% {
      background-color: white;
    }
    50% {
      background-color: transparent;
    }
    75%, 100% {
      background-color: white;
    }
}

.nav-logo, .nav-cart, .nav-button {
	width: auto;
	height: auto;
	position: absolute;
	transition: 0.25s;
}

.nav-links {
    display: flex;
    margin: 0 22px 0 auto;
	flex-shrink: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    padding: 22px;
	transition: 0.25s;
	line-height: normal;
	cursor: pointer;
}

.nav-close {
	padding: 8px;
	margin: 14px 14px 14px auto;
}

.transparent-view {
    display: block;
    opacity: 0;
    background-color: black;
    z-index: 400;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: 0.35s;
    pointer-events: none;
}

.cart-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.cart-background.open {
    opacity: 1;
    pointer-events: auto;
}

.cart {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 400px;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    right: -400px;
    bottom: 0;
    background-color: white;
    margin: 0;
    transition: right 0.35s ease;
    z-index: 500;
}

.cart-background.open .cart {
    right: 0;
}

.cart-empty {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.cart-top {
    display: flex;
    align-items: center;
}

.cart-title {
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 22px;
}

.cart-close {
    padding: 8px;
	margin: 14px 14px 14px auto;
    cursor: pointer;
}

.cart-items {
    overflow: auto;
    height: 100%;
}

.cart-item {
    display: flex;
    margin: 22px 22px 0;
}

.cart-item-image {
    max-width: 84px;
    max-height: 84px;
    min-width: 84px;
    min-height: 84px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-right {
    margin-left: 12px;
}

.cart-item-collection {
    font-weight: 500;
	color: #FF6161;
    text-transform: capitalize;
}

.cart-item-description {
    color: #2D2D2D;
	margin-top: 8px;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 22px 22px 0;
    width: calc(100% - 44px);
}

.cart-subtotal * {
    font-weight: bold;
}

.cart-button {
    margin: 22px 22px 12px;
    flex-shrink: 0;
}

.cart-button:last-child {
	margin-top: 0;
}

.cover {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.cover-image {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -100;
}

.cover-content {
	margin-right: 120px;
	margin-bottom: 10%;
	color: white;
	max-width: 580px;
}

.cover-title {
	font-weight: 900;
	text-align: right;
}

.cover-subtitle {
	margin-top: 30px;
	text-align: right;
}

.cover-buttons {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-top: 45px;
}

.cover-button:first-child {
	margin-left: 0;
}

.cover-button {
	margin: 0 15px;
	width: 200px;
}

.cover-button:last-child {
	margin-right: 0;
}

.home .cover-image {
	object-position: 35%;
}

.app {
	background-color: #F7f8FA;
    min-height: 100vh;
}

.signin-container {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.signin-container .input-textfield, .signin-button {
	width: calc(100% - 44px);
	margin-left: 22px;
	margin-right: 22px;
	max-width: 300px;
}

#input-signin-email {
	margin-top: 60px;
}

#input-signin-password {
	margin-top: 8px
}

.signin-button {
	margin-top: 30px;

}

#signin-activity {
	margin-top: 30px;
}

.admin-nav {
	position: fixed;
	height: 100%;
	width: 250px;
	background-color: white;
    border-right: 1px solid rgb(221, 224, 230);
}

.admin-nav-top {
	display: flex;
	align-items: center;
	height: 77px;
	width: 100%;
}

.admin-nav-top-logo {
	margin-left: 30px;
    cursor: pointer;
}

.admin-nav-top-greeting {
	margin-left: 18px;
}

.admin-nav-buttons {
	margin-top: 90px;
}

.admin-nav-button {
	display: flex;
	align-items: center;
	height: 44px;
	width: calc(100% - 5px);
	border-left: 5px solid transparent;
	cursor: pointer;
	transition: 0.25s;
}

.admin-nav-button.active {
    border-left: 5px solid #FF6D6D;
}

.admin-nav-button-image {
	margin-left: 25px;
    width: 28px;
    height: 28px;
}

.admin-nav-button-title {
	margin-left: 12px;
}

.admin-nav-signout, .admin-nav-export {
	position: absolute;
	bottom: 22px;
	padding: 8px;
	width: calc(100% - 16px);
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: 0.25s;
}

.admin-nav-export {
	bottom: 60px;
}

.content-container {
	margin-left: 250px;
	height: 100%;
	display: flex;
	justify-content: center;
	transition: 0.25s ease-in-out;
}

.inventory-container, .admin-orders-container, .order-details-container {
    height: calc(100% - 120px);
    width: calc(100% - 120px);
	max-width: 1000px;
    margin-bottom: 30px;
    padding: 60px;
}

.order-details-container .heading-container .button:last-child {
	margin-left: 12px;
}

.collection-editor-container {
    height: calc(100% - 120px);
    width: calc(100% - 120px);
	max-width: 1200px;
    margin-bottom: 30px;
    padding: 60px;
}

#inventory-activity {
    position: absolute;
    height: 100%;
}

.heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading-title {
    font-weight: 900;
	width: 100%;
}

.heading-button {
    max-width: 200px;
}

#button-back {
	margin-right: 30px;
}

.button-round {
	min-width: 38px;
	min-height: 38px;
	cursor: pointer;
	transition: 0.25s;
}

.admin-collection {
	display: flex;
	align-items: center;
	width: 100%;
	background-color: white;
	border-radius: 3px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.06);
	margin-top: 30px;
	cursor: pointer;
	transition: 0.25s;
}

.admin-collection ~ .admin-collection {
	margin-top: 8px;
}

.admin-collection-image {
	width: 120px;
	min-width: 120px;
	height: 120px;
	min-height: 120px;
	border-radius: 3px;
	object-fit: cover;
	margin: 6px;
}

.admin-collection-text {
	margin-left: 20px;
}

.admin-collection-name {
	font-weight: 500;
    text-transform: capitalize;
}

.admin-collection-buttons {
	display: flex;
	margin: 0 30px 0 auto;
}

.admin-collection-buttons .button-round {
	padding-left: 8px;
}

.admin-collection-products {
	margin-top: 2px;
}

.inventory-count {
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

.collection-editor, .admin-orders-list, .order-details {
	display: flex;
	flex-direction: column;
	width: calc(100% - 90px);
	background-color: white;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.06);
    margin-top: 30px;
    margin-bottom: 30px;
	padding: 45px;
    border-radius: 3px;
}

.collection-editor-top {
	display: flex;
	align-items: flex-start;
}

.collection-editor-image {
	width: 242px;
	min-width: 242px;
	height: 242px;
	min-height: 242px;
	border-radius: 3px;
	cursor: pointer;
	object-fit: cover;
	box-sizing: border-box;
	transition: 0.25s;
}

.collection-editor-image.empty {
	border: 1px solid #C8C8C8;
	padding: 1px;
}

.collection-editor-inputs {
	display: flex;
	flex-wrap: wrap;
	margin-left: 45px;
}

#input-collectionCategory {
    margin-top: 20px;
}

#heading-collectionName {
    margin: 0 30px 0 0 !important;
	width: calc(50% - 15px);
}

#input-collectionName {
    margin: 8px 30px 0 0;
	width: calc(50% - 15px);
}

#heading-collectionProcessingTime {
    margin-top: 0 !important;
	width: calc(50% - 15px);
}

#input-collectionProcessingTime {
    margin-top: 8px;
	width: calc(50% - 15px);
}

#input-collectionProcessingTime .input-dropdown-items {
	max-height: none;
}

#input-collectionShortDescription{
	margin-top: 8px;
	width: 100%;
}

#heading-collectionHighlights {
    margin-right: 30px;
    width: calc(50% - 15px);
}

#input-collectionHighlights {
	margin: 8px 30px 0 0;
	width: calc(50% - 15px);
}

#heading-collectionMaterials {
    width: calc(50% - 15px);
}

#input-collectionMaterials {
	margin-top: 8px;
	width: calc(50% - 15px);
}

#input-collectionFullDescription{
	margin-top: 8px;
	width: 100%;
}

.collection-editor-button, .order-details-button {
    width: 250px;
    margin: 30px auto 0;
}

.editor-arrangement {
    width: calc(100% - 60px);
    padding: 30px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    margin-top: 30px;
    display: flex;
}

.editor-arrangement:first-of-type {
    margin-top: 45px;
}

.editor-arrangement-image-wrapper {
    position: relative;
    width: 212px;
	min-width: 212px;
	height: 212px;
	min-height: 212px;
    overflow: hidden;
	cursor: pointer;
	transition: 0.25s;
}

.editor-arrangement-image {
    width: 100%;
	height: 100%;
    box-sizing: border-box;
    object-fit: cover;
}

.editor-arrangement-image.empty {
	border: 1px solid #C8C8C8;
	padding: 1px;
}

.editor-arrangement-count {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 4px 0;
    font-weight: 500;
}

.editor-arrangement-count.empty {
    display: none;
}

.editor-arrangement-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.editor-arrangement-buttons .button-round {
    padding-left: 8px;
}

.editor-arrangement-inputs {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-left: 30px;
    width: calc(100% - 30px);
}

.heading-arrangementType {
    margin: 0 30px 0 0 !important;
	width: calc(50% - 15px);
}

.input-arrangementType {
    margin: 8px 30px 0 0;
	width: calc(50% - 15px);
}

.heading-arrangementName {
    margin-top: 0 !important;
	width: calc(50% - 15px);
}

.input-arrangementName {
    margin-top: 8px;
	width: calc(50% - 15px);
}

.heading-arrangementType {
    margin: 0 30px 0 0 !important;
	width: calc(50% - 15px);
}

.input-arrangementType {
    margin: 8px 30px 0 0;
	width: calc(50% - 15px);
}

.heading-arrangementWidth, .heading-arrangementHeight, .heading-arrangementPrice {
	width: calc((100% - 90px) / 4);
    margin-right: 30px;
}

.heading-arrangementInventory {
    width: calc((100% - 90px) / 4);
}

.input-arrangementWidth, .input-arrangementHeight, .input-arrangementPrice {
    margin: 8px 30px 0 0;
    width: calc((100% - 90px) / 4);
}

.input-arrangementInventory {
    margin-top: 8px;
    width: calc((100% - 90px) / 4);
}

.dialogue-wrapper {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.75);
}

.dialogue {
	background-color: white;
	width: 540px;
	display: flex;
	flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
}

.dialogue-title {
	font-weight: bold;
	margin: 45px 45px 0 45px;
}

.dialogue-prompt {
	margin: 15px 45px 0 45px;
}

.dialogue-buttons {
	display: flex;
	margin-top: 45px;
}

.dialogue-button {
	height: 60px;
	font-weight: bold;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.875rem;
	text-transform: uppercase;
	cursor: pointer;
}

.dialogue-button-grey {
	background-color: #E6E6E6;
}

.dialogue-button-red {
	background-color: #FF6161;
	color: white;
}

.container-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	padding-right: 22px;
	padding-left: 22px;
	max-width: 1200px;
	width: calc(100% - 44px);
}

.featured-wrapper, body.shop {
	background-color: #F7f8FA;
}

.container.featured {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 150px;
	margin-bottom: 150px;
}

.container.shop {
	margin: calc(120px + 69px) 0 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#input-category {
	margin: 60px 0 30px;
	width: 100%;
	max-width: 800px;
	overflow-x: auto;
}

.featured-heading {
	margin-bottom: 45px;
}

.featured-collections, .shop-collections {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.featured-collections {
	justify-content: center;
}

.featured-collection, .shop-collection {
	width: calc((100% - 90px) / 3);
	background-color: white;
	overflow: hidden;
	border-radius: 3px;
	margin: 15px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}

.shop-collection {
	width: calc((100% - 64px) / 4);
	margin: 8px;
}

.featured-button, .shop-button {
	margin-top: 60px;
	max-width: 200px;
}

.featured-image, .shop-image {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.featured-name, .shop-name {
	margin: 12px 16px 0;
	font-weight: 600;
	width: calc(100% - 36px);
    text-transform: capitalize;
}

.featured-description, .shop-description {
	margin: 4px 16px 16px;
	width: calc(100% - 36px);
	color: #828282;
}

.collection {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 60px;
}

.collection-cover {
	width: 100%;
    height: 320px;
    overflow: hidden;
}

.collection-background-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: -100;
	filter: blur(30px);
	background-color: rgb(128, 128, 128);
}

.collection-background {
	opacity: 0.8;
	width: 110%;
	height: 110%;
	position: absolute;
	top: -5%;
	left: -5%;
	object-fit: cover;
}

.collection-image {
    border: 8px solid white;
	width: 320px;
	height: 320px;
	object-fit: cover;
    position: absolute;
    top: 110px;
    left: calc(50% - 160px);
}

.collection-name {
	font-weight: 500;
    margin: 160px 22px 0 22px;
    width: calc(100% - 44px);
    text-align: center;
    text-transform: capitalize;
}

.collection-description-short {
    margin: 12px 22px 0 22px;
    width: calc(100% - 44px);
    text-align: center;
}

.collection-cover-content {
	margin: 0 22px 0 60px;
	width: calc(100% - 60px - 22px);
	max-width: 820px;
}

.collection-about {
	margin-top: 150px;
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin-bottom: 120px;
}

.collection-more-button {
    margin-top: 30px;
}

.collection-about-left {
	margin-left: 36px;
	width: calc(100% - 36px);
}

.collection-about-title {
	font-weight: bold;
	width: 100%;
}

.collection-about-description-full {
	margin-top: 18px;
    white-space: pre-line;
	width: 100%;
}

.collection-about-right {
	margin: 0 36px 0 150px;
    flex-shrink: 0;
	max-width: 400px;
}

.collection-about-right .collection-about-heading:last-of-type .collection-about-heading-icon {
    margin-top: 45px;
}

.collection-about-heading-title {
    margin-top: 12px;
    color: #FF6161;
	font-weight: 900;
}

.collection-about-text {
	margin-top: 6px;
	white-space: pre-line;
}

.collection-contact-button {
    margin-top: 30px;
    width: 200px;
}

.modal-background {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 600;
}

.modal-background.active {
    display: flex;
}

.modal {
    background-color: white;
    padding: 45px;
}

.modal-heading {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: Avenir Next, OpenSans;
    font-weight: 500;
}

.modal-photos, .modal-colors {
    width: 800px;
}

.modal-photos-images {
    margin-top: 30px;
    height: 530px;
    display: flex;
    flex-wrap: wrap;
}

.modal-photos-image-wrapper {
    position: relative;
    width: 261px;
    height: 261px;
    margin: 0 8px 8px 0;
}

.modal-photos-image-wrapper:nth-child(3n+3){
    margin-right: 0;
}

.modal-photos-image-wrapper:nth-child(n+3){
    margin-bottom: 0;
}

.modal-photos-image {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
    object-fit: cover;
}

.modal-photos-image.empty {
    border: 1px solid #C8C8C8;
	padding: 1px;
}

.modal-image-delete.empty {
    display: none;
}

.modal-image-delete {
    display: block;
    opacity: 0;
    position: absolute;
    top: 4px;
    right: 4px;
}

.modal-colors-heading .modal-title {
    margin-right: auto;
}

.modal-colors-heading .button-round {
    margin-left: 8px;
}

.modal-colors-items, .picker-items {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.modal-colors-item, .picker-item {
    display: flex;
    align-items: center;
    width: 25%;
    border-radius: 30px;
    transition: 0.25s;
    cursor: pointer;
    position: relative;
}

.modal-colors-item-image, .picker-item-image {
    object-fit: cover;
    width: 54px;
    height: 54px;
    border-radius: 27px;
    margin: 4px 0;
    overflow: hidden;
}

.modal-colors-item-title, .picker-item-title {
    margin-left: 12px;
}

.modal-colors-item-check, .picker-item-check {
    position: absolute;
    left: 19px;
    display: none;
}

.modal-colors-item.active .modal-colors-item-image, .picker-item.active .picker-item-image {
    opacity: 0.25;
}

.modal-colors-item.active .modal-colors-item-check, .picker-item.active .picker-item-check {
    display: block;
}

.arrangement {
	position: relative;
	width: calc(100% - 44px);
	margin: 12px 22px;
    border-radius: 5px;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.24), 0 2px 12px 0 rgba(0, 0, 0, 0.1);
	max-width: 1200px;
    overflow: hidden;
	display: flex;
	transition: max-height 0.5s;
}

.arrangement-image-primary {
	display: block;
	min-width: 370px;
	max-width: 370px;
	min-height: 370px;
	max-height: 370px;
	margin-top: 30px;
	margin-left: 30px;
	border-radius: 3px;
	cursor: pointer;
	object-fit: cover;
	transition: 0.5s;
}

.arrangement.primary .arrangement-image-primary {
	border-radius: 0;
	margin-left: 0;
	margin-top: 0;
	min-width: 400px;
	max-width: 400px;
	min-height: 400px;
	max-height: 400px;
}

.arrangement-image-count {
	position: absolute;
	top: 4px;
	right: 4px;
	display: flex;
	color: white;
	font-weight: 600;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.75);
	height: 34px;
	border-radius: 17px;
	padding: 0 14px;
	pointer-events: none;
}

.arrangement-image-count img {
	margin-right: 8px;
}

.arrangement-right {
    position: relative;
    display: flex;
    flex-direction: column;
	margin: 30px;
	width: calc(100% - 60px);
}

.arrangement-images {
    margin-top: auto;
    position: absolute;
    left: 0;
    bottom: 0;
	opacity: 0;
    display: flex;
    pointer-events: auto;
	transition: 0.25s;
}

.arrangement-image {
    margin-left: 4px;
	width: 72px;
	min-width: 72px;
	height: 72px;
	min-height: 72px;
	cursor: pointer;
	object-fit: cover;
	transition: 0.25s;
}

.arrangement-image:first-child {
	margin: 0;
}

.arrangement-name {
	margin-right: 230px;
    font-weight: 700;
	text-transform: capitalize;
    transition: 0.5s;
}

.arrangement.primary .arrangement-name {
    font-weight: 500;
    font-size: 1.5rem;
}

.arrangement-price {
	margin-top: 0;
    transition: 0.5s;
}

.arrangement.primary .arrangement-price {
    font-size: 1.125rem;
    margin-top: 8px;
}

.arrangement-button {
    color: transparent !important;
    position: absolute;
	top: 0;
	right: 0;
}

.arrangement-button.disabled, .checkout-button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.arrangement.view .arrangement-button {
    color: white !important;
}

.arrangement.edit .arrangement-button {
    color: white !important;
}

.arrangement-content {
	position: relative;
    transition: ease-in-out 0.5s;
}

.arrangement-display {
	position: absolute;
	display: flex;
	flex-direction: column;
    opacity: 0;
    transition: 0.25s;
}

.arrangement.view .arrangement-display, .arrangement.view .arrangement-images, .arrangement.view .arrangement-cart {
    opacity: 1;
    pointer-events: auto;
}

.arrangement.edit .arrangement-display, .arrangement.edit .arrangement-images, .arrangement.edit .arrangement-cart {
    opacity: 0;
    pointer-events: none;
}

.arrangement-message {
    color: #CE0000;
    margin-top: 18px;
}

.arrangement-dimensions {
	display: flex;
	align-items: center;
	margin-top: 45px;
}

.arrangement-dimension {
	margin-left: 7px;
}

.arrangement-dimension:first-of-type {
	margin-right: 22px;
}

.collection-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 22px 0;
    width: calc(100% - 44px);
    color: #828282;
    font-weight: 500;
}

.collection-shipping img {
    height: 22px;
    margin-right: 12px;
}

.arrangement-cart {
    position: absolute;
    right: 0;
    bottom: 0;
	opacity: 0;
    display: flex;
    align-items: center;
    transform: translateY(20px);
    transition: ease-in-out 0.25s;
}

.arrangement.view .arrangement-cart {
    transform: translateY(0);
}

.arrangement-cart img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.arrangement-inputs {
    display: flex;
    flex-wrap: wrap;
	padding-top: 30px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
}

.arrangement.view .arrangement-inputs {
    opacity: 0;
    pointer-events: none;
}

.arrangement.edit .arrangement-inputs {
    opacity: 1;
    pointer-events: auto;
}

.arrangement-input-container {
    margin-top: 30px;
    width: calc(50% - 15px);
}

.arrangement-input-container:nth-child(even) {
    margin-right: 30px;
}

.arrangement-input-container.input-instructions {
    width: 100%;
    margin-right: 0;
}

.arrangement-input-container.input-instructions .input-textarea {
    height: 120px;
}

.arrangement-heading-container {
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    align-items: center;
}

.arrangement-input-heading {
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
	flex-shrink: 0;
}

.arrangement-input-prompt, .checkout-input-prompt {
    margin-top: 3px;
    height: 16px;
}

.arrangement-input-prompt.error, .checkout-input-prompt.error {
    color: #CE0000;
}

.arrangement-input-prompt a, .checkout-input-prompt a{
    color: #2555F2;
    transition: 0.25s;
}

.arrangement .input-toggle {
    width: 100%;
    margin: 0;
    height: 44px;
    border: none;
    border-radius: 0;
}

.arrangement .toggle-option {
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    transition: 0.25s;
}

.arrangement .toggle-option:first-of-type {
    margin-right: 10px;
}

.arrangement .toggle-option.selected {
    background-color: white !important;
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
}

.arrangement .toggle-option.unselected {
    color: #C8C8C8;
    border: 1px solid #C8C8C8;
}

.arrangement .toggle-option.unselected:hover {
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
}

.picker-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 800;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.5);
	overflow-y: scroll;
    transition: 0.25s;
}

.picker-wrapper.open {
    background-color: rgba(0, 0, 0, 0.75);
}

.picker {
    position: absolute;
    background-color: white;
    border-radius: 24px 24px 0 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: ease-in-out 0.25s;
}

.picker-title {
    font-family: Avenir Next, OpenSans;
    max-width: 800px;
    width: calc(100% - 44px);
    font-weight: 500;
    margin: 45px 22px 18px;
}

.picker-items {
    width: calc(100% - 44px);
    max-width: 800px;
    margin: 0 22px 45px;
}

.picker-category {
	margin: 45px 0 12px;
	width: 100%;
	font-weight: 500;
	font-family: Avenir Next, OpenSans;
	display: flex;
	align-items: center;
}

.picker-category:first-of-type {
	margin-top: 45px;
}

.picker-category span {
	font-size: 1rem;
	margin-left: 12px;
	color: #FF6161;
}

.picker-close {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 12px;
	opacity: 0;
	cursor: pointer;
	transition: 0.25s;
}

.picker-wrapper.open .picker-close {
	opacity: 1;
}

.gallery {
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 700;
}

.gallery-image-primary {
    max-width: calc(100% - 180px - 104px - 120px);
    max-height: calc(100% - 280px);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-button {
    cursor: pointer;
	transition: 0.25s;
}

.gallery-button.disabled {
	opacity: 0.25 !important;
	transform: none !important;
}

.gallery-button.left {
    margin-left: 90px;
}

.gallery-button.right {
    margin-right: 90px;
}

.gallery-images {
    display: flex;
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
}

.gallery-image {
	border: 1px solid transparent;
	margin: 0 18px;
	cursor: pointer;
	max-width: 80px;
    max-height: 80px;
    width: 80px;
    height: 80px;
    object-fit: cover;
	box-sizing: border-box;
	transition: 0.25s;
}

.gallery-image.active {
	border: 1px solid white;
}

.gallery-close {
	transition: 0.25s;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 12px;
	cursor: pointer;
}

.hint {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}

.hint-image {
	padding: 2px 6px;
	cursor: pointer;
}

.hint-text {
	position: absolute;
	left: 30px;
	background-color: #828282;
	padding: 4px 8px;
	color: white;
	border-radius: 4px;
	opacity: 0;
	transition: 0.35s;
}

.hint-image:hover ~ .hint-text {
	opacity: 1;
}

.inventory-collection {
	width: calc(100% - 90px);
	background-color: white;
	border-radius: 3px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.06);
	margin-top: 30px;
    padding: 45px;
}

.inventory-top {
    display: flex;
    align-items: center;
}

.inventory-image {
	min-width: 64px;
	max-width: 64px;
	min-height: 64px;
	max-height: 64px;
	border-radius: 3px;
	object-fit: cover;
}

.inventory-name {
    margin-left: 20px;
    font-weight: bold;
    text-transform: capitalize;
}

.inventory-arrangements {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.inventory-arrangement {
    width: calc((100% - 60px) / 3);
    margin: 30px 30px 0 0;
}

.inventory-arrangement:nth-child(3n) {
    margin-right: 0;
}

.inventory-title {
    text-transform: capitalize;
}

.inventory-input {
    margin-top: 12px;
    text-align: right;
}

#body-checkout {
    overflow-x: hidden;
    overflow-y: scroll;
}

.checkout {
    position: relative;
    display: flex;
    justify-content: center;
    transition: 0.25s ease-in-out;
}

.checkout.empty, .checkout.success {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.checkout-button-empty {
    margin-top: 30px;
}

.checkout-page {
    position: absolute;
    padding: 68px 22px 144px;
    max-width: 1000px;
    width: calc(100% - 44px);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: 0.25s;
}

.checkout-page.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.checkout-heading, .order-heading {
    font-weight: 900;
    margin-top: 60px;
	width: 100%;
}

.checkout-items, .order-items, .order-details-items {
    display: flex;
    flex-wrap: wrap;
	width: 100%;
}

.checkout-item {
    display: flex;
    width: calc((100% - 30px) / 2 - 2px - 60px);
    border: 1px solid #D7D7D7;
    padding: 30px;
    position: relative;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    margin-top: 30px;
}

#page-cart .checkout-item {
    padding-bottom: 15px;
}

.checkout-item:nth-child(odd){
    margin-right: 30px;
}

.checkout-item-image {
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.checkout-item-price {
    margin-top: 12px;
    width: 100%;
    text-align: center;
}

.checkout-item-quantity {
    margin-top: 2px;
    width: 100%;
    text-align: center;
}

.checkout-item-right {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    width: 100%;
}

#page-cart .checkout-item-collection {
	margin-right: 60px;
}

.checkout-item-collection {
    font-weight: 600;
    text-transform: capitalize;
}

.checkout-item-customizations {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.checkout-item-customization {
    margin: 6px 8px 0 0;
    width: calc(50% - 8px);
    text-transform: capitalize;
}

.checkout-item-instructions {
    width: 100%;
    margin-top: 18px;
    font-style: italic;
}

.checkout .input-quantity-container {
    padding-top: 18px;
    margin-top: auto;
}

.checkout-item-delete {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
	transition: 0.25s;
}

.checkout-subheading, .order-subheading {
    margin-top: 60px;
    width: 100%;
}

.checkout-inputs, .checkout-input-container.double {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checkout-input-container {
    width: calc((100% - 30px) / 2);
    margin-top: 30px;
}

.checkout-input-container.double .checkout-input-container {
    margin-top: 0;
}

.checkout-input-heading {
    font-weight: bold;
    text-transform: uppercase;
}

.checkout-input {
    margin-top: 12px;
}

#page-confirm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#page-confirm .checkout-subheading, #order .order-subheading {
	font-weight: 500;
	margin-bottom: 18px;
}

.order-details-subheading {
    font-weight: 500;
}

.order-details-top .order-details-subheading {
    font-weight: 500;
	margin-bottom: 30px;
}

.checkout-confirm-container, .order-container, .order-details-column {
	width: calc((100% - 30px) / 2);
}

.order-details-column {
	margin-bottom: 60px;
}

.checkout-confirm-row, .order-row, .order-details-row {
	margin-top: 6px;
	display: flex;
	justify-content: space-between;
}

.order-details-row {
    margin-top: 12px;
}

.checkout-confirm-row:last-child, .order-row:last-child {
	margin-top: 22px;
}

.checkout-confirm-value, .order-value, .order-details-value {
	margin-top: 6px;
    white-space: pre-line;
}

.checkout-confirm-row .checkout-confirm-value, .order-row .order-value, .order-details-value {
	margin-top: 0;
	text-align: right;
}

.checkout-confirm-title.bold, .checkout-confirm-value.bold, .order-title.bold, .order-value.bold, .order-details-title.bold, .order-details-value.bold {
	font-weight: bold;
}

#page-success {
    display: flex;
	justify-content: center;
    flex-direction: column;
    align-items: center;
}

.checkout-success-container {
	display: flex;
	align-items: center;
}

.checkout-success-image {
	width: 32px;
	height: 32px;
	margin-right: 12px;
}

.checkout-success-heading {
	font-weight: 500;
}

.checkout-success-message {
	margin: 60px 0;
	text-align: center;
}

.checkout-vitals {
    display: flex;
    position: fixed;
    align-items: center;
	justify-content: space-between;
    height: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    border-top: 1px solid rgb(221, 224, 230);
    padding: 0 22px;
}

.checkout-button {
    width: 250px;
    transition: 0.25s;
}

.checkout-vital {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.checkout-vital-heading {
    font-weight: bold;
    text-transform: uppercase;
}

.checkout-vital-value {
    color: #2D2D2D;
    font-size: 1.250rem;
    margin-top: 2px;
    text-transform: capitalize;
}

.order {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    margin: 0 auto;
    padding: 68px 22px 90px;
    max-width: 1000px;
    width: calc(100% - 44px);
}

.admin-orders-list {
    padding: 45px 0 34px;
    width: 100%;
}

.admin-orders-headings {
    display: flex;
    padding: 0 45px;
}

.admin-orders-heading, .package-heading {
    width: 100%;
    color: #C8C8C8;
    text-transform: uppercase;
    font-weight: bold;
}

.admin-order {
    display: flex;
    align-items: center;
    padding: 11px 45px;
    cursor: pointer;
}

.admin-order:nth-child(2){
    margin-top: 7px;
}

.admin-order-value, .package-value {
    width: 100%;
}

.admin-order-state, .package-state {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    height: 22px;
    width: 100px;
    margin-left: 30px;
    border-radius: 11px;
    background-color: #C8C8C8;
    color: white;
    flex-shrink: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.package-state {
	margin: 0 15px 0 30px;
}

.package-weight, .package-rate {
    margin-top: 2px;
    color: #828282;
}

#heading-state {
	margin-left: 30px;
    width: 100px;
    flex-shrink: 0;
}

.package-headings #heading-state {
	margin: 0 15px 0 30px;
}

.state-new {
    background-color: #FF6D6D;
}

.state-shipped {
    background-color: #B27DFD;
}

.state-delivered {
    background-color: #6BD360;
}

#heading-name, .order-name {
    width: 20%;
    flex-shrink: 0;
}

#heading-placed, .order-placed, #heading-expected, .order-expected {
    width: 15%;
    flex-shrink: 0;
}

#heading-location, .order-location {
    text-align: right;
}

#heading-itemCount, .order-itemCount{
    width: 8%;
    flex-shrink: 0;
    text-align: right;
}

#heading-total, .order-total {
    width: 12%;
    flex-shrink: 0;
    text-align: right;
}

.order-name {
    font-weight: 500;
}

.order-details-top {
    display: flex;
    justify-content: space-between;
}

.order-details .checkout-item {
	box-shadow: none;
}

.modal-package {
	width: 440px;
}

.modal-package-button {
	width: 250px;
	margin: 30px auto 0;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 12px;
	cursor: pointer;
	transition: 0.25s;
}

.package-input {
	margin-top: 8px;
}

.package-input-container {
	display: flex;
	justify-content: space-between;
}

#input-weight-pounds, #input-weight-ounces {
	width: calc((100% - 30px) / 2);
}

#heading-packages {
	margin-top: 60px;
}

.package-headings {
	display: flex;
	margin: 30px 92px 0 0;
}

.package {
    display: flex;
    align-items: center;
    padding: 11px 0;
}

.package-button {
	margin-left: 8px;
	flex-shrink: 0;
}

.container.how {
	margin: 150px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.how-subheading, .custom-subheading, .contact-subheading {
	margin-top: 45px;
	width: 100%;
	text-align: center;
}

.how-subheading {
	max-width: 630px;
}

.how-items {
	display: flex;
	margin-top: 90px;
}

.how-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 320px;
	width: 100%;
	margin: 0 30px;
}

.how-item:first-child {
	margin-left: 0;
}

.how-item:last-child {
	margin-right: 0;
}

.how-title {
	text-align: center;
	font-weight: bold;
	margin-top: 30px;
}

.how-body {
	width: 100%;
	margin-top: 12px;
	text-align: center;
}

.how-button {
	margin-top: 90px;
	max-width: 200px;
}

.promo-inner {
    width: calc(100% - 180px);
    border-radius: 6px;
    padding: 120px 90px;
    display: flex;
    flex-direction: column;
    margin: 22px 0;
	position: relative;
	overflow: hidden;
}

.promo-inner:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
    background-position: center;
	opacity: 0.75;
}

.promo-inner.weddings:before {
    background-image: url('assets/cover-weddings.jpg');
}

.promo-inner.prom:before {
    background-image: url('assets/cover-prom.jpg');
    align-items: flex-end;
}

.promo-inner.prom {
    align-items: flex-end;
}

.promo-heading {
    max-width: 350px;
    font-weight: 500;
	position: relative;
}

.promo-inner.prom .promo-heading {
    max-width: 450px;
    text-align: right;
}

.promo-body {
	position: relative;
    max-width: 450px;
    margin-top: 30px;
}

.promo-inner.prom .promo-body {
    max-width: 400px;
    text-align: right;
}

.promo-buttons {
	position: relative;
    display: flex;
    margin-top: 30px;
}

.promo-button {
    margin-right: 15px;
}

.testimonials-container {
    margin: 150px 0;
}

.testimonials {
    display: flex;
    margin-top: 60px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials::-webkit-scrollbar {
    display: none;
}

.testimonial-spacer {
    flex-shrink: 0;
}

.testimonial {
    border: 1px solid #D7D7D7;
    width: calc(100% - 24px);
    max-width: 800px;
    margin: 0 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-body {
	width: calc(100% - 120px);
    text-align: center;
    margin: 60px 60px 0;
}

.testimonial-name {
    text-align: center;
    color: #FF6D6D;
    font-weight: bold;
    margin: 18px 60px 60px;
}

.questions {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.question {
	width: 100%;
	border: 1px solid #FF6D6D;
	border-radius: 5px;
	margin-top: 15px;
	cursor: pointer;
	max-width: 800px;
	overflow: hidden;
	transition: max-height 0.25s ease-in-out;
}

.question:first-child {
	margin-top: 60px;
}

.question-top {
	padding: 22px;
	width: calc(100% - 44px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.question-question {
	font-weight: 600;
	margin-right: 22px;
	transition: opacity 0.25s;
}

.question-image.plus {
	display: block;
}

.question-image.minus {
	display: none;
}

.question.active .question-image.minus {
	display: block;
}

.question.active .question-image.plus {
	display: none;
}

.question-answer {
	width: calc(100% - 44px);
	margin: 0 22px 22px;
}

.footer {
	width: calc(100% - 60px);
	margin: 0 30px 18px;
	display: flex;
	align-items: center;
	border-top: 1px solid #0A0A0A;
	padding-top: 18px;
}

.footer-link {
	margin-right: 18px;
	width: 28px;
	height: 28px;
	transition: 0.25s;
}

.footer-link:last-of-type {
	margin: 0;
}

.footer-link img {
	width: 100%;
	height: 100%;
}

.footer-copyright {
	margin-left: auto;
}

.footer-privacy {
	font-weight: 600;
	transition: 0.25s;
}

.silk .cover {
    max-height: 400px;
    justify-content: center;
}

.silk .cover-content {
    margin: 0;
    max-width: none;
}

.container.silk {
    max-width: 1000px;
}

.silk-intro {
    margin-top: 150px;
}

.silk-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.silk-item {
    width: calc(50% - 30px);
    margin-top: 60px;
}

.silk-item-heading {
    color: #FF6D6D;
    font-weight: bold;
}

.silk-item-body {
    margin-top: 18px;
}

.silk-closing {
    margin-top: 60px;
}

.silk-link {
    color: #FF6D6D;
    font-weight: bold;
    transition: opacity 0.25s;
}

.silk-author {
    margin: 90px 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.silk-author-info {
    margin-left: 30px;
}

.silk-name {
    font-weight: 500;
}

.silk-title {
    margin-top: 2px;
}

.container.privacy {
	margin: calc(90px + 69px) 0 90px;
	max-width: 960px;
}

.privacy-heading {
	align-items: flex-start;
}

.privacy-date {
	margin: 30px 0;
}

.privacy-section-heading {
	margin-top: 30px;
	font-weight: bold;
}

.privacy-paragraph {
	margin-top: 12px;
}

.privacy-link, .contact-link {
	font-weight: bold;
	color: #FF6D6D;
	transition: opacity 0.25s;
}

.container.custom, .container.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 150px;
}

.container.contact {
	margin-bottom: 150px;
}

.custom-items {
	margin: 60px 0 45px;
}

.custom-item {
	display: flex;
	align-items: center;
	margin-top: 22px;
}

.custom-item:first-child {
	margin: 0;
}

.custom-item img {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.custom-item-heading {
	margin-left: 12px;
}

.custom-subheading {
	max-width: 680px;
}

.custom-disclaimer {
	font-style: italic;
	margin-bottom: 45px;
}

.contact-subheading {
	max-width: 630px;
}

.modal-offers {
    max-height: 800px;
    overflow-y: auto;
}

.offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 60px);
    min-width: 500px;
    border: 1px solid #D7D7D7;
    padding: 30px;
    position: relative;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    margin-top: 30px;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.offer ~ .offer {
    margin-top: 10px;
}

.offer-left {
    width: 100%;
}

.offer-name {
    color: #FF6D6D;
    font-weight: 600;
    flex-shrink: 0;
}

.offer-days {
    margin-top: 2px;
}

.offer-description {
    margin-top: 2px;
    color: #828282;
}


/* Desktop */
@media (min-width: 992px){
	.mobile-only {
		display: none;
	}

    .admin-nav-button:hover, .dialogue-button:hover, .collection-editor-image:hover, .nav-link:hover, .nav-cart:hover, .editor-arrangement-image-wrapper:hover, .arrangement-image-primary:hover, .arrangement-image:hover, .arrangement-input-prompt a:hover, .checkout-input-prompt a:hover, .footer-privacy:hover, .question:hover .question-question, .silk-link:hover, .privacy-link:hover, .contact-link:hover {
		opacity: 0.8 !important;
	}

	.button:hover, .admin-nav-signout:hover, .admin-nav-export:hover, .button-round:hover, .modal-colors-item:hover, .picker-item:hover, .gallery-button:hover, .checkout-item-delete:hover {
		opacity: 0.8;
		transform: scale(1.05);
	}

	.footer-link:hover {
		opacity: 0.8;
		transform: scale(1.15);
	}

	.gallery-image:hover {
		transform: scale(1.05);
	}

	.gallery-close:hover, .picker-close:hover, .modal-close:hover {
		opacity: 0.8;
		transform: scale(1.25);
	}

	.admin-collection:hover, .featured-collection:hover, .shop-collection:hover, .offer:hover {
		box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
		transform: scale(1.01);
	}

	.outline-white:hover {
		background: white;
		color: #0A0A0A;
	}

	.outline-black:hover {
		background: #0A0A0A;
		color: white;
	}

	.nav-button-wrapper {
		display: none;
	}

	.nav-close {
		display: none;
	}

	.input-dropdown-item:hover {
		background-color: #F5F5F5;
	}

    .toggle-option:hover {
        background-color: #F5F5F5;
    }

    .arrangement .toggle-option:hover {
        background-color: white;
        color: #0A0A0A;
        border: 1px solid #0A0A0A;
    }

    .input-picker:hover, .input-quantity-text:hover, .input-quantity-button:hover {
        border: 1px solid #0A0A0A;
    }

    .input-quantity-button:hover div {
        background-color: #0A0A0A;
    }

    .modal-photos-image-wrapper:hover .modal-image-delete {
        opacity: 0.5;
    }

    .modal-image-delete:hover:not(.empty) {
        opacity: 1 !important;
    }

    .collection-about-description-full-wrapper {
        max-height: none !important;
    }

	.collection-more-button {
        display: none;
	}

    .admin-order:hover {
        background-color: #F5F5F5;
    }
}

/* Tablet & Phone */
@media (max-width: 991px){
	.desktop-only {
		display: none;
	}

	.nav {
		height: 64px;
		justify-content: space-between;
	}

	.nav-logo-wrapper {
		margin: 0;
	}

	.nav-cart-wrapper {
		width: 22px;
		padding: 8px;
		margin: 0 16px;
	}

	.nav-links {
		position: fixed;
		width: 300px;
		flex-direction: column;
		justify-content: flex-start;
		top: 0;
		left: -300px;
		bottom: 0;
		background-color: white;
		margin: 0;
		transition: left 0.35s ease;
		overflow: scroll;
		z-index: 500;
	}

	.nav-link {
		color: #0A0A0A !important;
		font-size: 1.125rem;
		padding: 18px 36px;
		width: calc(100% - 72px);
	}

	.nav.open .nav-links {
		left: 0;
	}

	.nav.open ~ .transparent-view {
		left: 300px;
		opacity: 0.75;
		pointer-events: auto;
	}

	.cover {
		justify-content: center;
	}

	.cover-image {
		filter: brightness(50%);
	}

	.cover-content {
		width: calc(100% - 36px);
		margin: 0 18px 15%;
	}

	.cover-title {
		text-align: center;
	}

	.cover-subtitle {
		text-align: center;
	}

	.cover-buttons {
		justify-content: center;
	}

	.container {
		padding-right: 12px;
		padding-left: 12px;
		width: calc(100% - 24px);
	}

	.container.shop {
		margin-top: calc(120px + 65px);
	}

	.featured-collection, .shop-collection {
		width: calc((100% - 36px) / 3);
		margin: 6px;
	}

	.collection-cover {
		margin-top: 64px;
    }

	.collection-about {
		margin-top: 90px;
	}

	.collection-about {
		flex-direction: column-reverse;
	}

	.collection-about-right {
		display: flex;
		flex-wrap: wrap;
		max-width: none;
		margin: 0 36px;
		padding: 30px 0;
		border-top: 2px solid #F5F5F5;
		border-bottom: 2px solid #F5F5F5;
	}

	.collection-about-right > *:nth-child(1) {
		order: 1;
	}

	.collection-about-right > *:nth-child(2) {
		order: 3;
	}

	.collection-about-right > *:nth-child(3) {
		order: 2;
	}

	.collection-about-right > *:nth-child(4) {
		order: 4;
	}

	.collection-about-right .collection-about-heading:last-of-type .collection-about-heading-icon {
		margin: 0;
	}

	.collection-about-heading {
		width: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.collection-about-text {
		width: 50%;
	}

	.collection-about-heading-title, .collection-about-text {
		text-align: center;
	}

	.collection-about-left {
		margin: 90px 36px 0;
		width: calc(100% - 72px);
	}

	.collection-about-description-full-wrapper {
        overflow: hidden;
		transition: max-height 0.25s;
	}

	.collection-about-left.long .collection-about-description-full-wrapper {
		position: relative;
	}

	.collection-about-left.long .collection-about-description-full-wrapper:before {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(rgba(255, 255, 255, 0) 150px, white);
		overflow: hidden;
	}

	.collection-about-left .collection-more-button {
        display: none;
		width: 50%;
	}

	.collection-about-left.long .collection-more-button {
		display: flex;
	}

	.collection-about-left .collection-contact-button {
		width: 50%;
	}

	.collection-about-left.long .collection-contact-button {
	    margin-top: 12px;
	}

	.arrangement-container {
		display: flex;
		flex-wrap: wrap;
	}

	.arrangement {
		width: calc((100% - 66px) / 2);
		max-height: none !important;
		flex-direction: column;
		border-radius: 12px;
	}

	.arrangement:nth-child(even) {
		margin-left: 0;
	}

	.arrangement.primary .arrangement-image-primary, .arrangement-image-primary {
		margin: 0;
		width: 100%;
		min-width: 0;
		max-width: none;
		min-height: 0;
		max-height: none;
		transition: none;
	}

	.arrangement-name-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.arrangement.primary .arrangement-name, .arrangement-name {
		margin-right: 30px;
		font-size: 1.25rem;
		font-weight: bold;
	}

	.arrangement.primary .arrangement-price, .arrangement-price {
		font-size: 1rem;
		margin: 0;
		color: #828282;
	}

	.arrangement-button {
		position: static;
		width: 100%;
		margin-top: 30px;
	}

    .arrangement.edit .arrangement-button, .arrangement .arrangement-button {
        opacity: 0;
    }

    .arrangement.primary .arrangement-button {
        opacity: 1;
    }

    .arrangement.primary .arrangement-button.disabled {
        opacity: 0.5;
    }

	.arrangement-images {
		display: none;
	}

	.arrangement-display {
		position: static;
	}

    .arrangement.edit .arrangement-display, .arrangement-display {
        opacity: 1;
    }

	.arrangement-dimensions {
		margin: 8px 0 0 0;
	}

	.arrangement-dimensions img:first-of-type {
		width: 16px;
	}

	.arrangement-dimensions img:last-of-type {
		height: 16px;
	}

    .arrangement-inputs {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0;
        opacity: 1;
        background-color: white;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        z-index: 200;
		overflow-y: scroll;
        transition: 0.25s;
    }

    .arrangement.primary .arrangement-inputs {
        top: 100%;
    }

    .arrangement-input-container, .arrangement-input-container:nth-child(even) {
        margin: 20px 22px 0;
        max-width: 500px;
        width: calc(100% - 44px);
    }

	.arrangement-input-container.input-instructions {
		margin: 20px 22px 22px;
		max-width: 500px;
		width: calc(100% - 44px);
	}

    .arrangement-nav {
        width: 100%;
		flex-shrink: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #F5F5F5;
        background-color: #FAFAFA;
        padding: 22px 0;
        margin-bottom: 45px;
    }

    .arrangement-nav-name {
        font-weight: 500;
        font-size: 1.125rem;
        width: 100%;
        text-align: center;
    }

    .arrangement-nav-close {
        position: absolute;
        padding: 8px;
        top: auto;
        bottom: auto;
        right: 14px;
    }

    .arrangement-button-mobile {
        width: calc(100% - 44px);
        margin: auto auto 22px;
        max-width: 500px;
		flex-shrink: 0;
    }

    .arrangement-cart {
        justify-content: center;
        margin-top: 22px;
        order: 5;
        position: static;
    }

	.gallery {
		background-color: rgba(0, 0, 0, 0.9);
	}

	.gallery-image-primary {
	    max-width: 100%;
	    max-height: calc(100% - 168px);
		position: relative;
		top: -22px;
	}

	.gallery-button {
		position: absolute;
		z-index: 100;
		bottom: 26px;
	}

	.gallery-button.left {
	    left: 22px;
		margin: 0;
	}

	.gallery-button.right {
	    right: 22px;
		margin: 0;
	}

	.gallery-images {
		justify-content: center;
		left: 0;
		right: 0;
		bottom: 12px;
		transform: none;
	}

	.gallery-image {
		margin: 0 2px;
	}

	.gallery-close {
		top: 12px;
		right: 12px;
	}

    .arrangement .input-toggle, .input-picker, .input-quantity-button, .input-quantity-text {
        height: 60px;
    }

    .input-picker-title {
        font-size: 1rem;
    }

    .input-picker-title {
        margin-left: 18px;
    }

    .input-picker-image {
        width: 100px;
        height: 56px;
    }

    .checkout-page {
        padding-top: 65px;
		max-width: 640px;
    }

    .checkout-item {
        width: calc(100% - 2px - 60px);
        margin-top: 22px;
    }

    .checkout-item:nth-child(odd){
        margin-right: 0;
    }

    .checkout-item-customizations {
        max-width: 300px;
    }

    .checkout-item-instructions {
        max-width: 300px;
    }

    .checkout .input-quantity-container {
        max-width: 300px;
    }

    .checkout .input-quantity-button, .checkout .input-quantity-text {
        height: 44px;
    }

    .checkout .input-quantity-button {
        width: 44px;
    }

	.checkout-confirm-container, .order-container {
		width: 100%;
	}

    .checkout-vitals {
        height: 64px;
    }

    .checkout-button {
        width: 200px;
    }

    .checkout-vitals {
        justify-content: space-between;
    }

    .checkout-vital {
        display: none;
    }

    .checkout-vital-heading {
        font-weight: bold;
        text-transform: uppercase;
    }

    .checkout-vital-value {
        font-weight: normal;
        font-size: 1rem;
    }

	.promo-inner {
	    margin: 6px 0;
	}

	.promo-inner:before {
		opacity: 0.5;
	}

	.footer {
		width: calc(100% - 24px);
		margin: 0 12px 18px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-link {
		width: 32px;
		height: 32px;
	}

	.footer-copyright {
		margin: 18px 0 0;
		width: 100%;
		text-align: center;
	}

	.silk .cover-image {
		filter: none;
	}

	.container.privacy {
		margin: calc(60px + 69px) 0 60px;
	}
}

/* Phone */
@media (max-width: 575px){
	h1 {
	    margin: 0;
	    font-size: 1.8rem;
	    line-height: 2.25rem;
	    font-weight: normal;
	}

    h2 {
	    margin: 0;
	    font-size: 1.5rem;
	    line-height: 2.125rem;
	    font-weight: normal;
	}

	h3 {
	    margin: 0;
	    font-size: 1.125rem;
	    line-height: 1.5rem;
	    font-weight: normal;
	}

	h4 {
	    margin: 0;
	    font-size: 1rem;
	    line-height: 1.5rem;
	    font-weight: normal;
	}

	p {
	    margin: 0;
	    font-size: 1rem;
	    line-height: 1.5rem;
	    font-weight: normal;
	}

	.nav-button {
		margin-right: 10px;
	}

    .cart {
        width: 300px;
        right: -300px;
    }

    .cart-item-image {
        max-width: 64px;
        max-height: 64px;
    }

	.cover-button {
		min-width: 0;
		margin: 0 7px;
	}

    .featured {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    body.shop {
        background-color: white;
    }

	.container.shop {
		margin-top: calc(60px + 66px);
		margin-bottom: 90px;
		padding-right: 12px;
		padding-left: 12px;
		width: calc(100% - 24px);
	}

	#input-category .toggle-option {
		width: 150px;
		flex-shrink: 0;
	}

	.featured-collection {
		width: 100%;
		margin: 12px 0 0;
        border-radius: 12px;
	}

	.shop-collection {
		width: calc((100% - 12px) / 2);
		margin: 6px;
        border-radius: 0;
        box-shadow: none;
	}

	.shop-collection:nth-child(odd){
		margin-left: 0;
	}

	.shop-collection:nth-child(even){
		margin-right: 0;
	}

	.shop-name {
		margin: 6px 0 0;
		font-size: 0.875rem;
		line-height: 1.25rem;
        width: 100%;
	}

	.shop-description {
        margin: 6px 0 0;
        width: 100%;
	}

	.collection-background-wrapper {
		display: none;
	}

    .collection-image {
        position: static;
        border: none;
        width: 100%;
    }

	.collection-name {
        font-weight: bold;
		margin-top: 45px;
		text-align: left;
	}

	.collection-description-short {
		text-align: left;
	}

    .collection-shipping {
        justify-content: flex-start;
    }

	.collection-about {
		margin: 45px 0 0;
	}

	.collection-about-right {
		margin: 0 22px;
	}

	.collection-about-left {
		margin: 45px 22px;
		width: calc(100% - 44px);
	}

	.collection-about-text {
		font-size: 0.875rem;;
		line-height: 1.25rem;
	}

	.collection-about-left.long .collection-more-button, .collection-about-left.long .collection-contact-button, .collection-about-left .collection-contact-button {
	    width: 100%;
	}

	.arrangement {
		width: calc(100% - 44px);
	}

	.arrangement:nth-child(even) {
		margin-left: 22px;
	}

    .picker-item {
        width: 50%;
    }

    .arrangement-nav {
        padding: 18px 0;
        margin-bottom: 14px;
    }

    .arrangement-right {
    	margin: 22px;
    	width: calc(100% - 44px);
    }

	.gallery-images {
		display: none;
	}

    .checkout-item {
        width: calc(100% - 2px - 24px);
        padding: 22px;
        margin-top: 12px;
    }

    .checkout-item-image {
        min-width: 64px;
        min-height: 64px;
        max-width: 64px;
        max-height: 64px;
    }

    .checkout-item-price {
        margin-top: 8px;
    }

    .checkout-item-right {
        margin-left: 22px;
    }

    .checkout-item-customizations {
        max-width: none;
    }

    .checkout-item-instructions {
        max-width: none;
    }

    .checkout-item-delete {
        top: 22px;
        right: 22px;
    }

    .checkout-subheading, .order-subheading {
        margin-top: 45px;
    }

    .checkout-inputs, .checkout-input-container.double {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .checkout-input-container {
        width: 100%;
    }

    .checkout-input-container.double .checkout-input-container {
        margin-top: 30px;
    }

    .checkout-vitals {
        justify-content: space-between;
    }

    .checkout-button {
        width: calc(50% - 8px);
        min-width: 0;
    }

	.container.how {
		margin: 90px 0;
	}

	.how-items {
		flex-direction: column;
		margin-top: 60px;
	}

	.how-item {
		margin: 45px 0 0;
	}

	.how-item:first-child {
		margin-top: 0;
	}

	.how-button {
		margin-top: 60px;
	}

	.promo-inner {
	    width: calc(100% - 60px);
	    padding: 30px;
	}

	.promo-inner.prom {
		align-items: flex-start;
	}

	.promo-heading {
	    max-width: none !important;
		font-weight: bold;
		text-align: left !important;
	}

	.promo-body {
		text-align: left !important;
		max-width: none !important;
	    margin-top: 18px;
	}

	.promo-buttons {
		flex-direction: column;
	    margin-top: 30px;
	}

	.promo-button {
	    margin: 0;
		max-width: 200px;
	}

	.promo-button:last-child {
		margin-top: 12px;
	}

	.testimonials-container {
		margin: 90px 0;
	}

	.testimonial {
		margin: 0 12px;
	}

	.testimonial-body {
		width: calc(100% - 44px);
	    margin: 22px 22px 0;
	}

	.testimonial-name {
	    text-align: center;
	    color: #FF6D6D;
	    font-weight: bold;
	    margin: 12px 22px 22px;
	}

	.silk-intro {
		margin-top: 90px;
	}

	.silk-item {
		width: 100%;
		margin-top: 45px;
	}

	.silk-item-body {
		margin-top: 8px;
	}

	.silk-closing {
		margin-top: 45px;
	}

	.silk-author {
		margin: 60px 0 90px;
		flex-direction: column;
	}

	.silk-author-image {
		width: 100px;
		height: 100px;
	}

	.silk-author-info {
		margin: 18px 0 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.container.custom, .container.contact {
		margin-top: 90px;
	}

	.container.contact {
		margin-bottom: 90px;
	}
}

/* Short Desktop */
@media (min-width: 992px) and (max-height: 800px){

}

/* Wide Desktop */
@media (min-width: 1920px){
	.cover-content {
		max-width: 720px;
	}

	.cover-title {
		font-size: 4rem;
		line-height: 4.5rem;
	}

	.cover-subtitle {
		max-width: 600px;
		margin-left: auto;
	}
}
