/*---------------------------------*/
/*            Structure            */
/*---------------------------------*/

.srp-dealers-maincont {
    margin: auto;
    padding: 0 50px;
}
.srp-dealers-innerrow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/*---------------------------------*/
/*             Inputs              */
/*---------------------------------*/

.dealers p.input-wrapper {
    width: 100%;
    text-align: center;
    position: relative;
    display: inherit;    
    margin: 5px;
}
.dealers p.input-wrapper input, .dealers p.input-wrapper select {
    width: 100%;
    border : none;
    border-radius: 0px;
    padding: 3px;
    height: 43px;
    color: #4a4a4a;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-weight: 400;
    background-color: #f3f3f3;
    padding-left: 20px;
    outline: unset;
}
.dealer-select::after{
    content: url("../img/arrowselect.png");
    position: absolute;
    top: 9px;
    right: 20px;
}
.dealer-search::after{
    content: url("../img/lupa.png");    
    position: absolute;
    top: 12px;
    right: 20px;
}

/*---------------------------------*/
/*          Dealers list           */
/*---------------------------------*/

.srp-dealerslist-cont {
    width: 100%;
}
ul.srp-dealerlist {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 600px;
    padding-right: 25px;
    position: relative;
}
.dealerinfo h3 {
    font-size: 20px;
    font-family: "Source Sans Pro";
    margin: 0;
}
.dealerinfo p {
    font-family: "Source Sans Pro";
    font-size: 16px;
    margin: 0;
}
li.srp-dealeritem > div {
    display: flex;
    border-bottom: 2px solid #d2d4d6;
    padding: 15px 25px;
}
.dealerinfo {
    width: 60%;
}
.dealerimg {
    width: 40%;
}
.dealerimg figure {
    margin: 0;
    border: 2px solid #fadb74;
    width: 90px;
    height: 90px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

/*---------------------------------*/
/*           Map section           */
/*---------------------------------*/

.srp-dealermap {
    width: 100%;
    display: none;
}
div#map {
    width: 100%;
    height: 600px;
}

/* Scroll bar */
.srp-dealerlist::-webkit-scrollbar {
    width: 6px;
    background-color: #f3f3f3;
}
.srp-dealerlist::-webkit-scrollbar-thumb {
    background-color: #f8ce4a;
    /* background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent); */
}
.srp-dealerlist::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    background-color: #f3f3f3;
}
li.srp-dealeritem {
    /* padding: 0 25px; */
    cursor: pointer;
}

/*---------------------------------*/
/*           Responsive            */
/*---------------------------------*/

@media screen and (min-width: 768px) {
    .srp-dealermap {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .srp-dealers-maincont {
        max-width: 992px;
        padding: 0;    
    }
    .dealers p.input-wrapper {
        width: 32%;  
        margin: 25px 0px;
    }
    .srp-dealerslist-cont {
        width: 32%;
    }
    .srp-dealermap {
        width: 66%;
    }
}

@media screen and (min-width: 1200px) {
    .srp-dealers-maincont {
        max-width: 1200px;        
    }
}