/* Container */
/*--------------------------------------
Search Results
--------------------------------------*/

.fe-search-results-wrap {
    margin-top: 30px;
}

.fe-search-results-header {
    margin-bottom: 18px;
}

.fe-search-results-header h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.fe-search-results-header span {
    color: #6B7280;
    font-size: 15px;
}

/*--------------------------------------
Result Card
--------------------------------------*/

.fe-citation-result-card {
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--wpex-input-border-radius);
    padding: 26px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 8px 10px;
}

/* Main Layout */
.fe-result-main {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* Left */
.fe-src-result-left {
    display: flex;
    gap: 24px;
    flex: 1;
}

.fe-src-result-thumb {
    width: 190px;
    height: 135px;
    border-radius: var(--wpex-input-border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.fe-src-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.fe-src-result-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.fe-src-result-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #6B7280;
}

.fe-src-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9CA3AF;
}

/* Results Detail Grid */
.fe-src-result-details {
    display: flex;
    gap: 40px;
}

.fe-src-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fe-src-detail-item i {
  width: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00539e;
  margin-top: 8px;
}

.fe-src-detail-item label {
    display: block;
}

.fe-src-detail-item strong {
    font-size: 15px;
    color: #111827;
}

/* Right */
.fe-src-result-right {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.fe-src-result-price {
    text-align: right;
}

.fe-src-result-price label {
    display: block;
    color: #6B7280;
}

.fe-src-result-price strong {
    font-size: 30px;
    font-weight: 600;
}

/* Footer */
.fe-src-result-footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Alert */
.fe-src-result-alert {
    flex: 1;
    display: flex;
    color: #4f4f4f;
    align-items: center;
    background: rgb(255, 248, 239);
    border: 1px solid rgb(247, 232, 207);
    border-radius: var(--wpex-input-border-radius);
    padding: 10px 20px 10px 20px;
}

.fe-src-result-alert i {
  color: rgb(212, 145, 33);
  padding: 0px 5px 0px 0px;
  font-size: 18px;
  position: relative;
  top: 1px;
}

/* Button */
.fe-result-btn {
    padding: var(--wpex-btn-padding);

    border-radius: var(--wpex-btn-border-radius);
    border-width: var(--wpex-btn-border-width);
    border-style: var(--wpex-btn-border-style);

    background-color: var(--wpex-btn-bg, var(--wpex-accent));
    color: #FFF;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none !important;
	font-size: var(--wpex-btn-font-size);
    font-family: var(--wpex-btn-font-family);
    font-style: var(--wpex-btn-font-style);
    text-transform: var(--wpex-btn-text-transform);
    letter-spacing: var(--wpex-btn-letter-spacing);
    line-height: var(--wpex-btn-line-height);
    font-weight: var(--wpex-btn-font-weight);

    transition: 0.15s all ease;
}

.fe-result-btn:hover {
    background: #094A89;
    color: #FFF;
}

/*--------------------------------------
Citation Search Form
--------------------------------------*/
.fe-citation-lookup {
    background: rgb(255, 255, 255);
    border-radius: var(--wpex-input-border-radius);
    border: 1px solid var(--wpex-table-cell-border-color);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 8px 10px;
    margin-top: 20px;
    padding: 20px;
}

#fe-citation-form {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 15px;
    align-items: center;  
}

/*--------------------------------------
Citation Search Header
--------------------------------------*/

.fe-citation-search-header {
    margin-bottom: 18px;
}

.fe-citation-search-header h2 {
  margin: 0px 0px 10px;
  font-size: 18px;
  font-weight: 600;
}

.fe-citation-search-header p {
    margin: 0;
    color: #6B7280;
}

/* Search Field */
.fe-search-field {
    position: relative;
}

/* Fake Search Icon */
.fe-search-field::before {
    content: "\f002";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #98A2B3;
    z-index: 2;
    pointer-events: none;
}

/* Input */
.fe-search-field input {
	width: 100%;
    padding-left: 55px !important;
}

/* Placeholder */
.fe-search-field input::placeholder {
    color: #98A2B3;
    font-weight: 400;
}

/* Focus */
.fe-search-field input:focus {
    outline: none;
    border-color: #0B5CAB;
    box-shadow: 0 0 0 4px rgba(11, 92, 171, 0.08);
}

/*--------------------------------------
Citation Loading State
--------------------------------------*/

.fe-citation-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 24px;

    font-size: 15px;
    font-weight: 500;

    color: #6B7280;
}

