@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Sora", sans-serif;
    color: var(--color-default);
    margin: 0;
    background: #fff;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #0d5b7f;
    text-decoration: none;
    transition: transform 0.3s ease;
}
ul {
    padding: 0;
    margin: 0;
}

li{
    list-style: none;
}

*{
    box-sizing: border-box;
}
input, select, textarea{
  transition: transform 0.3s ease;  
}
/* Hide scrollbar for Chrome, Safari and Opera */
.main-container-section::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.main-container-section {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
}
img {
    max-width: 100%;
}
.body-bg {
    background-size: cover !important;
    background-position: top center !important;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-attachment: fixed !important;
    padding: 10px; 
}
.body-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000006E;
}
.main {
    max-width: 480px;
    position: relative;
    /*margin: 10px;*/
    display: flex;
    flex-direction: column;
    height: calc(100vh - 20px);
    overflow-y: hidden;
    box-sizing: border-box;
}
.logo-body {
    position: absolute;
    right: 36px;
    top: 27px;
    text-align: center;
}
.logo-body a {
    display: block;
    font-size: 43px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px;
}
.logo-body p {
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}
.logo-body a img {
    max-width: 240px;
}
.header-post-btn-right {
    display: flex;
}
.scrollContent {
    flex: 1 1 auto;
    overflow-y: auto;
    background: #fff;
}
.scrollContent::-webkit-scrollbar {
    display: none;
}
.container {
    max-width: 480px;
    padding: 0 15px;
}
.header {
    background: #FCFAFF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: solid 1px #EEEEEE;
}
.header-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 15px 0;
    box-sizing: border-box;
}
.thm-btn {
    background: #0D5B7F;
    border: solid 1px #0D5B7F;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.4s ease 0s;
    text-transform: capitalize;
}
.thm-btn.outer-line {
    background: transparent;
    color: #0D5B7F;
}
.thm-btn:hover {
    background: #07415d;
    color: #fff;
}
.main-container-section {
    background: #fff;
    /*min-height: 100vh;*/
    padding-bottom: 30px
}
.heading-title {
    text-align: center;
    padding: 20px 0;
}
.heading-title h2 {
    margin: 0 0 10px;
    font-weight: 600;
    color: #333;
}
.heading-title p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.escort-grid-box-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}
.escort-img {
    overflow: hidden;
    position: relative;
    height: 240px;
    width: 100%;
    cursor: pointer;
}
.escort-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.escort-img img:hover {
    transform: scale(1.1);
}
.escort-grid-view {
    width: calc(24% - 8px);
}
.escort-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #0000005E;
    border-radius: 6px;
}
.escort-detail{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
    margin-bottom: 0px;
    color: #fff;
}
.escort-detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
.inner-text-space {
    padding: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 1s ease;
    margin-top: 10px;
}
.escort-img:hover .inner-text-space {
    opacity: 1;
    max-height: 200px;
}
.inner-text-space p {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
    padding-right: 0px;
    color: #fff;
}
.inner-text-space ul li a {
    padding: 3px 6px;
    font-size: 12px;
    line-height: 18px;
    display: inline-block;
    color: #fff;
}
.inner-text-space ul li a:hover {
    background: #0D5B7F;
}
.escort-detail ul {
    padding: 0;
    margin: 0;
}
.escort-detail ul li {
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    color: #fff;
}
.inner-text-space .thm-btn {
    font-size: 12px;
    padding: 0px 10px;
    border-radius: 2px;
    margin: 10px 0 0;
    height: 24px;
}
/*.escort-img:hover .escort-detail {
    height: 100%;
}
*/
.escort-location-box {
    width: calc(16.4% - 10px);
    border: solid 1px #EFEFEF;
    border-radius: 4px;
    background: #fff;
    padding: 8px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.escort-location-box:hover {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.055);
}
.escort-location-grid-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}
.escort-location-text-list .escort-location-box {
    width: calc(50% - 10px);
    padding: 15px;
}
    .escort-location-text-list .escort-location-box a {
    padding: 5px 0;
}
.escort-profile-img {
    width: 100%;
    height: 82px;
    overflow: hidden;
}
.escort-profile-img img {
    border: solid 1px #EFEFEF;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}
.escort-profile-img img:hover {
    transform: scale(1.1);
}
.escort-location {
    padding-top: 10px;
}
.escort-location h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}
.escort-location p {
    margin: 0;
    font-size: 12px;
    color: #666666;
}
.all-location .thm-btn.outer-line {
    margin: 0;
    border: 1px solid #0D5B7F2B;
    padding: 10px 20px;
}
.all-location {
    text-align: center;
    padding: 20px 0 40px;
}

