/*--------------------------------------------------------------
# Main App Layout
--------------------------------------------------------------*/
#tsl-locator-app {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /* border: 1px solid #ddd; */
    position: relative;
    /* background: #fff; */
    /* height: 650px; */
    height: 457px;
    justify-content: space-between;
}

#tsl-locator-app.tsl-loading .tsl-map-loader {
    display: flex;
}

@media only screen and (max-width:767px) {
    #tsl-locator-app {
        height: 100%;
    }
}

/*--------------------------------------------------------------
# Column 1: Map
--------------------------------------------------------------*/
.tsl-map-container {
    /* width: 62.2%; */
    width: 64.2%;
    height: 100%;
    order: 1;
}

@media only screen and (max-width:767px) {
    .tsl-map-container {
        width: 100%;
        order: 2;
        height: 400px;
    }
}

.tsl-map-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #333;
}

/*--------------------------------------------------------------
# Column 2: Sidebar
--------------------------------------------------------------*/
.tsl-sidebar {
    /* width: 32.2%; */
    width: 35.8%;
    height: 100%;
    background: #ffffff;
    box-sizing: border-box;
    order: 2;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width:767px) {
    .tsl-sidebar {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
        height: 400px;
    }
}

/*--------------------------------------------------------------
# Filter Section
--------------------------------------------------------------*/
.tsl-filter-section {
    /* padding: 0 0 30px 0; */
    /* padding: 0; */
    /* padding: 20px 20px 0 20px; */
    padding: 50px 50px 0 50px;
    position: relative;
    left: 0;
    transition: all 0.6s;
}
.tsl-filter-section.section-disabled{
    left: -100%;
}
.tsl-filter-section form{
    margin-bottom: 60px;
}
.tsl-filter-toggle {
    margin: 0;
    padding: 0 0 20px 0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #393637;
    font-weight: bold;
}

.tsl-toggle-icon {
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

.tsl-filter-form {
    transition: all 0.3s ease-in-out;
    max-height: 1000px;
    overflow: hidden;
}

.tsl-filter-section.collapsed .tsl-filter-form {
    max-height: 0;
    margin-top: -15px;
    opacity: 0;
}

.tsl-filter-section.collapsed .tsl-filter-toggle {
    /* padding-bottom: 0;  */
    padding-bottom: 30px;
}

.tsl-toggle-icon::before {
    content: '';
    border-right: 2px solid #333333;
    border-top: 2px solid #333333;
    height: 10px;
    width: 10px;
    display: block;
    transform: rotate(-45deg);
    margin-right: 5px;
    margin-top: 12px;
}

.tsl-filter-section.collapsed .tsl-toggle-icon::before {
    content: '';
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    border-top: 0;
    height: 10px;
    width: 10px;
    display: block;
    transform: rotate(45deg);
    margin-right: 5px;
    margin-top: 0;
}

.dealer-list-wrap{
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    overflow: auto;
}
.dealer-list-wrap.active{
    opacity: 1;
    visibility: visible;
    left: 0;
}
.dealer-list-wrap.section-disabled{
    left: -100%;
}
.dealer-single-detail{
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
}
.dealer-single-detail.active{
    opacity: 1;
    visibility: visible;
    left: 0;
}
.tsl-results-injection-point {
    overflow: auto;
    height: 85%;
}
/* Form Group Styles */
.tsl-form-group {
    margin-bottom: 20px;
}

.tsl-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #474747;
    margin-bottom: 5px;
}

.tsl-form-group input,
.tsl-form-group select {
    width: 100%;
    padding: 14.25px;
    background-color: transparent;
    border: 1px solid #004677;
    border-radius: 5px;
    font-size: 13px;
    box-sizing: border-box;
    color: #474747;
    appearance: none;
}

.tsl-form-group input::placeholder {
    color: #474747;
}

