/**
 * Plugin Styles for Storefriendly Theme
 * 
 * This stylesheet contains styles for various plugins and third-party integrations
 * used with the Storefriendly WordPress theme.
 */

/* ==========================================================================
   Plugin Base Styles
   ========================================================================== */

/* General plugin container styling */
.plugin-container {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.swiper-slide-shadow-left.swiper-slide-shadow-coverflow,
.swiper-slide-shadow-right.swiper-slide-shadow-coverflow {
    background-image: none;
}

.swiper-3d div {
    background-image: none !important;

}

/* Gravity Form 2*/
.gform_description {
    text-align: center;
}

.gform_wrapper.gravity-theme .gfield_required {
    color: #FF0056;
}

.hk-filter-btn-long span {
    padding: 0;
    height: 1em;
    line-height: 1;
    font-weight: normal !important;
}

.hk-filter-btn-long {
    padding: 20px 0;
    height: 1em;
    font-weight: normal !important;
}

.hk-filter-buttons-individual,
.hk-filter-container {
    margin-bottom: 0;
}

/* ==========================================================================
   WPML (WordPress Multilingual Plugin) Styles
   ========================================================================== */

/* WPML Language Switcher */
.wpml-language-switcher {
    margin: 10px 0;
}

.wpml-language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.wpml-language-switcher li {
    margin: 0;
}

.wpml-language-switcher a {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wpml-language-switcher a:hover,
.wpml-language-switcher .current-language a {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* ==========================================================================
   Contact Form 7 Styles
   ========================================================================== */

/* Form container */
.wpcf7 {
    margin: 20px 0;
}

.wpcf7-form {
    max-width: 600px;
}

/* Form fields */
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 15px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.wpcf7-form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

/* Textarea */
.wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit button */
.wpcf7-submit {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
    background: #005a87;
}

/* Validation messages */
.wpcf7-not-valid-tip {
    color: #d63638;
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    color: #d63638;
    background: #fff2f2;
    border: 1px solid #d63638;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.wpcf7-mail-sent-ok {
    color: #00a32a;
    background: #f0fff4;
    border: 1px solid #00a32a;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

/* ==========================================================================
   WooCommerce Styles
   ========================================================================== */

/* Product grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product images */
.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
}

/* Product titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
}

/* Price styling */
.woocommerce .price {
    color: #0073aa;
    font-weight: bold;
}

/* Add to cart buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: #005a87;
}

/* ==========================================================================
   Advanced Custom Fields (ACF) Styles
   ========================================================================== */

/* ACF field groups */
.acf-field {
    margin-bottom: 20px;
}

.acf-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.acf-input {
    width: 100%;
}

/* ACF Repeater fields */
.acf-repeater {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.acf-repeater .acf-row {
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.acf-repeater .acf-row:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Yoast SEO Styles
   ========================================================================== */

/* SEO content analysis */
.yoast-seo-analysis {
    margin: 20px 0;
}

/* Breadcrumbs */
.yoast-breadcrumb {
    margin: 15px 0;
    font-size: 14px;
}

.yoast-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}

.yoast-breadcrumb a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Elementor Styles
   ========================================================================== */

/* Elementor widget spacing */
.elementor-widget {
    margin-bottom: 20px;
}

/* Elementor buttons */
.elementor-button {
    display: inline-block;
    padding: 12px 25px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.elementor-button:hover {
    background: #005a87;
}

/* ==========================================================================
   Security Plugin Styles
   ========================================================================== */

/* Security notices */
.security-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.security-notice.error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.security-notice.success {
    background: #d1edff;
    border-color: #0073aa;
    color: #004085;
}

/* ==========================================================================
   Backup Plugin Styles
   ========================================================================== */

/* Backup status indicators */
.backup-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.backup-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.backup-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.backup-status.pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* ==========================================================================
   Performance Optimization Styles
   ========================================================================== */

/* Loading indicators */
.plugin-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Home sections for Plugins
   ========================================================================== */
/*.elementor-page-content .slf-search-container {
        width: 1024px;
    }*/
.slf-search-container {
    font-family: "ITCAvantGardeStd-Md", "ITCAvantGardeStd-Bold", "ITCAvantGardeStd-Demi", "MyriadPro-Bold", "Noto Sans TC", "Noto Sans SC" !important;
}

/* ==========================================================================
   Responsive Design for Plugins
   ========================================================================== */
@media (max-width: 992px) {
    /* .elementor-page-content .slf-search-container {
        width: 768px;
    }*/
}

@media (max-width: 768px) {
    .plugin-container {
        margin: 10px 0;
        padding: 10px;
    }

    .wpcf7-form-control {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .wpml-language-switcher ul {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .wpcf7-submit,
    .woocommerce a.button,
    .elementor-button {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Plugin Compatibility Fixes
   ========================================================================== */

/* Ensure plugins don't break theme layout */
.plugin-container * {
    box-sizing: border-box;
}

/* Clear floats from plugins */
.plugin-container::after {
    content: "";
    display: table;
    clear: both;
}

/* Prevent plugin styles from affecting theme */
.plugin-override {
    all: initial;
    font-family: inherit;
}


/* --------- Location map --------- */
#asl-storelocator.asl-cont .asl-wrapper .sl-container {
    max-width: 100%;
    background-color: var(--sf-primary-yellow);
}

#asl-storelocator.asl-cont .sl-main-cont .asl-map-canv {
    position: relative;
    overflow: hidden;
    min-height: 660px;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .sl-main-cont .asl-panel-inner .Num_of_store {
    background-color: var(--sf-primary-red);
    padding: 15px 15px;
}

#asl-storelocator.asl-cont .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box .sl-list-wrapper .sl-list {
    padding: 10px 40px 10px 40px;
}

#asl-storelocator.asl-cont h2 {
    font-family: "ITCAvantGardeStd-Bold";
    font-size: 3em;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

#asl-storelocator.asl-cont p {
    font-size: 1rem !important;
    color: var(--sf-primary-blue) !important;
    line-height: 1.4em;
    padding-top: 20px;
    font-family: 'ITCAvantGardeStd-Demi';
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec .addr-loc ul li i {
    color: var(--sf-primary-blue);
    background-color: #fff;
    border-radius: 300px;
    padding: 2px;
}

#asl-storelocator.asl-cont .asl-panel {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

#asl-storelocator.asl-cont .pol-md-7,
#asl-storelocator.asl-cont .asl-map {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec .addr-loc ul li {
    align-items: center;
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec .addr-loc ul li span {
    padding-left: 5px;
    font-size: 1rem !important;
    color: var(--sf-primary-blue) !important;
}

#asl-storelocator.asl-cont .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box .sl-list-wrapper .sl-list .sl-item {
    padding: 0px 0 10px;
}

#asl-storelocator.asl-cont .sf-custom-map-btnwrap {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

#asl-storelocator.asl-cont .sf-custom-map-details {
    background: white;
    display: inline;
    padding-top: 8px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--sf-primary-blue);
}

#asl-storelocator.asl-cont .sf-map-btn {
    display: inline-flex;
    flex-direction: row;
    text-decoration: none !important;
    color: white;
    background-color: var(--sf-primary-blue);
    align-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 6px 20px;
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    #asl-storelocator.asl-cont .sf-custom-map-details {
        padding-left: 10px;
        padding-right: 10px;
    }

    #asl-storelocator.asl-cont .sf-map-btn {
        padding: 6px 10px;
    }


}



#asl-storelocator.asl-cont .sf-map-btn-whatsapp {
    background-color: #28a939;
}

