@import "./vars.css";

#account-vcards .vcards-content {
    display: flex;
    align-items: flex-start;
}
#account-vcards .vcards-content .left {
    flex: 1 1 auto;
    margin-right: 20px;
}
#account-vcards .vcards-content .checkbox {
    margin-bottom: 30px;
}
#account-vcards .vcards-content .button-red {
    width: 207px;
}
#account-vcards .vcards-content h3 {
    line-height: 1;
    margin: 30px 0;
    font-weight: 600;
    font-size: 24px;
}
#account-vcards .vcards-content .success {
    color: var(--green-color);
}
#account-vcards .vcards-content .failed {
    color: var(--main-color);
}
#account-vcards .vcards-content td:last-child {
    text-align: left;
}
#account-vcards .edit {
    font-size: 10px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    transition: all .3s;
    cursor: pointer;
    margin-left: 10px;
    vertical-align: middle;
}
#account-vcards .edit:hover {
    color: #fff;
    background: var(--main-color);
}
#account-vcards .remove {
    margin-left: 10px;
    font-size: 20px;
    transition: all .3s;
    color: #9D9D9D;
    cursor: pointer;
    height: 20px;
    vertical-align: middle;
    display: inline-flex;
}
#account-vcards .remove:hover {
    color: var(--main-color);
}

#account-vcard-edit .text-field {
    margin: 24px 0 20px;
    width: 345px;
}
#account-vcard-edit .button-red {
    width: 207px;
}
#account-vcard-edit .form {
    display: flex;
    justify-content: space-between;
}
#account-vcard-edit .left {
    max-width: 588px;
    flex: 1 1;
    margin-right: 20px;
}
#account-vcard-edit .right {
    width: 345px;
    flex: 0 0 345px;
}

#account-add-vcard .form {
    display: flex;
    align-items: flex-start;
}
#account-add-vcard .form .right {
    width: 345px;
    flex: 0 0 345px;
    margin-left: 20px;
}
#account-add-vcard .form .cost {
    padding: 20px;
    border: 1px solid #E9E9E9;
    border-radius: var(--border-radius);
}
#account-add-vcard .form .cost .heading {
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
    color: #666;
}
#account-add-vcard .form .cost .amount {
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 18px;
    color: #2C2C2C;
}
#account-add-vcard .form .cost .discount {
    margin-bottom: 13px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
}
#account-add-vcard .form .cost .discount i {
    font-size: 10px;
    width: 22px;
    height: 22px;
    border: 2px solid #E5E4E4;
    border-radius: 50%;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#account-add-vcard .form .cost .button-red {
    width: 207px;
}
#account-add-vcard .table {
    font-size: 13px;
}
#account-add-vcard .example {
    color: var(--main-color);
    text-decoration: underline;
}
#account-add-vcard .note {
    margin: 20px 0;
    color: var(--light-grey-color);
    font-size: 12px;
    display: flex;
    align-items: center;
}
#account-add-vcard .note i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--main-color);
}
#account-add-vcard .note strong {
    color: var(--dark-grey-color);
}
#account-add-vcard .table td {
    padding-top: 16px;
    padding-bottom: 16px;
}
#account-add-vcard .table td > p:last-child {
    margin-bottom: 0;
}
#account-vcard-help .content {
    color: #666;
    font-size: 14px;
}
#account-vcard-help ul {
    padding-left: 24px;
    margin: 0 0 16px;
}
#account-vcard-help ul li {
    margin-bottom: 16px;
}
#account-vcard-help .support {
    margin-top: 30px;
}

@media(max-width: 768px) {
    #account-vcards .vcards-content,
    #account-vcard-edit .form,
    #account-add-vcard .form {
        flex-direction: column;
    }
    #account-vcards .vcards-content .left {
        margin-right: 0;
    }
    #account-vcard-edit .left,
    #account-vcard-edit .right,
    #account-add-vcard .form .right {
        width: 100%;
        flex: 0 0 100%;
    }
    #account-vcard-edit .right,
    #account-add-vcard .form .right {
        margin-top: 20px;
        margin-left: 0;
    }
}