.eosl-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Manrope';
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.eosl-table thead {
    background: linear-gradient(to right, #2bb673, #1e90ff);
    color: #fff;
}
.eosl-table thead th{padding: 20px 12px;}

.eosl-table th,
.eosl-table td {
    padding: 25px 12px;
    text-align: left;
    border: none;
}
.eosl-table tbody tr td:first-child{border-left: 1px solid #D0D0D0;}
.eosl-table tbody tr td:last-child{border-right: 1px solid #D0D0D0;}
.eosl-table tbody tr:last-child td:last-child {border-right: 1px solid #D0D0D0;}
.eosl-table tbody tr:last-child td:first-child {border-left: 1px solid #D0D0D0;}
.eosl-table tbody tr:last-child td {border-bottom: 1px solid #D0D0D0;}


.eosl-table tbody tr:nth-child(even) {
    background: #F0F0F0;
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: #fff !important;
}


.eosl-badge {
    padding: 5px 12px;text-transform: capitalize;
    border: 1px solid #2bb673;
    border-radius: 20px;
    color: #2bb673;
    font-size: 12px;
    margin: 0 auto;
}

/* PANEL */
.eosl_panel {
    background: #fff;
    border-radius: 14px;
    padding: 1px 0px 24px;
    border: 1px solid #e2e2e2;
    font-family: 'Manrope';
    overflow: hidden;
}
/* TITLE */
.eosl_panel .eosl_search_title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 30px;
    color: #1a1a1a;
    background: #fff;
    padding: 20px 25px 20px;
    border-radius: 12px 12px  0 0;
    box-shadow: 0 4px 30px 0px #00000029;
}
/* FILTER ROW */
.eosl_panel .eosl_filters {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 0 25px;
}
/* SEARCH INPUT */
.eosl_panel .eosl_input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    background: #fff;
    font-size: 14px;
}
/* REMOVE DEFAULT SELECT STYLE */
.eosl_panel .eosl_select {
    min-width: 150px;
    padding: 14px 40px 14px 16px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    /* gradient button look */
    background: linear-gradient(90deg, #33CF96, #0993B0);
    position: relative;
    width: 10%;
}

.eosl_panel .eosl_select option{color:#737373;}


/* FIX FOCUS (REMOVE BLUE BORDER ISSUE) */
.eosl_panel .eosl_select:focus {
    outline: none;
    box-shadow: none;
}
/* QUICK LINKS */
.eosl_panel .eosl_quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: space-between;
    padding:0 25px;
}
/* PILLS */
.eosl_panel .eosl_quicklinks a {
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #2bbf8a;
    border: 1px solid #2bbf8a;
    background: transparent;
    transition: all 0.3s ease;
}
/* HOVER */
.eosl_panel .eosl_quicklinks a:hover {
    background: linear-gradient(90deg, #33CF96, #0993B0);
    color: #fff;
    border-color: transparent;
}
.wpquicklinksPanel h2 a {
    text-decoration: none;
}
.eosl_table_wrapper {
    width: 100%;    padding-top: 10px;
    overflow-x: auto;
}
h3.eosl_sub_heading {
    text-align: center;
    font-size: 16px;
    margin-top: 0;
    font-weight: 400;
}
table.eosl-table a {
    color: #008CFF;
    text-decoration: none;
}
table.eosl-table a:hover {
    text-decoration: underline;
}
table.eosl-table a[href="#quote"] {
    color: #000000;
}
h2.eosl_heading {
    text-align: center;
}
input#eoslSearch:focus, input#eoslSearch:active {
    outline: 0;
}
.eosl_select_wrap {
  position: relative;
  display: inline-block;
}

.eosl_select {
  width: 100%;
  padding: 10px 40px 10px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.eosl_select_wrap::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
}
.transparent_bg_btn  button#srfm-submit-btn {
    background: #0000 !important;
    border: 1px solid #33CF96!important;
    color: #33CF96!important;
}


@media (max-width: 768px) {
    .eosl_panel .eosl_filters {
        flex-direction: column;
        align-items: stretch;
    }
    .eosl_panel .eosl_select,
    .eosl_panel .eosl_input {
        width: 100%;
    }
}
/* MOBILE */
@media (max-width: 480px) {
    .eosl_panel {
        padding: 18px;
    }
    .eosl_panel .eosl_search_title {
        font-size: 18px;
    }
}