/* Write Your CSS Here */

.cookie-modal {
    background:linear-gradient(to right, #0000ff,#ff8000);
    position: fixed;
    z-index: 99999999;
    top: 100;
    bottom: 0px;
    width: 100%;
    padding: 26px;
    color: #fff;
    left: 0px;
    text-align: center;
  opacity: 0;
  transition:1s ease-in-out;
  animation: delayed-show 2s forwards;
  animation-delay: 5s; /* delay showing the element for 3 seconds */
}

@keyframes delayed-show {
  to {
    opacity: 1;
  }
}


@media only screen and (max-width: 767px) {
    .cookie-modal button{
        width: 40%;
        left: 40px;
    }
}

.cookie-consent__message {
    display: block;
    text-align: center;
}

.cookie-modal button {
    display: block;
    background: #ff8000;
    width: 40%;
    color:#fff;
    left:20px;
    transition:1s ease-in-out;
    margin-top: 10px;
}
.cookie-modal button:hover{
    color:white;
    border:2px solid #ff8000;
    background:none;
}
.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.image-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line {
    line-height: 1rem;
}