/* Spinner */
.fe-loading-spinner {
    width: 18px;
    height: 18px;

    border: 2px solid rgba(11, 92, 171, 0.15);
    border-top-color: #0B5CAB;

    border-radius: 50%;

    animation: feSpin 0.7s linear infinite;
}

/* Animation */
@keyframes feSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Result Card */
.fe-citation-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 8px 10px;
    border: 1px solid var(--wpex-table-cell-border-color);
}

#fe-citation-result {
	margin-bottom: 60px;
    display: block;
}

#fe-citation-result .fe-no-results-wrap {
	text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: #fff;
    border-radius: var(--wpex-input-border-radius);
    border: 1px solid var(--wpex-table-cell-border-color);
	box-shadow: rgba(0, 0, 0, 0.02) 0px 8px 10px;
}

.fe-no-results-wrap div.fe-no-results-icon {
  color: #2f6edb;
  font-size: 22px;
}

.fe-no-results-wrap h3.fe-no-results-title {
  margin: 8px 0px 10px;
  font-size: 18px;
  font-weight: 600;
}
}

/* Title */
.fe-citation-card h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

/* Info rows */
.fe-citation-card p {
    margin: 6px 0;
    font-size: 15px;
}

/* Status colors */
.fe-status-paid {
    background: #28a745;
}

.fe-status-unpaid {
    background: #dc3545;
}

.fe-status-pending {
    background: #ffc107;
    color: #333;
}

.fe-status-void {
    background: #6c757d;
}


/* =========================================
   PAGE
========================================= */

