
.price-match-wrapper {
	display: inline-block;
	vertical-align: middle;
	margin: 3px;
}
.price-match-button {
    width: 45px;
    height: 45px;
    border: none;
    background-color: #eee;
    font-size: 0;
    transition: .3s ease;
}
.price-match-button:before {
    content: "\e95a";
	font-family: 'pacific';
	font-size: 20px;
	color: #999;
	transition: .3s ease;
}
.price-match-button:hover {
    background-color: #c09e6c;
}
.price-match-button:hover:before {
    color: #fff;
}

/* form container */

.k-overlay {
	position: fixed;
	top: 0; left: 0;
	z-index: 1060;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.4;
}
.priceMatchWindow {
    flex-flow: column;
	position: absolute;
	left: 0 !important;
    right: 0; z-index: 1070;
	width: 700px !important;
    min-width: 0 !important;
	max-width: 96%; margin: auto;
    box-shadow: 0 1px 5px #666;
    background-color: #f6f6f6;
	padding: 0 !important;
}
.priceMatchWindow .k-window-titlebar {
	position: relative;
	margin-top: 0 !important;
	border-bottom: 1px dashed #e6e6e6;
    padding: 22px 40px 18px;
    text-align: center;
}
.priceMatchWindow .k-window-title {
    display: block;
	font-size: 24px;
    font-weight: lighter;
    text-transform: uppercase;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
	white-space: nowrap;
}
.priceMatchWindow .k-window-titlebar-actions {
	position: absolute;
	top: 5px; right: 5px;
    z-index: 1;
	font-size: 0;
}
.priceMatchWindow .k-window-titlebar .k-button {
	display: block;
	width: 40px;
	height: 40px;
    border: none;
    background: none;
    color: #888;
}
.priceMatchWindow .k-window-titlebar .k-button:after {
    content: "\e90a";
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    font-family: 'pacific';
    font-size: 20px;
    line-height: 40px;
    transition: 0.3s ease;
}
.priceMatchWindow .k-window-titlebar .k-button:hover {
	color: #444;
}
.priceMatchWindow .k-window-titlebar .k-icon {
	display: none;
}
.priceMatchWindow .k-window-content {
	padding: 30px 20px;
}

/* request form */

.price-match-form {
	text-align: center;
}
.price-match-form .title {
    margin: 0 0 20px;
	font-size: 15px;
    color: #444;
}
.price-match-form .title strong {
    font-weight: normal;
}
.price-match-form .captcha-box {
	margin: 0 0 10px;
}
.price-match-form .message-error {
	margin: 0 0 10px;
}
.price-match-form .buttons {
	margin: 0; /*reset theme styles*/
	text-align: center;
}
.save-price-match-button {
	min-width: 150px;
	margin: 5px 0;
    border: none;
    background-color: #c09e6c;
    padding: 15px 45px;
    font-size: 16px;
    font-weight: bold;
    transition: .3s ease;
    text-transform: uppercase;
    color: #fff;
}
.save-price-match-button:hover {
    background-color: #ae864b;
}

/* requests page */

.price-match-request {
    margin: 0 0 20px;
    border: 1px solid #eee;
    background-color: #fff;
    text-align: center;
}
.price-match-request .title {
    margin: 0 0 20px;
    border-bottom: 1px solid #eee;
    padding: 20px;
}
.price-match-request .title strong {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: #444;
}
.price-match-request .details {
    margin: 0 0 20px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 25px;
    font-weight: normal;
}
.price-match-request .details a {
    font-weight: bold;
    color: #c09e6c;
    transition: .3s ease;
}
.price-match-request .details a:hover {
    color: #ae864b;
}



@media all and (min-width: 768px) {

.price-match-requests-page .page-body {
    overflow: hidden;
}
.price-match-request {
    float: left;
    width: calc(50% - 10px);
    margin: 0 0 20px 20px;
}
.price-match-request:nth-child(2n+1) {
    clear: both;
    margin-left: 0;
}

}