.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid #35b6b2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.cartProduct_group {
    overflow: hidden;
    background-color: var(--white-100);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #ededed;
    margin-top: 60px;
    box-shadow: 0 0 15px rgba(217, 215, 215, 0.4);
}

.cartProduct_item {
    padding: 25px;
    border-bottom: 1px solid lightgrey;
}

.cartProduct_item .row{
    display: flex;
    align-items: center;
}

.cartProduct_item .row div{
    display: flex;
    align-items: center;
}

.cartProduct_header {
    padding: 25px;
    border-bottom: 1px solid lightgrey;
    font-weight: bold;
}

.cartProduct_item:last-child {
    border-bottom: 0px !important;
}

.cartProduct_syncButton {
    cursor: pointer;
    color: #35b6b2;
}

.cartProduct_deleteButton {
    cursor: pointer;
    color: #cb6060;
}

.cartProduct_quantityError {
    font-size: 11px;
    color: red;
}

.cartProduct_sumPrice {
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
}

.order_cartSumPrice_title {
    font-size: 16px;
    padding: 15px 0px 0px 15px;
}

.order_cartSumPrice {
    font-size: 16px;
    font-weight: bold;
    padding: 15px 15px 0px 15px;
}

.order_transportPrice_title {
    font-size: 16px;
    padding: 15px 0px 0px 15px;
}

.order_transportPrice {
    font-size: 16px;
    font-weight: bold;
    padding: 15px 15px 0px 15px;
}

.order_paymentPrice_title {
    font-size: 16px;
    padding: 15px 0px 0px 15px;
}

.order_paymentPrice {
    font-size: 16px;
    font-weight: bold;
    padding: 15px 15px 0px 15px;
}

.stepContainer {
    padding: 10px;
    border-bottom: 1px solid lightgrey;
}

.stepContainer:last-child {
    border-bottom: 0px !important;

}

.stepContainer .dataContent {
    display: none;
}

.stepContainer .stepTitle {
    font-size: 16px;
    color:dimgrey;
    background-color: white;
    cursor: default;
}

.stepContainer .stepTitle i {
    display: none;
}

.activeStep .stepTitle {
    color:black;
    font-weight: bold;
}

.activeStep .dataContent {
    display: block;
}

.successStep .stepTitle i {
    display: inline;
}

.successStep .stepTitle {
    color:#35b6b2;
    font-weight: bold;
    cursor: pointer;
}

.successOrder_title {
    font-size: 25px;
    color: #35b6b2;
}

.successOrder_text {
    font-size: 18px;
}