.fe-citation-detail {
    min-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* =========================================
   LAYOUT
========================================= */

.fe-citation-layout {
    display: flex;
    gap: 15px;
    align-items: flex-start;
	overflow: visible;
}

/* LEFT SIDE */
.fe-citation-main {
    flex: 1;
    min-width: 0;
}


/* =========================================
   CARDS
========================================= */

.fe-citation-info-card,
.fe-payment-card {
    background: #fff;
    border-radius: var(--wpex-input-border-radius);
    border: 1px solid var(--wpex-table-cell-border-color);
	box-shadow: 0 8px 10px rgba(0,0,0,0.02);
}

/* =========================================
   IMAGE
========================================= */

.fe-citation-image {
    overflow: hidden;
}

.fe-citation-image img {
    border-radius: var(--wpex-input-border-radius);
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* =========================================
   GRID CARD
========================================= */

.fe-citation-grid-card {
	background: #fff;
    border-radius: var(--wpex-input-border-radius);
    border: 1px solid var(--wpex-table-cell-border-color);
	margin-top: 20px;
    padding: 24px;
}

.fe-pay-method {
  font-weight: 600;
  margin-bottom: 10px;
}

/* =========================================
   INFO CARD
========================================= */

.fe-citation-info-card {
    padding: 20px;
}

/* =========================================
   HEADER
========================================= */

.fe-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.fe-back-link {
    font-size: 14px;
    color: #1d5fa7;
    font-weight: 600;
    cursor: pointer;
}

.fe-citation-top {
	font-size: 18px;
	font-weight: 600;
}

/* =========================================
   TITLE
========================================= */

.fe-citation-title-wrap {
    margin-bottom: 20px;
}

.fe-citation-title-wrap h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.fe-citation-subtitle {
    margin-top: 6px;
    color: #7b8794;
    font-size: 15px;
}

/* =========================================
   GRID
========================================= */

.fe-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.fe-detail-item {
    /*background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 16px;*/
}

.fe-detail-item label {
    display: block;
    font-weight: 400;
}

.fe-detail-item span {
    font-weight: 600;
}

.fe-detail-item.notes span {
	font-weight: 400;
}

.fe-violation-alert {
  color: #3d4b5c;
  background: #f3f8ff;
  border: 1px solid #d8e7ff;
  border-radius: var(--wpex-input-border-radius);
  padding: 12px 20px 12px 20px;
  margin-top: 20px;
}

.fe-violation-alert strong {
  color: #111;
  font-weight: 700;
}

.fe-violation-alert span {
  color: #2f6edb;
  padding: 0px 5px 0px 0px;
  font-size: 18px;
  position: relative;
  top: 1px;
}

/* =========================================
   Citation Grid
========================================= */

.fe-detail-item-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fe-grid-icon-left {
    width: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
	color: #00539e;
    bottom: 8px;
    position: relative
}

.fe-label-right {
    display: flex;
    flex-direction: column;
}

.fe-label-right label {
	font-weight: 400;
}

.fe-label-right span {
	font-weight: 600;
}

.fe-label-right .fe-license-plate {
	text-transform: uppercase;
}


/* =========================================
   STATUS
========================================= */

.fe-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.fe-status-paid {
    background: #e7f8ed;
    color: #1d7f42;
}

.fe-status-un-paid {
    background: #fff1f1;
    color: #d63638;
    border: 1px solid #f9d1d1;
}

.fe-status-pending {
    background: #fff7df;
    color: #946200;
}

.fe-status-void {
    background: #eef1f4;
    color: #5c6773;
}

/* =========================================
   PAYMENT SIDEBAR
========================================= */
.fe-payment-sidebar {
    width: 520px;
    min-width: 520px;
    position: relative;
}

.fe-payment-card {
	padding: 20px;
    width: 100%;
    transition: box-shadow .25s ease;
}

.fe-payment-sidebar .fe-payment-card h2 {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
	font-weight: 600;
}

.fe-payment-header {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--wpex-input-border-radius);
  border: 1px solid var(--wpex-table-cell-border-color);
}
.fe-payment-header h2 {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
	font-weight: 600;
}

.fe-amount {
    font-size: 30px;
    font-weight: 600;
}

.fe-payment-status-message {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* =========================================
   PAYMENT AREA
========================================= */

#payment-loader {
    background: #f8fafc;
    border: 1px solid #e4ebf2;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    color: #617080;
    font-weight: 500;
}

#payment-element {
	width: 100%;
}

#payment-element iframe {
    width: 100% !important;
}

/*
Payment summary
*/

.fe-payment-summary-card {
    margin-bottom: 25px;
}

.fe-amount-summary h2 {
    margin: 20px 0px 20px 0px !important;
    font-size: 18px;
    font-weight: 600;
}

.fe-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.fe-summary-label {
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.fe-summary-value {
    font-size: 15px;
    color: #1c1c1c;
    font-weight: 600;
}

.fe-pending {
    color: #d49121;
}

.fe-summary-divider {
    height: 1px;
    background: #ececec;
    margin: 20px 0;
}

.fe-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.fe-total-label {
    font-size: 20px;
    font-weight: 600;
}

.fe-total-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.fe-late-fee-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f3f8ff;
    border: 1px solid #d8e7ff;
    border-radius: var(--wpex-input-border-radius);
    padding: 12px 20px 12px 20px;
}

.fe-late-fee-icon {
    color: #2f6edb;
    font-size: 18px;
    margin-top: 1px;
}

.fe-late-fee-text {
    font-size: 15px;
    color: #3d4b5c;
}

.fe-late-fee-text strong {
    color: #111;
    font-weight: 700;
}

