.checkbox input[type=checkbox],
.checkbox input[type=radio],
.radio input[type=radio] {
    opacity: 0;
    z-index: 1;
    cursor: pointer
}

.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px
}

.checkbox label::after,
.checkbox label::before {
    position: absolute;
    margin-left: -20px;
    display: inline-block
}

.checkbox label::before {
    content: "";
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border .15s ease-in-out, color .15s ease-in-out;
    -o-transition: border .15s ease-in-out, color .15s ease-in-out;
    transition: border .15s ease-in-out, color .15s ease-in-out
}

.checkbox label::after {
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555
}

.checkbox-danger input[type=checkbox]:checked+label::after,
.checkbox-danger input[type=radio]:checked+label::after,
.checkbox-info input[type=checkbox]:checked+label::after,
.checkbox-info input[type=radio]:checked+label::after,
.checkbox-primary input[type=checkbox]:checked+label::after,
.checkbox-primary input[type=radio]:checked+label::after,
.checkbox-success input[type=checkbox]:checked+label::after,
.checkbox-success input[type=radio]:checked+label::after,
.checkbox-warning input[type=checkbox]:checked+label::after,
.checkbox-warning input[type=radio]:checked+label::after,
input[type=checkbox] .styled:checked+label::after,
input[type=checkbox] .styled:checked+label::before,
input[type=radio] .styled:checked+label::after,
input[type=radio] .styled:checked+label::before {
    color: #fff
}

.checkbox input[type=checkbox]:focus+label::before,
.checkbox input[type=radio]:focus+label::before {
    outline: dotted thin;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px
}

.checkbox input[type=checkbox]:checked+label::after,
.checkbox input[type=radio]:checked+label::after {
    font-family: FontAwesome;
    content: "\f00c"
}

.btn-purple-inverse:before,
.btn-purple:before,
.radio label::before {
    content: ""
}

.checkbox input[type=checkbox]:indeterminate+label::after,
.checkbox input[type=radio]:indeterminate+label::after {
    display: block;
    content: "";
    width: 10px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
    margin-left: -16.5px;
    margin-top: 7px
}

.checkbox.checkbox-inline,
.radio.radio-inline {
    margin-top: 0
}

.checkbox input[type=checkbox]:disabled,
.checkbox input[type=radio]:disabled {
    cursor: not-allowed
}

.checkbox input[type=checkbox]:disabled+label,
.checkbox input[type=radio]:disabled+label {
    opacity: .65
}

.checkbox input[type=checkbox]:disabled+label::before,
.checkbox input[type=radio]:disabled+label::before {
    background-color: #eee;
    cursor: not-allowed
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%
}

.checkbox-primary input[type=checkbox]:checked+label::before,
.checkbox-primary input[type=radio]:checked+label::before {
    background-color: #337ab7;
    border-color: #337ab7
}

.checkbox-danger input[type=checkbox]:checked+label::before,
.checkbox-danger input[type=radio]:checked+label::before {
    background-color: #40142D;
    border-color: #40142D
}

.checkbox-info input[type=checkbox]:checked+label::before,
.checkbox-info input[type=radio]:checked+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de
}

.checkbox-warning input[type=checkbox]:checked+label::before,
.checkbox-warning input[type=radio]:checked+label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e
}

.checkbox-success input[type=checkbox]:checked+label::before,
.checkbox-success input[type=radio]:checked+label::before {
    background-color: #5cb85c;
    border-color: #5cb85c
}

.checkbox-primary input[type=checkbox]:indeterminate+label::before,
.checkbox-primary input[type=radio]:indeterminate+label::before {
    background-color: #337ab7;
    border-color: #337ab7
}

.checkbox-primary input[type=checkbox]:indeterminate+label::after,
.checkbox-primary input[type=radio]:indeterminate+label::after {
    background-color: #fff
}

.checkbox-danger input[type=checkbox]:indeterminate+label::before,
.checkbox-danger input[type=radio]:indeterminate+label::before {
    background-color: #40142D;
    border-color: #40142D
}

.checkbox-danger input[type=checkbox]:indeterminate+label::after,
.checkbox-danger input[type=radio]:indeterminate+label::after {
    background-color: #fff
}

.checkbox-info input[type=checkbox]:indeterminate+label::before,
.checkbox-info input[type=radio]:indeterminate+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de
}

.checkbox-info input[type=checkbox]:indeterminate+label::after,
.checkbox-info input[type=radio]:indeterminate+label::after {
    background-color: #fff
}

