/*#region Search*/
.search-wrapper-incontent {
    position: relative;
    height: 70px;
    margin-top: 20px;
}

.search-bar-incontent {
    width: 100%;
}

.search-container-incontent {
    display: flex;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);

}

.search-input-incontent {
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    height: 70px;
    background-color: white;
    background-position: 10px 25px; 
    background-repeat: no-repeat;;
    padding: 12px 20px 12px 40px;
}

.search-input-incontent:focus {
    outline: none;
}

.search-button-incontent {
    background-color: #4c81c2;
    color: white;
    border: none;
    padding: 25px 6%;
    cursor: pointer;
    font-size: 16px;
    height: 70px;
    margin: 0;
    display: inline-block;
    text-decoration: none;
}

.search-button-incontent:hover {
    background-color: #0a5dc3;
    color: white;
    text-decoration: none;
}

#suggestions-incontent {
    position: relative;
    display: block;
    margin-top: -20px;
    z-index: 41;
}

#suggestions-incontent div.optiondiv {
    background-color: #fff;
    padding: 10px;
    width: 80%;
    color: #4c81c2;
    cursor: pointer;
    margin: 1px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

#suggestions-incontent div.optiondiv:hover {
    background-color: #4c81c2;
    padding: 10px;
    width: 80%;
    color: #fff;
    cursor: pointer;
    margin: 1px 15px;
    border: 1px solid #4c81c2;
    border-radius: 10px;
    overflow: hidden;
}

/*#endregion */

/*#region product list*/
.product-list {
    width: 100%;
    margin: 30px auto 0;
}

.item_not_found {
    text-align: center;
    font-size: 28px;
    color: #999;
    margin-top: 50px;
}

.product-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-catalogue {
    display: flex;
    flex: 10%;
}

.product-catalogue .product-id {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 20%;
}

.product-info .product-name {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.product-info .product-date {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}
.product-gap {
    display: flex;
    flex: 39%;
}

.product-actions-1 {
    display: flex;
    flex: 20%;
}

.product-actions-1 .product-actions-1-1{
    display: flex;
    flex: 50%;
}

.product-actions-1 .product-actions-1-2{
    display: flex;
    flex: 50%;
}

.product-actions-1 .product-actions-1-gap{
    display: flex;
    flex: 0%;
}

.product-actions-2 {
    display: flex;
    flex: 10%;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    background-color: #4c81c2;
}

.btn:hover, .btn:active{
    background-color: #0a5dc3;
    color: white;
}

.btn.disabled {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: not-allowed;
    background-color: #ccc;
}

@media (max-width: 1200px) {
    .product-gap {
        display: flex;
        flex: 35%;
    }
}

@media (max-width: 992px) {
    .product-catalogue {
        display: flex;
        flex: 15%;
    }

    .product-info {
        display: flex;
        flex-direction: column;
        flex: 20%;
    }

    .product-gap {
        display: flex;
        flex: 15%;
    }

    .product-actions-1 {
        display: flex;
        flex: 30%;
    }

    .product-actions-2 {
        display: flex;
        flex: 20%;
    }
}

@media (max-width: 768px) {
    .search-bar-incontent {
        width: 96%;
        margin: 0 auto;
    }

    .product-list {
        width: 96%;
        margin: 30px auto 0;
    }

    .product-catalogue {
        display: flex;
        flex: 100%;
    }

    .product-info {
        display: flex;
        flex-direction: column;
        flex: 100%;
        text-align: center;
    }

    .product-gap {
        display: flex;
        flex: 0%;
    }

    .product-actions-1 {
        display: flex;
        flex: 100%;
        padding: 10px 0;
    }

    .product-actions-1 .product-actions-1-1{
        display: flex;
        flex: 30%;
    }
    
    .product-actions-1 .product-actions-1-2{
        display: flex;
        flex: 30%;
    }
    
    .product-actions-1 .product-actions-1-gap{
        display: flex;
        flex: 9%;
    }

    .product-actions-1 .btn {
        width: 95%;
        margin: 0 auto;
    }

    .product-actions-2 {
        display: flex;
        flex: 100%;
        padding: 10px 0;
    }

    .product-actions-2 .btn {
        width: 50%;
        margin: 0 auto;
    }
}

/*#endregion */

/*#region pagination*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination-link {
    margin: 0 5px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #4c81c2;
    font-weight: bold;
}
.pagination-link.disabled {
    margin: 0 5px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: not-allowed;
    color: #ccc;
    font-weight: bold;
}

.pagination-link.active {
    background-color: #4c81c2;
    color: #fff;
}

.page-indicator {
    margin-left: auto;
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}

.pagination-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
    }

    .pagination-link {
        padding: 5px 10px;
    }

    .page-indicator {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 10px;
        font-size: 14px;
        color: #666;
    }
}

@media (max-width: 400px) {
    .pagination-link {
        padding: 5px 7px;
    }
}

/*#endregion */

#product-detail {
    padding-bottom: 20px;
}