/*Payment header inf0 alert*/
.fe-late-warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8ef;
  border: 1px solid #f7e8cf;
  border-radius: var(--wpex-input-border-radius);
  padding: 12px 20px 12px 20px;
  margin-bottom: 25px;
}

.fe-late-warning-icon {
  color: #d49121;
  font-size: 18px;
  margin-top: 4px;
}

.fe-late-warning-content {
    flex: 1;
	color: #4f4f4f;
}

.fe-late-warning-title {
    font-weight: 600;
}

.fe-late-warning-text {
    font-size: 15px;
}

.fe-late-warning-text span {
    color: #d49121;
	font-weight: 600;
}

.fe-late-warning-text strong {
    color: #e59b1f;
    font-weight: 600;
}

.fe-status-late {
    background: #fff8ef;
    color: #d49121;
    border: 1px solid #f7e8cf;
}

.fe-late-active {
    color: #d63638;
    font-weight: 600;
}

/*count down bar*/
.fe-payment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.fe-payment-left {
    flex: 1;
}

.fe-amount-due {
    font-size: 15px;
    margin-bottom: 12px;
}

.fe-payment-date {
    color: #888;
    font-weight: 400;
}

.fe-amount-due span.fe-title-is-active {
	font-weight: 600;
}

.fe-amount-due span.fe-title-is-late {
	color: #d63638;
	font-weight: 600;
}

.fe-payment-right {
    flex-shrink: 0;
}

.fe-days-remaining {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-progress-ring {
    transform: rotate(-90deg);
}

.fe-progress-ring-bg {
    stroke: #ececec;
}

.fe-progress-ring-circle {
    transition:
        stroke-dashoffset 1.2s ease,
        stroke 0.4s ease;

    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.fe-days-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fe-days-content.is-late {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: 30px
}

.fe-days-content.is-active {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: 30px;
}

.fe-days-number {
    line-height: 1;
    margin-bottom: 0;
}

.fe-days-number span.remaining {
  font-size: 38px;
  font-weight: 600;
}

.fe-days-number span.late {
  font-size: 38px;
  font-weight: 600;
}

.fe-days-label {
    font-size: 15px;
    line-height: 1.3;
    color: #6a6a6a;
}

@media (max-width: 768px) {

    .fe-payment-top {
        flex-direction: column;

        align-items: flex-start;
    }

    .fe-payment-right {
        width: 100%;

        display: flex;

        justify-content: center;
    }

}

/* =========================================
   BUTTON
========================================= */

.fe-pay-btn {
    margin-top: 20px;	
}

.fe-pay-btn-icon {
   padding-right: 5px;
}

/* =========================================
   Payment Info
========================================= */
#payment-message {	
    text-align: center;
    margin-top: 10px;
}

.fe-payment-info {
    color: #444;
	font-size: 15px;
	text-align: center;
	margin-top: 10px;
}

.fe-payment-help {
	text-align: center;
	margin-top: 20px;
}


/* =========================================
   PAID STATE
========================================= */

.fe-payment.un-paid {
    padding: 18px;
    border-radius: 12px;
    background: #edf8f1;
    color: #2e7d32;
    font-weight: 600;
	text-align: center;
}

.fe-payment.paid {
    padding: 18px;
    border-radius: 12px;
    background: #edf8f1;
    color: #2e7d32;
    font-weight: 600;
	text-align: center;
}

.fe-payment.pending {
    padding: 18px;
    border-radius: 12px;
    background: #fff7df;
    color: #946200;
    font-weight: 600;
	text-align: center;
}

.fe-payment.void {
    padding: 18px;
    border-radius: 12px;
    background: #eef1f4;
    color: #5c6773;
    font-weight: 600;
	text-align: center;
}

.fe-payment-success {
  padding: 18px;
  border-radius: 12px;
  background: #edf8f1;
  color: #2e7d32;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  display: block;
}

.fe-payment-success-icon {
    font-size: 42px;
    color: #2e7d32;
    margin-bottom: 12px;
}

.fe-payment-success-title {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 6px;
}

.fe-payment-success-text {
    font-size: 15px;
    color: #000000;
}

.fe-paid-text {
    /*color: #2e7d32;*/
}

/*stripe checkout expired session popup*/
#fe-session-expired-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-session-expired-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
}