#asl-storelocator.asl-cont .sf-map-btn-whatsapp img {
    width: 50px;
    object-fit: contain;
}

#asl-storelocator.asl-cont .sf-map-btn-reserve {
    background-color: var(--sf-primary-blue);
}

.sl-tel-number {
    gap: 5px;
}

.sl-tel-number a {
    color: var(--sf-primary-blue) !important;
}

#sl-custom-tel-link {
    color: var(--sf-primary-blue);
    text-decoration: none;
    background-color: transparent;
}

/* Ensure share button image maintains consistent size */
.map-share-button button img {
    margin-top: 1px;
    margin-bottom: -2px;
    width: 24px !important;
    height: 24px !important;
    display: block;
}

.map-share-button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sl-info .map-share-button {
    flex-shrink: 0;
}

#asl-storelocator.asl-cont .infoBox .infoWindow {
    font-family: "ITCAvantGardeStd-Md", "ITCAvantGardeStd-Bold", "ITCAvantGardeStd-Demi", "MyriadPro-Bold", "Noto Sans TC", "Noto Sans SC";
}

/* *** End of Location map *** */

/* --------- Branch details--------- */
.asl-store-pg .sl-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.asl-store-pg .sf-details-info {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 33%;
}

.asl-store-pg .sf-details-map {
    height: 100vh;
    max-height: 760px;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
}

.asl-store-pg .asl-content-box .sl-store-title {
    font-size: 24px;
    color: var(--sf-primary-blue);
}

.asl-store-pg .asl-content-box h2.dis-title {
    background-color: var(--sf-primary-red);
    color: white;
    padding: 15px 50px;
    font-size: 30px;
}

@media screen and (max-width: 480px) {
    .asl-store-pg .asl-content-box h2.dis-title {
        font-size: 25px;
        line-height: 1;
    }
}

.asl-store-pg .asl-content-box .sfdetails {
    max-width: 600px;
    padding: 20px 80px 50px 50px;
}

.asl-store-pg .asl-content-box .bottom-line {
    width: 100%;
    height: 0.5px;
    background: white;
    margin: 30px 0;
    padding: 0;
}

@media screen and (max-width: 480px) {
    .asl-store-pg .asl-content-box h2.dis-title {
        font-size: 25px;
        line-height: 1;
    }

    .asl-store-pg .asl-content-box .bottom-line {
        width: 100%;
        height: 0.5px;
        background: white;
        margin: 10px 0;
        padding: 0;
    }

    .asl-store-pg .asl-store-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
}

