.mono-chast .mono-chast-tooltip {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 12px;
    margin-top: -3px;
    width: max-content;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s all;
    box-shadow: 1px 1px 11px -3px #000000;
    z-index:2;
}
.mono-chast .mono-chast-tooltip-content {
    color: black;
    background-color:white;
    border-radius: 5px;
    padding: 10px;
    position: relative;
    z-index: 2;
}
.mono-chast .mono-chast-tooltip:before {
    content:"";
    display:block;
    width: 0;
    height: 0;
    position: absolute;
    top: 12px;
    left: -6px;
    width: 15px;
    height: 15px;
    background-color: white;
    box-shadow: 0px 0px 12px -3px #000000;
    transform:rotate(45deg);
    z-index:1;
}
.mono-chast:hover .mono-chast-tooltip {
    visibility: visible;
    opacity: 1;
}

/* --------- list --------- */

.mono-chast-list {
    position: absolute;
    left: 20px;
    bottom: 10px;
    z-index: 9;
}
.mono-chast-list .mono-chast-image img {
    width: 40px;
}
.mono-chast-list .mono-chast-title {
    font-size:14px;
    font-weight: bold;
}
.mono-chast-list .mono-chast-description {
    font-size:12px;
}

.product-grid .product-thumb .image {
    position: relative;
}

/*--------- product --------- */

.mono-chast-product {
    display: flex;
    background-color: white;
    padding: 10px;
    border: 1px solid #eaedf9;
    border-radius: 10px;
    align-items: center;
    margin-top: 20px;
}
.mono-chast-product .mono-chast-image img {
    width: 45px;
}
.mono-chast-product .mono-chast-info {
    margin-left: 14px;
}
.mono-chast-product .mono-chast-title {
    font-size: 14px;
    font-weight: bold;
    color: black;
}
.mono-chast-product .mono-chast-product-button {
    margin-left: auto;
    border: 2px solid black;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    text-align: center;
}
.mono-chast-product .mono-chast-product-button:hover {
    box-shadow: 0px 0px 12px -4px #000000;
} 

/* --------- cart --------- */

.mono-chast-cart {
    display: flex;
    background-color: white;
    padding: 6px 10px;
    border: 1px solid #140a3c;
    border-radius: 10px;
    align-items: center;
}
.mono-chast-cart .mono-chast-image img {
    width: 45px;
}
.mono-chast-cart .mono-chast-info {
    margin-left: 14px;
}
.mono-chast-cart .mono-chast-title {
    font-size: 14px;
    font-weight: bold;
    color: #140a3c;
    margin-bottom: 3px;
}

#ocdw_cart-block #ocdw_cart-inner-footer .right .mono-chast-cart { 
    display:none;
}

/*--------- checkout --------- */

.mono-chast-payment_method_description img {
    height:22px;
    margin-right:10px;
} 

.mono-chast-checkout {
    width:100%;
} 

#simplecheckout_cart .cart-block #total_mono_chast {
    display: none;
}

@media (max-width: 768px) {
     #ocdw_cart-block #ocdw_cart-inner-footer > .mono-chast-cart {
        display: none;
    }
    #ocdw_cart-block #ocdw_cart-inner-footer .right .mono-chast-cart {
        order: 1;
        margin-bottom: 11px;
        display: flex;
    }
     #ocdw_cart-block .inner-footer .right {
        align-items: center;
    }
    #ocdw_cart-block .inner-footer .totals {
        order: 0;
    }
    #ocdw_cart-block .inner-footer .go-button {
        order: 2;
    }
}
@media (max-width: 540px) {
    .mono-chast .mono-chast-tooltip-content {
        max-width:140px;
    }
}