.fe-session-expired-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: var(--wpex-input-border-radius);
    padding: 40px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
}

.fe-session-expired-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgb(255, 248, 239);
	border: 1px solid rgb(247, 232, 207);
    color: rgb(212, 145, 33);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.fe-session-expired-content h3 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.fe-session-expired-content p {
    color: #4f4f4f;
	margin-bottom: 15px;
    line-height: 1.6;
}

.fe-session-expired-content p.fe-session-note {
    color: #e59b1f;
    font-size: 18px;
    font-weight: 600;
}

#fe-refresh-session {
    margin-top: 10px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1024px) {

    .fe-citation-layout {
        flex-direction: column;
    }

    .fe-payment-sidebar {
        width: 100%;
        min-width: 100%;
    }

}

@media (max-width: 768px) {

    .fe-result-grid {
       gap: 15px;
       margin-bottom: 20px;
    }
	.fe-citation-result-card {
       margin-top: 25px;
       padding: 20px;
    }
	.fe-citation-detail {
        padding: 0 15px;
    }

    .fe-detail-grid {
        grid-template-columns: 1fr;
    }

    .fe-citation-image img {
        height: 320px;
    }

    .fe-citation-title-wrap h2 {
        font-size: 24px;
    }

    .fe-amount {
        font-size: 34px;
    }
	
/*--------------------------------------
search results
--------------------------------------*/

@media (max-width: 991px) {

    .fe-citation-result-card {
        padding: 22px;
    }

    .fe-result-main {
        flex-direction: column;
        gap: 24px;
    }

    .fe-src-result-left {
        flex-direction: column;
        gap: 18px;
    }

    .fe-src-result-thumb {
        width: 100%;
        height: 220px;
    }

    .fe-src-result-details {
        gap: 24px;
        flex-wrap: wrap;
    }

    .fe-src-result-right {
        width: 100%;
        min-width: 100%;
        align-items: flex-start;
    }

    .fe-src-result-price {
        text-align: left;
    }

}


/* Mobile */
@media (max-width: 767px) {
	
	#fe-citation-form {
        grid-template-columns: 1fr;
    }

    .fe-citation-result-card {
        padding: 18px;
        border-radius: 14px;
    }

    .fe-result-main {
        gap: 20px;
    }

    .fe-src-result-left {
        gap: 16px;
    }

    .fe-src-result-thumb {
        width: 100%;
        height: 170px;
        border-radius: 12px;
    }

    .fe-src-result-content h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .fe-src-result-meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
        font-size: 14px;
    }

    .fe-src-result-details {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .fe-src-detail-item {
        width: calc(50% - 10px);
        gap: 10px;
    }

    .fe-src-detail-item i {
        font-size: 18px;
        margin-top: 4px;
    }

    .fe-src-detail-item label {
        font-size: 13px;
    }

    .fe-src-detail-item strong {
        font-size: 14px;
        line-height: 1.4;
        display: block;
    }

    .fe-src-result-right {
        width: 100%;
        align-items: stretch;
        gap: 18px;
    }

    .fe-src-result-price {
        width: 100%;
        text-align: left;
    }

    .fe-src-result-price strong {
        font-size: 32px;
        line-height: 1;
    }

}


/* Small Mobile */
@media (max-width: 480px) {

    .fe-citation-result-card {
        padding: 16px;
    }

    .fe-src-result-thumb {
        height: 145px;
    }

    .fe-src-result-content h3 {
        font-size: 18px;
    }

    .fe-src-result-details {
        flex-direction: column;
        gap: 16px;
    }

    .fe-src-detail-item {
        width: 100%;
    }

    .fe-src-result-price strong {
        font-size: 28px;
    }

}

}
