body {
    margin: 0;
}

body * {
    font-family: "Poppins", sans-serif;
    outline: none;
    box-sizing: border-box;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: -0.1px;
    color: #4a4a4a;
}

select,
input,
textarea {
    font-size: 16px;
    line-height: 24px;
}

input::placeholder,
textarea::placeholder {
    color: #b2b2b2;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    display: inline;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    color: #ffa459;
    transition: ease-in-out .1s;
    transition-duration: 0.1s;
}

.header.desktop {
    height: 72px;
    display: flex;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 11;
}

.header.mobile {
    display: none;
}

@media screen and (max-width: 991px) {
    .header.desktop {
        display: none;
    }

    .header.mobile {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0 16px;
        justify-content: space-between;
        align-items: center;
        height: 72px;
    }
}

.header+* {
    padding-top: 72px;
}

@media screen and (max-width: 600px) {
    .header+* {
        padding-top: 24px;
    }
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 135px;
    padding: 0 15px;
}

.header .logo img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
}

.header .logo.org {
    width: 90px;
}

.header .logo.org img {
    border-radius: 12px;
}

@media screen and (max-width: 991px) {
    .logo-mobile {
        display: flex;
        justify-content: center;
        margin-left: 10px;
    }

    .logo-mobile img {
        width: 60px;
        height: 60px;
    }

    .burger-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2px;
        padding: 0;
        background-color: #ffa459;
        border: none;
        color: #ffffff;
        font-weight: 600;
        width: 58px;
        height: 28px;
        cursor: pointer;
    }

    .search-mobile {
        display: flex;
        justify-content: flex-end;
    }

    .search-mobile button {
        width: 30px;
        margin: 0;
        border: none;
        padding: 0;
        background-color: transparent;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
}

.header .download {
    align-items: center;
    column-gap: 10px;
    display: flex;
    height: 100%;
    margin: 0 14px 0 32px;
}

.header .download a {
    display: flex;
}

.header .download img {
    height: 34px;
}

.header .search {
    border-left: 1px solid #e7e7e7;
    flex-grow: 1;
    flex-shrink: 1;
    width: 20px;
    margin-right: 24px;
    height: 100%;
    position: relative;
}

@media screen and (max-width: 991px) {
    .header .search {
        width: 30px;
        flex-grow: 0;
        flex-shrink: 0;
        margin: 0;
        border: none;
    }
}

.header .search input {
    border: none;
    padding: 0 0 0 65px;
    height: 100%;
    width: 100%;
}

.header .search img {
    position: absolute;
    top: 50%;
    left: 34px;
    transform: translateY(-50%);
    width: 25px;
}

@media screen and (max-width: 991px) {
    .header .search img {
        width: 100%;
        position: static;
        transform: none;
    }
}

.header .links {
    padding-right: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.header .addSpace {
    padding: 20px 12px;
    height: 100%;
    border-bottom: 0 solid #ffa459;
    transition-duration: .1s;
}

.header .addSpace:hover {
    border-bottom-width: 4px;
}

.header .btn {
    padding: 4px 12px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    transition-duration: .15s;
}

.header .btn:hover {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4);
}

.header .inbox {
    padding: 20px 12px;
    height: 100%;
    border-bottom: 0 solid #ffa459;
    transition-duration: .1s;
    color: #4a4a4a;
}

.header .inbox:hover {
    border-bottom-width: 4px;
    color: #ff8d2f;
}

.stickyWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 991px) {
    .stickyWrapper {
        flex-direction: column;
    }
}

.statesBanner {
    width: 300px;
    min-width: 300px;
    padding-right: 18px;
    position: sticky;
    top: 50%;
    transform: translateY(-44%);
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

@media (max-width: 991px) {
    .statesBanner {
        flex-direction: row;
        column-gap: 12px;
        width: 100%;
        min-width: unset;
        position: static;
        order: 3;
        top: unset;
        transform: none;
        padding: 0 8px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .statesBanner {
        width: 260px;
        min-width: 260px;
    }
}

.statesBanner a {
    display: flex;
    justify-content: center;
}

.statesBanner a img {
    max-height: 40vh;
}

main {
    background-color: #f8f7f3;
    padding: 24px 0 96px;
}

@media (max-width: 991px) {
    main {
        padding-bottom: 32px;
    }
}

.statesSidebar {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    width: 300px;
    min-width: 300px;
    padding-left: 18px;
    position: sticky;
    top: 88px;
}

@media (max-width: 991px) {
    .statesSidebar {
        width: 100%;
        min-width: unset;
        padding: 0 8px;
        position: static;
        order: 2;
        margin: 18px 0;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .statesSidebar {
        width: 260px;
        min-width: 260px;
    }
}

.statesTitle {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
}

.statesList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 160px);
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    .statesList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: unset;
    }
}

