/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.okon-box {
    flex: calc(25% - 10px);
    padding: 5px;
    margin: 5px;
    box-sizing: border-box;
    background-color: white;
}

.okon-box-in {
    flex: 50%;
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .okon-box {
        flex: calc(50% - 10px);
    }

    .okon-box-in {
        flex: 100%;
        box-sizing: border-box;
    }
}