/* CSS for the company cards */
:root {
    --blue: #007bff;
    --link: #1c75bc;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body{
    font-family: "Open Sans", sans-serif;;
}

#companiesTable {
    margin-top: 20px;
    /* Adjust the value as needed */
}

.directorist-listing-single {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.directorist-listing-single__thumb {
    position: relative;
    width: fit-content;
    height: 100px;
    /* Set a fixed height for the thumbnail */
    overflow: show;
}

.directorist-listing-single__thumb img {
    width: auto;
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio and cover the entire container */
    border-radius: 5px 5px 0 0;
}

.directorist-listing-single__content {
    padding: 20px;
}

.directorist-listing-single__info {
    margin-bottom: 10px;
}

.directorist-listing-single__info--top {
    margin-bottom: 10px;
}

.directorist-listing-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.directorist-listing-single__info--list {
    list-style-type: none;
    padding-left: 0;
}

.directorist-listing-single__info--list li {
    margin-bottom: 5px;
}

.directorist-listing-card-phone,
.directorist-listing-card-email,
.directorist-listing-card-website,
.directorist-listing-card-zip {
    display: flex;
    align-items: center;
}

.directorist-listing-card-phone i,
.directorist-listing-card-email i,
.directorist-listing-card-website i,
.directorist-listing-card-zip i {
    width: 20px;
    margin-right: 10px;
}

.directorist-content-active .directorist-listings-header {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 5px;
    border: 1px solid #e3e6ef;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.directorist-container,
.directorist-container-fluid,
.directorist-container-xxl,
.directorist-container-xl,
.directorist-container-lg,
.directorist-container-md,
.directorist-container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.directorist-search-slide {
    width: 60%;
}

.directorist-advanced-filter {
    border: 1px solid #e3e6ef;
    background: #fff;
    padding: 20px 30px;
}

.directorist-listing-category a {
    color: #333;
    text-decoration: none;
}

.directorist-listing-category a i {
    width: 20px;
    margin-right: 5px;
}

a:link {
    color: black;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #58595b;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: var(--link);
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: none;
}

*#companiesTable {
    margin-top: 20px;
    /* Adjust the value as needed */
}

.selected {
    background-color: #0073e6;
    color: #fff;
}

.baBar {
    display: flex;
    justify-content: center;
    padding: 10px 7px;
}

.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 0 5px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    transition: background-color 0.3s;
}

.tab br {
    display: none; /* Hide <br> elements to prevent additional line breaks */
}

.tab:hover {
    background-color: #e0e0e0;
}

/* Styling for the selected tab */
.tab.selected {
    background-color: #007bff;
    color: white;
    border: none;
}

/* Container for pagination */
#mobilePagination,
#viewmobilePagination,
#pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination-button {
    padding: 7px 15px;
    margin: 0 5px;
    border: unset;
    background-color: unset;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-left: 5px;
    margin-top: 10px;
}

.pagination-button.non-num{
    padding: 5px 20px;
    background-color: #f0f0f0;
    border-radius: 20px;
}

.pagination-button:hover {
    background-color: #e0e0e0;
}

/* Styling for the active pagination button */
.pagination-button.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.navbar {
    /* margin: 0 45px; */
    width: 100%;
    padding: 2px;
    background-color: white;
    /* White background color*/
    /* overflow: hidden; */
}

.navbar.home{
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: unset;
}

/* Adjust the alignment of navbar items */
.navbar-nav {
    width: 98%;
    /* margin: 0 150px; */
    margin-left: 0 150px;
    padding: 2px;
    background-color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    justify-content: flex-end;
}

.navbar :hover {
    color: #1c75bc;
}

.navbar.home .navbar-nav {
    background-color: unset;
    
}

.navbar.home  a:link {
    color: #FFF;
}
/* Adjust the alignment of navbar items for smaller screens */
@media (max-width: 990px) {
    .navbar-nav {
        /* Your existing styles */
        padding: 2px;
        background-color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 14px;
        flex-direction: column;
        align-items: center;
        display: none;

    }

    .tab {
        margin: 5px 0;
    }

    .container{
        flex-direction: column;
        /* align-items: center; */
    }
}