.article {
    max-width: 1000px;
    background-color: #fff;
    padding: 65px 107px;
    margin-top: 24px;
}

@media screen and (max-width: 991px) {
    .article {
        margin: 0 auto;
        width: 90%;
        padding: 24px 16px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .article {
        padding: 32px 24px;
    }
}

.article * {
    line-height: 1.85;
}

.article strong {
    font-weight: 700;
}

.article h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.article h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 0;
}

.article h1 {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 32px;
    margin-top: 0;
    font-weight: 600;
}

@media (max-width: 991px) {

    .article h2,
    .article h2 * {
        font-size: 24px;
        line-height: 26px;
        font-weight: 600;
    }

    .article h3,
    .article h3 * {
        font-size: 22px;
        line-height: 24px;
        font-weight: 600;
    }
}

.bc-container {
    display: flex;
    flex-direction: column;
    margin: 24px 0 32px;
}

.bc-container h1 {
    margin-top: 0;
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffa459;
}

.breadcrumbs a.empty {
    color: #4a4a4a;
}

.article .author {
    margin-bottom: 20px;
}

.wp-block-image {
    margin: 0;
}

.wp-block-image img {
    max-width: 100%;
    height: 100%;
}

.footer {
    padding: 50px 20px 32px;
    background-color: #fcfcfc;
    border-top: 1px solid #e7e7e7;
}

@media screen and (max-width: 1023px) {
    .footer {
        padding: 30px 16px;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        padding-bottom: 16px;
        justify-content: space-between;
        align-items: center;
    }
}

.footer .content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
}

.footer .content .mob {
    display: none;
}

@media (min-width: 601px) and (max-width: 1023px) {
    .footer .content {
        gap: 22px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 600px) {
    .footer .content.main {
        flex-direction: column;
    }
}

.footer .content.blog,
.footer .content.truckStops {
    flex-direction: column;
}

.footer .content.blog h4,
.footer .content.truckStops h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 36px;
}

.footer .content.blog h4 a,
.footer .content.truckStops h4 a {
    font-size: 22px;
    font-weight: 600;
}

.footer .content.blog a,
.footer .content.truckStops a {
    font-size: 14px;
    line-height: 18px;
    color: #4a4a4a;
}

.footer .content.blog a:hover,
.footer .content.truckStops a:hover {
    text-decoration: underline;
}

.footer .content .truckStops {
    max-width: 1260px;
}

.footer .content .blogLinks,
.footer .content .truckStopsLinks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 70px;
    row-gap: 18px;
}

.footer .content .blogLinks a,
.footer .content .truckStopsLinks a {
    font-size: 16px;
}

@media screen and (max-width: 1023px) {

    .footer .content .blogLinks,
    .footer .content .truckStopsLinks {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 40px;
    }
}

@media screen and (max-width: 800px) {

    .footer .content .blogLinks,
    .footer .content .truckStopsLinks {
        column-gap: 20px;
    }
}

@media screen and (max-width: 600px) {

    .footer .content .blogLinks,
    .footer .content .truckStopsLinks {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
    }
}

.footer .content .truckStopsHeader {
    display: flex;
    align-items: center;
    column-gap: 12px;
    position: relative;
    cursor: pointer;
}

.footer .content .truckStopsHeader h4 {
    margin-bottom: 0;
}

.footer .content .truckStopsHeader::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.footer .content .truckStopsHeader.active::after {
    content: "\2212";
}

.footer .content .truckStopsContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.footer .content .truckStopsContent.active {
    max-height: max-content;
}

.footer .content .truckStopsLinks {
    margin-top: 36px;
}

.footer .content .separator {
    height: 1px;
    width: 100%;
    background-color: #e7e7e7;
    margin: 60px 0;
}

@media screen and (max-width: 600px) {
    .footer .content .separator {
        margin: 32px 0;
    }
}

.footer .content .truckStopsSeparator {
    margin-top: 35px;
}

.footer .content.tpc {
    flex-direction: column;
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .footer .content.tpc {
        margin-top: 32px;
    }
}

.footer .content.tpc .bottomSeparator {
    padding-bottom: 32px;
    border-top: 1px solid #e7e7e7;
}

.footer .companyInfo {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
}

.footer .companyInfo .logo {
    display: flex;
}

.footer .companyInfo .logo img {
    height: 100px;
    width: 100px;
    min-width: 100px;
}

.footer .companyInfo .text {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .footer .companyInfo {
        width: 100%;
        flex-direction: row;
        column-gap: 53px;
    }

    .footer .companyInfo .text {
        max-width: 209px;
    }
}

.footer .links {
    display: flex;
    flex-direction: column;
}

.footer .links.app {
    justify-content: center;
}

.footer .links.app .list {
    margin: 0;
}

.footer .links .list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

@media screen and (max-width: 600px) {
    .footer .links .list {
        margin-right: 94px;
    }
}