.asl-store-pg .asl-content-box .sl-store-info {
    display: flex !important;
    margin-bottom: 15px !important;
    align-items: center !important;
    gap: 10px !important;
}

.asl-store-pg .asl-content-box .sl-store-info img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    max-width: unset;
}

.asl-store-pg .asl-store-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.asl-store-pg .asl-store-image img {
    width: 100%;
    border-radius: 30px;
}

.asl-cont .asl-detail-map {
    max-width: -webkit-fill-available !important;
    background: var(--sf-primary-yellow);
    height: 100%;
    margin: 0;
    padding: 0;
}


.branchdetails .sizepricing {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.branchdetails .sizepricing .sp-title {
    font-size: 30px;
    font-family: 'ITCAvantGardeStd-Bold';
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--sf-primary-yellow);
    text-transform: uppercase;
    padding: 200px 0 30px 0;
    margin-top: 40px;
}

.branchdetails .sizepricing ul.spcgroup {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    list-style: none;
}

.branchdetails .sizepricing li {
    list-style: none;
}

.branchdetails .sizepricing .store-remarks-content li {
    list-style: decimal;
}

.branchdetails .sizepricing .store-remarks-content ol {
    padding-left: 20px;
}

.branchdetails .sizepricing .spcard {
    background: #fff;
    width: 500px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "ITCAvantGardeStd-Md";
    color: #333;
    font-size: 14px;
    line-height: 16px;
    padding: 10px;
}

.branchdetails .sizepricing .spcard .cardsize {}

.branchdetails .sizepricing .spcard .cardsize .size {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 5rem;
    padding-right: 10px;
    color: var(--sf-primary-blue);
}

.branchdetails .sizepricing .spcard .cardsize .unit {
    font-size: 18px;
    color: var(--sf-primary-blue);
    padding-right: 10px;
}

.branchdetails .sizepricing .spcard .cardpricing {}

.branchdetails .sizepricing .spcard .cardpricing .mrd {
    color: var(--sf-primary-blue);
}

.branchdetails .sizepricing .spcard .cardpricing .mr {
    color: var(--sf-primary-blue);
}

.branchdetails .sizepricing .spcard .cardpricing .ped {
    color: #D72550;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

.branchdetails .sizepricing .spcard .cardpricing .pe {
    color: var(--sf-primary-blue);
}

.branchdetails .sizepricing .spcard .cardpricing .pe.reserve-now-button {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--sf-primary-blue);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
}

.branchdetails .sizepricing .spcard .cardpricing .pe.reserve-now-button:hover {
    /*add shadow*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.branchdetails .sizepricing .spcard .cardpricing .pe.reserve-now-button a {
    color: white !important;
    text-decoration: none !important;
}

.branchdetails .sizepricing .spcard .spcard-msa {
    display: flex;
    line-height: unset;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.branchdetails .sizepricing .spcard .spcard-msa h1 {
    color: var(--sf-primary-blue);
    line-height: unset;
}

.branchdetails .sizepricing .spcard .spcard-msa a {
    line-height: 1;
    font-size: 15px;
    padding: 8px 20px;
    margin-top: 20px;
    border-radius: 20px;
}

.branchdetails .sizepricing .spcard .spcard-msa img {
    width: 90%;
    height: auto;
}


.branchdetails-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.branchdetails-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.branchdetails-bg-l {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.branchdetails-bg-l img {
    width: 100%;
    height: 1460px;
    display: block;
}

.branchdetails .sizepricing .msa {
    width: 100%;
    color: var(--sf-primary-yellow);
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 3rem;
    font-family: 'ITCAvantGardeStd-Bold';
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.branchdetails .sizepricing .remark {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    font-size: 18px;
    font-family: 'ITCAvantGardeStd-Md';
    font-weight: 500;
}

.branchdetails .sizepricing .remark ul {
    list-style: none;
}

.branchdetails .sizepricing .remark .sf-matterport {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-contact-us {
    color: var(--sf-primary-blue);
    background-color: #fff;
    border: 1px solid var(--sf-primary-yellow);
    border-radius: 150px;
    font-size: 24px;
    padding: 10px 20px;
    text-decoration: none;
}

.branchdetails .sl-container {
    max-width: 100%;
    background-color: var(--sf-primary-yellow);
}

.branchdetails .sl-container .btn-box {
    display: none;
}


/* *** End of Branch details *** */



/* --------- Promotions--------- */
.promotions .swiper-container-wrapper {
    height: 550px !important;
}

.promotions .swiper.gallery-wp .swiper-slide {
    width: 450px !important;
    height: 450px !important;
    max-width: 450px;
    max-height: 450px;
    border: 15px solid #fff;
    overflow: hidden;
}

.promotions .swiper.gallery-wp .swiper-slide a {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.promotions .swiper.gallery-wp .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: unset;
}

/* *** End of Promotions *** */

/* --------- Promotions--------- */
.mediarelease .swiper.gallery-wp .swiper-slide {
    width: 490px;
    height: 600px;
}

.mediarelease .swiper.gallery-wp .swiper-slide a {
    width: 420px;
    height: 420px;
}

.mediarelease .swiper.gallery-wp .swiper-slide img {
    width: 100%;
    height: 100%;
}


/* *** End of Promotions *** */

/* ==========================================================================
   Elementor txt page Styles
   ========================================================================== */

.txtpage .elementor-element {
    color: var(--sf-primary-blue);
}

.txtpage .elementor-element .wp-block-heading {
    color: var(--sf-primary-blue);
    padding-top: 20px;
}

.txtpage .elementor-element p {
    color: var(--sf-primary-blue);
    padding: 5px 0;
}


/* --------------------------------------------------------------------------------- */
/* --------- Plugins Hacks --------- */
#hk-area-slider-691fe838ef5da {
    position: relative;
    z-index: 101;
}

