/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
.wrapperrr * {
    font-family: "Poppins", sans-serif;
}
body {
    min-height: 100vh;
    background-color: #4070f4;
}
.wrapperrr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index:5000;
    display: none;
}
.wrapperrr.show {
    right: 20px;
}
.wrapperrr header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
header i {
    color: #4070f4;
    font-size: 32px;
}
header h2 {
    color: #4070f4;
    font-weight: 500;
}
.wrapperrr .dataaa {
    margin-top: 16px;
}
.wrapperrr .dataaa p {
    color: #333;
    font-size: 16px;
}
.dataaa p a {
    color: #4070f4;
    text-decoration: none;
}
.dataaa p a:hover {
    text-decoration: underline;
}
.wrapperrr .buttonss {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.buttonss .buttonnn {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
    border: 2px solid #4070f4;
}
.buttonss #acceptBtn:hover {
    background-color: #034bf1;
    border-color: #034bf1;
}
#declineBtn {
    background-color: #fff;
    color: #4070f4;
}
#declineBtn:hover {
    background-color: #4070f4;
    color: #fff;
}



.overlay-verif{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color:rgba(0,0,0,0.7);
    z-index: 9990;
}
.overlay-veriff{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color:rgba(0,0,0,0);
    z-index: 9994;
}
.wrapperblocker{
    position: fixed;
    max-width: 480px;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 20px 30px 40px 30px;
    background: #fff;
    border-radius: 15px;
    opacity: 1;
    z-index: 9995;
    animation: scaleLoop 2s infinite;
    box-shadow: 10px 10px 15px rgba(0,0,0,0.06);
    transition: opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
}

@keyframes scaleLoop {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }
.all-unset{
    all: unset;
}

@media only screen and (max-width: 390px) {
    .wrapperrr {
        left: 20px!important;
        width: auto!important;
    }
    .wrapperrr h2{
        font-size: 1.2rem!important;
    }
    .dataaa p{
        font-size: 15px!important;
    }
    .wrapperblocker{
        padding: 10px 10px 30px 10px;
    }
}
