.martini_tag_insights_modal_window_first {
    z-index: 11000;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.martini_tag_insights_modal_window {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 50%;
    margin: 0 auto;
    width: 600px;
    height: 320px;
    border: 2px solid #000;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    background: white;
}

.martini_tag_insights_container {
    margin: 0 auto;
    width: 580px;

}

.martini_tag_insights_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.martini_tag_insights_cross {
    color: #000;
}

.martini_tag_insights_form_radio_btn {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.martini_tag_insights_form_radio_btn input[type=radio] {
    display: none;
}

.martini_tag_insights_form_radio_btn label {
    display: inline-block;
    cursor: pointer;
    padding: 0px 15px;
    line-height: 34px;
    border: 1px solid #999;
    border-radius: 30px;
    user-select: none;
}

/* Checked */
.martini_tag_insights_form_radio_btn input[type=radio]:checked + label {
    background: #d3f2f7;
}

/* Hover */
.martini_tag_insights_form_radio_btn label:hover {
    color: #666;
}

/* Disabled */
.martini_tag_insights_form_radio_btn input[type=radio]:disabled + label {
    background: #efefef;
    color: #666;
}

.martini_tag_insights_wrapper textarea {
    resize: none;
    width: 100%;
    border-radius: 5px;
    padding: 8px 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.martini_tag_insights_buttons {
    display: flex;
    justify-content: space-between;
}

.martini_tag_insights_skip {
    color: #FFF;
    background-color: #c10101;
    padding: 13px 25px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
}

.martini_tag_insights_submit {
    color: #fff;
    background-color: #069de2;
    padding: 13px 25px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
}

.martini_tag_insights_close {
    width: 10px;
    top: 50%;
}