:root {
    --text-grey-color: #222222;
    --input-border-color: #b3b3b3;
    --input-text-color: #5C5F62;
    --primary-color: #046bd2;
    --thead-color: #565656;
    --white-color: #ffffff;
    --black-color: #000000;
    --action-btn-color: #acb5d2;
    --green-color: #4ECA8A;
    --grey-border: #efefef;
    --red-color: #f55f67;
    --sky-blue: #cde3f1;
    --green-dark-color: #049aa9;
    --radio-check-bg: #2e6ddc;
    --outer-main-grey-bg: #F3F3F3;
    --btn-white-color: #ffffff;
    --inner-main-grey-bg: #f1f4f6;
    --dark-green-color: #009688;
    --btn-primary-hover: #4e6c9d;
    --lighter-gray-color: #f1f1f1;
    --text-color:#1a1a1a;
    --22-c-55-e: rgba(1, 75, 64, 1);
    --bg-table: #fbfbfb;
    --light-grey-color:#f5f5f5;
    --background-color-bg:#b6bee00f;
    --table-head-color:#f6f8fbcc;
    --table-border-color:#f6f6f6;
    --dashboard-button-color:#ecf3ff;
    --status-live:rgba(175, 254, 191, 1);
    --status-inactive:rgba(237, 184, 184, 1);
    --scroll-bar-color-top:#f1f1f1;
    --scroll-bar-color:#9c9c9c;
    --chart-stroke-color:rgba(0, 0, 0, 0.2);
    --ct-label-color:rgba(0, 0, 0, 0.4);
    --dark-badge-theme:#26c6da;
    --gradent-skeleton:linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));

}

.theme-dark {
    --text-grey-color: #efefef;
    --input-border-color: #353a53;
    --input-text-color: #5C5F62;
    --primary-color: #efefef;
    --thead-color: #565656;
    --white-color: #1d3441;
    --black-color: #000000;
    --action-btn-color: #acb5d2;
    --green-color: #4ECA8A;
    --grey-border: #353a53;
    --red-color: #f55f67;
    --sky-blue: #cde3f1;
    --green-dark-color: #049aa9;
    --radio-check-bg: #2e6ddc;
    --outer-main-grey-bg: #F3F3F3;
    --btn-white-color: #ffffff;
    --inner-main-grey-bg: #f1f4f6;
    --dark-green-color: #009688;
    --btn-primary-hover: #4e6c9d;
    --lighter-gray-color: #f1f1f1;
    --text-color:#efefef;
    --22-c-55-e: #22c55e;
    --bg-table: transparent;
    --light-grey-color:#1e1e2c;
    --black-color:#fff;
    /*--background-color-bg:linear-gradient(45deg, #14222e 40%, #103343);*/
    --background-color-bg:url('/assets/images/bg-image.png?v1.3');
    --table-head-color:#224250;
    --table-border-color:#37384000;
    --dashboard-button-color:#fd9c61;
    --status-live:transparent;
    --input-border-color:#464652;
    --scroll-bar-color-top: #000;
    --scroll-bar-color:#999;
    --chart-stroke-color:rgb(255 255 255 / 20%);
    --ct-label-color:rgba(255, 255, 255, 1);
    --dark-badge-theme:#c7c7c7;
    --border-bottom-color:#22424f;
     --gradent-skeleton:linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(20 34 45 / 46%), rgb(0 0 0 / 0%));
}

