@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.fade-out {
    animation: fadeOut 1s forwards;
}

/* APO PRODUCT DETAIL PHRA AUTA  */

.container .post{
    display: none;
  }

  .container .text{
    font-size: 25px;
    color: #666;
    font-weight: 500;
  }

  .container .edit{
    /* position: absolute; */
    right: 10px;
    top: 5px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
  }

  .container .edit:hover{
    text-decoration: underline;
  }


  .container{
    position: relative;
    width: 400px;
    background: #111;
    padding: 20px 30px;
    border: 1px solid #444;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
    flex-direction: column;
  }

  .container .star-widget input{
    display: none;
  }

  .star-widget label{
    font-size: 37px;
    color: #444;
    padding:10px;
    float: right;
    transition: all 0.2s ease;
  }

  @media (max-width: 370px) {
    .star-widget label {
        font-size: 28px;
        
    }
  }



  /* input:not(:checked) ~ label:hover,
  input:not(:checked) ~ label:hover ~ label{
    color: #fd4;
  } */

  input:checked ~ label{
    color: #fd4;
  }

  input#rate-5:checked ~ label{
    color: #fe7;
    text-shadow: 0 0 20px #952;
  }

  /* #rate-1:checked ~ .form header:before{
    content: 'Δεν μου άρεσε';
  }

  #rate-2:checked ~ .form header:before{
    content: 'Καλό';
  }

  #rate-3:checked ~ .form header:before{
    content: 'Παρα πολύ καλό';
  }

  #rate-4:checked ~ .form header:before{
    content: 'Άψογο';
  }

  #rate-5:checked ~ .form header:before{
    content: 'Το αγάπησα';
  } */

  .container .form{
    display: none;
  }

  input:checked ~ .form{
    display: block;
  }

  .form header{
    width: 100%;
    font-size: 25px;
    color: #fe7;
    font-weight: 500;
    margin: 5px 0 20px 0;
    text-align: center;
    transition: all 0.2s ease;
  }

  .form .textarea{
    height: 100px;
    width: 100%;
    overflow: hidden;
  }

  .form .textarea textarea{
    height: 100%;
    width: 100%;
    outline: none;
    color: #eee;
    border: 1px solid #333;
    background: #222;
    padding: 10px;
    font-size: 17px;
    resize: none;
  } 

  .textarea textarea:focus{
      border-color: #444;
  }

  .form .btn{
    height: 45px;
    width: 100%;
    margin: 15px 0;
  }

  .form .btn button{
    height: 100%;
    width: 100%;
    border: 1px solid #444;
    outline: none;
    background: #222;
    color: #999;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .form .btn button:hover{
    background: #1b1b1b;
  }
  /* END PRODUCT DETAIL */


/* APO TO BASE PHRA AUTA  */

.nav-font-text{
    font-family: 'Amatic SC', cursive;
    /* font-family: 'EB Garamond', serif; /
    / font-family: 'Old Standard TT', serif; */
}
.loader {
    --cell-size: 52px;
    --cell-spacing: 1px;
    --cells: 3;
    --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
    display: flex;
    flex-wrap: wrap;
    width: var(--total-size);
    height: var(--total-size);
  }
  
  .cell {
    flex: 0 0 var(--cell-size);
    margin: var(--cell-spacing);
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 4px;
    animation: 1.5s ripple ease infinite;
  }
  
  .cell.d-1 {
    animation-delay: 100ms;
  }
  
  .cell.d-2 {
    animation-delay: 200ms;
  }
  
  .cell.d-3 {
    animation-delay: 300ms;
  }
  
  .cell.d-4 {
    animation-delay: 400ms;
  }
  
  .cell:nth-child(1) {
    --cell-color: #00FF87;
  }
  
  .cell:nth-child(2) {
    --cell-color: #0CFD95;
  }
  
  .cell:nth-child(3) {
    --cell-color: #17FBA2;
  }
  
  .cell:nth-child(4) {
    --cell-color: #23F9B2;
  }
  
  .cell:nth-child(5) {
    --cell-color: #30F7C3;
  }
  
  .cell:nth-child(6) {
    --cell-color: #3DF5D4;
  }
  
  .cell:nth-child(7) {
    --cell-color: #45F4DE;
  }
  
  .cell:nth-child(8) {
    --cell-color: #53F1F0;
  }
  
  .cell:nth-child(9) {
    --cell-color: #60EFFF;
  }
  
  /*Animation*/
  @keyframes ripple {
    0% {
      background-color: transparent;
    }
  
    30% {
      background-color: var(--cell-color);
    }
  
    60% {
      background-color: transparent;
    }
  
    100% {
      background-color: transparent;
    }
  }

#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    z-index: 99;
    text-align: center;
 }
 
 #loading-content {
   position: absolute;
   background-color: rgba(48, 61, 57, 0.5);

   text-align: center;
   z-index: 100;
 }
 
 .hidde{
   display: none;
 }


 @media only screen and (max-width: 1300px){
    .hide_medium{
        display:none;
    }        
}
 /* END BASE */