@keyframes fadeInUp {
    from {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes fadeOutUp {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
        opacity: 0;
    }
}

@keyframes fadeOutDown {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    to {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.animated {
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 1s;
}

.animated.fadeIn {
    animation-name: fadeIn;
}

.animated.fadeOut {
    animation-name: fadeOut;
}

.animated.fadeInUp {
    animation-name: fadeInUp;
}

.animated.fadeInDown {
    animation-name: fadeInDown;
}

.animated.fadeOutUp {
    animation-name: fadeOutUp;
}

.animated.fadeOuDown {
    animation-name: fadeOutDown;
}

.ovt-notify-container {
    transition: height ease-in-out 1s;
    z-index: 9999999;
    position: fixed;
    height: 0;
}

.ovt-notify-container.bottom-left {
    bottom: 20px;
    width: 33vw;
    left: 20px;
}

.ovt-notify-container.bottom-center {
    right: 33.33vw;
    left: 33.33vw;
    bottom: 20px;
}

.ovt-notify-container.bottom-right {
    bottom: 20px;
    width: 33vw;
    right: 20px;
}

.ovt-notify-container.top-left {
    flex-direction: column-reverse;
    display: flex;
    width: 33vw;
    left: 20px;
    top: 20px;
}

.ovt-notify-container.top-center {
    flex-direction: column-reverse;
    display: flex;
    right: 33.33vw;
    left: 33.33vw;
    top: 20px;
}

.ovt-notify-container.top-right {
    flex-direction: column-reverse;
    display: flex;
    width: 33vw;
    right: 20px;
    top: 20px;
}

.ovt-notify-container.center-left {
    transform: translateY(-50%);
    width: 33vw;
    left: 20px;
    top: 50%;
}

.ovt-notify-container.center-center {
    transform: translateY(-50%);
    text-align: center;
    right: 33.33vw;
    left: 33.33vw;
    top: 50%;
}

.ovt-notify-container.center-right {
    transform: translateY(-50%);
    width: 33vw;
    right: 20px;
    top: 50%;
}

@media (max-width: 750px) {
    .ovt-notify-container {
        right: calc(50vw - 125px);
        left: calc(50vw - 125px);
    }
}

.ovt-notify-box {
    transition-property: height, padding-bottom;
    transition-timing-function: ease-in-out;
    transition-duration: 1s;
    padding-bottom: 10px;
    overflow: visible;
}

.ovt-notify-box.closing {
    pointer-events: none;
    padding-bottom: 0px;
}

.ovt-notify {
    margin-bottom: 0 !important;
    word-break: break-all;
    word-break: break-word;
    position: relative;
    line-height: 18px;
    font-size: 16px;
}

.ovt-notify.alert {
    padding: 15px 42px;
}

/* #region Custom BootStrap */

.ovt-notify.ovt-alert {
    border: 1px solid transparent;
    font-family: "Segoe UI";
    border-radius: 4px;
    text-align: center;
    padding: 15px 32px;
    width: 100%;
}

.ovt-notify.ovt-alert.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.ovt-notify.ovt-alert.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.ovt-notify.ovt-alert.warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.ovt-notify.ovt-alert.danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* #endregion Custom BootStrap */

.ovt-no-outline,
.ovt-no-outline:focus,
.ovt-no-outline:active {
    border: none;
    outline: none;
}

.ovt-notify>.ovt-close-button {
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.55;
    right: 5px;
    top: 5px;
}

.ovt-notify>i.fa {
    transform: translateY(-50%);
    position: absolute;
    font-size: 22px;
    left: 10px;
    top: 50%;
}

.ovt-notify>.ovt-close-button::before {
    content: '\2716';
}

.ovt-notify>.ovt-close-button:hover,
.ovt-notify>.ovt-close-button:active {
    opacity: 1;
}

.ovt-notify>.ovt-close-button:active {
    transform: translateY(-1px);
    font-size: 17px;
}

/* #region Alert */

.ovt-modal-alert-background {
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    z-index: 9999;
    bottom: 0px;
    right: 0px;
    left: 0px;
    top: 0px;
}

.ovt-modal-alert-background>.ovt-alert-box {
    border: 1px solid rgb(170, 170, 170);
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    position: relative;
    padding: 6px 16px;
    min-width: 33vw;
    font-size: 16px;
    max-width: 60vw;
    color: rgb(0, 0, 0);
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-close {
    background-color: rgba(0, 0, 0, 0);
    transition: all ease-in-out 0.15s;
    outline: none !important;
    border: none !important;
    position: absolute;
    cursor: pointer;
    font-size: 16px;
    color: inherit;
    right: 5px;
    top: 5px;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-close::before {
    content: '\2716';
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-close:hover,
.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-close:active {
    transform: translateY(-1px);
    font-size: 18px;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-title {
    text-align: center;
    padding: 6px 8px;
    font-size: 18px;
    display: block;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-message {
    text-align: center;
    padding: 2px 8px;
    display: block;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-title+.ovt-alert-message {
    border-top: 1px solid #b9b9b9;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-button-list:empty {
    display: none;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-button-list {
    text-align: center;
    display: block;
    padding: 4px 0;
    margin: 0;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-button-list>button {
    list-style: none;
    margin: 8px 4px;
    display: inline;
    background-color: rgb(255, 255, 255);
    transition: all 0.4s ease-in-out;
    border: 1px solid rgb(170, 170, 170);
    padding: 4px 10px;
    min-width: 40px;
    cursor: pointer;
    color: rgb(69, 193, 196);
    outline: none;
    font-weight: 500;
    border-radius: 5px;
    font-size: 1rem;
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-button-list>button:hover {
    background-color: rgb(69, 193, 196);
    color: rgb(255, 255, 255);
}

.ovt-modal-alert-background>.ovt-alert-box>.ovt-alert-button-list>button:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

/* #endregion Alert */


@media (max-width: 992px) {

    .ovt-notify-container {
        right: 20vw;
        left: 20vw;
    }
}