.custom-ajax-loader-wrapp{
    display: none;
}
.custom-ajax-loader{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

#data_table_wrapper #data_table_filter input{
    background-color: #eef3f7;
    border-color: #e9e9e9;
    border-radius: 3px;
    outline: none;
}

table.dataTable tbody tr {
    background-color: transparent !important;
}
.w-33 {
    width: 33% !important;
}

/*Provider directory or policy search form*/

#carrier_index {
    position: -webkit-fixed; /* For Safari */
    position: fixed;
    top: 20%; /* Keeps it vertically in the same place within the card */
    left: 10%; /* Start with 0 to stick to the left edge of the card container */
    margin-left: 10px;
    z-index: 1000;
    width: 30px;
    max-height: 80%;
    overflow-y: auto;
}

.extra-carriers p {
    display: none;
}
.sub-item {
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: 12px;
}
.list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates two columns of equal width */
    row-gap: 10px; /* Adjust the gap between items as needed */
    column-gap: 40px;
    z-index: 1;
    padding-left: 40px;
}
.list-item {
    transition: background-color 0.3s;
    border-radius: 5px;
}
.list-item .provider_logo_wrapp{
    width: 70%;
    height: 200px;
}
.list-item .provider_logo_wrapp img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.list-item a:hover {
    cursor: pointer;
}
.item-font {
    font-size: 12px;
}
.arrow-icon {
    width: 20px;
    height: auto;
}

/*provider notes*/
.provider_notes_note p{
    margin: 0px;
}
.provider_notes_policy p{
    margin: 0px;
}
.provider_notes_date p{
    margin: 0px;
}
.provider_notes_zip p{
    margin: 0px;
}
.provider_notes_error p{
    margin: 0px;
}

/*Demotech Ratings*/
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.white-box {
    top: 25px;
    left: 0;
    padding: 10px;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 450px;
    border-radius: 10px;
}
.arrow-icon {
    cursor: pointer;
    margin-left: 10px;
    width: 15px;
    height: auto;
    transition: transform 0.3s ease;
    display: inline-block;
}
.new-tab-icon {
    width: 15px;
    height: auto;
    margin-bottom: 5px;
    cursor: pointer;
}
.rotated {
    transform: rotate(180deg);
}

/*alert*/

@font-face {
    font-family: keenicons-duotone;
    src: url(fonts/keenicons-duotone.eot);
    src: url(fonts/keenicons-duotone.eot) format("embedded-opentype"),url(fonts/keenicons-duotone.ttf) format("truetype"),url(fonts/keenicons-duotone.woff) format("woff"),url(fonts/keenicons-duotone.svg) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}
.ki-message-text-2 .path1:before {
    content: "\ed2a";
    opacity: .3;
}
.ki-message-text-2 .path2:before {
    content: "\ed2b";
    position: absolute;
    left: 0;
}
.ki-message-text-2 .path3:before {
    content: "\ed2c";
    position: absolute;
    left: 0;
}
.ki-cross .path1:before {
    content: "\eb10";
}
.ki-cross .path2:before {
    content: "\eb11";
    position: absolute;
    left: 0;
    opacity: .3;
}
.ki-search-list .path1:before {
    content: "\ee35";
    opacity: .3;
}
.ki-search-list .path2:before {
    content: "\ee36";
    position: absolute;
    left: 0;
}
.ki-search-list .path3:before {
    content: "\ee37";
    position: absolute;
    left: 0;
}
.ki-duotone {
    font-family: keenicons-duotone!important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-flex;
    direction: ltr;
    position: relative;
    display: inline-flex;
    direction: ltr;
    position: relative;
    display: inline-flex;
    direction: ltr;
    position: relative;
    display: inline-flex;
    direction: ltr;
    position: relative;
    display: inline-flex;
    direction: ltr;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.user_menu_dropdown{
    transform: translate(30px, -75px) !important;
    z-index: 1000 !important;
    position: fixed !important;
}
.notification_menu_dropdown{
    transform: translate(30px, -125px) !important;
    z-index: 1000 !important;
    position: fixed !important;
}

.custom-alert {
    position: absolute;
    left: 50%;
    top: -130px;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 500px;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}
.pulse-animation {
    animation: pulse 1s ease-out;
    animation-iteration-count: 4;
}