<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
}

.grid-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
}   

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.gap-4 {
    gap: 4rem;
}

.gap-5 {
    gap: 5rem;
}

.flex-1 {
    flex: 1;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}S

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.custom-meta-box {
    background: #f9fafc;
    padding: 1rem;
}

.pulse-circle {
    width: 10px;
    height: 10px;
    background: #32CD32;
    border-radius: 50%;
    margin-left: 10px;
    position: relative;
    animation: intensePulse 1.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes intensePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.clear-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
    height: 30px;
    padding: 4.5px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.clear-header-btn:hover {
    opacity: 0.6;
}

.header-section {
    max-width: 832px;
    margin: 0 auto;
}

.header-image-container-header-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #04090d;
    margin: 0;
    padding-left: .5rem;
    margin-bottom: .5rem;
}

.header-section-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.button {
    border: none;
    outline: none;
    cursor: pointer;
}

.custom-code-container {
    padding-top: 1rem;
}

.admin-upload-image-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: transparent;
}

.header-image-container {
    position: relative;
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: .5rem;
}

.header-image-container-header-image {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image-container-header {
    position: relative;
    width: 100%;
}

.close-button-icon {
    width: 1rem;
    height: 1rem;
    color: #04090d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button-icon:hover {
    color: #6439f5;
}

.button .admin-upload-image-button[type="button"] {
    background: transparent;
    border: 1px solid #e7e8ea;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

input.header-text-tel-field {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    outline: none !important;
    box-shadow: none !important;
    margin-top: .5rem;
}

input.header-text-tel-field::placeholder {
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.header-text-tel-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.header-text-tel-field::-moz-placeholder { /* Firefox 19+ */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.header-text-tel-field:-ms-input-placeholder { /* IE 10+ */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.header-text-tel-field::-ms-input-placeholder { /* Edge */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}

input.header-text-tel-field:focus {
    border: 1px solid #000;
}

input.header-text-tel-field:hover {
    border: 1px solid #000;
}

.header-text-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.admin-logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.header-text-container {
    width: 100%;
}

.logo-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: #04090d;
    margin: 0;
}

.company-logo-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #04090d;
    margin: 0;
}

/*main section*/
input.base-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #e7e8ea;
    padding: .6rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

input.base-input::placeholder {
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.base-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.base-input::-moz-placeholder { /* Firefox 19+ */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.base-input:-ms-input-placeholder { /* IE 10+ */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}
input.base-input::-ms-input-placeholder { /* Edge */
    color: #04090d !important;
    font-size: 1rem;
    font-weight: 400;
}

input.base-input:hover {
    border: 1px solid #000;
}

input.base-input:focus {
    border: 1px solid #000;
}

.main-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.main-title-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}

/*rating*/
.rating {
    margin-top: 2rem;
}

.rating-container {
    margin-top: 1rem;
}

/*company logo*/
.company-logo-container {
    flex-wrap: wrap;
    padding-top: 4rem;
    column-gap: 2rem;
    row-gap: 1rem;
}

.company-logo-input-container {
    position: relative;
    width: 160px;
    height: 100px;
    margin: 0.5rem;
}

.header-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*content*/
.content-section {
    padding-top: 4rem;
}

.content-input-button {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.content-input-container {
    position: relative;
    width: 100%;
    height: 100%; 
    margin-top: 2rem;      
}

.close-content-button-icon {
    top: 0;
    right: 3%;
}

/*textarea*/
.textarea-container {
    padding-top: 4rem;
}

.textarea-input-container {
    margin-top: 2rem;
}

.textarea-input-container button.insert-media.add_media {
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #6439f5;
    outline: none;
}

.textarea-input-container button.insert-media.add_media:focus {
    outline: none !important;
    box-shadow: none !important;
}

.textarea-input-container button.insert-media.add_media:hover {
    color: #000;
    border: 1px solid #000;
}

.textarea-input-container button.wp-switch-editor {
    color: #04090d;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    outline: none;
}

.textarea-input-container button.wp-switch-editor:hover {
    color: #000;
    border: 1px solid #000;
}

.textarea-input-container button.wp-switch-editor:focus {
    outline: none !important;
    box-shadow: none !important;
    color: #000;
    border: 1px solid #000;
}

.textarea-input-container button.wp-switch-editor[aria-pressed="false"] {
    font-weight: 600;
    color: #04090d;
    border: 1px solid #e7e8ea;
}

.textarea-input-container button.wp-switch-editor[aria-pressed="true"] {
    font-weight: 600;
    color: #000;
    border: 1px solid #000;
}

.textarea-input-container .mce-toolbar .mce-ico {
    color: #000;
    transition: all 0.3s ease;
}

.textarea-input-container .mce-toolbar .mce-ico:hover {
    color: #000;
}

div.textarea-input-container div.mce-toolbar-grp {
    background: #f9fafc;
}


div.textarea-input-container .mce-toolbar .mce-btn-group .mce-btn:focus, .mce-toolbar .mce-btn-group .mce-btn:hover, .qt-dfw:focus, .qt-dfw:hover {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}


div.textarea-input-container div.mce-toolbar-grp {
    border-bottom: none;
}

div.textarea-input-container .mce-menubtn button {
    border: 1px solid #e7e8ea;
    color: #04090d;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.3s ease;
}


div.textarea-input-container .mce-menubtn button:hover {
    border: 1px solid #000;
    color: #000;
}

div.textarea-input-container .mce-toolbar .mce-btn-group .mce-btn.mce-active:focus, .mce-toolbar .mce-btn-group .mce-btn.mce-active:hover {
    border: 1px solid #000;
}

div.textarea-input-container .mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
    border: none;
}

div.textarea-input-container .wp-core-ui .button, .wp-core-ui .button-secondary {
    color: #000;
    border: 1px solid #000;
    background: #fff;
}

.admin-logo-image-preview {
    position: relative;
    transition: all 0.3s ease;
    border: 2px dashed #e7e8ea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafc;
    cursor: pointer;
    width: 100%;
}

.admin-logo-image-preview:hover {
    border-color: #000;
    background-color: rgba(100, 57, 245, 0.05);
}

.admin-logo-image-preview.drag-over {
    border-color: #000;
    background-color: rgba(100, 57, 245, 0.05);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.upload-icon {
    color: #6439f5;
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.main-description-input {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #04090d;
    background-color: #fff;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    resize: vertical;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none !important;
    box-shadow: none !important;
}

.main-description-input:focus {
    border-color: #000;
}

.main-description-input:hover {
    border-color: #000;
}

.upload-image-container-main-container {
    height: 300px;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #04090d;
}

.base-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #04090d;
    background-color: #fff;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.base-input:focus {
    border-color: #000;
}

.base-input:hover {
    border-color: #000;
}

.main-description-input {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.advertising-title {
    width: 100%;
}

.advertising-section {
    margin-bottom: 2rem;
}

.rating {
    margin-top: 2rem;
}

.rating-container {
    max-width: 800px;
    margin: 0 auto;
}

.rating-icon-container {
    margin-bottom: 1rem;
}

.rating-icon {
    color: #05AF61;
}

.rating-text-container {
    width: 100%;
}

.rating-text-container .input-group {
    margin-bottom: 0;
}

.rating-text-container .input-label {
    justify-content: start;
}

.rating-text-container .input-icon {
    color: #05AF61;
}

h2.section-title-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #04090d;
    transition: all 0.3s ease;
    margin-bottom: 1rem !important;
}

.section-icon {
    color: #fedb5b;
    width: 24px;
    height: 24px;
}

.main-section-container-wrapper {
    max-width: 832px;
    margin: 0 auto;
}

h3.section-subtitle-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #04090d;
    margin-bottom: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

h3.section-subtitle-heading .section-icon {
    width: 20px;
    height: 20px;
}

.textarea-label-main {
    margin-bottom: 2rem;
}

/*testimonial*/
.testimonial-section {
    padding-top: 4rem;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.author-image-container {
    width: 100%;
}

.author-image-container .admin-logo-image-preview {
    width: 200px;
    height: 100px;
    flex-basis: 100%;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.testimonial-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/*new main section*/
.new-main-section {
    padding-top: 1rem;
}

.new-main-section-container {
    max-width: 832px;
    margin: 0 auto;
}

.new-main-section-content {
    background-color: #fff;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/*settings*/
.settings-section {
    padding-top: 1rem;
}

.settings-section-container {
    max-width: 832px;
    margin: 0 auto;
}

.settings-section-content {
    background-color: #fff;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/*styles*/
.color-row {
    margin-bottom: 1.5rem;
}

.color-picker-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-input {
    width: 70px;
    height: 40px;
    border: none;
    padding: 0;
    background: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 7px 10px;
    border: 1px solid #e7e8ea !important;
    width: 100%;
    outline: none !important;
    box-shadow: none !important;
}

.color-text-input {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #000;
    border-radius: 6px;
    background: #fff;
    color: #222;
    transition: border-color 0.2s;
}

.color-text-input:focus {
    border-color: #94a3b8;
    outline: none;
}

.styles-section {
    padding-top: 1rem;
}

.styles-section-container {
    max-width: 832px;
    margin: 0 auto;
}

.styles-section-content {
    background-color: #fff;
    border: 1px solid #e7e8ea;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-color-label {
    font-weight: 400;
    color: #04090d;
}

.sub-label-color {
    font-size: .8rem;
    font-weight: 500;
    color: #48c7b6;
    margin: .5rem 0;
}

.textarea-google-tag {
    min-height: 195px;
}
</pre></body></html>