.checkbox-warning input[type=checkbox]:indeterminate+label::before,
.checkbox-warning input[type=radio]:indeterminate+label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e
}

.checkbox-warning input[type=checkbox]:indeterminate+label::after,
.checkbox-warning input[type=radio]:indeterminate+label::after {
    background-color: #fff
}

.checkbox-success input[type=checkbox]:indeterminate+label::before,
.checkbox-success input[type=radio]:indeterminate+label::before {
    background-color: #5cb85c;
    border-color: #5cb85c
}

.checkbox-success input[type=checkbox]:indeterminate+label::after,
.checkbox-success input[type=radio]:indeterminate+label::after,
.radio label::before {
    background-color: #fff
}

.radio {
    padding-left: 20px
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px
}

.radio label::after,
.radio label::before {
    position: absolute;
    margin-left: -20px;
    display: inline-block
}

.radio label::before {
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #ccc;
    border-radius: 50%;
    -webkit-transition: border .15s ease-in-out;
    -o-transition: border .15s ease-in-out;
    transition: border .15s ease-in-out
}

.radio label::after {
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background-color: #555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -moz-transition: -moz-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -o-transition: -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33)
}

.radio-primary input[type=radio]+label::after,
.radio-primary input[type=radio]:checked+label::after {
    background-color: #337ab7
}

.radio input[type=radio]:disabled,
.radio input[type=radio]:disabled+label::before {
    cursor: not-allowed
}

.radio input[type=radio]:focus+label::before {
    outline: dotted thin;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px
}

.radio input[type=radio]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1)
}

.radio input[type=radio]:disabled+label {
    opacity: .65
}

.radio-primary input[type=radio]:checked+label::before {
    border-color: #337ab7
}

.radio-danger input[type=radio]+label::after,
.radio-danger input[type=radio]:checked+label::after {
    background-color: #d9534f
}

.radio-danger input[type=radio]:checked+label::before {
    border-color: #d9534f
}

.radio-info input[type=radio]+label::after,
.radio-info input[type=radio]:checked+label::after {
    background-color: #5bc0de
}

.radio-info input[type=radio]:checked+label::before {
    border-color: #5bc0de
}

.radio-warning input[type=radio]+label::after,
.radio-warning input[type=radio]:checked+label::after {
    background-color: #f0ad4e
}

.radio-warning input[type=radio]:checked+label::before {
    border-color: #f0ad4e
}

.radio-success input[type=radio]+label::after,
.radio-success input[type=radio]:checked+label::after {
    background-color: #5cb85c
}

.radio-success input[type=radio]:checked+label::before {
    border-color: #5cb85c
}

input[type=checkbox].styled:checked+label:after,
input[type=radio].styled:checked+label:after {
    font-family: FontAwesome;
    content: "\f00c"
}

article {
    margin-bottom: 0
}

p.capitalize {
    text-transform: capitalize
}

.btn-purple {
    background: #40142D;
    color: #fff!important;
    text-transform: uppercase;
    padding: 0 30px;
    opacity: 1;
    border: 3px solid #40142D;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 0;
    font-family: "Open Sans Semibold";
    -webkit-border-radius: 35px;
    -khtml-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: scale, .1s, ease-out, 0;
    -khtml-transition: scale, .1s, ease-out, 0;
    -moz-transition: scale, .1s, ease-out, 0;
    -ms-transition: scale, .1s, ease-out, 0;
    -o-transition: scale, .1s, ease-out, 0;
    transition: scale, .1s, ease-out, 0;
    position: relative;
    display: inline-block;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    height: 39px
}

.btn-purple-inverse,
.btn-purple-inverse.small,
.btn-purple.small {
}

.btn-purple .fa {
    -webkit-transition: transform, .1s, ease-out, 0;
    -khtml-transition: transform, .1s, ease-out, 0;
    -moz-transition: transform, .1s, ease-out, 0;
    -ms-transition: transform, .1s, ease-out, 0;
    -o-transition: transform, .1s, ease-out, 0;
    transition: transform, .1s, ease-out, 0;
    margin-left: 3px
}

.btn-purple.small {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 0 25px;
    height: 30px;
    line-height: 26px
}

@media only screen and (min-width:480px) {
    .btn-purple.small {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 26px
    }
}

@media only screen and (min-width:768px) {
    .btn-purple.small {
        font-size: 20px;
        font-size: 1.25rem;
  
        line-height: 26px
    }
}

@media only screen and (min-width:992px) {
    .btn-purple.small {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 26px
    }
}

.btn-purple.btn--xsm {
    padding: 0 25px;
    font-size: 16px;
    font-size: 1rem;
    height: 29px;
    line-height: 25px
}

