.cart_sect {
    padding: 3em 0;
}
.cart_sect .cols {
    display: block;
}
.cart_sect .col {
    width: 100%;
}
.cart_sect .table .tr {
    display: flex;
}
.cart_sect .table .td {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    padding: 0 1em;
    width: calc((100% - 3.25em)/2);
}
.cart_sect .table .thead {
    margin: 0 0 1em;
    border-top: 1px solid #EAF1FC;
    border-bottom: 1px solid #EAF1FC;
}
.cart_sect .table .thead .tr {
    height: 3em;
}
.cart_sect .table .tbody .tr {
    height: 5em;
    border: 1px solid #EAF1FC;
    background-color: #FAFAFA;
    border-radius: 2.5em;
    box-sizing: border-box;
}
.cart_sect .table .tbody .tr:not(:last-child) {
    margin-bottom: 0.5em;
}
.cart_sect .thead_label {
    text-align: center;
    color: #53627C;
    font-weight: 500;
    font-size: 0.75em;
}
.cart_sect .item_name {
    color: #317EE5;
    position: relative;
    line-height: 1.25;
    padding-left: 1.75em;
    font-size: 0.875em;
}
.cart_sect .item_name:before {
    content: '';
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    box-sizing: border-box;
    background-color: #317EE5;
    border-radius: 50%;
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../../img/icons/check-fff.svg);
    position: absolute;
    top: 0.625em;
    left: 0;
    transform: translate(0, -50%);
}
.cart_sect .item_links_qty {
    text-align: center;
}
.cart_sect .item_cost {
    text-align: center;
    font-size: 0.75em;
}
.cart_sect .remove_butt {
    font-size: inherit;
    width: 1.25em;
    height: 1.25em;
    outline: none;
    border: none;
    padding: 0;
    box-sizing: border-box;
    margin-left: auto;
    cursor: pointer;
    background-color: transparent;
    background-image: url(../../../img/icons/close2-babfcd.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.cart_sect .total_table {
    box-sizing: border-box;
    border: 1px solid #EAF1FC;
    border-radius: 1.125em;
    color: #53627C;
    font-size: 0.875em;
    padding: 1.5em 1em;
}
.cart_sect .total_table .tr {
    display: flex;
}
.cart_sect .total_table .td {
    width: 50%;
    box-sizing: border-box;
    flex-grow: 1;
    padding: 1em 0;
}
.cart_sect .total_table .td:last-child {
    text-align: right;
}
.cart_sect .total_table .td:first-child {
    text-align: left;
}
.cart_sect .total_title {
    font-weight: 500;
    font-size: 1.125em;
}
.cart_sect .total_table .tbody .tr .td {
    border-bottom: 1px solid #ACCBFB;
}
.cart_sect .total_table .butt {
    width: 100%;
}
.cart_sect .total_item_name {
    display: flex;
    align-items: center;
    padding-left: 1.25em;
    line-height: 1.25;
    position: relative;
    color: #317EE5;
    font-size: 1em;
}
.cart_sect .total_item_name:before {
    content: '';
    display: block;
    width: 0.75em;
    height: 0.75em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../img/icons/check-27ae60.svg);
    position: absolute;
    top: 0.625em;
    left: 0;
    transform: translate(0, -50%);
}
.cart_sect .total_item_links_qty {
    color: #317EE5;
    font-size: 1em;
}
.cart_sect .total_cost {
    font-weight: 500;
    color: #2C4268;
    font-size: 1.25em;
}
.cart_sect .table .td:nth-child(2) {
    display: none;
}
.cart_sect .table .td:last-child {
    width: 3.25em;
}
.cart_sect .sect_title {
    text-align: center;
}
.cart_sect .table {
    margin: 0 0 1.25em;
}