.footer .links a {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #4a4a4a;
    display: flex;
    justify-content: center;
}

.footer .links a:hover {
    color: #ffa459;
}

.footer .links img {
    height: 36px;
}

.footer .links .download {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    margin-top: 36px;
}

@media screen and (max-width: 600px) {
    .footer .links .download {
        margin-top: 0;
    }
}

@media screen and (max-width: 600px) {
    .footer .links {
        flex-direction: row;
        margin: 32px 0;
    }
}

.footer .address {
    display: flex;
    flex-direction: column;
}

.footer .address a {
    color: #4a4a4a;
    margin-bottom: 8px;
    font-weight: 400;
    text-align: center;
}

.footer .address a:hover {
    color: #ffa459;
}

.footer .address div {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.footer .address div a {
    color: #4a4a4a;
}

.footer .address div a:hover {
    color: #ffa459;
}

@media screen and (max-width: 600px) {
    .footer .address>a {
        display: none;
    }

    .footer .content .mob {
        display: flex;
        justify-content: center;
        color: #4a4a4a;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        margin-top: 14px;
    }
}

.footer .social {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer .social .icons {
    display: flex;
    align-items: center;
    column-gap: 22px;
    margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
    .footer .social .icons {
        margin-top: 32px;
        justify-content: center;
    }
}

.footer .social .icons svg {
    width: 25px;
}

.footer .social .icons svg path,
.footer .social .icons svg g {
    transition: ease-in-out .1s;
}

.footer .social .icons svg:hover path,
.footer .social .icons svg:hover g {
    fill: #ffa459;
}

.footer .social .icons svg.youtube {
    width: 35px;
}

.footer .social .icons svg.tiktok {
    width: 30px;
    height: 30px;
    fill: #4a4a4a;
}

.footer .social a {
    display: flex;
    align-items: center;
    color: #4a4a4a;
    font-weight: 500;
}

.footer .social a:hover {
    color: #ffa459;
}

.marketplaceTinyFontStyles {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
}

@media (min-width: 1023px) {
    .marketplaceTinyFontStyles {
        line-height: 16px;
    }
}

.home {
    background-color: #ffffff;
    display: grid;
    align-items: start;
    grid-template-columns: 2fr 1fr;
    margin: 40px;
    padding: 64px 40px;
    column-gap: 32px;
}

@media screen and (max-width: 991px) {
    .home {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 90%;
        padding: 24px 16px;
    }
}

.sidebar {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding: 24px;
    border: 1px solid #f8f7f3;
}

@media screen and (max-width: 991px) {
    .sidebar {
        padding: 18px;
        margin-top: 24px;
    }
}

.sidebar-social {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.sidebar-title {
    font-size: 28px;
    line-height: 31px;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .sidebar-title {
        font-size: 22px;
        line-height: 24px;
    }
}

.sidebar-social-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
}

.sidebar-social-list div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .sidebar-social-list div svg {
        width: 23px;
        height: 23px;
        margin-bottom: 4px;
    }
}

.sidebar-social-list h5 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .sidebar-social-list h5 {
        font-size: 16px;
        line-height: 26px;
    }
}

.sidebar-social-list p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .sidebar-social-list p {
        font-size: 12px;
        line-height: 22px;
    }
}

.sidebar-banners {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.sidebar-banners a {
    display: flex;
}

.sidebar-banners img {
    max-width: 100%;
}

.articles-list {
    display: flex;
    flex-direction: column;
}

.articles-list h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .articles-list h1 {
        font-size: 28px;
        line-height: 34px;
        margin-top: 0;
    }
}

.articles-list-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.article-item {
    display: grid;
    column-gap: 24px;
    align-items: flex-start;
    grid-template-columns: 3fr 4fr;
}

@media screen and (max-width: 991px) {
    .article-item {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }
}

.article-item a {
    display: flex;
}

.article-item > a {
    display: flex;
}