.btn-purple:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: #602a49;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: transform, opacity, .2s, ease-out, 0;
    -khtml-transition: transform, opacity, .2s, ease-out, 0;
    -moz-transition: transform, opacity, .2s, ease-out, 0;
    -ms-transition: transform, opacity, .2s, ease-out, 0;
    -o-transition: transform, opacity, .2s, ease-out, 0;
    transition: transform, opacity, .2s, ease-out, 0
}

.btn-purple:hover {
    color: #fff;
    border-color: #602a49!important;
    background: #602a49!important
}

.btn-purple:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .8
}

.btn-purple:focus {
    color: #fff
}

@media only screen and (min-width:320px) {
    .btn-purple {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 0;
        
    }
}

@media only screen and (min-width:480px) {
    .btn-purple {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 0;
        
    }
}

@media only screen and (min-width:768px) {
    .btn-purple {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 0;
        
    }
}

@media only screen and (min-width:992px) {
    .btn-purple {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 0;
        
    }
}

.btn-purple-inverse {
    background: #fff;
    color: #602a49;
    text-transform: uppercase;
    padding: 13px 25px;
    opacity: 1;
    border: 3px solid #602a49;
    font-size: 16px;
    font-size: 1rem;
    line-height: 16px;
    line-height: 1rem;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: scale, .1s, ease-out, 0;
    -khtml-transition: scale, .1s, ease-out, 0;
    -moz-transition: scale, .1s, ease-out, 0;
    -ms-transition: scale, .1s, ease-out, 0;
    -o-transition: scale, .1s, ease-out, 0;
    transition: scale, .1s, ease-out, 0;
    position: relative;
    display: inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.btn-purple-inverse .fa {
    margin-left: 3px;
    -webkit-transition: transform, .1s, ease-out, 0;
    -khtml-transition: transform, .1s, ease-out, 0;
    -moz-transition: transform, .1s, ease-out, 0;
    -ms-transition: transform, .1s, ease-out, 0;
    -o-transition: transform, .1s, ease-out, 0;
    transition: transform, .1s, ease-out, 0
}

.btn-purple-inverse.small {
    padding: 7px 25px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 16px;
    line-height: 1rem
}

.btn-purple-inverse:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #d53c42;
    background: #d53c42;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: transform, opacity, .2s, ease-out, 0;
    -khtml-transition: transform, opacity, .2s, ease-out, 0;
    -moz-transition: transform, opacity, .2s, ease-out, 0;
    -ms-transition: transform, opacity, .2s, ease-out, 0;
    -o-transition: transform, opacity, .2s, ease-out, 0;
    transition: transform, opacity, .2s, ease-out, 0
}

.btn-purple-inverse:hover {
    color: #fff;
    border-color: #d53c42;
    background: #d53c42
}

.btn-purple-inverse:hover .fa-chevron-circle-right {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px)
}

.btn-purple-inverse:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .8
}

.btn-purple-inverse:focus {
    color: #bf0c0c
}

@media only screen and (min-width:320px) {
    .btn-purple-inverse {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 22px;
        line-height: 1.375rem;
        ;
        padding: 12px 25px
    }
}

@media only screen and (min-width:480px) {
    .btn-purple-inverse {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem;
        ;
        padding: 10px 25px
    }
}

@media only screen and (min-width:768px) {
    .btn-purple-inverse {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 22px;
        line-height: 1.375rem;
        ;
        padding: 10px 30px
    }
}

@media only screen and (min-width:992px) {
    .btn-purple-inverse {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem;
        
    }
}

.search-controls {
    margin: 35px 0 20px;
    padding: 10px
}

.search-controls input[type=text] {
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 9px 12px;
    height: 39px;
    outline: 0
}

.search-controls select {
    border: 2px solid #ccc;
    border-radius: 0 20px 20px 0;
    margin-left: -2px;
    height: 39px!important;
    min-height: 39px;
    min-width: 104px;
    padding: 9px 12px;
    text-align: center;
    -webkit-appearance: none
}

#btnLocateMe,
#btnSearchLocations {
    border-radius: 40px;
    font-size: 14px;
    line-height: 0;
    padding: 0 22px;
    height: 35px
}

#btnLocateMe {
    height: 37px
}

.store-locator-buttons span {
    font-weight: 700;
    padding: 0 5px
}

.map-container {
    overflow: hidden;
    display: none;
    z-index: 1
}

.map-container .list-panel {
    width: 30%;
    float: left
}

.map-container #map {
    width: 70%;
    float: left
}

