
/* c-cart
------------------------------------------------------------------- */
.c-cart {
    position: relative;
}

.c-cart__small {
    display: flex;
    text-align: center;
	font-size: 14px;
}

.c-cart__small--icon {
    font-size: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #5b3f97;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .c-cart__small--icon {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .c-cart__small--icon {
        font-size: 22px;
    }
}

.c-cart__small--text {
    font-size: 12px;
    margin-top: 4px;
    color: #666;
}

@media (max-width: 767px) {
    .c-cart__small--text {
        font-size: 11px;
    }
}

.c-cart__small--price {
    display: none;
}

.c-cart__small:hover .c-cart__small--text {
    text-decoration: underline;
}

.c-cart__dropdown {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    visibility: hidden;
    width: 700px;
    padding: 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    opacity: 0;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

@media (max-width: 1024px) {
    .c-cart__dropdown {
        display: none;
    }
}

.c-cart:hover .c-cart__dropdown {
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}

.tcart-img{
	background: #0066d9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tcart-last{
	background: #0251a9;
    border-radius: 0 25px 25px 0;
    padding: 0 50px 0 20px;
    position: relative;
    text-transform: uppercase;
    line-height: 52px;
    height: 50px;
    color: #fff;
}
.tcart-cost{
	position: absolute;
    top: 14px;
    right: 12px;
    line-height: 23px;
    width: 21px;
    padding-left: 2px;
    height: 23px;
    border-radius: 50%;
    text-align: center;
    background-color: #ffffff;
    color: #1c1c1c;
    z-index: 200;
    font-size: 14px;
}
