@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@700&display=swap');
#alert-privacy {
    position: fixed;
    bottom: 20px;
    animation-name: bounceInUp;
    animation-duration: 2s;
  
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    margin: 0;
    width: 100%;
    background-color: #FFF;
    z-index: 10;
    gap: 10px;
    border: 1px solid var(--color-ice);

    animation-name: bounceInUp;
    animation-duration: 1s;
}
  
.detail-gradient-blue-footer {
    position: absolute;
    padding-bottom: 25px;
    width: 40%;
    height: 300px;
    bottom: 0px;
    right: 12%;
    left: auto;
    pointer-events: none;
    border-radius: 120px 20px;
    opacity: 1;
    box-shadow: var(--color-light-blue) 20px 250px 300px;
    transform: rotate(181deg) translateY(-225%) translateZ(0px);
    transition: opacity 1.5s cubic-bezier(0.17, 0.17, 0, 1) 0s;

}

.btn-accept-cookies {
    height: 41px;
    width: 100%;
    margin-bottom: 15px;
    background: transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-blue);
    font-family: var(--font-family-montserrat);
    cursor: pointer;
    border: 2px solid var(--color-dark-blue);
    border-radius: 56px;
    transition: all ease 0.3s;
}

.btn-accept-cookies:hover {
    border-color: var(--color-expande-blue);
    color: var(--color-expande-blue);
}

.btn-accept-all-cookies {
    margin-bottom: 15px;
    border-radius: 55px;
    width: 100%;
    height: 41px;
    background-color: var(--color-dark-blue);
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-family-montserrat);
    border: 2px solid ;
    cursor: pointer;
    transition: all ease 0.3s;
}

.btn-more-options {
    font-family: var(--font-family-montserrat);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: underline;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all ease 0.3s;
}

.btn-more-options:hover {
    color: var(--color-expande-blue);
    
}

.btn-accept-all-cookies:hover {
    background-color: var(--color-expande-blue);
}

#alert-privacy .title {
    margin: 0 15px 10px;
    color: var(--color-dark-blue);
    font-family: 'Poppins';
    font-size: 1.6rem;
    font-weight: 700;

}

#alert-privacy .description {
    margin: 15px;
}

#alert-privacy .description,
#alert-privacy .description a {
    font-family: 'Inter';
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dark-blue);
}

#alert-privacy .description a {
    text-decoration: underline;
    color: var(--color-expande-blue);
    transition: all ease 0.3s;
}

#alert-privacy .description a:hover {
    color: var(--color-light-blue);
}

#alert-privacy .description strong {
    font-weight: 700;
}

#alert-privacy .content {
    width: 100%;
}

#alert-privacy .actions {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/*IPHONE XR*/
@media (min-width: 414px){
    .btn-accept-all-cookies,
    .btn-accept-cookies {
        margin-left: auto;
        margin-right: auto;
        width: 215px;
    }
}
  
@media screen and (min-width:968px) {
    #alert-privacy {
        max-width: 1330px;
        flex-direction: row;
        align-items: center;
        gap: 0;
        height: auto;
        justify-content: space-between;
        margin: 0 10px;
        width: calc(100% - 20px);
        left: 50%;
        transform: translateX(-50%);
    }
  
    #alert-privacy .content {
      margin-right: 34px;
    }
  
    #alert-privacy .title {
      margin: 0 0 10px 15px;
      font-size: 1.6rem;
    } 
    
    #alert-privacy .description {
        margin-bottom: 0px;
    }

    #alert-privacy .actions {
        width: initial;
    }

    .btn-accept-all-cookies,
    .btn-accept-cookies {
        width: 227px;
    }

}


@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      -ms-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      -o-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 3000px, 0);
      -moz-transform: translate3d(0, 3000px, 0);
      -ms-transform: translate3d(0, 3000px, 0);
      -o-transform: translate3d(0, 3000px, 0);
      transform: translate3d(-50%, 3000px, 0);
    }
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      -moz-transform: translate3d(0, -20px, 0);
      -ms-transform: translate3d(0, -20px, 0);
      -o-transform: translate3d(0, -20px, 0);
      transform: translate3d(-50%, -20px, 0);
    }
    75% {
      -webkit-transform: translate3d(0, 10px, 0);
      -moz-transform: translate3d(0, 10px, 0);
      -ms-transform: translate3d(0, 10px, 0);
      -o-transform: translate3d(0, 10px, 0);
      transform: translate3d(-50%, 10px, 0);
    }
    90% {
      -webkit-transform: translate3d(0, -5px, 0);
      -moz-transform: translate3d(0, -5px, 0);
      -ms-transform: translate3d(0, -5px, 0);
      -o-transform: translate3d(0, -5px, 0);
      transform: translate3d(-50%, -5px, 0);
    } 
    to {
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(-50%, 0, 0);
    }
  }