.hk-filter-btn-long,
.hk-filter-btn-long:hover {
    transform: unset;
    box-shadow: unset;
    transition: unset;
    border-radius: 80px;
    border-color: var(--sf-primary-blue);
    background: var(--sf-primary-blue);
}

.hk-filter-btn-long.active {
    background: var(--sf-primary-red);
    color: white;
    border-color: var(--sf-primary-red);
    transform: unset;
    box-shadow: unset;
    transition: unset;
}

.hk-slider-controls {
    padding: 0;
}

.sf-sub-region-group {
    margin-bottom: 15px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.sf-branch-column {
    border: 0;
}

#gform_1 .ginput_container ginput_container_select {
    padding: 0 10px 0 0px;
    background: #fff;
    border-radius: 10px;
}

.why-content .swiper-container-wrapper {
    height: 300px !important;
}

.why-content .swiper.gallery-wp .swiper-slide {
    border: 15px solid #fff;
}

.why-content .swiper.gallery-wp .swiper-slide img {
    display: block;
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 10px 10px 30px 30px;
}

.why-content .swiper.gallery-wp .swiper-slide .slide-description {
    font-size: 24px;
    display: block !important;
    padding: 10px 0 0;
}

/* *** End of Plugins Hacks *** */

/* --------------------------------------------------------------------------------- */
/* --------- General Styles --------- */
.sf-branch-list-container a {
    color: var(--sf-primary-blue);
    text-decoration: none;
}

/* *** End of General Styles *** */

/* --------------------------------------------------------------------------------- */
/* --------- Desktop --------- */
@media screen and (min-width:1200px) {
    .branchdetails .sizepricing .sp-title {
        padding-top: 40px;
    }

    .branchdetails .sizepricing ul.spcgroup {
        margin-top: 0px;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0 30px;
        gap: 30px;
    }

    .branchdetails .sizepricing .spcard {
        width: 360px;
    }

    .branchdetails .sizepricing .remark {
        margin-top: 10px;
        width: 1000px;
        padding: 10px 0 50px 0;
    }

    .branchdetails-bg img {
        min-height: 1508px;
    }

}

@media screen and (min-width:1400px) {
    .branchdetails .sizepricing .remark {
        margin-top: 50px;
        width: 1200px;
    }

    .branchdetails-bg img {
        min-height: 1628px;
    }

}

@media screen and (min-width:1600px) {


    .branchdetails .sizepricing .remark {
        margin-top: 50px;
        width: 1200px;
    }

    .branchdetails-bg img {
        min-height: 1628px;
    }

    .wocs-container .swiper-wrapper {
        /*transform: translate3d(-1060px, 0px, 0px) !important;*/
    }

    .wocs-container .swiper-wrapper .swiper-slide {
        max-width: 400px;
        margin-right: 20px;
    }

    .wocs-container .swiper-wrapper .testimonial-card {
        min-height: 360px;
    }

    .wocs-container .swiper-wrapper .testimonial-card .testimonial-date {
        font-size: 12px;
        color: #666;
        margin-bottom: 15px;
        position: absolute;
        top: 110px;
        right: 50px;
    }

    .wocs-container .swiper-wrapper .testimonial-card .testimonial-content h4 {
        color: var(--sf-primary-blue);
        font-size: 1.5em;
        margin-bottom: 10px;
        font-family: 'ITCAvantGardeStd-Bold';
        position: absolute;
        top: 90px;
        left: 40px;
    }

    .wocs-container .swiper-wrapper .testimonial-card .testimonial-content p {
        font-size: 18px;
        line-height: 26px;
        color: #555;
        position: absolute;
        top: 140px;
        left: 50px;
        max-width: 220px;
        text-align: left;
        margin: 0;
    }

    .wocs-container .testimonial-nav {
        padding: 10px 0 !important;
        margin-top: 30px;
    }

}


