﻿/*

    Shape dividers.

*/

.divider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 45px;
}

@supports (not (-moz-appearance:button)) and (contain:paint) and (-webkit-appearance:none) {
    /* CSS rules specific to Chrome */

    .divider {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 44px;
    }

}

.divider svg {
    position: absolute;
    top: -1px;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 45px;
}

.divider.flip-v {
    transform: scaleY(-1);
}

.divider.flip-h {
    transform: scaleX(-1);
}

.divider.flip-v.flip-h {
    transform: scale(-1, -1);
}

.divider.bottom svg {
}

.divider.gray-bg {
    background-color: #F0F0F0;
}

.divider.gray-fill {
    fill: #F0F0F0;
}

    .divider.blue-bg {
        background-color: #071441;
    }

    .divider.blue-fill {
        fill: #071441;
    }

.divider.green-bg {
    background-color: #186500;
}

.divider.green-fill {
    fill: #186500;
}