input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}
.add_card_head{
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: bold;
    padding-left: 15px;
}
.add_new_card_wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.add_card_title{
    font-size: 20px;
    font-weight: bold;
}
.body_container_card{
    position: relative;
}
.add_new_card_body{
    box-sizing: border-box;
    padding: 40px 20px;
    box-shadow: 0 0 10px 1px #dedede;
    background-color: white;
    margin-right: 30px;
    border-radius: 1em;
    border: 1px solid #807f7f;
}
.add_new_card_item{
    padding-top: 15px;
}
.add_new_card_item > label{
    color: #6b6b6b;
}
.input_card{
    width: 100%;
}

.input_card:focus ~ .line{
    animation: line-green .25s cubic-bezier(0.85, 0.24, 1, 1);
    background-color: var(--border-primary);
}
.form_new_card{
    max-width: 500px;
}
.image_payment_system{
    float: right;
}
.image_payment_system > img{
    max-width: 50px;
}
.cards_compatibility:before{
    content: "!";
    margin-right: 10px;
    padding: 10px 15px;
    font-weight: bold;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 50%;
}
.row_item_2{
    width: 40%;
}
.row_item_2:first-child{
    margin-right: 15%;
}
.description-text_card:before{
    content: "!";
    margin-right: 10px;
    padding: 10px 15px;
    font-weight: bold;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 50%;
}
.description-text_card{
    position: absolute;
    background-color: #E5E5E5;
    width: calc(100% + 30px);
    padding: 20px 10px;
    margin-top: 30px;
    left: -15px
}
.add_card{
    margin-top: 130px;
    padding: 20px 30px;
    border-radius: 90px;
    border: 2px solid var(--border-primary);
    transition: .2s cubic-bezier(0.4, 0, 1, 1);
}
.add_card:hover{
    background: var(--bg-primary-hover);
}
@media(max-width: 992px){
    .add_new_card_wrapper{
        flex-direction: column;
    }
    .cards_compatibility{
        margin-bottom: 40px;
    }
    .description-text_card{
        line-height: 2.5;
    }
    .add_card{
        margin-top: 190px;
    }
}
@media(max-width: 487px){
    .add_card{
        display: block;
        margin-top: 200px;
        margin-right: auto;
        margin-left: auto;
    }
    .cards_compatibility{
        line-height: 2.5;
    }
}

@media(max-width: 365px){
    .add_new_card_item:first-of-type{
        margin-top: 30px;
    }
    .row_item_2{
        display: block !important;
        width: 100%
    }
    .image_payment_system {
        float: left;
    }
}
@media(max-width: 336px){
    .add_card{
        margin-top: 250px;
    }
}