/**************************************************
 CHEVRONS
 **************************************************/
.chevrons-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.chevrons {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 28px;
    height: 42px;
    transition: all 0.25s ease-in-out;
}
.chevrons .chevron {
    display: block;
    margin: 4% 0;
    transition: margin 0.25s ease-in-out;
    height: 40%;
    width: 100%;
}
.chevrons .chevron::before, .chevrons .chevron::after {
    display: inline-block;
    content: "";
    background: white;
    height: 100%;
    width: 50%;
    transition: transform 0.25s ease-in-out;
}
.chevrons .chevron::before {
    transform: skewY(33deg);
}
.chevrons .chevron::after {
    transform: skewY(-33deg);
}
.chevrons.chevrons-horizontal {
    width: 42px;
    height: 28px;
    flex-direction: row;
}
.chevrons.chevrons-horizontal .chevron {
    margin: 0 4% 0 2%;
    width: 44%;
    height: 100%;
}
.chevrons.chevrons-horizontal .chevron::before, .chevrons.chevrons-horizontal .chevron::after {
    display: block;
    height: 50%;
    width: 100%;
}
.chevrons.chevrons-horizontal .chevron::before {
    transform: skewX(33deg);
}
.chevrons.chevrons-horizontal .chevron::after {
    transform: skewX(-33deg);
}
