.color-white {
    color: #FFFFFF;
}

.color-inherit {
    color: inherit;
}

.color-success {
    color: var(--primary-success-color);
}

.strike-out {
    text-decoration: line-through;
    font-weight: normal;
}

.no-underline {
    text-decoration: none;
}

.no-border-radius {
    border-radius: 0 !important;
}

.no-list-style {
    list-style: none;
}

.font-italic {
    font-style: italic;
}

.common-size-14 {
    font-size: 14px;
}

.common-size-16 {
    font-size: 16px;
}

.common-size-18 {
    font-size: 18px;
}

.common-size-20 {
    font-size: 20px;
}

@media (max-width: 991px) {
    .common-size-20 {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .common-size-30 {
        font-size: 30px;
    }
}

.common-size-42 {
    font-size: 42px;
}

@media (max-width: 991px) {
    .common-size-42 {
        font-size: 24px;
    }
}

.common-weight-normal {
    font-weight: normal;
}

.common-weight-600 {
    font-weight: 600;
}

.common-weight-700 {
    font-weight: 700;
}

.common-mt-20 {
    margin-top: 20px !important;
}

.common-mt-50 {
    margin-top: 50px;
}

.common-mb-50 {
    margin-bottom: 50px !important;
}

.common-pt-50 {
    padding-top: 50px;
}

.custom-bottom-20 {
    bottom: 20px;
}

@media (min-width: 992px) {
    .full-width-desktop {
        width: 100%;
    }
    .three-quaters-width-desktop {
        width: 75%;
    }
    .half-width-desktop {
        width: 50%;
    }
    .quater-width-desktop {
        width: 25%;
    }
    .text-center-desktop {
        text-align: center;
    }
    .justify-end-desktop {
        justify-content: end;
    }
    .only-mobile {
        display: none;
    }
    .padding-top50-desktop {
        padding-top: 50px;
    }
}

@media (max-width: 991px) {
    .half-width-mobile {
        width: 50% !important;
    }
    .nav-link {
        font-size: 14px;
    }
    .extra-small-text-mobile {
        font-size: 11px;
    }
    .card-title {
        font-size: 16px;
        height: 40px;
    }
    .display-flex-mobile {
        display: flex !important;
    }
    .full-width-mobile {
        width: 100% !important;
        max-width: 100% !important;
    }
    .medium-container-mobile {
        width: 75%;
        margin: 0 auto;
    }
    .only-desktop {
        display: none;
    }
    .column-reverse-mobile {
        flex-direction: column-reverse;
    }
    .margin-top-mobile {
        margin-top: 15px;
    }
    .margin-left-mobile {
        margin-left: 15px;
    }
    .padding-10-mobile {
        padding: 0 10px;
    }
    .text-center-mobile {
        text-align: center;
    }
    .justify-center-mobile {
        justify-content: center;
    }
    .justify-even-mobile {
        justify-content: space-evenly;
    }
    .justify-between-mobile {
        justify-content: space-between;
    }
}

/* .common-color-blue {
    color: var(--secondary-text-color);
}

.common-color-grey {
    color: var(--container-heading-text-color);
} */

.themed-bg {
    background-color: var(--primary-card-background);
}

.default-container {
    display: block;
    max-width: 90%;
    margin: 0 auto;
}

.default-small-container {
    display: block;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .default-small-container {
        max-width: 60%;
    }
}

.default-medium-container {
    display: block;
    max-width: 70%;
    margin: 0 auto;
}

.add-flex-row {
    display: flex;
    flex-direction: row;
}

.add-flex-column {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
    align-items: center;
}

.cta-btn {
    height: 40px;
    width: 105px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--primary-text-color);
    background: transparent;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .cta-btn {
        width: 150px;
    }
}

/* @media (max-width: 991px) {
    .cta-btn {
      width: 90%;
    }
} */

.fill-btn {
    background-color: var(--secondary-text-color);
    color: var(--text-color-light);
    border: 1px solid var(--secondary-text-color);
}

/* Remove default Bootstrap styling that removes top border */
.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--bs-accordion-border-color);
}

.float-right {
    float: right;
}

.secondary-paragraph {
    color: var(--secondary-paragraph-color);
}

.secondary-text {
    color: var(--secondary-text-color);
}

.secondary-light-text {
    color: var(--secondary-light-text-color);
}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}