@font-face {
    font-family:'DaxRegular';
    src: url('../../fonts/DaxRegular.otf');
    src: url('../../fonts/DaxRegular.otf') format('truetype');
    font-style: normal;
    font-stretch: normal;
}
@font-face {
    font-family:'DaxBold';
    src: url('../../fonts/DaxBold.otf');
    src: url('../../fonts/DaxBold.otf') format('truetype');
    font-style: normal;
    font-stretch: normal;
}
@font-face {
    font-family:'DaxMedium';
    src: url('../../fonts/DaxMedium.otf');
    src: url('../../fonts/DaxMedium.otf') format('truetype');
    font-style: normal;
    font-stretch: normal;
}

/* General */
:root {
    --light-gray: #f0f0f0;
    --dark-gray: #676767;
    --mild-black: #3e3e3e;
    --red: #e2001a;
    --blue: #01afd1;
    --dark-green: #049c93;
}
html {
    position: relative;
    min-height: 100%;
}
html.hasOpacity::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 100;
    transition: all 0.35s all;
    -webkit-transition: all 0.35s all;
    -ms-transition: all 0.35s all;
}
body {
    margin: 0 0 360px;
}
footer {
    background-color: var(--dark-gray);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 240px;
    width: 100%;
    overflow: hidden;
}
* {
    font-family: 'DaxRegular';
}
.label-primary, .label-primary[href]:focus, .label-primary[href]:hover {
    background-color: var(--blue);
}
a {
    color: #01afd1;
}
a:hover {
    color: inherit;
    text-decoration: underline;
}
a.btn {
    color: var(--blue);
}
a.btn:hover {
    color: inherit;
}
.btn-link:focus, .btn-link:hover {
    color: var(--blue);
}
.btn-primary.btn-custom {
    padding: 12px 15px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
}
.btn-primary.btn-custom:hover {
    color: #fff;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
    display: inline-block;
}
h1 {
    font-size: 65px;
    font-family: "DaxMedium";
    letter-spacing: 1px;
}
h2 {
	font-family: "DaxRegular";
	letter-spacing: .8px;
	font-size: 22px;
    line-height: 30px;
    letter-spacing: .7px;
}
h3 {
	font-family: "DaxRegular";
	letter-spacing: .8px;
	font-size: 22px;
    line-height: 30px;
    letter-spacing: .7px;
}
.form-control {
    height: 40px;
}
.small, small {
	font-size: 90%;
	opacity: .5;
}
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 999999;
}
.loader {
    border: 3px solid #eee;
    border-radius: 50%;
    border-top: 3px solid var(--red);
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: fixed;
    left: calc(50% - 28px);
    top: 35%;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.fe-relative {
    position: relative;
}
.fe-absolute {
    position: absolute;
}
.fe-has-angle-right::after {
    content: "\f105";
    font-family: "FontAwesome";
    display: inline-block;
    position: relative;
    right: -8px;
}
.fe-full-width {
    width: 100%;
}
.fe-no-padding {
    padding: 0;
}
.fe-transform-xy {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.fe-transform-x,
.fe-transform-y {
    position: absolute;
}
.fe-transform-x {
    left: 50%;
    transform: translateX(-50%);
}
.fe-transform-y {
    top: 50%;
    transform: translateY(-50%);
}
.fe-transform-xy {
    left: 50%;
    top: 50%
    transform: translateX(-50%) translateY(-50%);
}
.form-group .error {
    font-size: 11px;
    color: var(--red);
}
.text-white {
    color: #fff;
}
.bckg-image {
    background-size: cover;
    background-position: center;
}
.has-opacity::after {
	content: "";
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.m-top-50 {
    margin-top: 50px;
}
.body-gray{
    background-color: var(--light-gray);
}
.checkbox label {
    width: 100%;
    margin-bottom: 11px;
    line-height: 16px;
    font-size: 14px;
    font-family: "Helvetica";
    line-height: 17px;
}
.checkbox label input[type="checkbox"], .checkbox label input[type="radio"] {
    display: none;
}
.checkbox .cr .cr-icon {
    position: absolute;
    background-color: var(--blue);
    width: 0%;
    height: 0%;
    transition: .3s all;
}
.checkbox .cr {
    position: relative;
    display: inline-block;
    border: 1px solid var(--blue);
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border-radius: 3px;
    margin-bottom: -2px;
    overflow: hidden;
}
.checkbox label:after {
    content: '';
    display: table;
    clear: both;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon, .checkbox label input[type="radio"]:checked + .cr > .cr-icon {
    opacity: 1;
    width: 10px;
    height: 10px;
}
/* End General */

/* Navbar */
.navbar-toggle {
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 2px;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff;
}
.navbar-nav {
    margin-top: 0;
    background-color: var(--red);
}
.navbar-default {
    height: 80px;
    line-height: 80px;
    background-color: var(--red);
    border: none;
}
.navbar-brand {
    height: 80px;
    padding: 15px 25px;
    background-color: #fff;
}
.navbar-brand > img {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 200px;
}
.navbar-nav > li > a {
	padding: 0 30px;
	height: 80px;
	line-height: 80px;
	text-transform: uppercase;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover{
    color: #fff;
    background-color: #b9071b;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
    background-color: #fff !important;
}
.hp-bckg-image,
.search-results {
    position: relative;
    top: 80px;
}
.navbar-default .navbar-nav > .active > a::before {
	content: "";
	background-color: #fff;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.navbar-default .navbar-nav > .active > a::after {
    position: absolute;
    bottom: 2px;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    pointer-events: none;
    border-color: rgba(255,255,255,0);
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -6px;
    content: ' ';
}
/* End navbar */

/* Homepage */
.hp-bckg-image .bckg-image {
    min-height: 90vh;
    background-position: top;
}

.hp-bckg-image-inner {
	margin: 0;
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translateX(-50%) translateY(-50%);
    text-align: center;
    z-index: 1;
}
.hp-bckg-image-inner-wrapper {
    position: relative;
    color: #fff;
    width: 100%;
    max-width: 700px;
}
.highlighted-partners {
    position: relative;
}
.highlighted-partners > .container > .row > div {
    padding: 0;
}
.highlighted-partners .links {
	top: -65px;
	left: 0;
	width: 100%;
}
.highlighted-partners .links a {
	bottom: 30px;
    position: relative;
    color: #fff;
}
.partner-box {
    padding: 20px 20px 10px 20px;
    border: 1px solid var(--light-gray);
    height: auto;
    background-color: #fff;
    margin: 5px;
}
.partner-box .logo {
	max-height: 50px;
	overflow: hidden;
	min-height: 50px;
	position: relative;
}
.highlighted-partners .logo img {
	max-width: 150px;
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	left: 50%;
	top: 50%;
}
.discounts a {
	float: left;
	width: 100%;
	background-color: var(--light-gray);
	padding: 15px 0;
	margin: 20px auto;
}
.other-benefits {
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--dark-gray);
	padding: 0 5px;
	width: 100%;
	max-width: 130px;
	text-align: center;
	color: #eee;
	border-radius: 10px;
	font-weight: 300;
	font-size: 12px;
    letter-spacing: .5px;
    height: 24px;
    line-height: 26px;
}
.content-block {
    position: relative;
    margin: 30px auto;
}
.discounts .discount-amount,
.search-result-item .discount-amount {
    font-size: 40px;
    font-family: "DaxBold";
    color: #000;
}
.discounts a b {
    font-size: 30px;
    color: #000;
}
.discount-info {
    color: var(--mild-black);
    display: inline-block;
}
.content-block {
    margin-top: 100px;
}
#search-form input{
	margin: 0 !important;
	height: 55px;
	line-height: 21px;
	padding: 0 20px;
	border: none;
    border-radius: 2px;
    font-size: 18px;
}
#search-form .input-group-btn {
    width: auto;
}
#search-form .input-group-btn .btn {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	border: none;
	padding: 0 25px;
	border-radius: 0;
	height: 100%;
	color: #000;
	font-size: 20px;
	z-index: 5;
}
.search-form-helper {
    padding: 10px 0;
    letter-spacing: .5px;
}
.search-form-helper * {
    color: #fff;
    opacity: .8;
}
.search-form-helper a {
    text-decoration: underline;
}
/* End homepage */

/* Category box */
.category-box {
	background-color: var(--light-gray);
	padding: 15px;
    margin-bottom: 30px;
    margin: 5px;
    transition: .3s ease-in;
    z-index: 1;
}
.category-box:hover {
	transform: scale(1.1, 1.1);
	box-shadow: 0px 0px 2px #3e3e3e;
	background-color: #fff;
    z-index: 2;
    position: relative;
}
.category-box:hover .partners-count.fe-absolute {
    opacity: 0;
}
.category-box:hover .partners-count.show-on-hover {
    opacity: 1 !important;
}
.category-box img {
	width: auto;
	margin: 20px auto 5px;
	max-width: 55px;
}
.category-box h5 {
	color: #000;
	font-size: 17px;
}
.highlighted-categories .container > .row > div {
    padding: 0;
}
.category-box a {
	margin-top: 33px;
}
.category-box .partners-count {
	right: 20px;
	top: 20px;
	background-color: var(--dark-gray);
	color: #fff;
	opacity: .7;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 12px;
}
.cat-img-wrapper {
	position: relative;
	width: 60px;
	margin: 0 auto;
	min-height: 100px;
	max-height: 90px;
	overflow: hidden;
	height: auto;
}
/* End category box */

/* Become a partner */
section .become-a-partner {
    background-color: var(--dark-gray);
}
.become-a-partner-inner {
	position: relative;
	margin: 80px auto 30px;
}
.become-a-partner-inner h2 {
    font-size: 40px;
    line-height: 45px;
}
.become-a-partner-inner p {
    font-size: 18px;
    margin: 20px auto 30px;
}
.become-a-partner-inner .btn {
	background-color: #009f95;
	color: #fff;
	border: none;
	padding: 15px 30px;
}
.partnership-img.has-opacity::after {
    left: 15px;
    width: calc(100% - 30px);
}
.partnership-img-message {
    color: #fff;
    width: 100%;
}
.partnership-img-message ul {
	margin: 50px auto;
	display: block;
	width: 310px;
}
.partnership-img-message ul li {
	display: block;
	width: 100%;
	font-size: 16px;
	line-height: 25px;
	opacity: .9;
	margin-bottom: 15px;
	text-align: left;
}
.partnership-img-message ul li:before {
    content: '✓';
}
/* Become a partner */

/* Footer */
footer {
    padding-top: 50px;
}
footer * {
    color: var(--light-gray);
}
footer ul li a {
    color: var(--light-gray);
    letter-spacing: 1px;
    margin: 0 10px;
}
/* Footer */

/* Search page */
.search-results {
    margin-left: 300px;
    min-height: 90vh;
}
.search-results-holder {
    margin: 0;
    padding: 0;
}
.search-result-item {
	display: block;
	background-color: #fff;
	padding: 15px;
	margin: 15px;
}
.search-header {
	float: left;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background-color: #fff;
    padding: 0 15px;
    color: var(--dark-gray);
}
.search-header .action-links a {
    margin: 0 15px;
    color: #000;
    opacity: 1;
}
.search-header .action-links a.active {
    color: var(--dark-gray);
    opacity: .5;
}
.search-header .action-links a:last-child {
    margin-right: 0;
}
.search-header .action-links a i {
	font-size: 20px;
	position: relative;
	top: 2px;
	right: 5px;
}
.search-result-item .category-icon {
	height: 57px;
	line-height: 57px;
	vertical-align: middle;
}
.search-result-item .other-benefits {
	bottom: unset;
	left: unset;
	transform: none;
	max-width: 70px;
	display: inline-block;
	border-radius: 5px;
	margin-left: 30px;
	background-color: var(--light-gray);
	color: #000;
	line-height: 17px;
}
#filters {
	position: absolute;
	top: 80px;
	max-width: 300px;
	height: calc(100% - 80px);
	background-color: #fff;
	box-shadow: 0px 1px 3px #3e3e3e;
    width: 100%;
    padding: 20px 30px;
    overflow-y: auto;
    transition: .5s all;
}
#filters form {
    min-height: 100%;
    overflow-y: auto;
}
.search-result-item .img-holder img {
    max-width: 100%;
}
#filters .checkbox label {
    padding-left: 0;
}
.ucb-info-window {
    padding: 10px;
    max-width: 300px !important;
}
.ucb-info-window img {
	width: 100% !important;
	max-width: 180px !important;
	margin: 0 auto 20px !important;
}
.ucb-info-window p,
.ucb-info-window .ph_m a {
	font-size: 16px !important;
	margin-bottom: 7px !important;
}
.ucb-info-window .ph_m {
	margin: 20px auto;
}
.ucb-info-window .ph_m a {
	display: block !important;
	margin-bottom: 2px !important;
	font-size: 15px !important;
}
.ucb-info-window .discount p {
	color: #000 !important;
}
.ucb-info-window .discount {
	width: 100% !important;
	padding: 10px !important;
	background-color: var(--light-gray) !important;
}
.ucb-info-window .discount p:first-child {
    font-size: 30px !important;
    font-weight: 600 !important;
}
.leaflet-popup-content {
    min-width: 250px;
}
/* Search page */

