input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid green;
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* scrollbar */
#style-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(223, 25, 25, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
    background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(143, 0, 0);
}
/* end scrollbar */

.basket_icon_div {
    position: fixed;
    bottom: 55px;
    right: 55px;
    z-index: 999;
    cursor: pointer;
}

@media only screen and (max-width: 600px) and (min-width: 300px) {
    .basket_icon_div {
        bottom: 100px;
    }
}


.basket_icon {
    width: 70px;
    height: 70px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket_icon:hover {
    background-color: #d2180f;
    transition: all 0.2s ease-out;
    transform: rotate(45deg);
    border: none;
}

.basket_icon > i {
    color: #d2180f;
    font-size: 40px;
}

.basket_icon:hover > i {
    color: white;
    transform: rotate(-45deg);
    transition: all 0.2s ease-out;
}

.number_of_products {
    color: white;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -15px;
}

.basket_modal {
    position: fixed;
    display: none;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ad2131;
    padding: 0 50px 50px 50px;
    border-radius: 15px;
    border: 2px solid red;
    transition: all 0.2s ease-in-out;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0);
}

.basket_modal:hover {
    border-color: white;
    transition: all 0.2s ease-out;
}

.close_icon {
    /*position: absolute;*/
    /*right: 35px;*/
    /*top: -40px;*/
}

.close_icon > i {
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.clear_icon {
    /*position: absolute;*/
    /*left: 35px;*/
    /*top: -40px;*/
}

.clear_icon > i {
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.order_btn {
    border-radius: 5px;
    color: #fff !important;
    font-size: 17px;
}

.accept_order-form > input {
    background-color: inherit;
    border-radius: 10px;
}

.accept_order-form > input:-webkit-autofill {
    -webkit-background-clip: text;
}

/*image modal*/

.modal_with_image {
    position: fixed;
    display: none;
    z-index: 1050 !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0);
    box-shadow: 10px 10px 50px rgba(184, 18, 29, 0.5);
    overflow: hidden;
    border-radius: 15px;
}

#close_modal_with_image {
    position: absolute;
    top: 5px;
    right: -5px;
}

.modal_content {
    display: flex;
    flex-direction: row;
    flex-wrap:nowrap;
    align-items: flex-start;
}



.modal_left {
    padding: 10px;
}

.modal_left > img {
    border-radius: 8px;
    height: auto;
    max-height: 300px;
}

.modal_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    max-height: 380px;
}

.modal_right-quantity {
    display: flex;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal_right-quantity > input {
    text-align: center;
    border: none;
    font-size: 15px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    width: 40px;
    height: 30px;
    outline: none;
}

.button_decrease,
.button_increase {
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button_decrease {
    border-radius: 8px 0 0 8px;
}

.button_increase {
    border-radius: 0 8px 8px 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal_content{
    padding-top: 25px;
}

.modal_right-name {
    display: flex;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.8px;
}
.modal_right-name > span {
    color: white;
}

.modal_right-details{
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 0.8px;
}

.modal_right-button {
    display: flex;
    flex-direction: row;
}

.modal_right-button > button {
    background-color: #1d1b1b;
    margin-right: 15px;
    border: 1px solid whitesmoke;
    color: whitesmoke;
    border-radius: 4px;
    cursor: pointer;
}

.price > .text-success{
    font-size: 16px !important;
}

.modal_right-price {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.modal_right-price > span {
    color: white;
}

.cart_total-price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cart_total-price p {
    padding-right: 5px;
}

.accept_order {
    color: white !important;
    border-radius: 5px;
}

.minus-plus{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.minus-item{
    background-color: #d2180f;;
    color: #fff;
}

.plus-item{
    background-color: #287500;
    color: #fff;
}

.item-count{
    width: 60px;
    outline: none;
}




.accept__page{
    padding: 30px 60px;
    color: #fff;
}

.accept__page-p{
    font-size: 23px;
    font-weight: 600;
}

.accept__page-p:hover{
    transition: all .2s ease-in;
    text-shadow: rgba(203, 26, 26, 0.5) 0px 3px 3px;
}

.accept__page-div{
    padding: 15px 20px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 10px 10px 50px rgba(186, 106, 113, 0.5);
}


.tab-ul{
    padding: 25px 0;
    display: flex;
    justify-content: center;
}

.tab-ul a {
    border: 1px solid #d2180f;
    border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 12px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 0 6px rgba(223, 25, 25, 0.3);
    color: #fff;
}

.tab-ul a:hover {
    transition: all 0.2s ease-in-out;
    background-color: #d2180f;
}

a.active{
    background-color: #d2180f;
}

.cart_info{
    display: flex;
    flex-direction: column;
}

.table_tr{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.table_tr p{
    padding: 3px 5px !important;
}

.table_tr .delete-item{
    margin-left: 5px;
}

.modal__top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 15px;
}

.table__display{
    display: block;
}

.accept__page-small{
    display: none;
}

.go__back{
    padding: 25px 0px;
}

.product__box img{
    box-shadow: 0 0 6px rgba(236, 86, 86, 0.3);
}
#owl-demo .owl-item div{
    padding:5px;
}
#owl-demo .owl-item img{
    display: block;
    width: 100%;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

@media only screen and (max-width: 500px) and (min-width: 310px) {
    .modal_with_image{
        width: 90vw;
        top: 40%;
    }
}


@media screen and (max-width: 540px) {
    .basket_modal {
        padding: 0 25px 25px 25px;
    }

     p{
        font-size: 12px !important;
    }
}

@media screen and (max-width: 608px) {
    .basket_modal {
        padding: 0 25px 25px 25px;
    }

    p{
        font-size: 16px !important;
    }
}

@media screen and (max-width: 900px) {
    .accept__page-small{
        display: flex;
        flex-direction: column;
    }

    .active__table{
        display: flex;
        flex-direction: row;
    }

    .active__table p {
        padding: 5px 10px;
    }

    .accept__page-big{
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .top_link_logo{
        margin-top: -35px;
    }
}

@media screen and (max-width: 1172px){
    .modal_content {
        flex-wrap:wrap;
    }
    .modal_right-name>span{
        margin-left:5px;
        font-size:15px;
    }
    .modal_right-name{
        align-items: flex-start;
    }
}