/* Initially hide the sublist */
.sublist {
    display: none;
}

.sublist a {
    text-decoration: none;
    color: #58595b;
    padding: 8px 30px;
    text-align: center;

}

/* Show the sublist when the parent list item is hovered over */
.nav-item:hover .sublist {
    display: block;
    background-color: #e6e7e8;
    color: #1c75bc;
    width: 230.16px;
    height: 70px;
    padding: 20px 0px;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Style for the dropdown menus */
select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
    width: 100%;
    margin-bottom: 10px;
}

.categories select {
    /* padding: 8px; */
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/* Style for the selected option */
select option:checked {
    background-color: #e9e9e9;
}

/* Style for the form labels */
label {
    /* font-weight: bold; */
    margin-bottom: 5px;
    display: block;
}

/* Style for the form container */
.form-container {
    margin-bottom: 20px;
}

.image-container {
    height: 100px;
    /* Set the desired height for the image container */
    overflow: hidden;
    /* Ensure the image does not overflow the container */
}

.company-thumbnail {
    width: 100%;
    /* Ensure the image fills the container width */
    height: 150px;
    /* Ensure the image fills the container height */
    object-fit: contain;
    /* Maintain aspect ratio and cover the container */

}

.standardized-box {
    padding: 5px;
    /* Add padding to the standardized box */
    background-color: #f0f0f0;
    /* Set background color for the standardized box */
}

.card.companycell{
    border: unset;
}

.companycell .image-container{
    border: 1px solid #f0f0f0;
    border-bottom: unset;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 200px;
}

@media (min-width: 767px ) {
    .companycell .image-container{
        height: 150px;
    }
}

.companycell .card-title{
    font-weight: 600;
    font-size: 16px;
}
/* footer */
.vlt-footer {
    background-color: #67ae45;
    padding: 60px 0 0;
    color: var(--white);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden; /* Ensure no overflow */
}

.vlt-footer .vlt-widget {
    padding: 0 15px;
    text-align: start;
}

.vlt-footer .vlt-widget img {
    height: 120px;
    max-width: 100%; /* Ensure image doesn't overflow */
}

.vlt-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vlt-footer a {
    text-decoration:none;
    color: var(--white);
}

.vlt-footer a:link {
    color: var(--white);
}

.vlt-footer a:visited {
    text-decoration:none;
    color: var(--white);
}

.vlt-footer .menu-item {
    margin-bottom: 10px;
}

.vlt-footer .vlt-widget_title {
    margin-top: 10px;
    text-align: center;
}

.vlt-footer .vlt-social-icon {
    display: inline-block;
    margin: 0 5px;
}

.vlt-footer-copyright {
    font-size: 13px;
    color: #FFF;
    margin-top: 40px;
}

.vlt-footer-copyright .container{
    padding-top: 10px;
    padding-bottom: 10px;
}

.vlt-footer-copyright p{
    margin-bottom: 0px;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


.menu {
    list-style-type: none;
}

.menu a {
    text-decoration: none;
    color: var(--white);
}

.menu a:hover {
    color: #1c75bc;
}

ul,
ol {
    list-style-type: none;
}

::selection {
    color: #fff !important;
    background-color: #1c75bc;
}

*,
::after,
::before {
    box-sizing: border-box;
}

*,
::after,
::before {
    box-sizing: border-box;
}

:root {
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 42px;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.5em;
    /* Adjust the height based on the line height */
    font-size: 13px;
}

.learnmore {
    width: max-content;
    height: 26px;
    font-size: 14px;
    border-radius: 5px;
    color: #1c75bc;
    cursor: pointer;
    font-weight: 600;
}

.fixed-size-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #f8f9fa;
    /* Optional: Adds a background color to highlight the container */
}

.fixed-size-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* or cover depending on how you want the images to be displayed */
}

#learnmore-modal .fixed-size-img {
    cursor: pointer;
}