/* Pagination */
.pagination {
	display: block;
	width: 100%;
	float: left;
	background-color: #fff;
    height: 60px;
    text-align: center;
    margin: 60px auto;
}
.pagination > li {
	display: inline-block;
}
.pagination li:first-child,
.pagination li:last-child {
    position: absolute;
    left: 15px;
    border: none;
}
.pagination li:last-child {
    left: unset;
    right: 15px;
}
.pagination li:first-child span,
.pagination li:last-child span {
    border: none;
    border-right: 1px solid #eee;
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
}
.pagination > li:last-child > a,
.pagination > li:first-child > a {
    border: none;
    border-left: 1px solid #eee;
    padding: 0px 30px;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
}
.pagination > li:first-child > a {
    border-left: none;
    border-right: 1px solid #eee;
}
.pagination > li > a, .pagination > li > span {
    font-weight: 600;
    padding: 0 15px;;
    height: 60px;
    line-height: 60px;
    border: none;
    color: #3e3e3e;
}
.pagination > .active > span {
    color: #337ab7;
    background-color: transparent;
    border-color: transparent;
}
/* Pagination */

/* Partner view */
.partner-view,
.partnership {
    background-color: #fff;
    padding: 0 15px;
}
.partnership {
    padding: 15px;
}
.partner-view > div:first-of-type {
    min-height: 400px;
}
.partner-view .logo-holder img {
    max-width: 300px;
    width: 100%;
}
.partner-view .logo-holder,
.partner-details {
    padding: 30px;
}
.logo-holder ul li {
    display: block;
    opacity: .5;
}
.partner-details h2 {
    margin-top: 0;
}
#partner-description {
    margin-top: 50px;
}
#partner-description p {
	font-size: 16px;
	line-height: 1.7em;
}
.partner-view .discounts {
    margin-top: 50px;
}
.partner-details {
	height: auto;
	min-height: 300px;
	border-left: 1px solid #eee;
	margin-top: 30px;
	padding-top: 0;
}
.page-container {
    background-color: #fff;
    padding: 25px;
}
.ck-editor-content p {
    line-height: 1.7em;
    font-size: 16px;
}
.form-wrapper h1,
.partnership-img-message h1,
.mail-success h1 {
    font-size: 30px;
    font-weight: 600;
}
.form-wrapper {
    padding: 30px 70px;
}
.form-wrapper  p {
    color: var(--mild-black);
    opacity: .8;
    margin: 25px auto;
    font-size: 15px;
}
form label {
    color: var(--mild-black);
    font-weight: 300;
}
.btn-big-green {
	margin: 0 auto;
	display: block;
	padding: 12px 70px;
	letter-spacing: 1px;
	background-color: var(--dark-green);
	border: none;
}
.btn-big-green:hover,
.btn-big-green:focus {
	background-color: var(--dark-green);
}
.partner-view  .mail-success {
    margin: 150px auto;
}
.partner-view  .mail-success i.fa {
	font-size: 50px;
	border: 2px solid #86b005;
	border-radius: 50%;
	padding: 25px;
	color: #86b005;
}
.partner-view  .mail-success h1 {
    margin: 50px auto 25px;
}
/* Partner view */

