.feedback-toggler {
    background-color: var(--optional-green);
    padding: 8px;
    font-size: 12px;
    font-weight: bold;
    /* border-top-left-radius: 15px;
    border-top-right-radius: 15px; */
    color: white;
    cursor: pointer;
    transform: rotate(90deg);
    display: block;
    z-index: 99999;
    border-radius: 0px 0px 15px 15px;
}

.feedback-toggler.hide {
    display: none;
}

.pop-up-wrapper {
    position: relative;
}

.pop-up-container {
    min-width: 302px;
    min-height: 469px;
    max-width: 302px;
    max-height: 469px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 18px;
    background-color: white;
    padding: 8px 14px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
        rgba(0, 0, 0, 0.22) 0px 15px 12px;
    max-width: 28.125rem;
    z-index: 99999;
}

.pop-up-container .form-content {
    display: none;
    /* align-items: start; */
    justify-content: start;
    gap: 8px;
    flex-direction: column;
}

.form-content .label {
    font-weight: bold;
}

.form-content .description {
    font-size: 12px;
}

.form-content #feedbackForm {
    max-height: 15.375rem;
}

.pop-up-container.active {
    display: flex;
}

.pop-up-container textarea {
    width: 100%;
    outline: #ddd;
}

.post-submission {
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.post-submission svg.check-icon {
    width: 70px;
    height: 70px;
}

.pop-up-container .close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}

.pop-up-container .content.success .post-submission {
    display: flex;
}

.pop-up-container .content.form .form-content {
    display: flex;
}

.feedback-toggler-wrapper {
    position: fixed;
    /* left: -60px; */
    right: -60px;
    top: 50%;
    display: flex;
    transform: translateX(0%);
}

.feedback-text-area {
    border: 1px solid #ced4da;
    padding: 1rem !important;
    border-radius: 0.25rem;
}

.feedback-button {
    display: flex;
    justify-content: flex-end;
    padding-top: 6px;
}

.animated-icon {
    z-index: 6;
    position: fixed;
    bottom: 10px;
    right: 10px;
    -webkit-animation: bounce-in-right 1.5s both;
    animation: bounce-in-right 1.5s both;
}

.animated-icon .content-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    box-shadow: -2px 0px 14.3px 5px rgba(0, 0, 0, 0.21);
    border-radius: 12px;
    border: 1px solid #006d77;
    background: #fff;
    width: 17.1875rem;
    height: 10rem;
}

.animated-icon.hidden .content-container {
    display: none;
}

.animated-icon.hidden .trending-icon-container {
    position: fixed;
    bottom: 16px;
    right: 16px;
    top: auto;
    left: auto;
}

.animated-icon .trending-icon-container.active {
    display: block;
}

.animated-icon .trending-icon-container {
    position: absolute;
    top: -41%;
    left: 36%;
    z-index: 99999;
    width: 87px;
    height: 95px;
    display: none;
    animation: bounce-top 1.5s ease-in-out infinite both;
}

.animated-icon .icon {
    overflow: hidden;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 4px;
    height: auto;
    width: auto;
    transform: translate(-50%, -50%);
}

.animated-icon .title {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;

    color: #000000;
}

.animated-icon p {
    color: #696969;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    margin: 0 !important;
    line-height: 153.02%;
}

.animated-icon .icon svg {
    width: 100%;
    height: 100%;
    max-width: 45px;
    max-height: 45px;
    width: 100%;
    height: 100%;
}

.animated-icon .close svg {
    width: 18px;
    height: 18px;
}

.animated-icon.hidden .close {
    display: none;
}

.animated-icon .close {
    display: block;
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    top: 0.5rem;
    right: 0.5rem;
}

