@import "mixins/mixins";
@import "mixins/utils";
@import "common/var";
@import "common/popup";

.el-dialog {
    position: relative;
    margin: 0 auto 50px;
    background: $--color-white;
    border-radius: $--border-radius-small;
    box-shadow: $--dialog-box-shadow;
    box-sizing: border-box;
    width: 50%;

    &.is-fullscreen {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        height: 100%;
        overflow: auto;
    }
}

.el-dialog--center {
    text-align: center;

    .el-dialog__body {
        text-align: initial;
        padding: 25px ($--dialog-padding-primary + 5px) 30px;
    }

    .el-dialog__footer {
        text-align: inherit;
    }
}

.el-dialog__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
}

.el-dialog__header {
    padding: $--dialog-padding-full;
    border-bottom: 1px solid $color-gray--030;
}

.el-dialog__header--sticky, .el-dialog__footer--sticky {
    position: sticky;
    background-color: $--color-white;
    z-index: 100;
}

.el-dialog__header--sticky {
    top: 0;
}

.el-dialog__headerbtn {
    position: absolute;
    top: $--dialog-padding-primary;
    right: $--dialog-padding-primary;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: $--message-close-size;

    .el-dialog__close {
        color: $color-info-dark;
    }

    &:focus, &:hover {
        .el-dialog__close {
            color: $--color-primary;
        }
    }
}

.el-dialog__title {
    line-height: $--dialog-line-height;
    font-size: $--dialog-title-font-size;
    color: $--color-text-primary;
}

.el-dialog__body {
    padding: $--dialog-padding-full;
    color: $--color-text-regular;
    font-size: $--dialog-font-size;
}

.el-dialog__footer {
    padding: $--dialog-padding-primary;
    padding-top: 10px;
    text-align: right;
    box-sizing: border-box;
}

.el-dialog__footer--sticky {
    bottom: 0;
}

/* Responsive styles */

@media only screen and (max-width: $screen-md-max) {
    .el-dialog {
        width: 85%;
    }
}

/* Animations */

.dialog-fade-enter-active {
    animation: dialog-fade-in .3s;
}

.dialog-fade-leave-active {
    animation: dialog-fade-out .3s;
}

@keyframes dialog-fade-in {
    0% {
        transform: translate3d(0, -20px, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes dialog-fade-out {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, -20px, 0);
        opacity: 0;
    }
}
