/* ARD Divider Widget Styles */

.ard-divider-wrapper {
    display: flex;
    width: 100%;
}

.ard-divider {
    display: flex;
    align-items: center;
    width: 100%;
    height: 3px;
    overflow: hidden;
}

.ard-divider-left {
    height: 100%;
    background-color: #0e1c2c;
    width: 60%;
    transition: all 0.3s ease;
}

.ard-divider-right {
    height: 100%;
    background-color: #cfa15e;
    width: 40%;
    transition: all 0.3s ease;
}
