
.mb7 {
	margin-bottom: 7px;
}

.mb17 {
	margin-bottom: 17px;
}

.mt17 {
	margin-top: 17px;
}

.vh-center-box {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/*
	like .vh-center-box but don't go off screen when child height > 100%
	set in child margin top/bottom: auto
*/
.vh-center-box-full-height {
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.vh-centered-box {
	margin-top: auto;
	margin-bottom: auto;
}

button, .button {
	border: none;
	background-color: #007bff;
	padding: 12px 19px;
	color: white;
	border-radius: 3px;
	font-weight: 500;
	font-family: 'Poppins';
}

button.full-width, .button.full-width {
	width: 100%;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.375rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	box-sizing: border-box;
}


.field_with_errors .form-control {
	margin-bottom: 0px;
}

.field-error {
	color: red;
	font-size: 0.8rem;
	margin: 7px 0 17px;
}

html,
body,
.app {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #f7f7f7;
	font-family: 'Poppins', sans-serif;
	height: 100%;
}

a {
	color: #007bff;
}

div {
	box-sizing: border-box;
}

/* reset ---- */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

a {
	color: rgb(37, 37, 37);
	text-decoration: none;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

main {
	width: 1400px;
	height: 100%;
	margin: auto;
}

.gift-list-items {
	margin-top: 17px;
}

.gift-list-item {
	gap: 10px;
	display: flex;
	margin-bottom: 17px;
}

.gift-list-item .photo {
	width: 120px;
	height: 120px;
}

.gift-list-item .photo img {
	width: 100%;
	border-radius: 9px;
}

.gift-list-item .sku {
	font-size: 0.75rem;
	color: #7c8083;
}

.gift-list-item .info {
	flex-grow: 1;
}

.gift-list-item .action {
	display: grid;
	padding: 17px;
	align-content: center;
}

.gift-list-item .action button,
.gift-list-item .action .btn {
	border: none;
	background-color: #007bff;
	padding: 12px 19px;
	color: white;
	border-radius: 3px;
	font-weight: 500;
	font-family: 'Poppins';
}

.gift-list-item-quote {
	display: flex;
	margin-bottom: 17px;
}

.gift-list-item-quote .name {
	font-weight: 500;
}

.gift-list-item-quote .track .line {
	height: 100%;
	margin: 0px 17px;
	border-left: 1px solid #bfbdbd;
}

.quote-form {
	width: 326px;
	text-align: center;
}
