.mylayer {
    background-color: rgba(33, 33, 33, 0.4);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}
.myconfirm {
    margin-left: -200px;
    color: #646464;
    width: 400px;
    height: auto;
    min-height: 100px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: unset;
    border-bottom-right-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition-property: transform, opacity, box-shadow;
}

.myconfirm .content {
    min-height: 50px;
    margin: 15px 20px;
    
}

.myconfirm .buttons {
    float: right;
    padding: 15px;
}
.myconfirm .buttons button {
    margin-left: 15px;
    width: unset;
    font-size: unset;
    padding: 5px 20px;
    border-radius: 6px;
}