/* Newsletter */
section .become-a-partner.newsletter-block  {
    background-image: url('/img/newsletter.jpg');
    height: 400px;
    position: relative;
}
.newsletter-block .become-a-partner-inner {
    z-index: 1;
}
#search-form.newsletter-form {
	width: 500px;
	margin: 0 auto;
}
#search-form.newsletter-form .input-group-btn .btn {
	background-color: transparent;
	color: var(--blue);
	font-size: 17px;
}
/* Newsletter */


/* Responsive */
@media (max-width: 992px) {
    .search-results {
        margin-left: 250px;
    }
    #filters {
        width: 250px;
    }
    .partner-details {
        height: auto;
        min-height: unset;
        border-left: none;
        margin-top: unset;
        padding-top: unset;
    }
    .form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 52px;
    }
    h2 {
        font-size: 20px;
    }
    .category-box:hover {
        transform: none;
    }
    .hp-bckg-image-inner {
        width: 100%;
        max-width: 90%;
    }
    .search-result-item .img-holder {
        text-align: center;
        margin-bottom: 15px;
    }
    .search-results {
        margin-left: 0;
    }
    #filters {
        left: -255px;
        z-index: 2000;
        box-shadow: none;
    }
    .search-header {
        position: fixed;
        top: 80px;
        z-index: 2000;
    }
    .search-results-holder {
        top: 50px;
        position: relative;
        z-index: 1;
    }
    #search-form.newsletter-form {
        max-width: 300px;
    }
    .pagination li:first-child, .pagination li:last-child {
        position: relative;
        left: unset;
        right: unset;
    }
}

@media (max-width: 400px) {
    .hp-bckg-image .bckg-image {
        min-height: 100vh;
    }
    .navbar-brand > img {
        width: 150px;
    }
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 18px;
        line-height: 23px;
    }
    footer {
        height: 260px;
    }
    .search-results {
        min-height: 100vh;
    }
    .form-wrapper {
        padding: 10px;
    }
    .pagination {
        height: 30px;
    }
    .pagination > li > a, .pagination > li > span,
    .pagination > li:last-child > a, .pagination > li:first-child > a,
    .pagination li:first-child span, .pagination li:last-child span {
        height: 30px;
        line-height: 30px;
    }
}