@import url('../variables.css');

.businesscard {
    background-color: var(--primary-color-light-3);
}

.businesscard-light {
    background-color: var(--background-gray);
    flex: 1;
}

.businesscard .symbol {
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    border-radius: 0.475rem;
}

.businesscard .symbol-100px {
    width: 100px;
    height: auto;
}

.businesscard h1 {
    color: var(--text-color-primary) !important;
    font-size: 36px !important;
    font-weight: 700;
    text-align: center;
}

.businesscard .vcard-header-wrapper {
    width: 570px;
    max-width: 570px;
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.businesscard .vcard-header-info {
    /*width: 480px;*/
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.businesscard .vcard-header-actions {
    display: block;
    width: 100%;
    text-align: center;
    height: 68px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.businesscard .vcard-header-actions-wrapper {
    display: table;
    margin: 0 auto;
    height: 56px;
    text-align: center;
    width: 100%;
}

.businesscard .vcard-header-actions-wrapper a {
    cursor: pointer;
    display: table-cell;
    color: var(--text-color-primary) !important;
    text-decoration: none;
    padding: 10px 0;
    min-width: 100px;
    margin: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.businesscard .vcard-header-actions-wrapper a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.businesscard .vcard-header-actions-wrapper a:last-child {
    border-right: 0px;
}

.businesscard .vcard-header-actions-wrapper a small {
    margin-top: 3px;
    font-size: 10px;
}


.businesscard-light .vcard-body-wrapper {
    width: 570px;
    max-width: 570px;
    padding: 20px 45px 40px;
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.businesscard-light .vcard-body-info {
    width: 480px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.businesscard-light .vcard-body-actions {
    display: block;
    width: 100%;
    text-align: center;
}

.businesscard-light .vcard-body-actions-wrapper {
    display: table;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.businesscard-light .vcard-body-actions-wrapper .vcard-row {
    position: relative;
    padding: 20px 0 20px 65px;
    float: left;
    width: 100%;
    text-align: left;
}

.businesscard-light .vcard-body-actions-wrapper .vcard-row img {
    position: absolute;
    top: 25px;
    left: 20px;
}

.businesscard-light .vcard-body-actions-wrapper .vcard-row h4 {
    text-align: left;
    margin: 0;
}

.businesscard-light .vcard-body-actions-wrapper .vcard-separator {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    float: right;
    width: calc(100% - 65px);
}

.businesscard-light .vcard-body-actions-wrapper .vcard-row small {
    color: #82848f;
}

.businesscard-light .vcard-body-actions-wrapper .vcard-row .ctu--primary-button {
    width: 100% !important;
    display: block;
    text-align: center;
    padding: 18px 18px !important;
}

@media (max-width: 320px) {
    .businesscard h1 {
        font-size: 24px !important;
    }

    .businesscard-light .vcard-body-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }
}