@font-face {
    font-family: 'Yekan';
    src: url('IRANYekanX-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.icon-gads{display: none;}
.icon-gads a {background-color: #eee;}
.gads-cookie-banner{
    position: fixed; 
    bottom: 20px;
    left: var(--cookie-position-slyle);
    z-index: 9999;
    width: 90%;
    max-width: 450px;
    font-family: 'Yekan';
    font-size: 14px;
}
.gaads-cookie-footer{
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.cookie-box img{
    position: absolute;
    top: -10px;
    left: -10px;
    background: #fff;
    border-radius: 100px;
    padding: 0.2em;
    cursor: pointer;
}
.cookie-box{
    background-color: var(--cookie-bg-color);
    color: var(--cookie-text-color);
    padding: 13px 17px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    
    justify-content: center;
    gap: 15px;
    animation: slideUp 0.5s ease-out;
}
.gads-cookie-accept{
    color: var(--cookie-text-color);
    font-size: 0.9em;
    background-color:var(--cookie-btn-color);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    font-size: 14px;
    flex: 1;
}
.gaads-cookie-footer button:hover {
    background-color: var(--cookie-btn-hover-color);
    color: white;
    box-shadow: 2px 3px 5px #797979;
    
  }
  .p-bottom-left{left:20px;}
  .p-bottom-right{right:20px;}
  .p-bottom-center{left:50%;transform:translateX(-50%);}
.privacy-gads{
    min-width: 100px;
    color: var(--cookie-text-color);
    text-decoration: underline;
    font-size: 0.9em;
}
.text-gads{
    text-align: center;
    min-width: 240px;
}
.cookieIcon{
    display: none;
    width: 30px; 
    height: 30px;
}
@media (max-width: 640px) {   
    .icon-gads{
        display: block;
        position: fixed;
        left: 10px;
        cursor: pointer;
        bottom: 18px;
        z-index: 999;
    }

    .cookieIcon{
        display: block;
        background: #eee;
        border-radius: 50%;
        padding: 5px;
        box-sizing: content-box;
        box-shadow: #545252 2px 4px 5px;
    }
    .gads-cookie-banner{
        left:50%;
        transform:translateX(-50%);
        max-width: 300px;
        display: none;
    }
    .cookie-box{
        flex-direction: column;
    }

    .gaads-cookie-footer{
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.show-gads{
    display: block;
}
.hidden-gads{
    display: none;
}
.shake-gads{

    
}
.hidden_slow{
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: transform 0.5s ease-in, opacity 0.5s ease-in-out;
}
.opacity_n{
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
/* animation */

@keyframes slideUp {
    from {
      opacity: 0;
      transform: translatey(50%);
    }
    to {
      opacity: 1;
      transform: translatey(0);
    }
  }
   @keyframes shake-gads {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2px, 0) rotate(-1deg); }
  20%  { transform: translate(2px, 0) rotate(1deg); }
  30%  { transform: translate(-2px, 0) rotate(-1deg); }
  40%  { transform: translate(2px, 0) rotate(1deg); }
  50%  { transform: translate(0, 0) rotate(0); }
  100% { transform: translate(0, 0) rotate(0); } 
}
  