.sim-call-bottom,
.sim-zalo-bottom {
    position: fixed;
    z-index: 9999;
}

.sim-call-bottom {
    left: 12px;
    bottom: 16px;
}

.sim-call-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    height: 50px;
    padding: 5px 14px 5px 7px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #d71920;
    box-shadow: 0 2px 10px rgba(215, 25, 32, .34);
    color: #fff;
    isolation: isolate;
    overflow: visible;
    -webkit-animation: sim-call-button-glow 1.15s ease-in-out infinite !important;
    animation: sim-call-button-glow 1.15s ease-in-out infinite !important;
}

.sim-call-button::before {
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 2px solid rgba(215, 25, 32, .55);
    border-radius: 999px;
    background: rgba(215, 25, 32, .18);
    content: "";
    pointer-events: none;
    -webkit-animation: sim-call-pulse 1.45s ease-out infinite !important;
    animation: sim-call-pulse 1.45s ease-out infinite !important;
}

.sim-call-button::after {
    position: absolute;
    inset: -10px;
    z-index: -2;
    border: 1px solid rgba(215, 25, 32, .28);
    border-radius: 999px;
    content: "";
    pointer-events: none;
    -webkit-animation: sim-call-pulse-wide 1.45s ease-out infinite !important;
    animation: sim-call-pulse-wide 1.45s ease-out infinite !important;
}

.sim-call-button:hover {
    color: #fff;
}

.sim-call-button__icon {
    position: relative;
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    transform-origin: 50% 50%;
    will-change: transform;
    -webkit-animation: sim-call-shake 1.45s ease-in-out infinite !important;
    animation: sim-call-shake 1.45s ease-in-out infinite !important;
}

.sim-call-button__icon::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url("static/theme/images/icon-call-white.svg") center / contain no-repeat;
}

.sim-call-button__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.08;
}

.sim-call-button__text strong {
    color: #fff;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
}

.sim-call-button__text span {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}

.sim-zalo-bottom {
    right: 17px;
    bottom: 16px;
}

.sim-zalo-button {
    position: relative;
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .2));
}

.sim-zalo-button img {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.sim-zalo-button span {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #ff1f1f;
}

@keyframes sim-call-button-glow {
    0%,
    100% {
        box-shadow: 0 2px 10px rgba(215, 25, 32, .34), 0 0 0 0 rgba(215, 25, 32, .55);
    }

    50% {
        box-shadow: 0 2px 14px rgba(215, 25, 32, .45), 0 0 0 8px rgba(215, 25, 32, .16);
    }
}

@-webkit-keyframes sim-call-button-glow {
    0%,
    100% {
        box-shadow: 0 2px 10px rgba(215, 25, 32, .34), 0 0 0 0 rgba(215, 25, 32, .55);
    }

    50% {
        box-shadow: 0 2px 14px rgba(215, 25, 32, .45), 0 0 0 8px rgba(215, 25, 32, .16);
    }
}

@keyframes sim-call-pulse {
    0% {
        opacity: .85;
        transform: scale(.98);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

@-webkit-keyframes sim-call-pulse {
    0% {
        opacity: .85;
        -webkit-transform: scale(.98);
        transform: scale(.98);
    }

    70%,
    100% {
        opacity: 0;
        -webkit-transform: scale(1.16);
        transform: scale(1.16);
    }
}

@keyframes sim-call-pulse-wide {
    0% {
        opacity: .55;
        transform: scale(.98);
    }

    100% {
        opacity: 0;
        transform: scale(1.26);
    }
}

@-webkit-keyframes sim-call-pulse-wide {
    0% {
        opacity: .55;
        -webkit-transform: scale(.98);
        transform: scale(.98);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.26);
        transform: scale(1.26);
    }
}

@keyframes sim-call-shake {
    0%,
    34%,
    100% {
        transform: rotate(0);
    }

    6%,
    16%,
    26% {
        transform: rotate(-13deg);
    }

    12%,
    22%,
    32% {
        transform: rotate(13deg);
    }
}

@-webkit-keyframes sim-call-shake {
    0%,
    34%,
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    6%,
    16%,
    26% {
        -webkit-transform: rotate(-13deg);
        transform: rotate(-13deg);
    }

    12%,
    22%,
    32% {
        -webkit-transform: rotate(13deg);
        transform: rotate(13deg);
    }
}

body#homepage,
body#homepage *:not(svg):not(path),
body#homepage input,
body#homepage button,
body#homepage textarea,
body#homepage select {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

body#homepage .popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 12px;
}

body#homepage .popular-tags li.tag {
    margin: 0;
    min-width: 126px;
    padding-right: 18px;
}

body#homepage .popular-tags li.tag a {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body#homepage .popular-tags li.tag::after {
    background: #fafafa;
    right: -10px;
}

body#homepage .sim-keyword-filter {
    display: block !important;
    width: 100%;
}

body#homepage .filter-input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d3d5d8;
    border-radius: 8px;
    color: #292e33;
    outline: none;
    padding: 9px 12px;
}

body#homepage .filter-input:focus {
    border-color: #ef2827;
    box-shadow: 0 0 0 3px rgba(239, 40, 39, .12);
}

.sidebar-right .grid-block-sidebar a.is-active,
.sidebar-right .tags li.tag a.is-active {
    border-color: #ef2827 !important;
    color: #ef2827 !important;
}

.sidebar-right .grid-block-sidebar a.is-active {
    background: #fff !important;
}

.sidebar-right .tags li.tag a.is-active {
    border: 1px solid #ef2827;
    border-radius: 4px;
    padding-inline: 8px;
}

.fix-menu .list-filter-tel a.is-active,
.fix-menu .list-filter-item a.is-active {
    border-color: #ef2827 !important;
    color: #ef2827 !important;
    background: #fff !important;
}

body#homepage .sim-empty-result {
    border: 1px dashed #d3d5d8;
    border-radius: 12px;
    background: #fff;
    color: #4b5460;
    padding: 24px;
    text-align: center;
}

body#homepage .sim-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 6px;
}

body#homepage .sim-pagination__item {
    min-width: 38px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #3b424a;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 8px 12px;
    text-align: center;
}

body#homepage a.sim-pagination__item:hover {
    border-color: #ef2827;
    color: #ef2827;
}

body#homepage .sim-pagination__item--active {
    border-color: #ef2827;
    background: #ef2827;
    color: #fff;
}

body#homepage .sim-pagination__item--disabled,
body#homepage .sim-pagination__item--dots {
    color: #9ca3af;
    cursor: default;
}

@media only screen and (max-width: 767px) {
    body#homepage .sim-pagination {
        gap: 6px;
    }

    body#homepage .sim-pagination__item {
        min-width: 34px;
        padding: 7px 10px;
    }

    .sim-call-bottom {
        left: 8px;
        bottom: 10px;
    }

    .sim-zalo-bottom {
        right: 8px;
        bottom: 10px;
    }

    .sim-call-button {
        min-width: 145px;
        height: 48px;
        padding-right: 12px;
    }

    .sim-call-button__text strong {
        font-size: 13px;
    }

    .sim-call-button__text span {
        font-size: 14px;
    }
}

.header__main-left img {
    height: 42px;
    width: auto;
}

.header__main-mobile img {
    height: 42px;
    width: auto;
    MAX-WIDTH: 100%;
}