.article-item a img {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.article-item > div {
    display: flex;
    flex-direction: column;
}

.article-item h2 {
    margin: 0;    
}

.article-item a h2,
.article-item h2 a {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #4a4a4a;
}

.article-item p {
    margin: 0;
}

.article-item p.read-more {
    display: none;
}

@media screen and (max-width: 991px) {
    .article-item p {
        font-size: 14px;
        line-height: 27px;
    }
}

.article-item>div {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.article-details {
    display: flex;
    margin-top: 12px;
    column-gap: 20px;
}

.article-details * {
    font-size: 12px;
    line-height: 19px;
    font-weight: 500;
    color: #4a4a4a;
}

.post-navigation {
    margin: 24px 0;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

.ast-single-related-posts-container {
    display: flex;
    flex-direction: column;
    margin: 24px;
    background: #fff;
    padding: 84px 106px;
}

.ast-related-posts-title-section h2 {
    margin-top: 0;
    font-weight: 600;
    font-size: 30px;
}

.ast-related-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
}

.ast-related-posts-wrapper article a {
    display: flex;
    flex-direction: column;
}

.ast-related-posts-wrapper article a img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ast-related-posts-wrapper h3 {
    margin-bottom: 0;
}

.ast-related-posts-wrapper h3 {
    font-size: 20px;
    line-height: 26px;
    color: #4a4a4a;
    font-weight: 600;
}

.ast-related-posts-wrapper .related-entry-header .entry-meta {
    display: none;
}

.ast-pagination {
    margin-top: 42px;
}

.screen-reader-text {
    display: none;
}

.ast-pagination .nav-links {
    display: flex;
    column-gap: 4px;
}

.ast-pagination .nav-links>* {
    padding: 5px 10px;
}

.ast-pagination .nav-links span.page-numbers {
    background-color: #e2e2e2;
}

.ast-pagination .nav-links span.page-numbers.dots {
    background-color: transparent;
}

@media screen and (max-width: 600px) {
    .ast-single-related-posts-container {
        margin: 12px;
        padding: 28px;
    }

    .ast-related-posts-title-section h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .ast-related-posts-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }
}

.author-box {
    display: flex;
    column-gap: 32px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.author-bio .page-title {
    color: #ffa459;
}

@media screen and (max-width: 600px) {
    .author-box {
        flex-direction: column;
        margin-top: 12px;
        margin-bottom: 48px;
    }
}

.recent-posts {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.recent-posts h3 {
    margin-top: 0;
    font-size: 28px;
    line-height: 31px;
    font-weight: 600;
    text-align: center;

}

.recent-posts ul {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.recent-posts ul a {
    line-height: 1.5;
}

.pac-container {
    position: fixed !important;
    top: 72px !important;
    background-color: #ffa459;
    padding: 8px 0;
    left: 26.75vw;
    z-index: 10 !important;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 991px) {
    .pac-container {
        position: fixed !important;
        top: 109px !important;
        z-index: 100 !important;
    }
}

.pac-icon {
    display: none;
}

.pac-item {
    color: #ffffff;
    border-top: none;
    border-bottom: none;
    border-left: 5px solid transparent;
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.pac-item:hover {
    border-left-color: #ffffff;
    background-color: transparent;
}

.pac-item span {
    opacity: .6;
    color: #fff;
}

.pac-item span.pac-item-query {
    opacity: 1;
    color: #ffffff;
    font-size: 18px;
}

.pac-item span.pac-item-query .pac-matched {
    font-weight: 600;
    opacity: 1;
    color: #fff;
}

.pac-logo::after {
    display: none;
}

.pac-item-selected {
    background-color: transparent;
    border-left-color: #ffffff;
}

.mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
}

.mobileMenu.active {
    display: block;
}

.nonAuth {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding: 50px 24px 16px;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    position: relative;
}

.nonAuth .close {
    right: 24px;
    position: absolute;
    top: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.nonAuth .close svg {
    stroke: #ea580c;
}

.nonAuth .loginButtonContainer {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.nonAuth .loginButtonContainer a {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #dcfce7;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.nonAuth .loginButtonContainer a svg {
    fill: none;
    margin-bottom: 8px;
    stroke: #16a34a;
}

.nonAuth .loginButtonContainer a span {
    font-size: 20px;
    font-weight: 600;
    color: #16a34a;
}

.nonAuth .loginButtonContainer .login {
    background: #fff7ed;
}

.nonAuth .loginButtonContainer .login svg {
    stroke: #ea580c;
}

.nonAuth .loginButtonContainer .login span {
    color: #ea580c;
}

.nonAuth .servicesContainer h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.nonAuth .servicesContainer .linksContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nonAuth .servicesContainer .linksContainer a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px;
    background: #fff7ed;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.nonAuth .servicesContainer .linksContainer a svg {
    fill: none;
    stroke: #ea580c;
}

.nonAuth .servicesContainer .linksContainer a div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nonAuth .servicesContainer .linksContainer a div span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1f2937;
}

.nonAuth .servicesContainer .linksContainer a div span:nth-child(2) {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
}

.mobileSearchWindow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
}

.mobileSearchWindow.active {
    display: block;
}

.mobileSearchWindow .close {
    right: 24px;
    position: absolute;
    top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mobileSearch {
    margin-top: 72px;
    padding: 0 16px;
    position: relative;
}

.mobileSearch img {
    width: 24px;
    position: absolute;
    left: 16px;
    bottom: 6px;
}

.mobileSearch input {
    display: block;
    width: 100%;
    margin: 0;
    padding: 5px 0 5px 30px;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: #ffa459;
    border-radius: 0;
    color: #4a4a4a;
    transition: border-bottom-color ease-in .2s;
}
