.options {
    background-color: #f0f0f0;
    display: block;
    width: 270px;
    max-width: 40%;
    margin: 0;
    padding: 1em;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    border-radius: 0.5em;
    font-size: 1.2em;
    color: #222222;
    position: fixed;
    z-index: 99999999999 !important;
    top: 50px;
    right: 50px;
}

.options>div {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.options span {
    background-color: #fff;
    display: inline-block;
    width: 2em;
    height: 1.2em;
    vertical-align: middle;
    margin: 0 0.5em 0 0;
    padding: 0;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 0.5em;
    cursor: pointer;
    position: relative;
}

.options span:before {
    content: '';
    background-color: #ddd;
    display: block;
    width: calc(1.2em - 2px);
    height: calc(1.2em - 2px);
    margin: 0;
    padding: 0;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}