body.mfp-zoom-out-cur .mfp-bg , body.mfp-zoom-out-cur .mfp-wrap {
    z-index: 99999;
}

.option-panel {
    z-index: 9999;
    width: 215px;
    position: fixed;
    right: 0;
    top: 20%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 20px 15px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.option-panel-collased {
    right: -215px;
}

.option-panel h2 {
    font-size: 13px;
    margin: 0 0 0 0;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 600;
}

.option-panel .color-plate {
    width: 24px;
    height: 24px;
    float: left;
    margin: 5px;
    border-radius: 3px;
    cursor: pointer;
}

.option-panel .color-plate.checked {
    -webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.8);
    -moz-box-shadow: 0 0 10px 1px rgba(0,0,0,0.8);
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.8);
}

.setting-button {
    position: absolute;
    font-size: 24px;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: -50px;
    background-color: #000;
    color: #fff;
    top: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
}

.setting-button.two {
    position: fixed;
    top: 30%;
    left: auto;
    right: 0;
    background-color: #555;
    z-index: 9998;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.radio-list input[type=radio] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.radio-list label {
    border: 2px solid #ddd;
    cursor: pointer;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.radio-list label::before {
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    background: #C9D6FF;
    background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF);
    background: linear-gradient(to right, #E2E2E2, #C9D6FF);
    z-index: 1;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.radio-list label:hover::before {
    background-color: #333;
}
.radio-list label.active::before {
    background: #AAFFA9;
    background: -webkit-linear-gradient(to right, #11FFBD, #AAFFA9);
    background: linear-gradient(to right, #11FFBD, #AAFFA9);
}