.description-section p {
    font-size: 14px;
    line-height: 22px;
}

.blog-img img {
    border-radius: 6px;
}
.blog-post-detail {
    padding-top: 13px;
}
.blog-post-detail h5 {
    margin: 0 0 5px;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
}
.blog-post-detail h4 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}
.blog-post-detail  p {
    color: #666;
    font-size: 12px;
    margin: 0;
}
.blog-grid-box {
    margin-bottom: 20px;
}
.blog-img {
    overflow: hidden;
    transition: transform 0.3s ease;
}
.blog-img:hover {
    transform: scale(1.1);
}

.footer {
    background: #3E3843;
    padding: 20px 0;
    text-align: center;
/*    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
*/}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.footer-menu ul {
    width: 50%;
    text-align: left;
    padding: 0;
    margin: 0;
}
.footer-menu ul li {
    display: inline-block;
    width: 100%;
}
.footer-menu ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}
.copyright {
    border-top: solid 1px #E3E3E366;
    padding-top: 20px;
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
}
.copyright p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    margin: 0;
}
.copyright ul {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    align-items: center;
    margin: 20px 0 0;
    padding: 0;
}
.copyright ul li {
    display: inline-block;
}
.copyright ul li a img {
    max-width: 16px;
    display: flex;
    align-items: center;
}
.footer-menu ul li a:hover {
    text-decoration: underline;
}
.select-category .form-control:focus {
    outline: none;
    box-shadow: none;
}
.footer-fixed-bottom {
/*    position: fixed;
    bottom: 0;
    left: 10px;
*/    background: #0D5B7F;
    max-width: 480px;
    right: 0;
    border-radius: 0px 0px 20px 20px;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 99;
    box-shadow: 0px -6px 4px 0px #00000024;
    height: 65px;
}
.footer-fixed-bottom ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*align-items: center;*/
    width: 100%;
    /*justify-content: space-between;*/
    column-gap: 10px;
    padding: 0;
    margin: 0;
    height: 65px
}
.footer-fixed-bottom ul li {
    display: block;
    height: 100%;
    list-style: none;
}
.footer-fixed-bottom ul li a {
    height: 100%;
    padding: 10px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    font-size: 13px;
}
.footer-fixed-bottom ul li a img {
    height: 24px;
    width: 24px;
}
.footer-fixed-bottom ul li a.active, .footer-fixed-bottom ul li a:hover {
    background: #2D88B2;
    box-shadow: none;
    border-radius: 4px 4px 4px 4px;
    /*height: 70px;*/
}
.footer-fixed-bottom ul li a.active span, .footer-fixed-bottom ul li a:hover span {
    display: block;
}

.footer-fixed-bottom ul li a span {
    display: none;
}


