<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===== FloatEO Module Styles ===== */

/* Main Container */
div.eo-b .editFormBody {
    display: flex;
    flex-direction: row;
    height: 100%;
    padding-bottom: 4.24rem;
    overflow: hidden;
}

div.eo-b form.ajax2{
    height: 100%;
}

/* Column Layouts */
.eo-b .colline-1{
    width: calc(100% - 40px);
}

.eo-b .colline-2{
    width: calc(100% / 2 - 40px);
}

.eo-b .colline-4{
    width: calc(100% / 4 - 40px);
}

.eo-b .colline-3{
    width: calc(100% / 3 - 40px);
}

.eo-b .colline-6-1{
    width: calc((100% / 6) * 1 - 40px);
}

.eo-b .colline-6-2{
    width: calc((100% / 6) * 2 - 40px);
}

.eo-b .colline-6-3{
    width: calc((100% / 6) * 3 - 40px);
}

.eo-b .colline-6-4{
    width: calc((100% / 6) * 4 - 40px);
}

/* Tabs Navigation */
.eo-b .tabs {
    flex-direction: column !important;
    display: flex !important;
    flex: 0 0 180px !important;
    min-width: 160px !important;
    border-right: 1px solid #ddd !important;
    height: 100% !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    background: #ffffff;
}

.eo-b .tabs-body {
    display: flex !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    flex-direction: column;
    padding: 24px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    background: #fdfdfd8a;
}

.eo-b .tabs .tab {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0;
    text-align: left;
}

.eo-b .tabs .tab a {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    padding: 0 20px;
    color: #333333d4;
}

.eo-b .tabs .tab a.active{
    border-right: 2px solid #9bd753;
    background: none !important;
    color: #333333e0 !important;
    font-weight: bold;
}

.eo-b .tabs .tab a:hover {
    color: #62b300;
    background: none !important;
}

/* Form Elements */
.eo-b .switch label .lever{
    margin: 0px 10px 0 0;
}

.eo-b .colblock { 
    background: #fdfdfd; 
    border: 1px solid #f4f4f4; 
    border-radius: 2px; 
    padding: 3px 14px 10px; 
}

.eo-b .t-border{
    display: none;
}

/* Submit Block */
.eo-b .bc_submitblock { 
    padding: 14px 16px; 
    background: #ffffff; 
    font-size: 0; 
    height: auto;
    border-radius: var(--border-radius-bottom);
}

.eo-b .bc_submitblock .result { 
    position: absolute;
    bottom: 11%;
    left: 32%;
}

.eo-b .okText{
    background: #71c70a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
}

/* Submit Buttons */
.eo-b .bc_submitblock .btn-strt { 
    overflow: hidden;
    height: 40px;
    border-radius: 20px;
    position: relative;
    background: none;
    border: 1px solid var(--color-header);
}

.eo-b .bc_submitblock .btn-strt:hover {
    background: var(--color-header);
}

.eo-b .bc_submitblock .btn-strt input {
    border: 0;
    text-transform: uppercase;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    font-size: 11px !important;
    color: var(--color-header) !important;
    line-height: 0 !important;
    letter-spacing: 0.01em !important;
    font-family: 'Noto Sans', sans-serif !important;
    padding: 20px 24px;
    width: 100%;
}

.eo-b .bc_submitblock .btn-strt input:hover {
    color: white !important;
}

/* Check Object */
.eo-b .check-obj { 
    font-size: 14px; 
    display: inline-block; 
    vertical-align: top; 
    margin-left: 20px; 
    height: 40px; 
    align-content:center;
}

.eo-b .check-obj .switch { 
    padding-top: 0;
    height: 100%;
    align-content: center;
}

/* Alternative Submit Button */
.eo-b .bc_submitblock .btn-strt-a { 
    float: right; 
    overflow: hidden; 
    border-radius: 20px; 
    background: transparent; 
    border: 1px solid #D8DBDE; 
    transition: 0.1s; 
    margin-left: 12px;
}

