.ttin_wrapper{
    display: none;
    align-items: start;
    flex-direction: row;
    justify-content: center;

    padding: 1rem;
    position: fixed;
    top: 1.5rem;
    width: 95%;
    max-width: 550px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999999999;
    background: hsl(212deg 100% 97%);
    border-radius: 4px;
    box-shadow: 4px 4px 9px -7px rgb(0 0 0);
    -webkit-box-shadow: 4px 4px 9px -7px rgb(0 0 0);
    -moz-box-shadow: 4px 4px 9px -7px rgb(0 0 0);
}

.ttin_image{
    flex: 0 1 auto;
    margin-right: 1rem;
}

.ttin_image img{
    width: 60px;
    height: auto;
}

.ttin_content h4{
    margin: 0;
}

.ttin_content p{
    font-size: 1rem;
    margin: 0.2rem 0 0 0;
}

.ttin_btns{
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.ttin_btns button{
    border: 0;
    border-radius: 3px;
    color: #ffffff !important;
    font-size: 1rem;
    background: #0075ff !important;
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
}
  
.ttin_btns button:hover {
    background: #0050ff !important;
    text-decoration: none;
}

.ttin_btns .deny{
    background: transparent !important;
    color: #000 !important;
    margin-left: 0.6rem;
}
  
.ttin_btns .deny:hover {
    background: #e6e6e6 !important;
}

@media (max-width: 572px) {
    .ttin_wrapper{
        top: auto;
        bottom: 0.5rem;
    }
    .ttin_image{
        display: none;
    }
    .ttin_content h3 {
        font-size: 1rem;
        font-weight: bold;
    }
    .ttin_content p{
        font-size: 0.8rem;
    }
}