.imgURL-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 200px;
    height: 150px; */
    background-color: #f8f9fa;
    /* Optional: Adds a background color to highlight the container */
}

.imgURL-container .img-thumbnail{
    border: unset;
}

.company-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    
    /* or cover depending on how you want the images to be displayed */
}

.fixed-size-desc {
    word-wrap: break-word;
    white-space: normal;
    text-overflow: clip;
    max-width: 100%;
    max-height: 100%;
    /* or cover depending on how you want the images to be displayed */
}

.fixed-size-desc-container {
    /* display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    width: 100%;
    height: 100px;
    overflow-y: scroll;
    overflow: hidden;
    flex-wrap: wrap; */
}

.fixed-size-desc-container:hover {
    overflow: auto;
    
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    /* text-align: center; */
}

.comapany-address {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.5em;
}

.comapany-website {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner{
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/WMRAS-Home-01.jpg');
    background-size: cover; /* Ensures the image covers the element */
    background-position: center; /* Centers the image */
    padding-top: 100px;
}

.banner{
    color: #FFF;
}

.banner h1{
    font-weight: 600;
    font-size: 40px;
}

.search-result-section,
.second-section{
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

@media (min-width:767px) {
    .search-result-section,
    .second-section{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.search-box{
    background-color: #aedca2;
    border-radius: 20px;
    padding: 30px 30px;
    margin-top: -30vh;
    margin-bottom: 80px;
}

@media (min-width:767px) {
    .search-box{
        margin-top: calc( -30vh - 80px );
    }
}

.search-box h2{
    font-weight: 600;
}

.vlt-blue-color{
    color: #004d71; 
}
.vlt-lt-blue-color{
    color: #1c75bc; 
}

.label-title{
    font-size: 22px;
    font-weight: 600;
}

.homecatsel{
    padding-top: 50px;
}

.homecatsel .tab{
    position: relative;
    min-height: 130px;
    align-items: end;
    flex-wrap: wrap;
    flex-direction: row;
    border-radius: 10px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 700;
    line-height: 1.01;
    color: #004d71;
    transition: all .3s ease-in-out ;
    margin-bottom: 50px;
    margin-left: 15px;
    margin-right: 15px;
}

@media (min-width: 991px ) {
    .homecatsel{
        margin-bottom: 50px;
    }

    .homecatsel .tab{
        margin-bottom: unset;
        margin-left: 5px;
        margin-right: 5px;
    }
}

.homecatsel .tab img{
    position: absolute;
    top: -50px;
    height: 100px;
    width: 100px;
    left: 0px;
    right: 0px;
    margin: auto;
    transition: all .3s ease-in-out;
}

.homecatsel .tab:hover,
.homecatsel .tab.selected{
    background-color: #d4e6f3;
}

.homecatsel .tab:hover img.img-active,
.homecatsel .tab.selected img.img-active,
.homecatsel .tab img.img-active-2{
    opacity: 0;
    visibility: hidden;
}

.homecatsel .tab:hover img.img-active-2,
.homecatsel .tab img.img-active,
.homecatsel .tab.selected img.img-active-2{
    opacity: 1;
    visibility: visible;
}

.home-search-wrapeer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: -15px;
}

.home-search-btn{
	max-width: 100%;
	margin-bottom:15px;
	color: #FFF;
	background-color: #004d71;
	border: 1px solid #004d71;
	transition: all .3s ease-in-out;
	border-radius: 50px;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align:center;
	width:100%;
	outline:unset;
	cursor:pointer;
    font-size: 14px;
}

.home-search-btn:hover{
	color: #004d71;
	background-color: unset;
}

.home-search-btn.search-result{
    margin-bottom:0px;
    
}

.home-search-opt{
    width: 100%;
    margin-bottom:15px;
    position: relative;
}

.home-search-opt.home-search .home-dropdown{
	position:absolute;
	top: 14px;
    right: 35px;
}

.home-search-opt .home-dropdown{
	position:absolute;
	top: 14px;
    right: 15px;
}

.home-dropdown .v-mark{
	position:relative;
	width:15px;
	height:15px;
}

.v-mark::after,
.v-mark::before{
	content: " ";
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #666;
	top: 15px;
}

.v-mark::before{
	right: 5px;
	transform: rotate(45deg);
}

.v-mark::after{
	left: 6px;
	transform: rotate(-45deg);
}

.home-search-opt select{
    -webkit-appearance: unset;
    appearance: unset;
    border-radius: 50px;
    width: 100%;
    padding-top: 15px;
	padding-bottom: 15px;
    padding-left: 20px;
	padding-right: 40px;
}

.home-search-opt select:focus{
    outline: unset;
}

.content-title{
    font-size: 28px;
    font-weight: 600;
}

@media(min-width:767px){
	.home-search-opt.home-search{
		width:calc(100% - 200px);
		padding-right: 20px;
	}

    .home-search-opt select{
         margin-bottom: 0px;
    }
	
	.home-search-btn{
		max-width: 200px;
	}

    .home-search-btn.search-result{
        max-width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .seerch-res-btnbox{
        height: 100%;
    }
}

.vlt-black-bg{
    background-color: #58595b;
}

.footer-nav-social {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav-social .footer-social-icon:not(:last-child){
	margin-right: 20px;
}

.footer-nav-social .footer-social-icon{
	color:#58595b;
	border-radius: 50%;
	width: 40px;
	height:40px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	font-size:16px;
	background:#FFF;
}

.footer-nav-social .footer-social-icon:link{
    color:#58595b;
}

.footer-nav-social .footer-social-icon i{
    margin-top: 1px;
}

.footer-green-btn{
    display: block;
    background-color: #6eb148 !important;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #6eb148;
    transition: all .3s ease-in-out;
    font-weight: 600;
}

.footer-green-btn:hover{
    background-color: transparent !important;
    color: #6eb148 !important;
}

.contact-bar h3{
    margin-bottom: 15px;
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

@media(min-width:767px){
    .contact-bar h3{
        font-size: 22px;
        margin-right: 20px;
        margin-bottom: 0px;
    }
}
.footer-white-button{
    display: block;
    background-color: #FFF !important;
    padding: 10px 30px;
    border-radius: 50px;
    text-align: center;
    border: 1px solid #FFF;
    transition: all .3s ease-in-out;
    /* font-weight: 600; */
    color: #6eb148 !important;
    text-align: center;
}

.footer-white-button:hover{
    background-color: transparent !important;
    color: #FFF !important;
}

.top-search-bar{
    background-color: #aedca2;
}

.top-search-bar .container{
    padding: 50px 20px;
}

@media (min-width:767px) {
    .top-search-bar .container{
        padding: 20px;
    }
}

.sortby-wrapper{
    position: relative;
}

.sortby-wrapper select{
    -webkit-appearance: unset;
    appearance: unset;
    width: 120px;
    background-color: #e6e7e8;
    color: #000;
    padding-top: 5px;
	padding-bottom: 5px;
    padding-left: 10px;
	padding-right: 20px;
    outline: unset;
    border: unset;
}

.sortby-wrapper .dropdown{
	position:absolute;
	top: 11px;
    right: 7px;
}

.sortby-wrapper .dropdown .v-mark{
	position:relative;
	width:15px;
	height:15px;
}

.sortby-wrapper .dropdown .v-mark::after,
.sortby-wrapper .dropdown .v-mark::before{
	content: " ";
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #666;
	top: 5px;
}

.sortby-wrapper .dropdown .v-mark::before{
	right: 5px;
	transform: rotate(45deg);
}

.sortby-wrapper .dropdown .v-mark::after{
	left: 6px;
	transform: rotate(-45deg);
}

.filter-tag-wrapper{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fliter-tag:not(:last-child){
    margin-right: 20px;
}

.fliter-tag{
    color: #6eb148;
    border: 1px solid #6eb148;
    padding: 5px 20px;
    padding-right: 40px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}

.fliter-tag::before{
   content: " ";
    width: 1px;
    height: 15px;
    background: #6eb148;
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    right: 20px;
}
.fliter-tag::after{
   content: " ";
    width: 1px;
    height: 15px;
    background: #6eb148;
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-tag-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #6eb148;
    font-size: 14px;
}

.modal-tag-wrapper .modal-fil-tag{
    color: #6eb148;
    border: 1px solid #6eb148;
    padding: 5px 20px;
    border-radius: 20px;
    display: block;
}

.modal-tag-wrapper .modal-fil-tag:not(:last-child){
    margin-right: 15px;
}

#learnmore-modal .modal-body{
    position: relative;
    padding: 30px 1rem;
}

.learnmore-modal-btn-close{
    position: absolute;
    top: 0px;
    right : -50px;
    border: unset;
    outline: unset;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: #FFF;
}

.learnmore-modal-btn-close.header-btn{
    right : 10px;
    top: 5px;
}

.learnmore-btn-close-inner{
    position: relative;
}

.learnmore-btn-close-inner::before{
   content: " ";
    width: 1px;
    height: 15px;
    background: #666;
    transform: rotate(45deg);
    position: absolute;
    top: -7px;
    right: 16px;
}

.learnmore-btn-close-inner::after{
   content: " ";
    width: 1px;
    height: 15px;
    background: #666;
    transform: rotate(-45deg);
    position: absolute;
    top: -7px;
    right: 16px;
}

.home-location-wrapeer{
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.location-button{
    color: #FFF;
    background-color: #1c75bc;
    border: 1px solid #1c75bc;
    transition: all .3s ease-in-out;
    border-radius: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
    outline: unset;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.location-button:hover{
    color: #1c75bc;
    background-color: unset;
}

.home-location-wrapeer .location-postcode-input{
    border-radius: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}

.home-location-wrapeer .location-postcode-input:focus{
    outline: unset;
    border: unset;
    box-shadow: unset;
}

.home-location-wrapeer span{
    font-weight: 500;
}

.home-location-button{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    height: 350px;
    width: 100%;
    background-image: url('../img/WMRAS_Marketplace_Home.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.home-location-content{
    padding: 15px 30px;
    background-color: #004d71;
    width: 100%;
    color: #FFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
}

.home-location-content .icon{
    padding: 5px 10px;
    border: 1px solid #FFF;
    border-radius: 50px;
    width: 100%;
    text-align: center;
    transition: all .3s ease-in-out;
}

.home-location-content .icon i{
    transition: all .3s ease-in-out;
}

.home-location-content:hover .icon i{
    transform: translateX(50px);
}

.home-location-content h4{
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

@media(min-width:767px){
    .home-location-content h4{
        text-align: left;
        width: unset;
        margin-bottom: 0px;
    }

    .home-location-content .icon{
        width: 150px;
    }
}

.location-map-box > div{
    height: 200px;
}

@media (min-width:767px) {
    .location-map-box > div{
        height: 450px;
    }
}

.compThumbName,
#compThumbName{
    color: #004d71;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: center;
}

.prod-popup-img{
    width: 800px;
    max-width: 100%;
}

.search-res-label{
    font-size: 28px;
    font-weight: 600;
}

.title-learmore-modal{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 15px;
}

.learnmore-table tr:last-child{
    border: unset;
}
.learnmore-table tr:last-child > td{
    border: unset;
}

.learnmodal-icon{
    width: 15px;
    margin-right: 20px;
}

#productTitle{
    font-size: 16px;
    font-weight: 600;
}

.sum-label{
    font-weight: 600;
}

#summary{
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
    width: 100%;
}

@media (min-width:767px) {
    #summary{
        width: unset;
        margin-bottom: 0px;
    }
}

.navbar-brand{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.navbar-brand span{
    font-weight: 700;
    font-size: 16px;
}

.navbar-brand.white span{
    color: #FFF;
}

.navbar-brand .line{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -2px;
    height: 48px;
    border-left: 1px solid;
}

.navbar-brand.white .line{
    border-color: #FFF;
}

.dt-box{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid #dee2e6;
}

.dt-box:hover{
    background-color: #f0f0f0;
}

.dt-box.address{
    border-bottom: unset;
}