* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.circle-icon {
    display: inline-block;
    width: 20px; /* Circle's width */
    height: 20px; /* Circle's height */
    background-color: #BDA766;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px; /* Match the height for vertical centering */
    font-size: 12px; /* Adjusted font size to fit within the circle */
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
}



.shelf-container {
    background-color: #fff;
    border-radius: 25px;
    padding: 35px 30px;
    float: left;
    width:100%;
    max-width: 100%;
    margin-bottom: 30px;
}
.slides{ overflow: hidden;}
.shelf {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #ffffff;
    padding: 10px;
    overflow: hidden;
}
.box{ height: auto; text-align: center; position: relative; transition: 0.3s ease-in-out; width: 100%; float: left;}
.box .slide-img{ width: 100%; float: left; position: relative; min-height: 100px; display: flex; align-items: center;} 
.bar-edit-1 {
    margin-top: 20px!important;
    margin-bottom: 10px!important;
    background: #BDA766;
    font-weight: 500;
}
input.shelfedit{ border: solid 1px #fff;}
h1 {
    color: #BDA766 !important;
    font-size: 18px !important;
}

.bar-edit:hover {
    background-color: black;
}


.carousel {
    display: flex;
    overflow: hidden;
    height: 100%;
    align-items: center;
    scroll-behavior: smooth;
    margin: 0 14px;
}

.bottle {
    flex: 0 0 auto;
    width: calc(33.33% - 1px);
    /* height: 85px;
    margin: 0 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    margin: 0 2px;
}

.bottle-title {
    color: #252525;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    word-break: break-word;
    word-wrap: break-word;
    height: 32px;
    padding: 5px;
    line-height: 1.2;
    overflow: hidden;

}


.bar-title {
    text-transform: uppercase !important;
}

.bar-container .bar-title {
    width: 100%;
}

.delete-bottle {
    text-align: center;
    width: 100%;
    padding: 5px;
    margin: 0 auto;
    display: none;
}

.delete-bottle img {
    margin: 2px auto 0 !important;
}

.bottle img {
    width: auto;
    height: 85px;
    object-fit: cover;
}
.bottle img.delete-bottle{ max-width: 22%; height: auto; width: 100% !important;}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;

}

.carousel-button:hover{
    background-color: none;
}

.carousel-button img {
    width: 25px;
}

.carousel-button.left {
    left: -10px;
    z-index:3;
}

.carousel-button.right {
    right: -10px;
}

/* Bar Preview */

#bar-preview .shelf-container {
    padding: 20px;
}
#bar-preview .shelf-container input{ margin: 0;}
#bar-preview .shelf{ height: 148px;}


@media (max-width: 990px) {
    .bottle img.delete-bottle {  max-width: 30px; }
}
@media (max-width: 768px) {
    .bottle { width: calc(100vw / 3 - 67px); }
    .bottle img.delete-bottle {  max-width: 30px; }
}
@media (max-width: 480px) {
    .bottle { width: calc(100vw / 3 - 28px); }
}

.custom-alert {
    position: relative; 
    z-index: 9999;
    width: auto;
    padding: 15px;
    font-size: 18px;
}

.custom-alert.alert-success {
    background-color: #000;
    border-color: #BDA766;
    color: #BDA766;
}