.eo-b .bc_submitblock .btn-strt-a:hover { 
    background: #d62b2b; 
    border-color: #d62b2b; 
}

.eo-b .bc_submitblock .btn-strt-a:hover span { 
    color: white; 
}

.eo-b .bc_submitblock a.btn-strt-a span { 
    border: 0; 
    text-transform: uppercase; 
    -webkit-box-shadow: none; 
    -moz-box-shadow: none; 
    box-shadow: none; 
    background: transparent; 
    font-size: 11px; 
    letter-spacing: 0.02em; 
    padding: 0 37px 0 39px; 
    line-height: 37px; 
    color: rgba(61, 64, 68, 0.77); 
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 780px)  {
    .eo-b .tabs{
        flex: 0 0 54px !important;
        width: 100% !important;
        overflow-x: auto;
        flex-direction: row !important;
    }

    div.eo-b .editFormBody{
        flex-direction: column;
        padding: 0;
        height: auto;
    }

    .eo-b .multi-inp{
        width: 32%;
    }

    .eo-b .bc_submitblock{
        flex-direction: column;
        height: fit-content;
        padding: 0;
        display: flex;
        position: relative;
        padding: 10px 20px;
        gap: 10px;
    }

    .eo-b .tabs .tab a.active{
        border-right: none;
        /* border-bottom: 2px solid #71c70a; */
    }

    .eo-b #tab_vars .tabs-more{
        padding: 0px 16px !important;
    }

    div.eo-b form.ajax2{
        overflow-y: auto;
        border-radius: var(--border-radius-bottom);
    }

    .eo-b .tabs-body{
        overflow-y: hidden;
    }

    .eo-b .bc_submitblock .btn-strt-a{
        margin-left: 0px !important;
    }
    
    .eo-b #formcontent { 
        background: #FDFDFD; 
        height: 100%;
    }
    
    #formcontent &gt; div.add-slide-2 &gt; div &gt; div.add-s2-body &gt; div.bc_submitblock{
        position: absolute;
    }
}

/* ===== MODALS ADD SUBDIVISION ===== */
.eo-b .add-slide-1 input[type=radio] { 
    display: none; 
}

.eo-b .add-slide-1 label { 
    width: 33.333%; 
    height: 121px; 
    display: inline-block; 
    vertical-align: top; 
    position: relative; 
    border-bottom: 1px solid #E4ECEE; 
    text-align: center; 
    cursor: pointer; 
}

.eo-b .add-slide-1 label:not(:nth-child(3n)) { 
    border-right: 1px solid #E4ECEE; 
    width: calc(33.333% - 1px); 
}

