* {
    padding: 0;
    margin: 0;
}

.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 {
    display: none;
    position: absolute;
    width: 70vw;
    height: 40vw;
    background-color: white;
    border-radius: 5px;
    left: 50%;
    margin-left: -35vw;
    top: 30%;
    margin-top: -15vw;
    background-color: rgba(0, 0, 0, .5);
    background-size: 100% auto;
}

.modal-title {
    height: 8vw;
    text-align: center;
    font-size: 3vw;
    padding: 1vw 1vw 1vw;
    color: white;
    line-height: 8vw;
}

.modal-will-change {
    width: 70vw;
    height: 20vw;
    padding: 0px 5vw;
}

.modal-input-name,
.modal-input-href {
    height: 10vw;
}

.modal-small-title-name,
.modal-small-title-href {
    font-size: 3vw;
    color: white;
}

.modal-change-name,
.modal-change-href {
    width: 60vw;
    height: 5vw;
    padding: 6px 8px;
    color: white;
    background-color: rgba(255, 255, 255, .5);
}

.modal-buttons {
    width: 70vw;
    height: 10vw;
    padding: 1.5vw 7vw 7vw;
}

.modal-cancel {
    float: left;
    width: 15vw;
    height: 8vw;
    font-size: 4vw;
    line-height: 8vw;
    text-align: center;
    border-radius: 1vw;
    color: #1A73E8;
    background-color: white;
    opacity: .7;
    border: 1px solid gray;
    cursor: default;
}

.modal-confirm {
    float: right;
    width: 15vw;
    height: 8vw;
    font-size: 4vw;
    line-height: 8vw;
    border-radius: 1vw;
    text-align: center;
    background-color: #1A73E8;
    opacity: .7;
    color: white;
    cursor: default;
}