/*********Search page css start**********/
.back-topage a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
    font-weight: 600;
}
.search-wrapper-box {
    padding: 24px 0 10px;
}
.search-field {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}
.search-field .form-control {
    border: 1px solid #EEEEEE;
    border-radius: 40px;
    width: 100%;
    padding: 16px 20px;
    font-weight: 400;
    font-size: 15px;
    color: #666;
    padding-left: 45px;
    background: #fff;
    appearance:none;
}
.search-field span {
    position: absolute;
    top: 15px;
    left: 20px;
}
.search-field .form-control:hover, .search-field .form-control:focus, .search-field .form-control:focus-visible {
    box-shadow: none;
    outline: none;
    border-color: #0d5b7f;
}
.search-location-list {
    display: inline-block;
    width: 100%;
    padding: 0 0 40px;
    text-align: center;
}
.search-location-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.search-location-wrapper li {
    display: inline-flex;
}
.location-btn {
    border-radius: 4px;
    padding: 10px 26px;
    background: #F2EFEF;
    color: #0D5B7F;
    font-size: 15px;
    line-height: 22px;
    transition: transform 0.3s ease;
}
.location-btn:hover {
    background: #0D5B7F;
    color: #fff;
}
.btn-group .thm-btn {
    margin-left: 0;
    padding: 10px 40px;
}
.btn-group {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.border-btm0{
    border-bottom: none !important;
}

/********Categories css start********/
.category-list-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
}
.category-list-wrapper ul li {
    width: calc(33.3333% - 9px);
}
.category-list-wrapper ul li a {
    border: solid 1px #EFEFEF;
    border-radius: 4px;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.location-img img {
    width: 35px;
    height: 25px;
    border-radius: 4px;
    border: solid 1px #EFEFEF;
}
.category-list-wrapper h5 {
    margin: 0;
    font-size: 14px;
    line-height: normal;
}
.location-img {
    display: flex;
}
.category-list-wrapper ul li a:hover {
    background: #0D5B7F;
    border-color: #0D5B7F;
    color: #fff;
}
.category-list-wrapper {
    padding-bottom: 30px;
}
.list-description-box {
    background: #FCFAFF;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.breadcrumbs li {
    font-size: 13px;
    color: #666;
}
    .breadcrumbs li a {
        white-space: nowrap;
        width: 100%;
        overflow: hidden;
        display: block;
    }
.lising-detail-section .list-description-box {
    margin-top: 0;
    padding: 10px 0;
}

.footer-fixed-btn .btn-group .thm-btn {
    width: 45%;
    padding: 16px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.footer-fixed-btn .btn-group {
    justify-content: space-between;
    width: 70%;
    column-gap: 24px;
}
.chatnow {
    background: #29A71A;
    border-color: #29A71A;
}
.chatnow:hover {
    background: #1a880d;
    border-color: #1a880d;
}

/******accordian css start*******/
.set {
    position: relative;
    width: 100%;
    height: auto;
    background: #FCFAFF;
    margin-bottom: 12px;
    border-radius: 4px;
}
.set > a span {
    float: right;
}
.set > a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 14px;
}
.set > a i{
  float: right;
  margin-top: 2px;
}
.accordian-list {
    padding-bottom: 25px;
}
.set > a.active{
  background-color:#FCFAFF;
}
.content{
  background-color: #FCFAFF;
  display:none;
}
.content p {
    padding: 10px 13px 20px;
    margin: 0;
    color: #666;
    background: #FCFAFF;
    font-size: 12px;
    line-height: 18px
}
.set > a.active span img {
    transition: all 0.2s linear;
    transform: rotate(180deg);
}
/******accordian css start*******/

/********Login css start*******/
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}
.input-box {
    position: relative;
    width: 100%;
}
.input-box .form-control {
    border: 1px solid #c5b9b9;
    background: #FCFAFF;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}
.show-pass {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 15px;
    cursor: pointer;
}
.captcha {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 15px;
}
.password-field::after {
    content: "";
    position: absolute;
    right: 75px;
    top: 7px;
    width: 1px;
    background: #E7DFDF;
    height: 34px;
}
.input-box .form-control:hover, .input-box .form-control:focus, .input-box .form-control:focus-visible {
    box-shadow: none;
    outline: none;
    border-color: #0d5b7f;
}
.remember-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.remember-box label {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.remember-box  a {
    color: #0D5B7F;
    font-size: 13px;
}

.login-form p {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px;
    line-height: 18px;
}
.login-form p a {
    color: #0d5b7f;
    font-weight: 600;
}
.w-100 {
    width: 100%;
    display: block;
    text-align: center;
}
.login-form .thm-btn {
    margin: 0;
    padding: 15px;
    font-size: 16px;
}
.step-inner-form .login-form {
    height: calc(100vh - 225px);
    margin-bottom: 20px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: thin;
    padding-right:10px;
}
.signup-msg {
    border: 1px solid #0D5B7F54;
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background: #FCFAFF;
    border-radius: 4px;
}
.signup-msg p {
    margin: 0;
    color: #0D5B7F;
    font-size: 15px;
}
.remember-box a:hover {
    text-decoration: underline;
}
.signup-msg p a:hover {
    text-decoration: underline;
    
}

/******ad post css start*******/
.heading-title.post-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.heading-title.post-add h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}
.input-box select {
    appearance: none;
    background-image: url(../images/select-box-arrow.svg) !important;
    background-position: right center !important;
    background-size: 30px !important;
    background-repeat: no-repeat !important;
}
.step-btn {
    display: flex;
    column-gap: 13px;
    width: 100%;
}
.step-btn .thm-btn {
    width: 100%;
    text-align: center;
    font-weight: 700;
}
.select-num-wrapper {
    display: flex;
    align-items: center;
}
.select-num {
    width: 22%;
}
    .select-num .form-control {
        border: 1px solid #EEEEEE;
        background: #FCFAFF;
        padding: 16px 10px;
        border-radius: 4px;
        font-size: 14px;
        width: 100%;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        appearance: none;
        background-image: url(../images/select-box-arrow.svg) !important;
        background-position: right center !important;
        background-size: 27px !important;
        background-repeat: no-repeat !important;
    }
.select-num .form-control:hover, .select-num .form-control:focus, .select-num .form-control:focus-visible {
    box-shadow: none;
    outline: none;
    border-color: #0d5b7f;
}
.select-num-wrapper .input-box .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form-group.row {
    display: flex;
    width: 100%;
    column-gap: 15px;
}
.form-col {
    width: calc(50% - 8px);
}
.input-box textarea.form-control {
    height: 100px;
    max-width: 100%;
}
.step-inner-form .step-btn .thm-btn {
    margin: 0;
    padding: 15px;
    font-size: 16px;
}

/********Service step css start********/
.ethnicity-category ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.ethnicity-category ul li {
    display: inline-block;
    background: #FFF;
    padding: 0;
    position: relative;
}
.check-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}
.ethnicity-category ul li span {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #EEEEEE;
    display: inline-block;
    color: #0D5B7F;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    padding: 0 18px;
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
    background: #FCFAFF;
}
.ethnicity-category input[type="checkbox"]:checked + span {
    border: solid 1px #0D5B7F;
    background: #0D5B7F;
    color: #fff;
}
.ethnicity-category {
    margin-bottom: 50px;
}

