﻿.cart_block {
    display: inline-block;
    position: relative;
    border: 1px solid #e5e5e5;
    padding: 5px;
    width: 100%;
    margin-bottom:10px;
}
.cart-img {
    display: flex;
    width: 100%;
}

.cart-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
}

.cart-img .cart_serviceName {
    width: 100%;
    margin-left: 10px;
    font-weight: 600;
    font-size: 12px;
    position: relative;
}
.cart-img .cart_serviceName .service_name_cart {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 15px;
}
.cart-img .cart_serviceName .service_detail{
    color: #7c7c7c;
    font-weight: 400;
    font-size: 12px;
}
.removecart {
    position: relative;
    float: right;
    color: #676767;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
}
.service_price_cart {
    display: inline-block;
    background: var(--primary-color);
    padding: 2px 5px;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    margin-top:5px;
}
.empty_cart {
    background: #f7f9fc;
    padding: 50px 0;
    text-align: center;
}
.ticket-office__footer {
    width: 100%;
    position: fixed;
    background: #fff;
    bottom: 0;
    padding: 15px 0;
    -webkit-box-shadow: 0 -2px 8px 0 rgb(0 0 0 / 13%);
    -moz-box-shadow: 0 -2px 8px 0 rgba(0,0,0,.13);
    box-shadow: 0 -2px 8px 0 rgb(0 0 0 / 13%);
    z-index: 99;
    left: 0;
}

.cart_velue {
    float: left;
    margin-top: 10px;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.cart_velue {
    -webkit-animation: glow 0.5s ease-in-out infinite alternate;
    -moz-animation: glow 0.5 ease-in-out infinite alternate;
    animation: glow 0.5 ease-in-out infinite alternate;
}
.Checkout_btn {
    width: 185px;
    font-size: 16px;
    font-weight: 600;
    line-height: 45px;
    display: block;
    border-radius: 3px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background: var(--primary-text-color);
    margin-left: 10px;
}
.cancel_booking {
    font-size: 12px;
    text-align: right;
    display: block;
    margin-top: -6px;
    color: #233d63;
    position: relative;
    cursor:pointer;
}

    .cancel_booking .password_nofica {
        top: -40px;
       width: 165px;
    }

    .cancel_booking:hover .password_nofica, .login_btn:hover .password_nofica {
        opacity: 1;
    }

.password_nofica {
     width: 165px;
    position: absolute;
    top: -176px;
    z-index: 999;
    color: #fff;
    margin: 0 auto;
    right: 0;
    padding: 10px;
    border-radius: 7px;
    opacity: 0;
    background-color: rgba(19,38,51,.92);
    pointer-events: none;
    transition: 0.5s;
}
.cart_price_block {
    display: flex;
    font-size: 24px;
    font-weight: 600;
    float: right;
}
@-webkit-keyframes glow {
    from {
        color: #233d63;
    }

    to {
        color: #e96a5b;
    }
}

@media (max-width: 767px) {
    .cart_price_block {
        font-size: 20px;
    }

    .Checkout_btn {
        width: 130px;
        font-size: 14px;
        line-height: 35px;
    }
    .ticket-office__footer {
    padding: 5px 0;
}
}