.dialog--hidden {
    display: none;
}

.dialog {
    position: relative;
    border-radius: 6px;
    background: #fff;
    width: 330px;
}

.dialog__title {
    padding: 16px 24px;
    background: #0C84D1;
    font-size: 20px;
    color: #fff;
    border-radius: 6px 6px 0px 0px;
}

.dialog__body {
    padding: 24px;
    box-shadow: 0px 4px 10px rgba(27, 32, 38, 0.04);
    border-radius: 0 0 6px 6px;
}
.dialog__close{
    position: absolute;
    width: 14px;
    height: 14px;
    background: url('./images/close.png') no-repeat;
    background-position: center;
    right: -15px;
    top: -15px;
    cursor: pointer;
}
.dialog--last .dialog__title{
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;   
    padding: 24px 24px 0; 
}
.dialog--last .dialog__close{
    width: 16px;
    height: 16px;
    background: url('./images/close-black.png') no-repeat;
    background-position: center;
    right: 24px;
    top: 24px;
}

@media screen and (max-width: 419px) {
    .dialog {
        width: 100%;
    }
}