.found-counter {
    padding: 11px 19px;
    background: #f1f1eb;
    font-size: 25px;
    text-align: center
}

list-panel {
    overflow: scroll
}

.store-locator-buttons .wrapper,
.store-locator-buttons .wrapper-middle {
    width: 44%;
    display: inline-block
}

.store-locator-buttons .wrapper-middle {
    width: 9%
}

.store-locator-buttons .wrapper .btn {
    width: 100%
}

.search-controls ul {
    padding: 0;
    margin: 0 0 0 20px;
    text-align: left
}

.search-controls ul li {
    list-style: none;
    display: block;
    float: left;
    font-size: 12px;
    width: 155px
}

.store-locator-navigation {
    background-color: #f1f1eb
}

.store-locator-navigation .nav-tabs {
    border: none
}

.store-locator-navigation .container {
    padding: 0
}

.store-locator-navigation .nav-item:last-child {
    margin-right: 0
}

.store-locator-navigation .nav-item {
    width: 200px;
    text-align: center;
    margin-right: 20px
}

.store-locator-navigation .nav-link,
.store-locator-navigation .nav-link a:hover {
    border: none;
    font-weight: 700
}

.text-purple {
    color: #40142D
}

.store-locator-navigation .nav-tabs .nav-item.show .nav-link,
.store-locator-navigation .nav-tabs .nav-link.active,
.store-locator-navigation .nav-tabs .nav-link:focus,
.store-locator-navigation .nav-tabs .nav-link:hover {
    color: #464a4c;
    background-color: #fff;
    font-weight: 700;
    border-color: #fff;
    border-radius: 0;
    padding: 8px 57px 6px;
    text-align: center;
    width: 200px
}

.btn-border {
    background: 0 0;
    color: #000;
    border: 2px solid #ccc
}

.store-locator-wrapper .map-container {
    position: relative;
    height: 100%;
    width: 100%
}

.store-locator-wrapper .map-container>img {
    width: 100%;
    height: 100%
}

@media(min-width:0) {
    .store-locator-wrapper .map-container {
        height: 220px
    }
}

@media only screen and (min-width:991px) {
    .store-locator-wrapper #mapView {
        position: relative
    }
    .store-locator-wrapper .map-container {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%
    }
}

.single-store-container {
    min-height: 580px;
    padding: 30px 0
}

.single-store-container img {
    min-width: 100%;
    max-width: 100%;
    height: auto
}

.single-store-container h3 {
    margin: 10px 0 20px;
    font-weight: 700;
    background: url(https://image.flaticon.com/icons/svg/252/252025.svg) no-repeat;
    padding-left: 35px
}

@media (max-width:575.98px) {
    .single-store-container h3 {
        padding-left: 60px
    }
}

@media (min-width:768px) and (max-width:1239px) {
    .single-store-container h3 {
        padding-left: 60px
    }
}

.single-store-container a {
    font-weight: 700;
    color: #40142D
}

.single-store-container .store-hours {
    color: green
}

.single-store-container .store-address {
    font-size: 19px
}

.single-store-container .middle-block,
.single-store-container .top-block {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee
}

.store-list ul li {
    border-bottom: 1px solid #eee
}

.store-list ul li:last-child {
    border-bottom: none
}

.store-list ul .single-store-container {
    min-height: auto;
    overflow: hidden
}

.store-list ul .single-store-container h3 {
    background: 0 0;
    padding: 0
}

.store-list ul .single-store-container .bottom-block,
.store-list ul .single-store-container .middle-block,
.store-list ul .single-store-container .top-block {
    float: left;
    border-bottom: none
}

.store-list ul .single-store-container .top-block {
    width: 50%
}

.store-list ul .single-store-container .middle-block {
    padding-top: 49px;
    width: 25%
}

.store-list ul .single-store-container .bottom-block {
    width: 25%
}

.single-store-container .store-hours h5 {
    font-weight: 700;
    text-align: left;
    color: #000;
    font-size: 15px
}

.store-list ul {
    padding: 0;
    margin: 0
}

li.single-store-container {
    list-style: none
}

.bottom-store-locator {
    display: none
}

@media (max-width:767.98px) {
    .store-list ul .single-store-container .bottom-block,
    .store-list ul .single-store-container .top-block {
        width: 100%
    }
    .store-list ul .single-store-container .middle-block {
        padding-top: 0;
        width: 100%
    }
}
@media  (min-width:500px) and (max-width: 767.98px) {
    .store-locator-wrapper .map-container {
        height: 300px
    }
}