.cover{
    background: #0000004c;
    height: 100vh;
    width: 100vw;
    z-index: 100;
    position: fixed;
    top: 0;
}
.dialog{
    background: #ffffff;
    border-radius: 14px;
    width: 71vw;
    position: absolute;
    top: 35vw;
    left: 14vw;
}
.dialog-content{
    border-bottom: 1px solid #e1e1e6;
    padding: 4.2vw 8vw 4.2vw 7.5vw;
}
.dialog-title{
    font-size: 4vw;
    line-height: 6.4vw;
    font-weight: bold;
    height: 6.4vw;
    text-align: center;
    color: #1d2c4e;
}
.dialog-main{
    font-size: 3.7vw;
    color: #1d2c4e;
    margin-top: 3.2vw;
}
.dialog-button{
    display: flex;
    flex-direction: row;
    height: 11vw;
    weight: 100%;
    font-size: 4vw;
}
.dialog-cancel{
    text-align: center;
    color: #1d2c4e;
    line-height: 11vw;
    flex: 1;
    border-right: 1px solid #e1e1e6
}
.dialog-confirm{
    text-align: center;
    color: #0067cd;
    line-height: 11vw;
    flex: 1;
}
.dialog-accept{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 4vw;
    justify-content: space-between;
}
.dialog-accept-radio{
    height: 3.2vw;
    width: 3.2vw;
    border-radius: 50%;
    border: 0.5px solid #e1e1e6;
    margin-top: 0.8vw;
}
.dialog-accept-text{
    font-size: 3.2vw;
    width: 50.8vw;
    color: #1d2c4e;
    line-height: 5.3vw;
}
.tui-checkbox:checked {
    background: #1673ff;
}
.tui-checkbox {
    width: 3.2vw;
    height: 3.2vw;
    background-color: #ffffff;
    border:solid 1px #dddddd;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-top: 1vw;
    padding: 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    cursor: default;
    -webkit-appearance: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-transition: background-color ease 0.1s;
    transition: background-color ease 0.1s;
}
.tui-checkbox:checked::after {
    content: '';
    top: 0.5vw;
    left: 0.5vw;
    position: absolute;
    background: transparent;
    border: #fff solid 2px;
    border-top: none;
    border-right: none;
    height: 0.8vw;
    width: 1.3vw;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform:rotate(-45deg);
}