@charset "utf-8";
/* CSS Document */

.eventShareBlock {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    width: 100%;
}

.eventShareLeft {
    flex: 0 0 32%;
}

.eventShareRight {
    flex: 1;
}

.eventShareQR {
    width: 200px;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.eventShareCopyRow {
    display: flex;
    gap: 8px;
    align-items: stretch;
    width: 100%;
    margin-bottom: 12px;
}

.eventShareCopyRow textarea,
.eventShareCopyRow input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.eventShareCopyRow textarea {
    min-height: 56px;
    resize: vertical;
}

.eventShareCopyButton {
    width: 70px;
    flex: 0 0 70px;
    cursor: pointer;
}

.eventShareHint {
    font-size: 0.95em;
}

.eventShareCopyButton {
    width: 70px;
    flex: 0 0 70px;

    background: #337ab7;
    color: #fff;

    border: 1px solid #2e6da4;
    border-radius: 4px;

    padding: 8px 12px;

    font-family: inherit;
    font-size: 14px;
    font-weight: normal;

    cursor: pointer;

    transition: background-color 0.2s ease,
                border-color 0.2s ease;
}

.eventShareCopyButton:hover {
    background: #286090;
    border-color: #204d74;
}

.eventShareCopyButton:active {
    background: #204d74;
    border-color: #122b40;
}

/* Mobile */
@media screen and (max-width: 700px) {

    .eventShareBlock {
        display: block;
    }

    .eventShareLeft,
    .eventShareRight {
        width: 100%;
    }

    .eventShareLeft {
        margin-bottom: 25px;
    }

}