.custom-notification.top-left {
    bottom: auto;
    left: 20px;
    top: 20px;
    right: auto;
}

.custom-notification.top-right {
    bottom: auto;
    right: 20px;
    top: 20px;
    left: auto;
}

.custom-notification.bottom-left {
    bottom: 20px;
    left: 20px;
    top: auto;
    right: auto;
}

.custom-notification.bottom-right {
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
}

.custom-notification {
    width: 320px;
    border: 0;
    text-align: left;
    z-index: 9999;
    box-sizing: border-box;
    font-weight: 400;
    border-radius: 6px;
    box-shadow: 2px 2px 10px 2px hsla(0, 4%, 4%, 0.2);
    background-color: #fff;
    position: fixed;
    cursor: pointer;
    overflow: hidden;
}

.custom-notification-container {
    display: flex;
    height: 100px;
}

.custom-notification-image-column {
    display: flex;
    align-items: center;
    max-width: 80px;
}

.custom-notification-image-wrapper {
    width: 80px;
    height: 100px;
    overflow: hidden;
}

.notify-img  {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 6px 0 0 6px;
    transition: width 0.3s ease;
}

.custom-notification-content-wrapper {
    margin: 0;
    height: 100%;
    color: rgb(0, 0, 0);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 6px 6px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-notification-content {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    padding-top: 15px;
    font-size: 15px;
    line-height: 20px;
}

.custom-notification-content small {
    font-size: 12px;
    font-weight: normal;
    opacity: .8;
    color: rgb(125, 125, 126);
    vertical-align: baseline;
}

.proof-time {
    position: absolute;
    top: 76px;
    left: 101px;
    font-size: 11px;
    color: #9d9d9d;
    vertical-align: baseline;
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 12px;
    width: 12px;
    cursor: pointer;
    transition: .2s ease-in-out;
    transform: rotate(45deg);
}

.custom-close::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(189, 188, 188);
    position: absolute;
    left: 0;
    top: 5px;
}

.custom-close::after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: rgb(189, 188, 188);
    position: absolute;
    left: 5px;
    top: 0;
}

.custom-notification:hover .custom-close {
    opacity: 1;
}

.proof-logo {
    position: absolute;
    padding-top: 70px;
    left: 229px;
    width: 80px;
    height: 12px;
    object-fit: cover;
}