.animated-icon .actions button {
    background: #006d77 !important;
    /* height: 26px; */
    border: none !important;
    border-radius: 4px;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-2-15 16:10:44
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@keyframes bounce-top {
    0% {
        transform: translateY(-45px);
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        transform: translateY(-24px);
        animation-timing-function: ease-in;
    }

    65% {
        transform: translateY(-12px);
        animation-timing-function: ease-in;
    }

    82% {
        transform: translateY(-6px);
        animation-timing-function: ease-in;
    }

    93% {
        transform: translateY(-4px);
        animation-timing-function: ease-in;
    }

    25%,
    55%,
    75%,
    87% {
        transform: translateY(0px);
        animation-timing-function: ease-out;
    }

    100% {
        transform: translateY(0px);
        animation-timing-function: ease-out;
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * animation bounce-in-right
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-right {
    0% {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateX(68px);
        transform: translateX(68px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateX(32px);
        transform: translateX(32px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-right {
    0% {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateX(68px);
        transform: translateX(68px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateX(32px);
        transform: translateX(32px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@media screen and (max-width: 500px) {
    div#scroll-container {
        flex-direction: column !important;
        overflow: hidden;
        padding: 0 !important;
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important;
    }

    div#scroll-container .trending-card {
        max-width: 100%;
        min-width: auto;
    }

    #scroll-container .splide__list {
        padding-block: 10px !important;
        min-height: 300px !important;
        align-items: flex-start !important;
    }

    #scroll-container .splide__list a.trending-card {
        min-width: 21.875rem !important;
    }
}

div.no-padding #scroll-container {
    padding-inline: 0 !important;
}

#scroll-container {
    padding-inline: 24px 0 !important;
    padding-bottom: 3.5rem !important;
    z-index: 5;
    gap: 4px !important;
    background-color: inherit;
}

.no-space>#scroll-container {
    padding-inline: 0 !important;
}

.container-m.no-space>#scroll-container {
    max-width: 1320px;
}

#scroll-container .splide__arrows,
#scroll-container .splide__pagination {
    display: none;
}

#scroll-container .splide__list {
    gap: 1.5rem !important;
}

#scroll-container .splide__list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.375rem;
}

.trending-card {
    border: 1px solid #006d77;
    border-radius: 12px;
    color: #000;
    padding: 1.5rem;
    background-color: #fff;
    flex: 1;
    width: 100%;
    min-width: 26.875rem;
    height: 11.8125rem;
    justify-content: space-between;
    align-items: center;
}

.trending-card.primary-card {
    background: url("../img/primary-trending-bg.png"), #006d77;
    color: #fff;
    border: 1px solid #006d77;
    flex-direction: row-reverse !important;
    gap: 0.75rem;
}

.trending-card .main-heading {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    line-height: 140%;
    text-transform: uppercase;
    color: #fff;
}

.trending-card.primary-card .main-heading {
    color: #fff;
}

.trending-card .main-heading {
    color: #000;
}

.trending-card.primary-card .sub-heading {
    color: #fff;
}

.trending-card .sub-heading {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    font-size: 14px;
    line-height: 84%;
    color: #3b3535;
}

.trending-card .content {
    flex: 1;
    gap: 0.375rem;
}

.trending-card .content div {
    gap: 0.375rem;
}

.trending-card.primary-card .subtitle {
    color: #ffffff;
}

.trending-card .subtitle {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 153.02%;
    margin: 0;
    color: #696969;
}

.trending-card.primary-card .category-badge {
    display: none;
    color: #006d77;
    background: #ffffff;
}

.trending-card .category-badge {
    background-color: #baeef2;
    color: #006d77;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 6px;
    gap: 4px;
    width: auto;
    /* max-width: 10.625rem; */
    height: 22px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 113%;
}

.trending-card .icon {
    background: #4fc2ce8a;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 119px;
    height: 108px;
}

.trending-card .icon svg {
    width: 75px;
    height: 75px;
}

.twitter-share-button {
    position: relative;
    box-sizing: border-box;
    padding: 1px 12px 1px 12px;
    background-color: #000;
    color: #fff;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
}

.auth-wrapper {
    width: 466px;
}

#up-sell-modal .auth-form {
    padding-inline: 2rem;
    padding-block: 2rem;
    background-color: #fff;
}