/*******upload img********/
.image-drag-box {
    position: relative;
    background: #F5F5F5;
    border: dashed 2px #999999;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}
.image-drag-box h4 {
    margin: 0 0 15px;
    font-size: 24px;
}
.image-drag-box p {
    font-size: 16px;
    color: #999999;
    font-weight: 500;
}
.image-drag-box .thm-btn {
    padding: 13px 35px;
    margin-bottom: 25px;
    font-size: 14px;
}
.image-drag-box li {
    color: #999;
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
}
.image-drag-box li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -13px;
    width: 6px;
    height: 6px;
    background: #999999;
}
.upload-input-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.preview-image-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.preview-img img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease;
}
.preview-img img:hover {
    transform: scale(1.1);
}
.preview-img {
    display: flex;
    overflow: hidden;
    width: 200px;
    height: 150px;
}
.preview-detail {
    background: #F5F5F5;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 10px;
    width: 100%;
}
.left-title h4 {
    margin: 0;
    display: flex;
    column-gap: 6px;
    font-size: 12px;
}
.more-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.left-title.fill-title h4 {
    color: #0d5b7f;
}
.left-title.fill-title span img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(53%) saturate(1075%) hue-rotate(160deg) brightness(93%) contrast(93%);
}
.more-dropdown-menu {
    position: relative;
}
.viewmore-btn {
    background: #fff;
    border-radius: 8px;
    width: 130px;
    border: solid 1px #F5F5F5;
    text-align: left;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 0;
    display: none;
}
.more-dropdown-menu:hover .viewmore-btn {
    display: block;
}
.viewmore-btn li {
    display: inline-block;
    width: 100%;
}
.viewmore-btn li a {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    column-gap: 10px;
    padding: 10px 15px;
    color: #4A4B51;
    border-bottom: solid 1px #eee;
}
.viewmore-btn li a span {
    display: flex;
}
.viewmore-btn li a span img {
    max-width: 15px;
}
.viewmore-btn li a:hover {
    background: #f5f5f5;
}
.viewmore-btn li a:last-child {
    border-bottom: none;
}
/*******Toast message css********/
.success-notification {
    box-shadow: 0px 4px 24px 0px #00000026;
    background: #fff;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    position: absolute;
    top: 70px;
    left: 25px;
    border-left: solid 10px #34E117;
    width: calc(100% - 50px);
}
.success-msg {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 15px 13px;
}
.notification-msg h4 {
    margin: 0 0 5px;
    font-size: 14px;
}
.notification-msg p {
    margin: 0;
    font-size: 12px;
}
.checkmark-icon {
    display: flex;
}
.preview-grid-view {
    cursor: pointer;
    width: calc(50% - 6px);
}
/*******Toast message css********/

