body {
    background: black;
    color: white;
    font-family: "Kanit", sans-serif;
}


.header-section {
    background: url(/img/frontend/landing/BG.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
}


.overlay {
    background: #181617c2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sponsori-section {
    background: white;
    padding-bottom: 5rem;
    color: black;
    padding-top: 5rem;
}


h1 {
    color: white;
}

.sponsori-section h1 {
    color: black;
}


footer {
    background: white;
}

footer .title {
    color: black;
}

.my-title {
    color: orange;
}

p.my-description {
    color: #fde7fe;
    font-size: 1.5rem;
    line-height: 1.3;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.reduce-text {
    color: #fde7fe;
    font-size: 1.2rem;
}

.pas {
    font-size: 1.5rem;
    color: white;
    line-height: 1.2;
}

.form-group > label {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    text-align: start;
    padding-bottom: 0.5rem;
}

.u-bt-input {
    background: transparent;
    outline: none;
    width: 100%;
    font-weight: 400;
    padding: 0.5rem;
    border: 1px solid white;
    border-radius: 5px;
    color: black;
}

.form-group {
    padding-bottom: 1rem;
}

.ubt-submit {
    background: white;
    padding: 0.5rem;
    width: 50%;
    border: none;
    outline: none;
    color: black;
    border-radius: 5px;
}

.products-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.product-container {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.product-image {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: white;
    height: 270px;
    object-fit: cover;
}

.add-to-cart-product {
    background: #ff4300;
    padding: 0.5rem;
    width: 100%;
    border: none;
    outline: none;
    color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.5s;
}

.add-to-cart-product:hover {
    background: #2a2a2a;
    color: #ff4300;
}

.user-name-avatar {
    font-size: 2rem;
}

.name-container {
    align-items: center;
    gap: 1rem;
    justify-content: start;
}

h5.name {
    margin: 0;
    color: white;
    font-size: 2.4rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    text-align: start;
}

.avatar {
    height: 5rem;
    width: 5rem;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 1px 1px 12px -1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 1px 12px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 12px -1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.line {
    height: 3px;
    width: 100%;
    background: rgb(230, 8, 188);
    background: linear-gradient(90deg, rgba(230, 8, 188, 1) 0%, rgba(1, 198, 255, 1) 100%);
}

.buy-product-container {
    color: black;
    font-family: 'Poppins', sans-serif !important;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: rgb(230, 8, 188);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

h4 {
    color: white;
}

.players {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.player {
    border: 1px solid white;
    padding: 1rem;
    border-radius: 5px;
}

.buttons {
    display: flex;
    border: 1px solid white;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    align-items: center;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.minus, .plus {
    width: 25%;
    cursor: pointer;
    text-align: center;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    background: none;
    outline: none;
    border: none;
}

.btn-warning{
    background-color: white ;
    border-color: white ;
    color: black;
    border-radius: 5px;
    padding: 0.2rem;
    font-size: 0.9rem;
    font-weight: 400;
}


.max-bid{
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    min-height: 39px;
    margin-bottom: 0.3rem;
}

.bid {
    width: 50%;
    text-align: center;
}

.read-more{
    display: none;
}

.ascunde-more-btn{
    display: none;
}
.read-more-btn{
    display: none;
}

.read-more-btn, .ascunde-more-btn{
    background: none;
    text-decoration: underline;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    color: white;
}

.read-more.show{
    display: block;
}

.ascunde-more-btn.show{
    display: block;
}

.read-more-btn.show{
    display: block;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