/* --------------------------------------------------------------------------------- 
   --------- Mobile Responsive Style --------- 
--------------------------------------------------------------------------------- */
@media screen and (max-width: 1023px) {

    /* --------- Promotions - Single slide view --------- */
    .promotions .swiper.gallery-wp .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    .promotions .swiper.gallery-wp .swiper-slide a {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    .promotions .swiper-container-wrapper {
        height: auto !important;
        min-height: 400px;
    }
}

@media screen and (max-width: 992px) {

    /* --------- Home page --------- */
    .wocs-section .testimonial-gallery-swiper .swiper-slide {
        max-width: 500px !important;
    }

    .wocs-section .testimonial-date {
        top: 90px;
        right: 60px;
        font-size: 1rem;
        font-family: 'ITCAvantGardeStd-Md';
        font-weight: 700;
    }

    .wocs-section .testimonial-content h4 {
        top: 60px;
        left: 50px;
        font-size: 1.5em;
        font-family: 'ITCAvantGardeStd-Bold';
        font-weight: 900;
    }

    .wocs-section .testimonial-content p {
        top: 110px;
        left: 60px;
        max-width: 250px;
        font-size: 1rem;
    }

    .wocs-section .wocs-bg {
        background-size: 1060px 100%;
        background-position: top 0px right -120px;
    }

    .wocs-section .testimonial-gallery-swiper .swiper-wrapper {
        transform: translate3d(-775px, 0px, 0px) !important;
    }


    /* --------- location page --------- */
    #asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .sl-main-cont .asl-panel-inner .Num_of_store {
        background-color: var(--sf-primary-red);
        padding: 20px 30px;
    }

    #asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .Num_of_store span {
        font-family: "ITCAvantGardeStd-Bold" !important;
        font-size: 1.1em !important;
        padding-top: 0 !important;
    }

    #asl-storelocator.asl-cont .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box .sl-list-wrapper .sl-list {
        padding: 10px 50px 10px 30px;
    }

    /* --------- Branch details page --------- */
    .asl-store-pg .asl-content-box .sfdetails {
        padding: 20px 50px 50px 30px;
    }

    .branchdetails .sizepricing .sp-title {
        font-size: 27px;
        padding: 100px 0 10px 0;
    }

    .branchdetails .sizepricing ul.spcgroup {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        margin: 30px 0;
        gap: 30px;
        position: relative;
        z-index: 3;
        justify-content: center;
    }

    .branchdetails .sizepricing .spcard {
        background: #fff;
        width: 420px;
        height: 250px;
        display: block;
        justify-content: space-around;
        align-items: center;
        text-align: center;
        font-family: "ITCAvantGardeStd-Md";
        color: #333;
        font-size: 18px;
    }

    .branchdetails .sizepricing .remark {
        width: 992px;
        padding: 80px 30px 0;
    }

    .branchdetails-bg {
        display: none;
    }

    .branchdetails-bg-l {
        display: block;
    }

}

@media screen and (max-width: 768px) {

    /*.elementor-page-content .slf-search-container {
        flex-direction: unset;
    }*/
    .slf-search-box {
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }

    .slf-search-select {
        width: 280px;
    }

    .slf-search-btn {
        /* width: unset%; */
        width: unset;
        justify-content: center;
        margin-top: 0px;
    }

}



