.table-wrapper
{
    width: 100%;
    padding: 100px 50px;
}
.heads
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #a1a1a1;
}
.table-wrapper h1
{
    font-family: aeonik;
    font-size: 15px;
    line-height: 15px;
    color: #a1a1a1;
    width: 100%;
}
.table-wrapper h2
{
    font-family: aeonik;
    font-size: 15px;
    line-height: 15px;
    color: #a1a1a1;
    width: 100%;
}
.table-wrapper h4
{
    font-family: aeonik;
    font-size: 15px;
    line-height: 15px;
    color: #a1a1a1;
    /* text-align: right; */
    width: 100%;
}
.content
{
    padding: 8px 0px 8px;
    font-family: aeonik;
    color: #101010;
    border-bottom: 1px solid #a1a1a1;
}
.flex-cont
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
}
.content h3
{
    font-size: 25px;
    line-height: 25px;
}
.pro-name
{
    width: 100%;
}
.content .pro-name span
{
    color: #a1a1a1;
    font-size: 15px;
    line-height: 15px;
    display: block;
    margin-top: -5px;
}

.qtybox
{
    width: 100%;
}
.qtybox form
{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.qtybox form input
{
    width: 100px;
    border: none;
    outline: none;
    padding: 5px;
    background-color: #ddd;
    text-align: center;
    border-radius: 5px;
    font-family: aeonik;
}
.qtybox form button
{
    padding: 5px 10px 0px;
    border: none;
    outline: none;
    background-color: #ddd;
    margin: 5px;
    border-radius: 5px;
    transition: .3s;
}  
.qtybox form button:hover
{
    background-color: #101010;
    color: #ddd;
}
.remove
{
    width: 100%;
    text-align: right;
}
.remove button
{
    width: 150px;
    background-color: #ddd;
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 5px;
    transition: .3s;
}
.remove button:hover
{
    background-color: #101010;
    color: #ddd;
}
.price
{
    display: block;
    width: 100%;
    color: #101010;
    font-family: aeonik;
    font-size: 20px;
    font-weight: 800;
}
.subt
{
    width: 100%;
    padding: 10px 0px;
    display: flex;
}
.total
{
    padding: 0px 20px;
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.total .sub
{
    display: block;
    color: #101010;
    font-family: aeonik;
    font-size: 20px;
    width: 100%;
}
.total .amount
{
    display: block;
    width: 100%;
    text-align: right;
    color: #101010;
    font-family: aeonik;
    font-size: 20px;
    font-weight: 800;
}
.note
{
    display: block;
    width: 40%;
    color: #101010;
    font-family: aeonik;
    font-size: 12px;
}
.checkout
{
    width: 58.5%;
    float: right;
    background-color: #ddd;
    color: #101010;
    padding:10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-family: aeonik;
    transition: .3s;
}
.checkout:hover
{
    background-color: #101010;
    color: #ddd;
}
.ycie
{
    display: block;
    text-align: center;
    padding: 30px;
    font-family: aeonik;
    font-size: 30px;
    font-weight: 800;
}
.update-loader
{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999;
    background-color: #000000b5;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont-loader
{
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
}
.cont-loader span
{
    display: block;
    text-align: center;
    color: #fff;
    font-family: aeonik;
    width: 100%;
    padding: 10px;
}
/* HTML: <div class="loader"></div> */
.loader {
    display: flex;
    gap: 5px;
    justify-content: center;
  }
  .loader:before,
  .loader:after {
    content: "";
    width: 25px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 3px inset #fff;
    animation: l4 1.5s infinite;
  }
  .loader:after {
    --s: -1;
    animation-delay: 0.75s
  }
  @keyframes l4 {
    0%     {transform:scaleX(var(--s,1)) translate(0) rotate(0)}
    16.67% {transform:scaleX(var(--s,1)) translate(-50%) rotate(0)}
    33.33% {transform:scaleX(var(--s,1)) translate(-50%) rotate(90deg)}
    50%,
    100%   {transform:scaleX(var(--s,1)) translate(0) rotate(90deg)}
  }
@media only screen and (max-width: 900px)
{
    .flex-cont, .heads
    {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .table-wrapper .remove button
    {
        width: 100%;
    }
    .price, .table-wrapper h4
    {
        text-align: right;
    }
    .note
    {
        width: 100%;
    }
    .subt
    {
        display: block;
    }
    .total
    {
        width: 100%;
        padding: 20px 0px;
    }
}
@media only screen and (max-width: 700px)
{
    .flex-cont, .heads
    {
        grid-template-columns: 1fr 1fr;
    }
    .table-wrapper h4
    {
        display: none;
    }
    .price
    {
        text-align: left;
    }
}
@media only screen and (max-width: 500px)
{

    .table-wrapper
    {
        padding: 100px 20px;
    }
    .sub, .amount
    {
        font-size: 18px !important;
    }

}
@media only screen and (max-width: 420px)
{

    .heads h2
    {
        display: none;
    }
    .heads, .flex-cont
    {
        grid-template-columns: 1fr;
    }
    .sub, .amount
    {
        font-size: 15px !important;
    }

}
@media only screen and (max-width: 320px)
{
    .total
    {
        grid-template-columns: auto;
    }
    .amount
    {
        text-align: left !important; 
    }
}