.tsl-form-group select {
    background-image: url('../../images/icon-select-arrow.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px);
    background-size: 16px 8px;
}
.tsl-button {
    /* width: 100%;  */
    padding: 12px 45px;
    color: #004677;
    background-color: transparent;
    border: 1px solid #004677;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.6s;
}

.tsl-button:hover {
    background-color: #004677;
    color: #ffffff;
}
.next-wrap{
    float: right;
}
.next-wrap a{
    color: #004677; 
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.next-wrap a:hover{
    text-decoration: underline;
}
.next-wrap a img {
    margin-top: -3px;
}
.previous-wrap{
    float: left;
    padding: 20px 50px 25px 50px;
    width: 100%;
}
.previous-wrap a{
    color: #004677; 
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.previous-wrap a:hover{
    text-decoration: underline;
}
.previous-wrap a img {
    margin-top: -3px;
}
/*--------------------------------------------------------------
# Results List Section
--------------------------------------------------------------*/
.tsl-results-list {
    background-color: rgba(255, 255, 255, 0.90);
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
    display: none;
}

.tsl-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #777;
}

.tsl-store-item {
    padding: 20px 50px 0 50px;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tsl-store-item:first-child{
    padding-top: 50px;
}
.tsl-store-single-item {
    border-bottom: 1px solid #8A8780;
    padding-bottom: 10px;
}
.tsl-detail-injection-point .tsl-store-single-item {
    padding-bottom: 40px;
}
/* .tsl-store-item:hover,
.tsl-store-item.active {
    background-color: #f2f1ef;
} */

.tsl-store-item h2 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #393637;
    font-weight: bold;
}
.tsl-store-item a.tsl-details-toggle {
    color: #004677;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-top: 11px;
}
.tsl-store-item a.tsl-details-toggle:hover{
    color: #393637;
    text-decoration: none;
}
/* .tsl-store-item a.tsl-details-toggle:before {
    content: '›';
    position: absolute;
    right: -12px;
    top: 1px;
    font-weight: bold;
    color: #007cba;
    transform: rotate(92deg);
} */
.tsl-store-item p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 5px;
}

.tsl-store-item p.tsl-store-distance {
    font-weight: bold;
    color: #837768;
    margin-bottom: 0;
}

.tsl-store-item h4 {
    margin: 0 0 10px 0;
    font-size: 11px;
    font-weight: 600;
    /* color: #555; */
    color: #837768;
    text-transform: uppercase;
}

.tsl-details-toggle {
    font-weight: bold;
    color: #007cba;
    text-decoration: none;
    cursor: pointer;
}

.tsl-details-toggle:hover {
    text-decoration: underline;
}

.tsl-store-details {
    /* display: none; */
    margin-top: 15px;
    margin-bottom: 10px;
}

.tsl-store-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.tsl-store-details li {
    /* padding-left: 20px; */
    padding-right: 50px;
    position: relative;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 300;
    color: #393637;
    line-height: 1.3;
}
.tsl-store-details li a{
    color: #393637;
    text-decoration: none;
}
.tsl-store-details li a:hover{
    color: #837768;
}

/* .tsl-store-details li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #007cba;
} */

.tsl-store-details li strong {
    font-weight: 600;
}

.tsl-store-details .tsl-store-actions{
    margin-top: 40px;
}
.tsl-store-details .tsl-store-actions a{
    border: 1px solid #004677;
    border-radius: 28px;
    color: #393637;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 9px 15px;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.6s;
}
.tsl-store-details .tsl-store-actions a:first-child{
    margin-left: 0;
}
.tsl-store-details .tsl-store-actions a:last-child{
    margin-right: 0;
}
.tsl-store-details .tsl-store-actions a:hover{
    background-color: #004677;
    color: #ffffff;
}
/* Load More Button Styles */
.tsl-load-more-container {
    padding: 20px;
    border-top: 1px solid #ddd;
}

.tsl-marker img {
    width: 30px;
    height: 30px;
}

.tsl-load-more-container.hidden {
    display: none;
    text-align: center;
}
.tsl-results-list::-webkit-scrollbar {
    width: 8px;
}
.tsl-results-list::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}
#tsl-map-container .gm-style-iw-d .marker-location{
    font-size: 14px;
	line-height: 1.4;
	color:#393637;
    margin-bottom: 20px;
}
#tsl-map-container .gm-style-iw-d .marker-location strong{
    font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
	display: inline-block;
}
#tsl-map-container .gm-style-iw-d .marker-location p{
	margin-bottom: 5px
}
#tsl-map-container .gm-style-iw-d .marker-location a{
    font-size: 14px;
	line-height: 1.4;
	color:#393637;
	font-weight: bold;
    outline: none;
}
#tsl-map-container .gm-style-iw-d .marker-location a:hover{
    color: #837768;
}
#tsl-map-container .gm-style-iw-d .marker-store-actions .tsl-action-btn{
		border: 1px solid #004677;
    border-radius: 28px;
    color: #393637;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 9px 15px;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.6s;
}

#tsl-map-container .gm-style-iw-d .marker-store-actions .tsl-action-btn:hover{
    background-color: #004677;
    color: #ffffff;
}
/* media */
@media only screen and (max-width:767px){
    .tsl-store-item h2{
        font-size: 18px;
    }
    .tsl-store-details li{
        font-size: 14px;
        padding-right: 10px;
        margin-bottom: 10px;
    }
    .tsl-store-item a.tsl-details-toggle{
        margin-top: 15px;
    }
}

/*Temp hide*/
#tsl-category-select {
  display: none;
}

#tsl-category-select {
  display: none;
}

#tsl-category-select {
  display: none;
}

label[for="tsl-category-select"] {
  display: none;
}