
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-item {
    flex: 1;
    min-width: 300px;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
}
.flex-item.with-tp{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.section-headings {
    text-align: center;
    font-weight: 900;
    font-size: 30px !important;
    color: var(--text-color);
}
.img_download{
    opacity: 1;
    background-color: rgb(255 255 255 / 22%) !important;
}
.img_download button{
    font-weight: 900;
    font-size: 20px;
}
img {
    /* filter: brightness(100%) contrast(80%) saturate(100%) blur(0px) hue-rotate(0deg); */
    border-radius: var(--border-radius);
}

.section-title{
        text-align: center;
}
.chess-pattern {
    background-image: 
        linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
        linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
        linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #e9ecef;
    /* padding: 3rem 0; */
}
/*  Toast  */
.custom-toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    z-index: 9999;
    min-width: 300px;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.3);
}
/* ========= for modals and and other popups close buttons ======*/
.close-button {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 50px;
    right: 15px;
    top: -10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-color);
}

/* id_preferred_contact_methods */
#id_preferred_contact_methods{
    display: flex;
    flex-wrap: wrap;
}
#id_preferred_contact_methods div{
    border: 1px solid;
    border-radius: 10px;
    margin: 2px;
}
#id_preferred_contact_methods div:hover {
    background-color: var(--primary-color);
}
#id_preferred_contact_methods div label{
    padding: 5px 30px;
}
#id_preferred_contact_methods div label input{
    margin-right: 10px;
}

/* Custom scrollbar */
.phone-dropdown-options::-webkit-scrollbar,
.faq--content::-webkit-scrollbar {
    width: 8px;
}

.phone-dropdown-options::-webkit-scrollbar-track,
.faq--content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.phone-dropdown-options::-webkit-scrollbar-thumb,
.faq--content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.phone-dropdown-options::-webkit-scrollbar-thumb:hover,
.faq--content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ============== Learn More =========== */
.learn-more {
    color: var(--primary-color);
    font-weight: bolder;
}

.learn-more:hover {
    color: var(--button-bg-hover);
}