* {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.modal-framework {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 4;
}

.modal-main-body {
    position: absolute;
    width: 512px;
    height: 268px;
    background-color: white;
    border-radius: 5px;
    left: 50%;
    margin-left: -256px;
    top: 50%;
    margin-top: -133px;
    background-color: rgba(0, 0, 0, .5);
    background-size: 100% auto;
}

.modal-title {
    font-size: 15px;
    padding: 20px 20px 16px;
    color: white;
}

.modal-will-change {
    width: 472px;
    height: 144px;
    padding: 0px 20px;
}

.modal-input-name,
.modal-input-href {
    height: 72px;
}

.modal-small-title-name,
.modal-small-title-href {
    font-size: 12px;
    color: white;
}

.modal-change-name,
.modal-change-href {
    width: 452px;
    height: 12px;
    padding: 6px 8px;
    color: white;
    background-color: rgba(255, 255, 255, .5);
}

.modal-buttons {
    width: 480px;
    height: 32px;
    padding: 20px 16px 16px;
}

.modal-cancel {
    float: left;
    width: 67px;
    height: 32px;
    font-size: 13px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    color: #1A73E8;
    background-color: white;
    opacity: .7;
    border: 1px solid gray;
    cursor: default;
}

.modal-confirm {
    float: right;
    width: 67px;
    height: 32px;
    font-size: 13px;
    line-height: 32px;
    border-radius: 4px;
    text-align: center;
    background-color: #1A73E8;
    opacity: .7;
    color: white;
    cursor: default;
}