@media screen and (max-width: 480px) {
    .hk-filter-buttons-individual {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: unset;
    }

    .hk-filter-btn-long {
        padding: 12px 24px;
        min-width: 100px;
        font-size: 0.9rem;
        gap: 0;
        display: block;
    }



    .hk-slider-item {
        min-width: 150px;
        width: 150px;
        height: 300px !important;
    }

    .hk-slider-container {
        padding: 20px 20px 0 20px !important;
    }

    .hk-slider-btn {
        width: 60px;
        height: 60px;
        font-size: 4rem;
        line-height: 3.1rem;
        align-items: unset;
    }

    .hk-area-button {
        width: 150px;
        height: 150px;
        font-size: 1rem;
        padding: 0;
        box-shadow: unset;
    }

    .hk-slider-track {
        height: 280px !important;
    }

    .hk-slider-item:nth-child(odd) .hk-area-button {
        transform: translateY(-68px);
        margin: 0;
    }

    .hk-slider-item:nth-child(even) .hk-area-button {
        transform: translateY(55px);
        margin: 0;
    }

    .wocs-section .testimonial-gallery-swiper .swiper-slide {
        min-width: 260px;
    }

    .testimonial-card {
        min-height: 230px;
        padding: 15px;
    }

    .wocs-section .testimonial-date {
        top: 60px;
        right: 25px;
        font-size: 0.5rem;
        font-family: 'ITCAvantGardeStd-Md';
        font-weight: 700;
    }

    .wocs-section .testimonial-content h4 {
        top: 50px;
        left: 25px;
        font-size: 1em;
        font-family: 'ITCAvantGardeStd-Bold';
        font-weight: 900;
    }

    .wocs-section .testimonial-content p {
        font-size: 11px;
        line-height: 18px;
        top: 80px;
        left: 40px;
        max-width: 130px;
    }

    .wocs-section .swiper-button-prev,
    .wocs-section .swiper-button-next {
        width: 35px !important;
        height: 35px !important;
    }

    .wocs-section .swiper-button-prev:after,
    .wocs-section .swiper-button-next:after {
        font-size: 1rem !important;
        line-height: 1rem !important;
    }

    .wocs-section .wocs-bg {
        background-size: 420px 370px !important;
        background-position: top 0px left -5px !important;
    }


    .why-content .swiper-container-wrapper {
        height: 380px !important;
    }

    .why-content .swiper.gallery-wp .swiper-slide {
        width: 480px;
        height: 480px;
        border: 10px solid #fff;
        border-radius: 20px;
        max-width: 280px !important;
        max-height: 240px !important;
    }

    .why-content .swiper.gallery-wp .swiper-slide-active {
        width: 480px;
        height: 480px;
        border: 10px solid #fff;
        border-radius: 20px;
        max-width: 280px !important;
        max-height: 240px !important;
    }

    .why-content .swiper.gallery-wp .swiper-slide img {
        display: block;
        width: 100%;
        height: 75%;
        object-fit: cover;
        border-radius: 10px 10px 30px 30px;
    }

    .why-content .swiper.gallery-wp .swiper-slide .slide-description {
        padding: 10px 0;
        font-size: 1rem;
        font-family: 'ITCAvantGardeStd-Bold';
    }

    .why-section .why-section-bg img {
        width: 100%;
        min-height: 720px;
    }

    .promotions .page-main-title h2 {
        padding: 10px 0;
        font-size: 2rem;
        font-family: 'ITCAvantGardeStd-Bold';
    }

    .promotions .swiper-container-wrapper {
        max-height: 600px;
    }

    .promotions .testimonial-nav .swiper-button-next,
    .testimonial-nav .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .promotions .testimonial-nav .swiper-button-next:after,
    .testimonial-nav .swiper-button-prev:after {
        font-size: 12px;
    }


    .promotions .swiper.gallery-wp .swiper-slide,
    .promotions .swiper.gallery-wp .swiper-slide-active {
        width: 480px;
        height: 600px;
        max-width: 420px;
        max-height: 600px;
        border-radius: 20px;
        border: 10px solid #fff;
    }

    .promotions .swiper.gallery-wp .swiper-slide a {
        width: 420px;
        height: 420px;
        max-width: 420px;
        max-height: 420px;
        overflow: hidden;
        border-radius: 0px 0px 30px 30px;
    }

    .promotions .swiper.gallery-wp .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: unset;
    }

    .promotions .swiper.gallery-wp .swiper-slide .slide-description {
        display: block;
    }

    .promotions .testimonial-nav {
        padding: 10px 0;
    }

    .promotions .page-main-bg-new img {
        width: 100%;
        height: 400px;
        display: block;
    }


    .promotions .post-details .post-left,
    .promotions .post-details .post-right {
        max-height: 420px;
    }

    .promotions .post-details .post-left {
        max-height: 360px;
        border: 10px solid #fff;
    }

    .post-left img {
        height: 100% !important;
    }

    .elementor-page-content .slf-search-container,
    .elementor-element.elementor-element-c5831dc .slf-search-container {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
        width: 360px;
        gap: 15px;
        flex-direction: column;
        margin-top: 0px;
        position: relative;
    }

    .elementor-page-content .slf-search-box,
    .elementor-element.elementor-element-c5831dc .slf-search-box {
        margin: 0 !important;
        width: unset;
    }

    .elementor-page-content .slf-search-select,
    .elementor-element.elementor-element-c5831dc .slf-search-select select {
        font-size: 1rem;
        padding: 12px 20px;
        padding-right: 45px;
        border-radius: 25px;
        width: 250px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        box-sizing: border-box;
    }

    .elementor-page-content .slf-search-btn,
    .elementor-element.elementor-element-c5831dc .slf-search-btn {
        width: unset;
        justify-content: center;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 5px;
    }

    .branch .slf-search-container,
    .elementor-element.elementor-element-3420279b .slf-search-container {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
        width: 360px;
        gap: 15px;
        flex-direction: column;
        position: relative;
    }

    .branch .slf-search-box,
    .elementor-element.elementor-element-3420279b .slf-search-box {
        margin: 0 !important;
        width: unset;
    }

    .branch .slf-search-select,
    .elementor-element.elementor-element-3420279b .slf-search-select {
        font-size: 1rem;
        padding: 12px 20px;
        padding-right: 45px;
        border-radius: 25px;
        width: 250px;
    }

    .branch .slf-search-btn,
    .elementor-element.elementor-element-3420279b .slf-search-btn {
        width: unset;
        justify-content: center;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 20px;
    }

    .slf-search-btn:hover {
        transform: unset;
        opacity: 1;
    }

    /* --------- Location Plugins Hacks --------- */
    .slf-search-container {
        border: 3px solid var(--sf-primary-yellow);
        background-color: var(--sf-primary-blue);
        border-radius: 15px;
        padding: 20px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        font-family: "ITCAvantGardeStd-Md", "ITCAvantGardeStd-Bold", "ITCAvantGardeStd-Demi", "MyriadPro-Bold", "Noto Sans TC", "Noto Sans SC" !important;
        box-shadow: 2px 2px 3px 0px #6c6c6c;
        align-items: flex-start;
        width: 90%;
        margin: auto;
        flex-direction: unset;
    }

    .slf-search-box {
        width: 100%;
        margin: 0;
    }

    .slf-search-select {
        font-size: 1rem;
        padding: 12px 20px;
        padding-right: 45px;
        border-radius: 25px;
        width: 220px;
        transition: none;
    }

    .branchdetails .slf-search-select {
        width: 220px;
    }

    .slf-search-btn {
        width: auto;
        padding: 0;
        margin: 0;
        transition: none;
    }

    #asl-storelocator.asl-cont .asl-panel {
        flex: unset;
        max-width: 100%;
        height: 500px;
    }

    #asl-storelocator.asl-cont .asl-map {
        flex: unset;
        max-width: 100%;
        height: 500px;
    }

    /* --------- Branch details Plugins Hacks --------- */
    .branches-sp {
        background-image: unset !important;
        background-position: top center;
        background-repeat: no-repeat;
        padding: 0;
        margin: 0;
    }

    .branchdetails {
        background: var(--sf-primary-blue);
        padding: 20px 0 20px 20px;
    }

    .branchdetails-remark.branchdetails {
        background: var(--sf-primary-yellow);
    }

    .detail-page-bg.branches-sp .e-con-inner {
        padding-top: 10px;
    }

    .detail-page-bg.branches-sp .sizepricing {
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .branchdetails .asl-store-pg .sf-details-info {
        flex: unset;
        max-width: 100%;
        height: 200px;
        width: 100%;
    }

    .branchdetails .asl-store-pg .sf-details-map {
        flex: unset;
        max-width: 100%;
        height: 500px;
        margin-top: 500px;
        width: 100%;
    }

    .branchdetails .sizepricing .sp-title {
        font-size: 25px;
        padding: 10px 0 10px 0;
        margin-top: 5px;
    }

    .branchdetails .sizepricing ul.spcgroup {
        margin: 10px 0;
        gap: 20px;
    }

    .branchdetails .sizepricing .spcard {
        width: 180px;
        /* height: 180px; */
        font-size: 12px;
        display: block;
    }

    .branchdetails .sizepricing .spcard .cardsize .size {
        font-size: 3rem;
        padding-right: 0;
        line-height: 3.6rem;
        padding-top: 15px;
    }

    .branchdetails .sizepricing .spcard .cardsize .unit {
        font-size: 14px;
        padding-right: 0;

    }

    .branchdetails .sizepricing .spcard .cardpricing .ped {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .branchdetails .sizepricing .spcard .spcard-msa {
        line-height: 2rem;
    }

    .branchdetails .sizepricing .spcard .spcard-msa h1 {
        line-height: 2rem;
        font-size: 1rem;
    }

    .branchdetails .sizepricing .msa {
        font-size: 1.5rem;
        gap: 20px;
    }

    .btn-contact-us {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .branchdetails-bg-l img {
        width: 100%;
        height: 80%;
        display: block;
    }

    .branchdetails .sizepricing .remark {
        width: 100%;
        padding: 0px 10px 0;
        font-size: 1rem;
    }

    .branchdetails .sizepricing .remark .sf-matterport {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
        width: 100%;
    }

    .asl-store-pg .sl-row {}

    .asl-store-pg .sf-details-info {
        width: 100%;
        flex: 100%;
        max-width: 100%;
        min-height: 300px;
    }

    .asl-store-pg .sf-details-map {
        width: 100%;
        flex: 100%;
        max-width: 100%;
        min-height: 500px;
    }

    /* --------- Media Release Plugins Hacks --------- */
    .mediarelease .btncategory {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 20px;
    }

    .mediarelease .category-btn {
        font-size: 1.2em;
    }

    .mediarelease .swiper-container-wrapper {
        position: relative;
        width: 100%;
        overflow: unset;
        height: 100%;
    }

    .mediarelease .swiper.gallery-wp {
        padding: 10px 0;
        overflow: unset;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide {
        background-position: center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        border-radius: 30px;
        background: #bbb;
        border: 10px solid #bbb;
        overflow: hidden;
        max-width: 380px !important;
        width: 380px !important;
        height: 100% !important;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide-active {
        z-index: 2;
        border-radius: 30px;
        background: #fff;
        border: 15px solid #fff;
        max-width: 380px !important;
        width: 380px !important;
        height: 600px !important;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide a {
        display: block;
        width: 360px;
        height: 360px;
        border-radius: 30px;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        object-fit: cover;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide .slide-info {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide .slide-info .slide-title {
        padding: 10px 5px;
        font-size: 1rem !important;
    }

    .mediarelease .swiper.gallery-wp .swiper-slide .slide-info .slide-description {
        margin-top: 30px;
        font-size: 1.2rem !important;
    }

    .mediarelease .testimonial-nav .swiper-button-next,
    .mediarelease .testimonial-nav .swiper-button-prev {
        width: 60px;
        height: 60px;
        display: block;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .mediarelease .testimonial-nav .swiper-button-next:after,
    .mediarelease .testimonial-nav .swiper-button-prev:after {
        font-size: 1.5rem;
        font-weight: 900;
        line-height: 3.5rem;
        text-align: center;
    }


    /* --------- Movers Plugins Hacks --------- */
    .movers .swiper.gallery-wp {
        padding: 10px 0;
    }

    .movers-s5-swiper-container {
        width: 100%;
        position: relative;
        padding: 20px 0;
    }

    .movers .swiper-container-wrapper {
        position: relative;
        width: 100% !important;
        overflow: hidden;
        height: 520px !important;
    }

    .movers .swiper.gallery-wp .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 480px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        border-radius: 50px;
        background: #bbb;
        border: 20px solid #bbb;
        overflow: hidden;
        max-height: 480px !important;
        height: 480px !important;
        max-width: 360px !important;
    }

    .movers .swiper.gallery-wp .swiper-slide-active {
        z-index: 2;
        border-radius: 30px;
        background: #fff;
        border: 15px solid #fff;
        max-width: 300px !important;
    }

    .movers .movers-swiper .movers-s5-cardswrap {
        border-radius: 30px;
        width: 100%;
    }

    .movers .movers-swiper .movers-s5-cardsimg {
        height: 280px;
        border-radius: 30px !important;
    }

    .movers-swiper .movers-s5-cardstxt .txt {
        font-size: 16px;
    }

    .movers .swiper.gallery-wp .swiper-slide a {
        display: block;
        width: 100% !important;
    }

    .movers .swiper.gallery-wp .swiper-slide img {
        display: block;
        width: 100% !important;
        height: 280px !important;
        border-radius: unset !important;
        object-fit: cover;
    }

    /* --------- Branch list Plugins Hacks --------- */
    .sf-branch-filters strong {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}


.hk-area-button.lang-en {
    font-size: 1rem;
    line-height: 1rem;
}

#gform_submit_button_1 {
    width: 160px;
    height: 50px;
    font-size: 1.5rem;
}


@media screen and (max-width: 480px) {

    /* Store Locator Responsive Layout */
    .asl-cont#asl-storelocator .sl-row {
        display: flex;
        flex-direction: column;
    }

    #asl-storelocator.asl-cont .asl-panel {
        flex: 1;
        max-width: 100%;
    }

    #asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner {
        height: auto !important;
    }

    #asl-storelocator.asl-cont .pol-md-7,
    #asl-storelocator.asl-cont .asl-map {
        flex: 1;
        max-width: 100%;
    }
}

@media screen and (max-width: 430px) {
    .branchdetails .sizepricing .spcard {
        width: 170px;
        /* height: 200px; */
        font-size: 10px;
        gap: 2px;
        padding: 5px;
    }

    .branchdetails .sizepricing .spcard .cardsize .size {
        font-size: 3rem;
    }

    .branchdetails .sizepricing .spcard .cardsize .unit {
        font-size: 14px;
    }

    .branchdetails .sizepricing .spcard .cardpricing .ped {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .branchdetails .sizepricing .spcard .cardpricing .pe.reserve-now-button {
        padding: 8px 12px;
    }

    .branch .slf-search-btn {
        right: 30px;
    }
}

@media screen and (max-width: 390px) {
    .branchdetails .sizepricing .spcard {
        width: 160px;
        /* height: 180px; */
        font-size: 12px;
        gap: 5px;
    }

    .branchdetails .sizepricing .spcard .cardsize .size {
        font-size: 2.6rem;
    }

    .branchdetails .sizepricing .spcard .cardsize .unit {
        font-size: 14px;
    }

    .branchdetails .sizepricing .spcard .cardpricing .ped {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .branchdetails .sizepricing .spcard .cardpricing .pe.reserve-now-button {
        padding: 5px 6px;
    }

    .branch .slf-search-btn {
        right: 35px;
    }

}

/* Map list style for focus event */
#asl-storelocator.asl-cont li.sl-item:focus,
#asl-storelocator.asl-cont li.sl-item:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

#asl-storelocator.asl-cont .sl-row.addr-loc:focus {
    outline: 2px dashed #eee !important;
}

/* Pricing Table Whatsapp Button */
.branchdetails .sizepricing .spcard .spcard-msa.whatsapp-card h1 {
    color: var(--sf-primary-blue);
    line-height: 2em;
}

.whatsapp-card .pricing_whatsapp_wrapper .pricing_whatsapp_link {
    font-size: 15px;
    background-color: #28a939;
    color: white;

}