#up-sell-modal .form-control {
    border: 1px solid #000 !important;
}

#up-sell-modal .bottom-text {
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
}

#up-sell-modal .bottom-text .hover-link {
    font-weight: 600 !important;
    color: #000 !important;
}

#up-sell-modal .google-link {
    font-size: 12px !important;
}

#up-sell-modal #registerBtn {
    background-color: #006d77 !important;
    width: 9rem !important;
    height: 49px !important;
}

#up-sell-modal #loginBtn {
    background-color: #006d77 !important;
    width: 9rem !important;
    height: 49px !important;
}

#up-sell-modal .modal-body,
#up-sell-modal .modal-dialog,
#up-sell-modal .modal-content {
    overflow: hidden !important;
}

#up-sell-modal .modal-body {
    padding: 0;
    overflow: hidden;
    background: url("../img/auth-modal-bg.png") no-repeat;
    background-size: cover;
}

#up-sell-modal .modal-content {
    border-radius: 1.25rem !important;
}

#up-sell-modal .upsell-heading {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #000000;
}

#up-sell-modal .upsell-description {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8) !important;
}

#up-sell-modal .header {
    gap: 12px !important;
}

#up-sell-modal .feedback-image {
    width: 80px;
    height: 80px;
}

#up-sell-modal .feedback-heading {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

#up-sell-modal .feedback-description {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    padding-inline: 80px;
}

#up-sell-modal .divider {
    height: 1px;
    width: 28.5rem;
    margin-block: 1.5rem;
    margin-inline: 1rem;
    border-top: 1px solid #a3cac3;
}

#up-sell-modal .pre-text {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    padding-inline: 2.125rem;
    margin-bottom: 0px;
}

#up-sell-modal .pre-text .highlight {
    font-weight: 600;
    color: #006d77;
}

#up-sell-modal .share-text {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #000000;
}

#up-sell-modal .social-icon {
    cursor: pointer;
}

#tweet-post {
    resize: none;
    border: 1px solid #006d77;
    padding: 8px;
    border-radius: 8px;
    background-color: #eee;
    width: 26.125rem;
    height: 86px;
    font-size: 0.75rem;
    /* color: #69a6ab; */
}

#x-post {
    background-color: #000;
    border-radius: 8px;
    color: white;
    padding: 8px;
    font-weight: 500;
    cursor: pointer;
}

.x-container {
    padding-left: 103px;
}

.other-share-elements span {
    cursor: pointer;
}

#up-sell-modal .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
}

#compressor-configuration {
    width: 74%;
    margin-left: auto;
    margin-right: auto;
}

#compressor-configuration .panel {
    min-width: 11rem !important;
}

.collection-wrapper {
    padding-top: 48px;
    min-height: 31.25rem;
    padding-bottom: 48px;
}

.collections-heading {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;

    color: #000000;
}

.collections-count {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
}

.collections-list {
    gap: 48px;
    width: 100%;
}

.collection-list-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 264px;
    height: 253px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
}

.collection-list-card .main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 4px;
    width: 100%;
    height: 172px;
    background: #f6f6f6;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.collection-list-card .footer {
    padding: 16px;
    gap: 12px;
    width: 100%;
}

.collection-list-card .footer .collection-name {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #006d77;
}

.collection-list-card .footer .collection-count {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.collection-options .dropdown-item .danger {
    color: #ff7979;
}

.collection-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    gap: 4px;
    padding: 10.5px 16px;
    border-radius: 8px;
    border: 1px solid #737373;
    font-size: 14px;
    font-weight: 500;
}

.share-description {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    text-align: center;
    color: #000000;
}

.share-modal .modal-footer {
    border: none !important;
}

.close-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 8px 24px;
    gap: 4px;
    width: 87px;
    height: 37px;
    background: #00aec1 !important;
    border-radius: 8px;
}

.share-modal #collection-link {
    padding: 12px;
    gap: 4px;

    width: 552px;
    height: 45px;
    border: 0.5px solid #aeaeae;
    border-radius: 4px;
}

