/* TOGGLE STYLING */
.toggle {
    box-sizing: border-box;
    font-size: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    display: inline-flex;
    align-items: center;
}

.toggle input {
    display: none !important;
}

.toggle input+label {
    margin-right: 2px;
    padding: 0.75rem 2rem;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    border: solid 2px;
    background-color: #fff;
    color: #fcb900;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.toggle input+label:first-of-type {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.toggle input+label:last-of-type {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.toggle input:hover+label {
    border-color: #fcb900;
}

.toggle input:checked+label {
    background-color: transparent;
    color: #fff;
    box-shadow: #fcb900;
    border-color: #fcb900;
    z-index: 1;
}

@media (min-width: 800px) {
    .toggle input+label {
        padding: 0.75rem 0.25rem;
        flex: 0 0 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}