.cart-list {
    background-color: #f7f7f7;
    padding: 42px 0;
}

.catr-line {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 35px;
}

.catr-line:last-child {
    margin-bottom: 0;
}

.cart-line__img {
    width: 124px;
    height: 124px;
    background-size: cover;
    background-position: center;
}

.cart-line__actions {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: calc(100% - 150px);
    color: #fff;
}

.cart-line__name {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #1e2026;
}

.cart-line__bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cart-line__calc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    width: 124px;
    height: 36px;
    background-color: #1e2026;
}

.cart-line__calc span {
    padding: 0 15px;
    font-weight: bold;
    font-size: 18px;
}

.cart-line__price {
    font-size: 18px;
    font-weight: 300;
    color: #1e2026;
}

.cart-more {
    padding-bottom: 128px;
}

.cart-more__line {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    /* color: #fff; */
    font-size: 18px;
    font-weight: 300;
}

.cart-more__line:first-child:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #27292e;
}

.cart-more__line:first-child {
    text-decoration: underline;
}

.finally-price {
    font-size: 24px;
    font-weight: bold;
}

.cart-btn {
    width: 100%;
    height: 66px;
    border-radius: 33px;
    margin-top: 25px;
    outline: none;
    border: 0;
    /* background: rgb(254, 223, 67);
    background: linear-gradient(90deg, rgba(254, 223, 67, 1) 0%, rgba(239, 113, 152, 1) 100%); */
    background: #d90000;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

@media screen and (max-width: 413px) {
    .cart-line__name {
        font-size: 14px;
        line-height: 18px;
    }
    .cart-line__calc {
        width: 100px;
    }
}

@media screen and (max-width: 340px) {
    .cart-line__calc {
        width: 84px;
    }
    .cart-line__calc span {
        padding: 0 10px;
    }
}

.cart-form {
    padding-top: 34px;
}

.cart-form__label {
    display: block;
    margin-bottom: 45px;
}

.cart-form__label p {
    font-size: 14px;
    font-weight: bold;
    color: #98999e;
    text-transform: uppercase;
}

.cart-input {
    /* background: transparent; */
    background-color: lightyellow;
    border: 0;
    border-bottom: 2px solid #383a42;
    width: 100%;
    height: 56px;
    font-size: 18px;
    /* color: #fff; */
    color: black;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* .cart-input::placeholder {
    color: rgba(255, 255, 255, 0.6)
} */

/* .cart-input:focus {
    color: #fedd43;
    border-color: #fedd43;
} */

.bottom-links__el:nth-child(3){
    color: #fff;
}

.bottom-links__el:nth-child(3) path{
    fill: #fff!important;
}

.code-input-div, #after-failed-authorization, #authorization-btn {
    width: 120px; 
    margin-bottom: 45px; 
    background-color: orange; 
    padding: 10px; 
    text-align: center; 
    color: white; 
    border-radius: 20px; 
    display: inline-block;
}

.code-input-div input {
    width: 100px;
}

.code-input-div.d-none, 
#after-failed-authorization.d-none {
    display: none;
}

#code-submit {
    width: 20px;
    height: 20px;
    margin-bottom: 45px; 
    background-color: orange; 
    padding: 10px;
    text-align: center; 
    color: white; 
    border-radius: 20px; 
    display: inline-block;
}

#code-submit.d-none {
    display: none;
}

#authorization-btn.after-auth-try {
    background-color: grey;
}

#wait-code-popup {
    width:100%; 
    min-height:100%; 
    background-color: rgba(0,0,0,0.4); 
    overflow:hidden; 
    position:fixed; 
    top:0px; 
    z-index:10
}