.panel-cards {
    cursor: pointer;
}

.panel-cards h4 {
   font-size:14px;
}


.panel-cards:hover .read-more-btn {
    text-decoration: underline;
}

ul {
    padding-left: 20px;
}

.four-grid {
    width: 31.7%;

    @media only screen and (max-width: 991px) {
        width: 100%;
    }
}

.eight-grid {
    width: 65.9%;

    @media only screen and (max-width: 991px) {
        width: 100%;
    }
}

.four-eight-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;

    @media only screen and (max-width: 991px) {
        display: flex;
        flex-direction: column;
        grid-row-gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

.select-menu {
    position: relative;
    width: 100%;
}

    .select-menu .select-btn {
        background: white;
        min-height: 3.5rem;
        border: 1px solid #d5d6d7;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 1px;
        padding: 0 1rem;
        transition: all 0.2s ease;
        color: #acadb0;
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        outline: 1px solid transparent;
        cursor: default;
    }

.option-text {
    color: #595b61;
}

.select-menu .select-btn:hover {
    outline-color: #0088ff;
    border-color: #0088ff;
}

.select-menu.active .select-btn {
    outline-color: #0088ff;
    border-color: #0088ff;
}

.select-menu .options {
    position: absolute;
    width: calc(100% + -33px);
    overflow-y: auto;
    padding: 1rem;
    margin-top: 5px;
    background: #fff;
    max-height: 180px;
    box-shadow: 0px 12px 24px 0px #1b3b770d, 0px 24px 60px 0px #062f7d0d, 0px 2px 4px 0px #595b6133;
    display: none;
}

    .select-menu .options .option {
        cursor: pointer;
        padding: 8px 12px;
        background: #fff;
        list-style: none;
        color: #333333;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .select-menu .options .option:hover {
            background: #dffdff;
            color: #000000;
        }

.select-btn i {
    transition: 0.3s;
    width: 33px;
    height: 33px;
}

    .select-btn i svg {
        fill: #595b61;
    }

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu.active .options {
    display: block;
    opacity: 1;
    z-index: 10;
}

.input-group {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    outline: 1px solid transparent;
    position: relative;
    transition: all 0.2s ease;
}

.input::placeholder {
    color: #acadb0;
}

.input-group:hover {
    outline-color: #0088ff;
}

.input-group .input-container {
    min-height: 3.5rem;
    border: 1px solid #d5d6d7;
    border-radius: 1px;
    background: white;
    padding: 0 1rem;
    transition: all 0.2s ease;
    cursor: text;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .input-group .input-container:hover {
        border: 1px solid #0088ff;
    }

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    overflow: hidden;
    gap: 0.75rem;
}

input {
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    outline: none;
    color: #333333;
    font-size: 1.125rem;
    line-height: 150%;
    letter-spacing: 2%;
    font-weight: 400;
    font-family: adgm-gilroy, sans-serif;
}

.search-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: #0088ff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .search-btn:hover {
        background: #33a0ff;
    }

.search-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 34px;
    grid-row-gap: 13px;

    @media only screen and (max-width: 991px) {
        display: flex;
        flex-direction: column;
        grid-row-gap: 0.5rem;
    }
}

.filter {
    margin: 58px 0 94px;
    display: flex;
    padding: 1rem;
    gap: 1rem;
    background-color: #f5f5f5;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.results {
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 2%;
    font-weight: 600;
}

.sorting {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tertiary .select-btn i svg {
    fill: #007397;
}

.tertiary .select-btn {
    border: none;
    background: transparent;
    min-height: auto;
    justify-content: flex-start;
    gap: 0;
    padding: 0px;
    color: #007397;
    font-size: 16px;
    line-height: 24px;
}

    .tertiary .select-btn:hover {
        outline-color: transparent;
        border-color: transparent;
        text-decoration: underline;
    }

.tertiary.active .select-btn {
    outline-color: transparent;
    border-color: transparent;
}

.tertiary .option-text {
    color: #007397;
}

.tertiary {
    width: auto;
}

    .tertiary .select-btn i {
        width: 26px;
        height: 25px;
    }

    .tertiary .options {
        width: 51px;
        right: -1px;
    }

        .tertiary .options .option {
            padding: 0.5rem;
            text-align: center;
        }

    .tertiary .add-semicolon em {
        font-style: normal;
        margin-right: 3px;
    }

.hidden {
    display: none;
}

.filter-wraper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.clear-filter {
    font-size: 400;
    cursor: pointer;
    color: #333333;
    display: flex;
    align-items: center;
    gap: calc(1rem / 3.5);
}

    .clear-filter:hover {
        color: #33a0ff;
        text-decoration: underline;
        text-underline-position: under;
    }

        .clear-filter:hover svg {
            fill: #33a0ff;
        }

    .clear-filter svg {
        width: calc(1rem * 1.5);
        height: calc(1rem * 1.5);
    }

.hide {
    display: none;
}

adgm-body a[href] {
    overflow-wrap: anywhere;
}

#modal-element h2{padding:0;}
#modal-element h4 {   
    padding-top:0;
}

.loader-sec {
    margin-inline: auto;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #0088FF;
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon( 50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0% );
    }

    25% {
        clip-path: polygon( 50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100% );
    }

    50% {
        clip-path: polygon( 50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100% );
    }

    62.5% {
        clip-path: polygon( 50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100% );
    }

    75% {
        clip-path: polygon( 50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100% );
    }

    100% {
        clip-path: polygon( 50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100% );
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

@media screen and (max-width: 768px) {
    #model-profile-image {
        --image-grid-row: 1;
    }
}

.panel-active {
    color: #0088ff;
    font-weight: 700;
}

.panel-unactive {
    color: #a3adc2;
    cursor: pointer;
}

.panel-separator-hide {
    display: none;
}


.flex-spaced {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    gap: 0.75rem;
    justify-content: start;

    @media only screen and (max-width: 991px) {
        display: block; 
    }
}
.panel-separator-mobile {
    display: block;

    @media only screen and (max-width: 991px) {
        display: none;
    }
}