.dp-headericons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-right: 30px;
}

.dp-headericons::after{
    content: "";
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 1px;
    height: 15px;
    background: #A9BFCC;
}

.dp-headericons__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dp-headericons__image {
    height: 18px;
}

.dp-headericons__text {
    font-size: 13px;
    font-weight: 600;
    color: #20778F;
    white-space: nowrap;
}



@media (max-width: 1200px) {
    
    .dp-headericons{
        gap: 10px;
    }


    .dp-headericons__text{
        font-size: 11px;
    }

    .dp-headericons{
        padding-right: 20px;
    }

    

    
}

@media (max-width: 991px) {
   

    .dp-headericons{
        padding-right: 0px !important;
        width: 100%;
        justify-content: flex-end;
    } 

    .dp-headericons::after{
        display: none !important;
    }
}
