/* Basket */
.basket {
    margin: 64px 0 128px;
}

.basketWrapper, 
.basketCard, 
.basketCardEnd, 
.basketShapeContent,
.basketShapeInfo,
.basketCardWrapper {
    display: flex;
    justify-content: space-between;
}

.basketWrapper {
    margin-top: 64px;
}

.basketCards {
    margin-right: 30px;
}

.basketCard {
    margin-bottom: 33px;
}

.basketCard:last-child {
    margin-bottom: 0;
}

.basketCardImg {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 170px;
    height: 170px;

    margin-right: 32px;

    background: #F8F8F8;
    border-radius: 8px;
}

.basketCardWrapper {
    flex-direction: column;
}

/* .basketCardStart {
    max-width: 570px;
} */

.basketCardTitle {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;

    color: #000000;
}

.basketCardText {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    margin-top: 8px;

    color: #B0B0B0;
}

.basketCardCol {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 126px;
    height: 33px;

    border: 2px solid #892484;
    border-radius: 8px;
}

.basketCardColMinus,
.basketCardColPlus {
    width: 16px;
    height: 2px;

    background: #000000;
}

.basketCardColPlus {
    position: relative;
}

.basketCardColPlus::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    width: 16px;
    height: 2px;

    background: #000000;
    transform: rotate(-90deg);
}

.basketCardPrice {
    display: flex;
    align-items: end;
}

.basketCardPriceNew {
    font-weight: 600;
    font-size: 36px;
    margin-right: 8px;

    color: #000000;
}

.basketCardPricePast {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;

    text-decoration-line: line-through;

    color: #B0B0B0;
}

/* Shape */
.basketShape {
    max-width: 370px;
}

.basketShapeForm {
    max-width: 370px;
    height: auto;
    
    background: #F8F8F8;
    border-radius: 8px;
    padding: 24px;

    margin-bottom: 16px;
}

.basketShapeForm:last-child {
    margin-bottom: 16px;
}

.basketShapeName {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;

    color: #000000;
}

.basketShapeContent {
    margin-top: 16px;
}

.basketShapeCol,
.basketShapePrice {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;

    color: #892484;
}

.basketShapeTitle {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;

    color: #000000;

    margin-top: 8px;
}

.basketShapeInfo {
    margin-top: 16px;
}

.basketShapeFinalCol,
.basketShapeFinalPrice {
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;

    color: #000000;
}

/* Input */
.basketShapeFormMT {
    margin-top: 16px;
}

.basketShapeFormInput {
    max-width: 322px;
    height: 43px;

    margin-top: 16px;
    padding: 12px 24px;

    border: 1px solid #892484;
    border-radius: 8px;
}

.basketShapeFormGroup {
    display: flex;
    align-items: center;
    
    margin-bottom: 12px;
    cursor: pointer;
}

.basketShapeFormRadio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    appearance: none;
}

input[type='radio']:after {
    width: 16px;
    height: 16px;
    border-radius: 16px;
    top: -2px;
    left: -2px;
    position: relative;
    background-color: #fff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid #B0B0B0;
}

input[type='radio']:checked:after {
    background-color: #892484;
    
    border: 2px solid white;
}

.basketShapeFormRadioImg {
    margin: 0 12px;
}

.basketShapeFormRadioTitle {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;

    color: #000000;
}

.basketShapeBtn {
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    
    max-width: 370px;
    height: 52px;

    background: #892484;
    border-radius: 8px;

    font-weight: 600;
    font-size: 16px;
    line-height: 20px;

    color: #FFFFFF;

    transition: all .3s ease-in-out 0s;
}

.basketShapeBtn:hover {
    background: #63195f;
}

.baskeShapePrice {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;

    margin-top: 10px;
}

@media (max-width: 1000px) {
    /* Basket */
    .basket {
        margin: 40px 0;
    }

    .basketWrapper {
        margin-top: 20px;
    }

    .basketCardImg {
        width: 100px;
        height: 100px;

        border-radius: 16px;

        margin-right: 10px;
    }

    .basketCardImg img {
        width: 40px;
        height: 83px;
    }

    .basketCardStart {
        flex-wrap: wrap;

        width: 318px;
    }

    .basketCardTitle {
        font-size: 13px;
        line-height: 18px;
    }

    .basketCardText {
        display: none;
    }

    .basketCardPrice {
        flex-direction: column;
    }

    .basketCardPriceNew {
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;

        margin-right: 0;
    }

    .basketCardPricePast {
        font-weight: 400px;
        font-size: 13px;
        line-height: 15px;
    }

    .basketCardEnd {
        width: 318px;
    }

    /* ShapeForm */
    .basketShapeForm {
        width: 250px;

        padding: 20px;
        margin-bottom: 40px;
    }

    .basketShapeName {
        line-height: 25px;
    }

    .basketShapeInfo {
        margin-top: 10px;
    }

    .basketShapeFinalCol,
    .basketShapeFinalPrice {
        font-size: 20px;
        line-height: 26px;
    }

    .basketShapeFormInput {
        width: 210px;
        height: 40px;
    }

    .basketShapeBtn {
        width: 250px;
        height: 40px;

        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    /* Basket */
    .basketWrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .basketCardImg {
        min-width: 100px;
    }

    .basketCardStart,
    .basketCardEnd,
    .basketShapeBtn,
    .basketShape {
        width: auto;
    }

    .basketCards {
        margin-right: 0;
        margin-bottom: 20px;

        padding-bottom: 20px;

        border-bottom: 2px solid #892484;
    }

    .basketShapeForm {
        width: auto;
        max-width: 335px;
        margin-bottom: 20px;
    }

    .basketShapeFormInput {
        width: 295px;
    }

    .basketShapeFinalCol,
    .basketShapeFinalPrice {
        font-weight: 400;

        color: #892484;
    }
}