/*******Profile sidebar css*******/
#backdrop-overlay {
    z-index: 98;
    position: absolute;
    inset:0px;
    background: rgba(0,0,0,.6);
    display: none;
    border-radius: 20px
}
#backdrop-overlay.open {
    display: block;
}
.sidenav {
    height: 100%;
    width: 0;
    position: absolute;
    z-index: 9999;
    top: 0px;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    border-radius: 16px;
    max-width: 370px;
    right: 0;
}
.sidebar-user-profile {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EEEEEE;
    background: #FCFAFF;
    column-gap: 20px;
}
.user-profile-img img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
}
.user-name-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #2F2C2C;
}
.user-name-info h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}
.sidenav ul {
    padding: 0;
    margin: 0;
}
.sidenav ul li {
    display: inline-block;
    width: 100%;
}
.sidenav ul li a {
    padding: 18px 40px;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #2F2C2C;
}
.sidenav .closebtn {
    position: absolute;
    top: 32px;
    right: 20px;
}
.logout-btn-end {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: solid 2px #F0F0F0;
    padding: 30px 40px;
    display: block;
}
.logout-btn {
    color: #FF3232;
    font-weight: 500;
    font-size: 18px;
}

/*******Profile sidebar css*******/

/******User account css start*******/
.general-info {
    border: 1px solid #D3CDCD;
    background: #fff;
    margin: 20px 0;
    border-radius: 16px;
}
.header-title {
    background: #FCFAFF;
    border: solid 1px #EEEEEE;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 13px 15px;
    font-size: 18px;
    font-weight: 600;
}
.account-form {
    padding: 25px 10px;
}
.user-profile-header {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 25px;
}
.upload-user-profile {
    position: relative;
    display: inline-block;
}
.upload-user-profile input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 11;
    cursor: pointer;
}
.upload-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #EEEFF0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    line-height: 34px;
}
.account-right-info h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #2F2C2C;
    font-weight: 600;
}
.account-right-info p {
    font-size: 16px;
    margin: 0;
    font-weight: 300;
}
.account-form .form-group {
    margin-bottom: 16px;
}
.account-form .form-group .input-box span {
    position: absolute;
    top: 15px;
    right: 15px;
}
.account-form .form-group .input-box span img {
    max-width: 20px;
}
.email-recover-msg {
    margin-bottom: 0;
    font-size: 12px;
    color: #2F2C2C;
    padding-right: 20px;
}
button.thm-btn.confirm-btn {
    margin: 0;
    font-size: 16px;
    padding: 14px 30px;
}

/*******transaction history css*******/
.transition-table table.table {
    width: 100%;
    margin-top: 22px;
}
.transition-table table.table th {
    background: #FCFAFF;
    text-align: left;
    padding: 14px 20px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 0.812px solid #EEEEEE;
    border-right: none;
    border-left: none;
}
.credit {
    color: #00BD08 !important;
}
.debit {
    color: #BD3900 !important; 
}
.transition-table table.table tr td {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 13px 20px;
    border: 0.812px solid #eee;
    border-right: none;
    border-left: none;
}
.transition-table table.table th:first-child {
    border-top-left-radius: 16px;
}
.transition-table table.table th:last-child {
    border-top-right-radius: 16px;
}
.transition-table table.table {
    border: solid 1px #eee;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/********Dashboard css start*******/
.dashboard-wrapper {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}
.dashboard-wrapper .general-info {
    margin: 0;
    width: calc(50% - 7px);
}
.adlist-box {
    padding: 15px 10px;
}
.adlist-box ul {
    margin-bottom: 20px;
    min-height: 110px;
}
.adlist-box ul li span {
    font-weight: 600;
}
.adlist-box ul li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 36px;
}
.adlist-box .thm-btn {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
    padding: 13px 20px;
    display: inline-block;
    text-align: center;
}
.adlist-box p {
    margin: 0 0 15px;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    line-height: 20px;
    min-height: 60px;
}
.upload-user-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
}
.upload-icon img {
    height: auto;
    width: auto;
    border-radius: 0;
}

/********Advert css start********/
.advert-section-bg {
    background: #f8f8f8;
    padding-top: 20px;
}
.advert-select-filter {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    width: 100%;
}
.advert-select-filter .form-group {
    width: calc(50% - 7px);
    margin: 0;
}