.eo-b .add-slide-1 label .add-slide-icon{ 
    display: inline-block; 
    width: 30px; 
    height: 28px; 
    margin-top: 31px; 
    position: relative;
    background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -265px -2px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2001 {
    background-position: -302px -2px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2003 {
    background-position: -341px -2px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2010 {
    background-position: -302px -37px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2012 {
    background-position: -338px -36px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2009 {
    background-position: -264px -36px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2020 {
    background-position: -264px -73px;
}

.eo-b .add-slide-1 label .add-slide-icon.add-si-2030 {
    background-position: -301px -72px;
}

.eo-b .add-slide-1 label .add-slide-name { 
    color: #92999f; 
    margin-top: 10px; 
    position: relative; 
    font-size: 12px; 
} 

.eo-b #formcontent { 
    background: #FDFDFD; 
}

.eo-b .add-slide-1 label:before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    transition: all 0.1s; 
}

.eo-b .add-slide-1 label:hover:before { 
    background: #fff; 
    box-shadow: 0px 3px 20px 12px rgba(229, 234, 242, 0.32); 
    left: -1px; 
    top: -1px; 
    width: calc(100% + 2px); 
    height: calc(100% + 2px); 
}

.eo-b .add-slide-1 label:hover { 
    z-index: 1; 
    border-color: transparent; 
}

.eo-b .add-slide-1 label.slideid-2073 { 
    width: 100%; 
}

.eo-b .add-slide-1 { 
    overflow-x: hidden; 
}

/* Slide 2 */
.eo-b .add-slide-2 {
    display: none;
}

.eo-b .add-slide-2 .add-s2-left { 
    display: inline-flex; 
    vertical-align: top; 
    width: 40%; 
    margin-bottom: 11px; 
    justify-items: center;
    justify-content: center;
    align-items: center;
}

.eo-b .add-slide-2 .add-s2-right { 
    display: inline-block; 
    vertical-align: top; 
    width: 60%; 
    font-size: 14px; 
}

.eo-b .add-slide-2 .add-s2-body { 
    font-size: 0; 
}

.eo-b .add-slide-2 .add-s2-file { 
    width: 158px; 
    border: 1px dashed #E0EAEB; 
    height: 172px; 
    text-align: center; 
    overflow: hidden;
    display: block;
}

.eo-b .add-slide-2 .add-s2-line:first-of-type { 
    margin-bottom: 37px; 
}

.eo-b .add-slide-2 .add-s2-line:nth-child(2) { 
    margin-bottom: 33px; 
}

.eo-b .add-slide-2 .add-s2-line .switch { 
    padding-top: 2px; 
}

.eo-b .add-slide-2 .add-s2-btn { 
    width: 40%; 
    margin-right: 5%; 
}

.eo-b .add-slide-2 .add-s2-btn-white { 
    width: 55%; 
}

.eo-b .add-slide-2 .add-s2-bottom&gt;*:last-child { 
    margin: 0; 
}

/* Buttons */
.add-s2-btn, .add-s2-btn-white { 
    height: 44px; 
    display: inline-block;
    margin-right: 13px;
    text-decoration: none;
}

.add-s2-btn input, a.add-s2-btn span,
.add-s2-btn-white input, a.add-s2-btn-white span { 
    display: block; 
    height: 100%; 
    width: 100%;
    line-height: 43px; 
    border-radius: 24px; 
    font-size: 13px; 
    text-transform: uppercase; 
    transition: 0.2s;
    padding: 0 44px 0;
    font-family: 'Noto Sans', sans-serif !important;
}

.add-s2-btn input, a.add-s2-btn span { 
    color: #fff; 
    font-weight: bold;
}

.add-s2-btn-white input, a.add-s2-btn-white span { 
    border: 1px solid #D7DBDD; 
    background: transparent; 
    color: #a2a7ae; 
    font-size: 12px; 
}

.add-s2-btn-white input:hover, a.add-s2-btn-white:hover a  { 
    background: #d7dbdd; 
    color: #474f5b; 
}

/* File Upload */
.add-s2-file input {
    display: none;
}

label.add-s2-file {
    cursor: pointer;
}

.add-preview-photo {
    height: 100%;
    width: 100%; 
    position: relative; 
    background: rgba(243, 243, 243, 0);
    display: none;
}

.add-preview-photo img { 
    position: absolute; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    top: 0; 
    margin: auto; 
    max-width: 100%; 
    max-height: 100%; 
}

.add-s2-file.active .add-preview-photo { 
    display: block; 
}

.add-s2-text:before { 
    content: ''; 
    height: 41px; 
    width: 41px; 
    display: block; 
    background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -197px -66px; 
    margin: 38px auto 12px; 
}

.add-s2-text { 
    font-size: 11px; 
    color: rgba(112, 116, 120, 0.5); 
    width: 100px; 
    margin: 0 auto; 
    line-height: 15px; 
}

.add-s2-file.active .add-s2-text{
    display: none;
}

/* Warnings and Results */
.eo-b .add-slide-2 .warnText { 
    background: #ffc8c4; 
}

.eo-b .add-slide-2 .result {
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
}

/* ===== END MODALS ADD SUBDIVISION ===== */


/**** MODALS ORDER ****/
.eo-b .print-order { text-align:right; }
.eo-b a.oh-print.bc-btn-green { text-decoration: none; height: 34px; padding: 0 19px 0px 45px; line-height: 30px; border-radius: 17px; position: relative; }
.eo-b a.oh-print:before { content: ''; position: absolute; left: 18px; top: 9px; margin: auto; height: 14px; width: 17px; background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -80px -51px; }
.eo-b a.oh-print:hover { color: #fff; }
.eo-b .ob-left { padding: 20px 20px; float: left; width: 60%; }
#order-body &gt; div.ob-left &gt; div &gt; div.ob-price.cb{

}
.obp-rigth{
    float: right;
    width: 40%;
}

.eo-b .ob-name { font-size: 24px; margin: 5px 0 17px 0; padding-left: 10px; }
.eo-b .ob-name span { font-size: 15px; color: #343434; }
.eo-b .ob-rigth { float: right; width: 40%; background: #FAFAFA; padding: 20px 20px;}
.eo-b section#order-body { display: flex; }
.eo-b .obi-second { display: none; }
.eo-b .ob-input { border-bottom: 1px solid #E4ECEE; font-size: 0; min-height: 37px; }
.eo-b .obi-name { width: 36%; margin: 8px 0; padding: 0 13px; }
.eo-b .ob-input&gt;* { display: inline-block; vertical-align: top; font-size: 13px; }
.eo-b .obi-data { width: 55%; } .obi-text { padding: 8px 5px 10px; }
.eo-b .ob-input.ob-type-title .obi-data { display: none; }
.eo-b .ob-input.ob-type-title .obi-name { width: auto; color: #4f4f4f; font-size: 13px; display: block; margin: 0; padding: 5px 10px; }
.eo-b .ob-input.ob-type-title { min-height: 28px; background: rgba(231, 231, 231, 0.51); position: relative; margin-top: -1px; border-bottom: 1px solid rgba(220, 221, 223, 0.52); }
.eo-b .ob-inputs { border-top: 1px solid #E4ECEE; }
.eo-b .obp-left { float: left; width: 100%; margin-top: 20px; }
.eo-b .obp-rigth { float: right; width: 40%; margin-top: 20px; }
.eo-b .obp-total { display: table; padding-left: 13px; }
.eo-b .obp-total&gt;* { display: table-cell; white-space: nowrap;}
.eo-b .obi-name, .obp-total-text, .bor_line:after, .obs-name { color: #b6b6b6; border-color: rgba(182, 182, 182, 0.57); }
.eo-b .obp-total-text { padding-right: 5px; }
.obp-total-price { padding-left: 4px; }
.eo-b .obp-r-text { font-size: 16px; } .obp-r-price { font-size: 22px; }
.eo-b .opb-result { line-height: 33px; padding-left: 10%; text-align: end;}
.eo-b .obp-total-price, .obp-r-text { color: #777A7D; }
.eo-b .ob-table thead { background: #f7f7f7; }
.eo-b table.ob-table { width: 100%; font-size: 13px; }
.eo-b table.ob-table th { font-weight: normal; color: #7d7d7d; padding: 4px 12px 6px; white-space: nowrap; }
.eo-b td.ob-tableCount input { width: 43px; border-bottom: 1px solid #F2EAF0; text-align: center; height: 26px; }
.eo-b td.ob-tablePhoto &gt; div { border: 1px solid #F1ECF4; height: 62px; width: 62px; }
.eo-b .ob-tablePhoto { width: 62px; }
.eo-b table.ob-table tbody tr { border-bottom: 1px dotted #E4ECEE; margin: 0 !important; }
.eo-b table.ob-table td { padding: 11px 12px 11px; }
.eo-b .ob-com-title { font-size: 18px; padding: 30px 0 10px 12px; }
.eo-b .obi-edit { width: 8%; height: 36px; position: relative; }
.eo-b a.obi-a-edit, a.obi-a-save { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.eo-b a.obi-a-edit:before, a.obi-a-save:before { content: ''; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; height: 14px; width: 14px; background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -102px -51px; }
.eo-b .ob-input.active .obi-second { display: block !important; }
.eo-b .ob-input.active .obi-first { display: none; }
.eo-b a.obi-a-save:before { background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -104px -71px; height: 10px; width: 15px; }
.eo-b .obi-data input,
.eo-b .obi-data textarea { font-size: 13px; font-family: 'Noto Sans', sans-serif !important; background: #ffffff; border: 1px solid #ced1d6; margin: 2px 0 2px 0; padding: 0 4px 0; line-height: 17px; height: 32px; min-width: 90%; overflow: hidden; width: 90%; color: #1b1b29; }
.eo-b .obi-data .obi-second, .eo-b .obi-data .obi-second { line-height: 0; }
.eo-b .obi-data textarea { padding: 6px 4px; height: auto;}
.eo-b .ob-status { font-size: 0; padding-bottom: 29px; }
.eo-b .ob-status-item { display: inline-block; width: 50%; font-size: 13px; }
.eo-b .ob-status-item .ns.nice-select { font-size: 13px; }
.eo-b .ob-operator textarea { width: 100%; max-width: 100%; min-width: 100%; height: 300px; min-height: 100px; font-size: 13px; font-family: 'Noto Sans', sans-serif !important; padding: 15px 17px; margin-bottom: 20px; border: 1px solid #e7e7e7;}
.eo-b .ob-operator input[type='submit'] { background: #71C70A; width: 100%; border-radius: 28px; height: 48px; color: #fff; text-transform: uppercase; font-weight: bold; font-size: 13px; letter-spacing: 0.03em; transition: 0.2s; border: 1px solid #fff; }
.eo-b .ob-operator input[type='submit']:hover {border-color: #efefef; }
.eo-b .ns.nice-select.statusOplaty .current span { padding-left: 40px; }
.eo-b .ns.nice-select.statusOplaty .current span:before { left: 0; }
.eo-b .ns.nice-select.statusOplaty { width: 140px; }
.eo-b .ns.nice-select.statusOplaty .option { position: relative; padding: 0 10px 0 37px; }
.eo-b .ns.nice-select.statusOplaty li:before { left: 14px; }
.eo-b .ob-status-item .ns.nice-select.shopOrderStatus { width: 108px; }
.eo-b td.ob-tableName { vertical-align: top; max-width: 135px; }
.eo-b .ob-sun-name { margin-bottom: 3px; }
.eo-b .ob-sun-name a { color: #2588b4; }
.eo-b .ob-sun-art { color: #b8b8b8; margin-bottom: 3px; }
.eo-b .ob-sun-price { color: #515357; }
.eo-b td.ob-tableSum { font-size: 14px; }
/**** END MODALS ORDER ****/

.eo-b .ns.nice-select.statusOplaty li:before,
.eo-b .ns.nice-select.statusOplaty .current span:before { content: ''; position: absolute; left: 10px; bottom: 0; top: 0; margin: auto; width: 15px; height: 2px; font-size: 0; background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -82px -74px; }
.eo-b .ns.nice-select.statusOplaty  .statusOplaty-2:before {width: 15px !important;height: 10px !important;background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -104px -71px !important;}
.eo-b .ns.nice-select.statusOplaty  .statusOplaty-3:before { width: 15px !important; height: 12px !important; background: url(/bc/modules/bitcat/img/admin-elements-v3.png) -122px -72px !important; }
.eo-b .ns.nice-select.statusOplaty span.current,
.eo-b .ns.nice-select.statusOplaty span.current span { height: 100%; width: 100%; display: block; }
.bc_contentbody table.table-order .ns.nice-select.statusOplaty:after,
.eo-b .ns.nice-select.statusOplaty:after{right: 8px; }
.bc_contentbody tr .t-second,.bc_contentbody tr:hover .t-first {opacity: 0;}

#tab_vars .tabs-more{
    background: #ffffff;
    position: relative;
    display: flex !important;
    padding: 0px 34px;
    width: 100%;
    align-items: center;
    z-index: 1;
    flex-direction: row !important;
    height: 40px !important;
}

.tabs-more-tab a{
    font-size: 12px;
    padding: 14px 14px 0;
    text-decoration: none;
}

.tabs-more-tab a.active{
    font-size: 12px;
    color: #333333;
    font-weight: 600;
    padding: 14px 14px 0;
    padding-bottom: 11px;
    border-bottom: 2px solid #9bd753;
}



/* city choose */

.eo-b .city-choose-container{
    position: relative;
    margin: 0 0 10px 20px;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.eo-container #city-search-input {
    width: calc(100% - 52px);
    padding: 10px 14px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin: 20px 0 15px;
    font-family: 'Noto Sans', sans-serif;
    color: #3a3a3a;
    font-size: 14px;
    transition: border-color 0.2s ease;
    box-sizing: content-box;
    background: #fdfdfd;
}

.eo-container #city-search-input:focus {
    outline: none;
    border: 1px solid #636363e3;
}

.eo-container #city-search-input::placeholder {
    color: #9b9b9b;
    font-family: 'Noto Sans';
}

.eo-b #city-list-container{
    margin-left: 10px;
    font-size: 14px;
    column-count: 3;
    column-gap: 30px;
    width: 100%;
    column-fill: balance;
}
.eo-b .modal_city_col ul{
    padding: 0px 10px 10px 20px;
}

@media screen and (max-width: 1400px) {
    
    .eo-b #city-list-container {
        column-count: 2;
        column-gap: 25px;
    }
    
    .eo-b .modal_city_col ul {
        padding: 0 0 15px 25px;
    }
}

@media screen and (max-width: 768px) {
    .eo-b #city-list-container {
        column-count: 1;
    }

    .eo-b #popular-cities-section a{
        font-size: 16px !important;
    }
    
    .eo-b .popular-cities-list {
        grid-template-columns: 1fr !important;
        gap: 0.8rem 40px !important;
    }
    .eo-b #city-list-container{
        font-size: 16px !important;
        margin: 0 !important;

    }
    .modal_city_col ul li{
        padding-bottom: 10px !important;
    }
    .eo-b #city-show-more{
        font-size: 16px !important;
    }
}

.eo-b #city-list-container a{
    color: #494949f1;
    text-decoration: none;
}
.eo-b #city-list-container a:hover{
    color: #333 !important;
    font-weight: 600;
}

.eo-b #popular-cities-section{
    margin-left: 10px;
}
.eo-b #popular-cities-section a{
    font-size: 14px;
    color: #494949f1;
    text-decoration: none;
}
.eo-b #popular-cities-section a:hover{
    color: #333 !important;
    font-weight: 600;
}
.eo-b #city-list-container .modal_city_col{
    width: 100%;
}
.eo-b #city-list-container .modal_city_col .let {
    font-weight: 600;
    color: #494949cf;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    left: 0;
}

.eo-b #city-show-more{
    background: none;
    border: none;
    font-size: 14px;
    border-bottom: 1px dotted;
    font-weight: 500;
    color: #494949f1;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
    margin: 10px 0px;
}
.eo-b #city-show-more:hover{
    color: #333 !important;
    font-weight: 600;
}

.eo-b #popular-cities {
    padding: 14px 0px 0px 0px;
}

.eo-b #popular-cities-section &gt; div{
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.eo-b .popular-cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2px 60px;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 20px;
}

.eo-b .popular-cities-list li {
    cursor: pointer;
}

.eo-b .popular-cities-list li:hover {
    color: #007bff;
}

.eo-b #popular-cities-section h3 {
    margin: 15px 0 10px 0;
}

/* END city choose */




</pre></body></html>