body{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    overflow-x: hidden;
    background-color: #ffffff;
    /* background-color: #f3f5f7; */
}

.skeleton{
    animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-text{
    width: 100%;
    height: .5rem;
    margin-bottom: .25rem;
    border-radius: .150rem;
}

.skeleton-text:last-child{
    margin-bottom: 0;
    width: 80%;
}

.skeleton-light{
    animation: skeleton-loading-light 1s linear infinite alternate;
}

.skeleton-text-color{
    animation: skeleton-loading-text 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0%{
        background-color: hsl(200, 20%, 70%);
    }
    100%{
        background-color: hsl(200, 20%, 95%);
    }
}

@keyframes skeleton-loading-light {
    0%{
        background-color: hsl(192, 20%, 95%);
    }
    100%{
        background-color: hsl(220, 23%, 97%);
    }
}

@keyframes skeleton-loading-text {
    0%{
        color: hsl(198, 14%, 62%);
    }
    100%{
        color: hsl(210, 12%, 91%);
    }
}

.color-dark-blue{
    color: #39397F;
}

.sub-text{
    font-size: 13px;
    color: rgb(137, 137, 137);
}

.logo{
    width: 100px;
    object-fit: cover;
    border-radius: 100%;
}

.button{
    background-color: #1259F3;
    color: white;
    border-radius: 10px;
    padding: 7px 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.button:hover{
    background-color: #F9A825;
}

.button:active {
    background-color: #f8b850;
  }

  .button-white{
    background-color: white;
    color: black;
    border-radius: 10px;
    border: 1px solid  rgb(212, 212, 212);
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.button-white:hover{
  background-color: #f7f7f7;
}

.button-white:active {
  background-color: #f0f0f0;
}

.button-gray{
    background-color: #eaeaea;
    color: black;
    border-radius: 10px;
    padding: 7px 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.button-gray:active {
    background-color: #dfdfdf;
  }

.card-div{
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 5px 0px #edeef0;
    padding: 15px 15px;
}

.menu-button{
    background-color: white;
    color: #8e8fa2;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
}

.menu-active{
    background-color: #1259F3;
    color: white;
}

.menu-icon{
    fill: currentColor;
    margin-right: 5px;
}

.menu-icon2{
    margin-right: 5px;
}

.menu-button:hover{
    color: white;
    background-color: #1259F3;
}

.menu-button:active{
    background-color: #2668f6;
}

.menu-button-white{
    background-color: white;
    color: #8e8fa2;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.menu-button-white:hover{
    background-color: rgb(245, 245, 245);
}

.search-input{
    border: none;
    outline: none;
    background-color: transparent;
    width: 80%;
}

.search-div{
    background-color: rgb(245, 245, 245);
    padding: 10px 20px;
    border-radius: 10px;
}

.bell-div{
    background-color: #fdf2d6;
    padding: 5px 7px;
    border-radius: 7px;
    cursor: pointer;
}

.event-banner{
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.evet-cart-font{
    color: #6B7280;
    font-size: 14px;
    font-weight: 400;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }
  .legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
  }

  .button-active{
    background-color: #38cd51;
  }

  .button-active:hover{
    background-color: #38cd51;
  }

  .button-active:active{
    background-color: #54d96a;
  }

  .button-cancel{
    background-color: #FA5A7E;
  }

  .button-cancel:hover{
    background-color: #FA5A7E;
  }

  .button-cancel:active{
    background-color: #fd6d8c;
  }

  .banner{
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-small{
    height: 330px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.artist-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
  }

  .ticketChartCanvas{
    height: 230px;
  }


  /* tablet */
@media (max-width: 1024px) {
    .ticketChartCanvas{
        height: 300px;
    }
}

/* mobile */
@media (max-width: 576px) {
    .ticketChartCanvas{
        height: 250px;
    }
}