.advert-select-filter .form-group .form-control {
    border: solid 1px #d5d1ca;
    background: #fff;
    border-radius: 4px;
    padding: 12px;
}
.advert-select-filter {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    width: 100%;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 110px 0px #00000012;
    margin-bottom: 15px;
}
.advert-box {
    border: 1px solid #ddd1d1;
    background: #fff;
    border-radius: 4px;
    width: 100%;
    display: flex;
    column-gap: 15px;
    align-items: center;
    padding: 10px;
    margin-bottom: 12px;
}
.advert-right-detail {
    width: calc(100% - 200px);
}
.advert-img img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
}
.advert-img {
    width: 190px;
    height: 160px;
    overflow: hidden;
}
.advert-right-detail h4 {
    font-size: 14px;
    color: #0D5B7F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0 0 5px;
}
.advert-right-detail p {
    margin: 0 0 13px;
    font-size: 12px;
    color: #666666;
    line-height: 16px;
}
.advert-right-detail span {
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}
.advert-right-detail span img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(96%) contrast(83%);
}
.advert-more-cta {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.advert-more-cta .thm-btn {
    margin: 0;
    padding: 7px 10px;
    font-size: 15px;
    line-height: 22px;
}

.more-cta {
    background: transparent;
    border: solid 1px #F5F5F5;
    border-radius: 4px;
    width: 40px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-list ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.pagination-list ul li a {
    border: 0.77px solid #D9D9D9;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    border-radius: 40px;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    padding: 0;
    align-items: center;
}
.pagination-list ul li a img {
    max-width: 14px;
}
.right-direction img {
    transform: rotate(180deg);
}
.pagination-list ul li a:hover {
    background: #0D5B7F;
    color: #fff;
}


/*******New page category css start*******/
.category-grid-view {
    width: 100%;
    border: solid 1px #EEEEEE;
    border-radius: 8px;
}
.category-grid-view .inner-text-space {
    opacity: 1;
    padding: 10px;
    max-height: 100%;
    margin: 0;
}
.category-grid-view .inner-text-space p {
    color: #333;
    font-size: 12px;
    margin-bottom: 5px;
}
.category-grid-view .inner-text-space li a {
    color: #333;
}
.category-grid-view .escort-img {
    height: 210px;
}
.category-grid-view .inner-text-space li a:hover {
    color: #fff;
}
.blue-text {
    color: #0D5B7F !important;
}
.category-grid-view .inner-text-space li a.blue-text:hover{
    color: #fff !important
}
.mt-5 {
    margin-top: 1.2rem;
}
.all-location-btn {
    display: flex;
    justify-content: center;
    padding: 30px 0 0;
}
.all-location-btn .thm-btn {
    border-radius: 4px;
    padding: 8px 15px;
    line-height: 22px;
    font-size: 14px;
    margin: 0;
}


/********Detail Page css start**********/
.lising-detail-section .list-description-box {
    margin-top: 0;
    padding: 10px 0;
}
.beck-page-btn {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    column-gap: 7px;
    color: #0D5B7F;
    font-size: 13px;
    font-weight: 500;
}
.beck-page-btn img {
    line-height: 14px;
    margin-top: -1px;
}
.detail-post-description {
    margin-top: 10px;
}
.post-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-info label {
    font-size: 12px;
    line-height: 24px;
}
.detail-post-description h4 {
    color: #0D5B7F;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 10px 0;
}

/* Hide scrollbar for IE, Edge and Firefox */
.detail-large-banner {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: thin;  /* Firefox */
}
.detail-large-banner {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
}
/*.detail-img {
    width: 330px;
    height: 270px;
}*/
.detail-img img {
    width: 330px;
    height: 100%;
    max-width: 330px;
    border-radius: 4px;
}
.detail-about-info {
    margin-top: 15px;
}
.detail-about-info h4 {
    color: #333333;
}
.detail-about-info p {
    margin: 0 0 15px;
    font-size: 15px;
    color: #666666;
    line-height: 20px
}
.detail-about-info span {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 12px;
    color: #666666;
}
.detail-about-info span img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(3%) saturate(13%) hue-rotate(7deg) brightness(91%) contrast(91%);
}
.characteristics-list h4 {
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
}
.characteristics-list {
    padding-bottom: 30px;
}
.characteristics-list ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.characteristics-list ul li {
    width: 100%;
    border: 1px solid #CECECE;
    border-bottom: none;
    display: flex;
    font-size: 14px;
    text-align: center;
    align-items: center;
}
.characteristics-list ul li:last-child{
    border-bottom: 1px solid #CECECE;
}
.characteristics-list ul li label {
    width: 50%;
    background: #F5F5F5;
    padding: 14px 0;
    border-right: 1px solid #CECECE;
    color: #2F2C2C;
}

.characteristics-list ul li span {
    display: block;
    text-align: center;
    width: 50%;
}
.escort-service-cta {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.escort-service-cta .location-btn {
    font-size: 14px;
    color: #666;
    padding: 6px 10px;
    cursor: pointer;
}
.detail-service h4 {
    color: #333;
    margin-bottom: 13px;
}
.detail-service .btn-group {
    justify-content: flex-start;
    padding-bottom: 35px;
}
.step-top-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    column-gap: 10px;
    padding: 20px 15px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.step-top-btn .thm-btn {
    margin: 0;
    width: calc(50% - 5px);
    text-align: center;
    padding: 13px;
    font-size: 16px;
    font-weight: 700;
}
.escort-service-cta .location-btn:hover {
    color: #fff;
}
.dashboard-user-info {
    border-bottom: 1px solid #EEEEEE;
    background: #FCFAFF;
    border-radius: 8px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 20px;
    justify-content: space-between;
}
.dashboard-user-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.dashboard-user-detail h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
}
.dashboard-user-detail p {
    font-size: 14px;
    margin: 0;
}


/********Light box css start*******/
.backdrop{
  background-color: #000;
  display: none;
  filter: alpha(opacity=0);
   height: 100%;
  left: 0px;
  opacity: .0;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 50;
}

.box {
    border: solid 6px #fff;
    box-shadow: 0px 0px 5px #444444;
    display: none;
    opacity: 0;
    position: absolute;
    top: 50%;
    z-index: 51;
    border-radius: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    height: auto;
}
.box  img.largeImage {
    width: 100%;
    height: 100%;
}
.box .close {
    cursor: pointer;
    float: left;
    font-size: 36px;
    position: absolute;
    right: 15px;
    top: 5px;
    color: #0D5B7F;
}
.pagination-list ul li a.active {
    background: #0d5b7f;
    color: #fff;
}
#loading-bar-spinner .spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    position: fixed;
    z-index: 19 !important;
    animation: loading-bar-spinner 400ms linear infinite;
    transform: translate(-50%, -50%);
}

