.authenticity-box{
    min-width: 390px;
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31), 0px 18px 28px 0px rgba(9, 30, 66, 0.15);
}
.authenticity-info-box{
width:100%;
}
.authenticity-box-background{
    background: url(/images/authenticity-box-background.svg);
    background-size: 100%;
    position: absolute;
    left: -76px;
    top: -97px;
    width: 326.934px;
    height: 303.483px;
    transform: rotate(-21.39deg);
}
.authenticity-input{
border: 1px solid #6783A0;
box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.08);
}
.authenticity-main-container{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), url(<path-to-image>), lightgray 50% / cover no-repeat;
    background: url(/images/check-product-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.authenticity-text{
font-size: 32px;
font-style: normal;
font-weight: 900;
line-height: 32px; /* 100% */
}

.authenticity-toast {
    visibility: hidden;
    width: 100%;
    min-height: 100px;
    color: #fff;
    border-radius: 16px;
    position: absolute;
    z-index: 5;
    right: 0px;
    top: 120px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

    .authenticity-toast > img {
        width: 50px;
        height: 50px;
        margin-right:20px;
    }

.authenticity-toast-texts {
    display: flex;
    flex-direction: column;
    width: 393px;
    margin: 0px 24px 0px 0px;
}

.authenticity-toast-text-header {
    font-size: 16px;
    color: white;
    font-weight: bold;
    text-align:right;
}

.authenticity-toast-text-body {
    font-size: 14px;
    color: white;
    font-weight: normal;
    margin-top: 7px;
    text-align: right;
}



.authenticity-toast-close {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

    .authenticity-toast-close > span {
        font-size: 22px;
        font-weight: lighter;
        margin-top: 4px;
        text-decoration: none;
    }




.authenticity-show {
    visibility: visible;
    -webkit-animation: authenticityfadein 0.5s, authenticityfadeout 0.5s 2.75s;
    animation: authenticityfadein 0.5s, authenticityfadeout 0.5s 2.75s;
}

@-webkit-keyframes authenticityfadein {
    from {
        right: 0;
        opacity: 0;
    }

    to {
        right: 0px;
        opacity: 1;
    }
}

@keyframes authenticityfadein {
    from {
        right: 0;
        opacity: 0;
    }

    to {
        right: 0px;
        opacity: 1;
    }
}

@-webkit-keyframes authenticityfadeout {
    from {
        right: 0px;
        opacity: 1;
    }

    to {
        right: 0;
        opacity: 0;
    }
}

@keyframes authenticityfadeout {
    from {
        right: 0px;
        opacity: 1;
    }

    to {
        right: 0;
        opacity: 0;
    }
}



.authenticity-toast-error {
    background:  no-repeat #FF4869 right;
}

.authenticity-toast-success {
    background:  no-repeat #06C78D right;
}


@media only screen and (max-width : 830px) {
    .authenticity-container{
        flex-direction:column-reverse;
    }
    .authenticity-box {
        width: calc(100% - 48px) !important;
        min-width: calc(100% - 48px) !important;
        margin-top: 32px;
        margin-bottom: 100px;
    }

    .authenticity-toast {
        bottom: 0px;
        top: 370px;
        right:0px !important;
    }

}