#product-detail .header {
    background-color: #4c81c2;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    width: 100%;
}

#product-detail .header .header-1 {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}

#product-detail .header .header-1 .header-1-1 {
    flex: 10%;
}

#product-detail .header .header-1 .header-1-1 h1 {
    margin: 0;
}

#product-detail .header .header-1 .header-1-2 .button {
    background-color: #4c81c2;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

#product-detail .header .header-1 .header-1-2 .button:hover {
    background-color: white;
    color: #4c81c2;
}

#product-detail .header .header-2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 10px;
    justify-content: space-evenly;
}

#product-detail .header .header-2 .info-1, #product-detail .header .header-2 .info-2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
}

#product-detail .header .header-2 .info-1 span,#product-detail .header .header-2 .info-2 span {
    margin: 10px 0 0;
    font-weight: lighter;
}

#product-detail .header .header-2 .info-1 strong, #product-detail .header .header-2 .info-1 strong {
    font-weight: bold;
}

#product-detail .content {
    padding: 20px;
}

#product-detail .content .slickwrap {
    position: relative;
    width: 50%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    float: left;
}

/* #product-detail .content .slickwrap .slick-content {
    min-width: 0px;
}

#product-detail .content .slickwrap .slick-content .image{
    min-width: 0px;
} */

#product-detail .product-info {
    position: relative;
    width: 50%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: block;
    float: left;
}

#product-detail .product-info h2 {
    margin-top: 0;
}

#product-detail .product-info table {
    width: 100%;
    border-collapse: collapse;
}

#product-detail .product-info table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

#product-detail .product-info table tr:last-child td {
    border-bottom: none;
}

#product-detail .slick-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 10;
    padding: 0;
    list-style: none;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#product-detail .slick-dots li.slick-active {
    background-color: #4c81c2;
}
#product-detail .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(76, 129, 194, 0.25);
    border-radius: 50px;
}
#product-detail .slick-dots button {
    display: none;
}
@media (max-width: 992px) {
    #product-detail .header .header-2 {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        justify-content: space-evenly;
    }    
    
    #product-detail .header .header-2 .info-1 ,#product-detail .header .header-2 .info-2 {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 0;
    }
    #product-detail .header .header-2 .info-1 .hidden-mb ,#product-detail .header .header-2 .info-2 .hidden-mb {
        display: none;
    }
    
    #product-detail .header .header-1 {
        flex-direction: column;
    }

    #product-detail .header .header-1 .header-1-2 {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    #product-detail .header {
        width: 96%;
    }

    #product-detail .content {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    #product-detail .content .slickwrap {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 90%;
        margin: 0 auto 20px;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        float: left;
    }

    #product-detail .product-info {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 90%;
        margin: 0 auto;
        display: block;
        float: left;
    }
}