#collection-edit .modal-dialog {
    max-width: 600px;
}

#collection-edit .delete {
    width: 260px;
}

#collection-edit .update {
    background: #00aec1 !important;
    border: none;
    color: white;
}

.collection-suggestion {
    overflow: hidden;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #e6f4f1;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 12px;
    gap: 29px;
}

.collection-suggestion .cta-section {
    gap: 24px;
    max-width: 651px;
}

.collection-suggestion .cta-section h4 {
    font-family: "Paytone One";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 50px;
    color: #0a0a0a;
}

.collection-suggestion .cta-section p {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #000000;
}

.collection-suggestion .cta-section .btn {
    border-radius: 8px !important;
    width: 190px;
    height: 56px;
}

.collection-suggestion .screenshot {
    width: 100%;
    max-width: 652px;
}

.blog-wrapper h4 {
    font-style: normal;
    font-size: 35px;
    line-height: 40px;
    color: #000000;
}

.blog-wrapper p {
    font-family: "Montserrat";
    font-style: normal;
    font-size: 17px;
    line-height: 40px;
}

@media (min-width: 1200px) {
    .collection-suggestion {
        flex-direction: row !important;
        align-items: center;
        position: relative;
        height: 558px;
    }

    .collection-suggestion .cta-section h4 {
        font-size: 35px;
    }

    .collection-suggestion .cta-section p {
        font-size: 17px;
    }

    .collection-suggestion .screenshot {
        height: 412px;
        width: 572px;
    }
}

/** Collection page CSS settings**/

.icon-wrapper {
    background-color: #f6f6f6;
    padding: 25px 16px;
    border-radius: 8px 0 0 8px;
    width: 25%;
}

.more-menu-wrapper {
    width: 10%;
}

.content-wrapper {
    width: 65%;
}

.collection-card {
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    height: 100%;
}

.collection-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.collection-name a {
    color: #006d77;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.collection-name {
    margin-bottom: 12px;
}

.icon-count {
    font-size: 14px;
}


#share-modal .modal-content {
    width: 600px !important;
}

.placeholder-glow {
    animation: placeholderGlow 2s ease-in-out infinite;
}

@keyframes placeholderGlow {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.placeholder {
    display: inline-block;
    height: 1em;
    background-color: #dee2e6;
    border-radius: 0.25rem;
    vertical-align: middle;
}

.icon-placeholder {
    display: flex;
}

.nav-link.active-link {
    border-bottom: 2px solid #FFF;

}


.side-bar {
    display: flex;
    width: 265px;
    padding: 20px 0 30px 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: #FFF;
}

.nav-bar {
    display: flex;
    width: 265px;
    padding: 0px 0 30px 0;
    flex-direction: column;
    align-items: flex-start;
}

.active-nav-bar {
    color: #006D77;
    border-radius: 4px;
    background: rgba(0, 109, 119, 0.14);
}

.nav-bar>div {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.nav-bar-text {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 16.8px */
    text-transform: capitalize;
}

.active-nav-bar-text {
    color: #006D77;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 16.8px */
    text-transform: capitalize;

}


.nav-bar-link {
    padding: 8px 16px;
    width: 100%;
}

.breadcrumb-item>a {
    color: #525252;
    font-size: 14px;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;

}

.active-feedback-link {
    border-radius: 4px;
    border: 1px solid #006D77;
    background: rgba(0, 109, 119, 0.10);
    color: #006D77;
}

.collection-section {
    padding: 20px;
}

.stats-text {
    overflow: hidden;
    color: #006D77;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.stats-count {
    overflow: hidden;
    color: #181C32;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 4px;
}

.dashboard-wrapper {
    min-height: 100vh;
    background-color: #F8F9FA;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">" !important;
    color: #D4D4D4 !important;
}

.custom-heading {
    color: #000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}


.custom-title {
    font-size: 24px;
    color: #000;
    margin-top: 7px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* same as mb-2 */
}

.custom-subtitle {
    font-size: 16px;
    color: #4A4545;
    font-weight: 500;
}