body {
    color: var(--text-grey-color);
    font-family: 'Public Sans';
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

::placeholder {
  color: var(--text-color);
}

.table [class*='bg-'] {
    color: var(--white-color);
}

::-ms-input-placeholder {
  color: var(--text-color);
}

.loader-wrapper {
    background-color: #333333;
}
a:not([href]):not([tabindex]) {
    color:var(--primary-color);
}

.btn-border-none {
    color: var(--primary-color);
        display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    padding: 0px;
}

.card{
    background:var(--white-color);
}

.page-item.active .page-link{
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link {
    font-size: 16px;
}

.form-control {
    height: 40px;
    border-radius: 8px !important;
    font-size: 0.9rem;
}

/*========= custom scroll bar css here ===========*/

*::-webkit-scrollbar {
    width: 6px;
}

* {
    scrollbar-color: var(--scroll-bar-color);
}

*::-webkit-scrollbar-track {
    background:var(--scroll-bar-color-top);
}

*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb:hover {
    background: var(--scroll-bar-color);
}

/** a{*/
/*    color:var(--primary-color) !important;*/
/*}*/

.ct-grid {
    stroke:var(--chart-stroke-color) !important;
}

.ct-label {
    color: var(--ct-label-color) !important;
}

.table.table-bordered tr td a{
    color:var(--primary-color);
}

.default-according .card .btn-link{
    color:var(--text-color);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    color:var(--text-color);
}

.bg-secondary {
    background-color: var(--dark-badge-theme) !important;
    text-transform:uppercase;
}

.btn.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color:  var(--white-color);
        font-weight: 600;
    border-radius: 8px;
    height: 40px;
    line-height: 27px;
}

.badge {
    padding: 0.60em 1em;
}

.card-body .stat-widget-dashboard .d-flex {
    margin: 0;
}
.page-main-header .main-header-left .logo-wrapper img {
    height: auto !important;
    margin-top: 0px;
    width:160px;
   
}
.page-wrapper .page-body-wrapper .page-body {
    background: var(--background-color-bg) no-repeat;
    background-size: cover;
}
.page-wrapper .page-main-header, .page-main-header .main-header-left{
    background:var(--white-color);
}
.page-wrapper .page-main-header{
    box-shadow:none;
}
.theme-dark .page-main-header .main-header-left .logo-wrapper a .image-light{
        display: block;
}
.theme-dark .page-main-header .main-header-left .logo-wrapper a .image-dark{
    display:none;
}
.page-main-header .main-header-right {    box-shadow: 0 4px 24px 0 rgba(20, 25, 38, .05) !important;}

.Search_box .form-control-plaintext {
   border: 1px solid var(--input-border-color);
        outline: 0;
    box-shadow: none;
    width: 100%;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    background-color: transparent;
    border-radius: 8px;
    color: var(--text-grey-color);
    overflow: hidden;
    margin-bottom: 0;
}
.Search_box .search-form .form-group {
    width: 100%;
}
.Search_box .search-form  {
    width: 100%;
}

.page-body .card {
    border-radius: 14px;
}
.page-wrapper .page-body-wrapper .page-header .row h3 {
    font-size: 30px;}
.page-wrapper .page-body-wrapper .page-header .row h3 small {
    font-size: 14px;
    margin-top: 13px;}
.Search_box {
    width: 100%;
    max-width: 780px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-item h6.m-0.txt-dark.f-16 {
    display: none;
}
.authentication-main .auth-innerleft .logo-login {
    width: 100%;
}
.authentication-box h4 {
    color: #000000;
    font-size: 33px;
}
.authentication-main .auth-innerright {
    background: #f2f7fb;}
.stat-widget-dashboard span {
    color: #000000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
}

.card .card-header > span{display:none;}
.image.type-white {
    display: flex;
}
.body-title.number {
    font-size: 17px;
    font-weight: 700;
}
.box-icon-trending {
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-icon-trending.up svg {
    font-size: 12px;
    width: 26px;     margin-right: 9px;
}
.image.type-white .image {
    width: 52px;
    height: 52px;
    position: relative;
}
.stat-widget-dashboard .image i {
    font-size: 20px;
    color: var(--white-color);
    position: absolute;
    left: 0%;
    top: -8%;
    bottom: 0%;
    display: flex;
    align-items: center;
    right: 0%;
    justify-content: center;
}

.table_box .user-status table tbody tr td {
    vertical-align: middle;
    border: 1px solid #eee;
}
.table_box .card-header {
    border-bottom: 0px solid #fff !important;
}
.table_box .user-status table thead tr th {
    padding: 6px 6px;
}
.table_box ul.list-unstyled.card-option {
    display: none;
}

.header-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(203, 213, 225, .3);
}
.wg-table.table-top-product>* {
    min-width: 526px;
}
.product-item, .product-item .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item .image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    padding: 5px;
    border-radius: 10px;
    background: #eff4f8;
}
.product-item, .product-item .image {
    display: flex
;
    align-items: center;
    justify-content: center;
}
.product-item {
    gap: 15px;
    transition: all .3s ease;
    padding-right: 5px;
}
.support-ticket table tr td:nth-child(2) {
    width: 35%;
}

.table_box .card-body {
    padding: 0px 10px !important; border-radius: 0px;     box-shadow: 0 4px 0px 0px rgba(20, 25, 38, .05);
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu > li {
    border-bottom: 1px solid var(--grey-border);
    padding:0px 0px;
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu{
    padding:0px !important;
}

.page-sidebar div > nav{
    max-height: calc(100vh - 80px);
    overflow: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label, .checkbox label {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: .6px;
    margin-bottom: .5rem;
    font-weight: 600;
    text-transform: capitalize;
}
.card-body .stat-widget-dashboard .d-flex {
    margin: 0;
}

.stat-widget-dashboard .image .dashboard-icon svg {
    fill: var(--primary-color);
}

.card .card-header ,.card .card-body {
    padding: 20px;
}
  
.stretch-card .table thead th, .searech_store_pr .table thead th, .store-list .item-listing-wrapper .table thead th, .home-listing table thead td {
    font-size: 14px !important;
    vertical-align: middle;
}

table.table th {
    background: var(--table-head-color) !important;
}

table.table.table-striped tbody tr td, table.table td {
    font-size: 13px !important;
    color: var(--text-grey-color) !important;
    font-weight: 500;
}
table.table td, .table th {
    font-size: 13px !important;
    line-height: 18px;
    letter-spacing: .5px;
}

table.table thead th {
    color: var(--text-color) !important;
    font-weight: 600 !important;
}

.stretch-card .table thead th, .searech_store_pr .table thead th, .store-list .item-listing-wrapper .table thead th {
    background-color: var(--primary-color);
    border-bottom: 0 !important;
    font-size: 13px !important;
    letter-spacing: .6px;
    color: var(--white-color);
    padding: 16px 12px !important;
}
table.table td, th, table.table .permissionCheckboxRow td, #ajax_wrapper_user_listing table.table.listing-customer tbody td, .sorting-list-categories .categories-name {
    padding: 10px 0.75rem !important;
        line-height: 50px;
            font-weight: 600;
                line-height: 28px;
}

.page-wrapper .page-body-wrapper.sidebar-icon .sidebar-header > span {
    display: block !important;
    font-size: 13px;
    margin-top: 2px;
    color: var(--text-color);
    letter-spacing: 0;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu .sidebar-header > i {
    font-size: 20px;
    margin: 0;
    color: var(--text-color);
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu > li.active a i, .page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu > li.active a span{
    color:var(--primary-color) ;
}

.account-list-table span.status-store {
    background: #ff6548;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
}

.account-list-table span.text-success.active {
    background: #0ab39c;
}

.card .card-header h5, .default-according .card .card-header h5 .btn, .modal-title {
    font-size: 17px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.default-according .card .card-header h5 .btn {
    padding: 0.175rem 0rem;
}

.floated-customizer-btn.third-floated-btn {
    right: 35px;
    display: none;
}
.tf-button {
    width: max-content;
    height: 40px;
    padding: 10px 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
        border: 1px solid var(--primary-color);
    border-radius: 8px;
    background-color: var(--primary-color);
    background-size: 100%;
    overflow: hidden;
    transition: all .3s ease;
}

.tf-button.w208 {
    width: 208px;
}
.tf-button.style-1 {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.select2-container {
    max-width: 200px;
}

.select2-results__option{
    color: var(--white-color) !important;
}

.select2-container .select2-selection--single {
    height: 42px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--input-border-color) !important;
    border-radius: 8px !important;
    background:var(--white-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-grey-color) !important;
    line-height: 40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}
.block-published, .block-tracking {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 10px;
    border-radius: 4px;
    background: var(--dashboard-button-color);
    color: var(--primary-color);
    font-size: 12px;
}
.block-tracking {
    height: 30px;
    padding: 2px 10px;
    font-weight: 700;
}

.block-available, .block-not-available, .block-inactive {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 24px;
    padding: 2px 8px;
    gap: 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.block-available {
    background: var(--status-live);
    color: var(--22-c-55-e);
}

.block-inactive{
    background: var(--status-inactive);
}

.image.no-bg img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    padding: 5px;
    border: 1px solid var(--grey-border);
    border-radius: 100px;
}

.account-list-table .table tr:nth-child(even) {
    background: var(--bg-table);
}

.quickview-wrapper{
    display:none;
}

.table-bordered thead tr, .table-bordered thead th {
    border-bottom-color: var(--white-color) !important;
}

.page-wrapper .page-body-wrapper.sidebar-icon .sidebar-title {
    display: block !important;
}

.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-title {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black-color);
    padding: 10px;
    border-bottom: 0px solid #eeeeee;
    margin-bottom: 0px;
    letter-spacing: 1px;
    font-size: 12px;
    margin-top: 0px;
    background: var(--light-grey-color);
    text-transform: capitalize;
    text-align: center;
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu .sidebar-header,
.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu > li > a:hover{
    /* margin-top: 5px; */
    padding: 15px;
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar {
    width: 180px;
}

.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar ~ .page-body {
    margin-left: 180px;
}

.field{
    border: 1px dotted #ededed;
    padding: 10px;
}

input[type="file"] {
  display: block;
}
.imageThumb {
  max-height: 75px;
  border: 2px solid;
  padding: 1px;
  cursor: pointer;
}
.pip {
  display: inline-block;
  margin: 20px 10px 0 0;
      position: relative;
}
.remove {
    display: block;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    color: #000000;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: -9px;
    right: -7px;
    width: 20px;
    border-radius: 100px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    font-weight: 600;
}
.remove:hover {
  background: white;
  color: black;
}

::file-selector-button {
    background: var(--primary-color);
    border: none;
    padding: 6px 10px;
    color: #fff;
    margin: 0px 15px 0px 0px;
}

.custom-radio-ml {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
}

.list-group-item{
    font-weight:600;
    border: none;
}

.list-group-item a:before{
    margin: 0px 14px 0px 0px;
    content: '\f192';
    font-family: 'FontAwesome';
        font-size: 10px;
    font-weight: 100;
}

.default-according .card {
    margin-bottom: 30px;
}

.list-group ul.sub-nav {
  display: none;
}

.list-group i {
    margin-right: 5px;
    right: 0px;
    position: absolute;
}

.list-group ul.visible {
  display: block;
    line-height: 20px;
    margin-top: 10px; 
}

.list-group-item a{
    color:var(--text-grey-color) !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.action-btn{
    background: #ebe8e8;
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.switch {
    height: 26px !important;
        width: 55px !important;
}

.switch-state:before {
    height: 19px;
    width: 19px;
}

.switch-outline.icon-state input:checked + .switch-state:after {
    left: 34px;
}

.switch-outline .switch-state:before {
    bottom: 2px;
}

.switch-outline.icon-state .switch-state:after {
    top: 6px;
}

.icon-state .switch-state:after {
    left: 8px;
}

.switch-outline.icon-state .switch-state:after {
    top: 5px;
}

.page-main-header .main-header-left {
    width: 190px;
}

.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-submenu > li > a {
    font-size: 13px;
    color: var(--text-grey-color);
    font-weight: 600;
    border-bottom: 1px solid var(--grey-border);
    padding: 0px 0;
}

.page-wrapper .page-body-wrapper.sidebar-icon.page-body-wrapper .page-sidebar .sidebar-menu .sidebar-submenu > li > a {
    padding: 8px 15px;
}
button.btn.btn-danger {
    margin-top: 28px;
}
.page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu li .single-header, .page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu li .sidebar-submenu, .page-wrapper .page-body-wrapper.sidebar-icon .page-sidebar .sidebar-menu li a:hover + ul {
    background-color:var(--white-color);
    color: var(--text-grey-color);
    font-size: 13px;
    padding: 0;
    width: 215px;
        margin-top: -90px;
            margin-left: 100%;
}

.category-table input[type=number] {
    font-size: 13px;
    border-radius: 6px;
    height: 30px;
    padding: 0px 5px;
    width: 50px;
}

.page-wrapper .page-body-wrapper .page-sidebar{
    background:var(--white-color);
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px #2020203d;
  background: white url('https://i.ibb.co/FxzBYR9/night.png');
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  background: white url('https://i.ibb.co/7JfqXxB/sunny.png');
  background-repeat: no-repeat;
  background-position: center;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.table-bordered thead, .table-bordered tbody, .table-bordered tfoot, .table-bordered tr, .table-bordered td, .table-bordered th {
    border-color: var(--table-border-color);
    /*border-bottom: 1px solid var(--border-bottom-color);*/
}

.badge.bg-secondary.sopify-store-icon{
    position:relative;
    margin-right: 8px;
}

.badge.bg-secondary.sopify-store-icon:after{
    content: '';
    background: url(/assets/images/shopify.png);
    position: absolute;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: top;
    top: -7px;
}

.skeleton {
  background-color: #e2e5e7;
  background-image: var(--gradent-skeleton);
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  -webkit-animation: shine 1s ease infinite;
          animation: shine 1s ease infinite;
      min-width: 130px;
    width: 100px;
    height: 31px;
}

@-webkit-keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

@keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

.banner-add tr td img{
    max-width:150px;
    border: 1px solid var(--grey-border);
}



.modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	width: 580px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
	height: 100%;
	overflow-y: auto;
}

.modal.right .modal-body {
	padding: 15px 15px 80px;
}

/*Right*/
.modal.right.fade .modal-dialog {
	right: -580px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	-o-transition: opacity 0.3s linear, right 0.3s ease-out;
	transition: opacity 0.3s linear, right 0.3s ease-out;
}
.modal.right.fade .modal-dialog {
	right: 0;
}

.sorting-icon svg{
    width:20px;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
}

.sorting-list-categories{
        border-bottom: 1px solid var(--grey-border);
}

.sorting-list-categories:first-child{
      border-top: 1px solid var(--grey-border);
}


.categories-name{
   counter-increment : test 1; 
}

.categories-name:before{
     content : counter(test);
     width : calc(counter(test)*50px);
}

.product-setting .form-check {
    width: 50%;
}

.table-responsive {
    min-height: 360px;
}

.country-list .country-details{
       border: 1px solid var(--grey-border);
    display: inline-block;
    width: 220px; 
}

.country-list .country-details a[data-bs-target="#SetCountyCodeModal"]{
    padding: 10px;
    background: var(--grey-border);
}
    

