.loader {
    width: 100%;
    position: fixed;
    top: 0px;
    height: 100vh;
    left: 0px;
    z-index: 9999999;
    background: rgba(0,0,0,0.3);
}

#loading-bar-spinner .spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: #00873C !important;
    border-left-color: #00873C !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.field-validation-error span, span.text-danger, .text-danger {
    color: red !important;
    font-size: 15px;
    font-style: normal;
    line-height: normal;
}
/*******auto complete css*********/












.autocomplete-suggestions {
    text-align: left;
    border: 1px solid #ddd;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 10px 15px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    border-bottom: solid 1px #eee;
    color: #333
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #333;
}

.autocomplete-group {
    padding: 2px 5px;
}

    .autocomplete-group strong {
        display: block;
        border-bottom: 1px solid #000;
    }

.escort-detail h2 {
    margin: 0px;
    margin-top: 8px;
}

.see-more-cities-btn, .see-more-cities-btn:hover {
    text-decoration: underline;
    color: #0D5B7F;
}
.preview-grid-view {
    cursor: pointer;
    width: calc(50% - 6px);
}

.escort-service-cta {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap:  wrap;
}


/********Modal css start*******/
.tnc-logo {
    text-align: center;
}
.warning-message-modal h4 {
    text-align: center;
}
.warning-message-modal p {
    text-align: center;
    font-size: 16px;
    line-height: 26px;
}
.warning-message-modal span {
    font-size: 16px;
    display: block;
    text-align: center;
}
.warning-message-modal span a {
    color: #0D5B7F;
    font-weight: 500;
}
.warning-message-modal .modal-footer.pri-sec-buttons ul {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.warning-message-modal .modal-footer.pri-sec-buttons ul button {
    background: #0D5B7F;
    border: solid 1px #0D5B7F;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    color: #fff;
}
.warning-message-modal .modal-footer.pri-sec-buttons ul .btn-link {
    background: transparent;
    color: #0D5B7F;
}
.warning-message-modal .modal-footer.pri-sec-buttons ul .btn-link:hover{
    color: #fff;
}
.warning-message-modal .modal-footer.pri-sec-buttons ul button:hover {
    background: #094865;
}
.modal.filter-box-modal {
    padding: 0;
}
.modal.filter-box-modal .modal-footer.modal-footer-filter {
    padding: 30px;
    text-align: center;
}
    .modal.filter-box-modal .form-control {
        height: 40px;
        width: 100%;
        padding: 0 10px;
        border: solid 1px #ccc;
        border-radius: 4px;
    }
.error-msg {
    font-size: 12px;
    color: #ff0000;
    margin: 5px 0;
}
.select-location-category {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}
.select-location-category h2 {
    font-size: 24px;
    margin: 0 0 10px;
    width: 100%;
}
.location-tab a {
    display: inline-block;
    background: #f5f5f5;
    border: solid 1px #ddd;
    padding: 10px 15px;
    border-radius: 4px;
}
/********modal css*********/

.custom-modal {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 60%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.custom-modal-dialog {
    max-width: 620px;
    width: 100%;
    border-radius: 0px;
    position: relative;
}

.custom-modal-content {
    background: #ffffff;
    padding: 0px;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #f56142;
    opacity: 1;
    color: #ffffff;
    border-radius: 100%;
    border: 2px solid #ffffff;
    z-index: 9;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
    padding: 0;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.custom-modal {
    opacity: 0;
    visibility: hidden;
}

body.modal-open .custom-modal {
    opacity: 1;
    visibility: visible;
}

.custom-modal .custom-modal-dialog {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

body.modal-open .custom-modal .custom-modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.custom-modal, body .custom-modal, body.modal-open .custom-modal .custom-modal-dialog, body .custom-modal .custom-modal-dialog {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.modal-header {
    padding: 15px 20px;
    background: #f5f5f5;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .modal-header h4 {
        margin: 0;
    }

.custom-modal-body {
    padding: 30px;
    min-height: 130px;
}

.modal-footer {
    border-top: solid 1px #eee;
    padding: 10px 20px;
    text-align: right;
}

.modal-open .custom-modal {
    z-index: 1111;
}

.progressa {
    border-radius: 50px !important;
    height: 35px;
    line-height: 36px;
    font-size: 14px;
    overflow: hidden;
    height: 35px;
    margin-bottom: 20px;
    background-color: #FF63C3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    line-height: 36px;
    height: 35px;
    font-size: 14px;
    border: 3px solid transparent;
}

.progressab {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
    -webkit-transition: width .25s ease,height .25s ease,font-size .25s ease;
    -moz-transition: width .25s ease,height .25s ease,font-size .25s ease;
    -ms-transition: width .25s ease,height .25s ease,font-size .25s ease;
    -o-transition: width .25s ease,height .25s ease,font-size .25s ease;
    transition: width .25s ease,height .25s ease,font-size .25s ease;
    width: 0;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans',sans-serif !important;
    animation: progress-bar-stripes 2s linear infinite reverse;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 40px 0;
    }

    100% {
        background-position: 0 0;
    }
}
.input-box .form-control:disabled:hover {
    border: 1px solid #c5b9b9;
}
.warning-message-modal a.close-modal{display:none !important}
.safety-modal {
    max-width: 650px;
}
    .safety-modal ul {
        padding-left: 20px;
    }
        .safety-modal ul li {
            list-style: disc;
            padding: 5px 0;
        }

.list-detail-info.show-content-full {
    width: 100%;
}
.profile-wrapper-bx {
    display: flex;
    align-items: center;
}
.dashboard-user-info a {
    color: #0d5b7f;
    font-weight:600;
}
.list-detail-info .btn-group .thm-btn img {
    width: 16px;
}
.span_phone{margin-left:5px !important}
.show-content-full .btn-group {
    justify-content: end !important;
    margin-top: -47px;
}
.advert-right-detail.show-content-full {
    width:100%;
}
.show-content-full .advert-more-cta {
    justify-content: end !important;
}

.location-item {
    border: 1px solid grey;
    padding: 10px;
    margin: 3px;
    float: left;
    border-radius: 50px;
}

.state-wise-cities {
    float: inline-start;
}

.main {
    max-width: 1024px;
    margin: 0 auto;
}

.logo-body {
    display: none;
}

.container {
    max-width: 1024px;
}

.escort-location-grid-wrapper .escort-profile-img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.footer-fixed-bottom {
    max-width: 1024px;
}

.description-section.footer-main-content {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.description-section.footer-main-content p {
    font-size: 16px;
    line-height: 24px;
}
.city-list-table li {
    width: 25%;
    float: left;
    border: 1px solid #ccc;
    padding: 15px;
}

    .city-list-table li a {
        font-size: 16px;
        color: #333;
    }

.publish-plan-sec .publish-points-list {
    margin-left: -10px;
    margin-right: -10px;
}

.publish-plan-sec .publish-points-bx {
    width: 33.33%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
}

.publish-plan-sec .dashboard-col {
    display: inline-block;
    width: 100%;
}

.dashboard-col.active {
    border: solid 1px #0d5b7f;
}

.dashboard-col .form-title {
    background: #F5F5F5;
    padding: 15px;
    text-align:center;
}

.publish-points-bx .form-title h4 {
    color: #5A4DCC;
}
.dashboard-col .form-body {
    padding: 20px;
    text-align: center;
    font-size: 14px;
}