.mg-rows {
    position: relative;
}

.mg-trigger {
    cursor: pointer;
}

.mg-space {
    display: none;
    position: relative;
    width: 100%;
    float: left;
}

.mg-target {
    display: none;
    /* background:#222; */
    color: #888;
}

.mg-target-open {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.mg-indicator {
    border-bottom: 10px solid #222;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    position: absolute;
    top: 0;
    width: 0;
    display: none;
}

.mg-close {
    display: none;
    background: url(../images/close.svg) no-repeat center center #b21e23;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.mg-close:hover {
    background: url(../images/close.svg) no-repeat center center #000000;
}

@media (min-width: 768px) {
    .mg-close {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1200px) {
    .mg-close {
        width: 75px;
        height: 75px;
    }
}