.lgnl-row-actions {
	color: #a7aaad;
    font-size: 13px;
    padding: 2px 0 0;
    position: relative;
    left: -9999em;
	display: flex;
}

@media (hover: none) {
    .lgnl-row-actions {
        left: 0 !important;
    }
}

.lgnl-row-actions__item{
	display: flex;
    flex-direction: row;
}

.lgnl-row-actions__item:after {
	display: block;
	content: "|";
	padding: 0 0.25em;
}

.lgnl-row-actions__item:last-child:after{
	display: none;
}

.lgnl-row-actions a {
    color: #0073aa;
    text-decoration: none;
}

.lgnl-row-actions a:hover {
    color: #00a0d2;
}

.lgnl-row-actions .delete a {
    color: #a00;
}

.lgnl-row-actions .delete a:hover {
    color: #d63638;
}

.lgnl-field-group-horizontal {
	display: flex;
	gap: 0.5em;
}

.lgnl-field-group-horizontal-no-gap {
	gap: 0;
}

a.lgnl-settings-toggler, a.lgnl-settings-toggler:hover{
	color: #1d2327 !important;
	text-decoration: none !important;
}

.lgnl-settings-toggler {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
	flex-direction: row-reverse;
	gap: 6px;
    transition: transform 0.3s ease;
}

.lgnl-settings-toggler__icon {
	width: 12px;
	height: 18px;
    transition: transform 0.3s ease;
}

.lgnl-settings-toggler__icon.rotate {
    transform: rotate(90deg);
}

.lgnl-settings-toggler__text {
    font-size: 15px;
}

.lgnl-settings-toggler:hover {
    color: #0073e6;
}

.lgnl-list-table {
	background: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	border-radius: 4px;
	border: 1px solid #c3c4c7;
}

.lgnl-list-table .lgnl-list-table__row:nth-child(odd) .lgnl-list-table__col {
	background-color: #f6f7f7;
}

.lgnl-list-table__body {
	display: contents;
}

.lgnl-list-table__row {
	display: contents;
}

.lgnl-list-table__row--head {
	color: #2c3338;
	border-bottom: 1px solid #c3c4c7;
}

.lgnl-list-table__head {
	border-bottom: 1px solid #c3c4c7;
}

.lgnl-list-table__col {
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px;
	opacity: 1;
	transition: color 0.2s, max-height 0.2s, padding-top 0.2s, padding-bottom 0.2s, opacity 0.2s;
}

.lgnl-link-row {
	height: auto;
	max-height: auto;
}

.lgnl-link-row .lgnl-list-table__col{
	height: inherit;
	max-height: 100%;
	box-sizing: border-box;
}

.lgnl-link-row--is-deleting .lgnl-list-table__col {
	opacity: 0;
	max-height: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.lgnl-link-row:hover .lgnl-row-actions{
	left: 0;
}

.lgnl-link-row[data-is-expired="1"] .lgnl-column-link {
	position: relative;
}
.lgnl-link-row[data-is-expired="1"] .lgnl-column-link:before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
	bottom: 0;
	width: 2px;
    background-color:  rgb(255, 84, 22) !important;
}

.lgnl-link-wrapper {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 15vw;
	display: inline-block;
}

.lgnl-no-link-found {
	padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.lgnl-send-link-dialog-body {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.lgnl-send-link-dialog-body__row {
	display: flex;
    flex-direction: column;
}

.lgnl-send-link-dialog-body__textfield {
	max-width: 35ch;
}

.lgnl-field-has-error {
    border: 1px solid red !important;
    animation: lgnl-shake 0.3s ease-in-out 0s 2;
}

@keyframes lgnl-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

.lgnl-no-longer-see-links {
	float: left;
	padding: 1em;
	border: 1px solid #ccc;
	border-radius: 3px;
	max-width: 70ch;
	background-color: transparent;
}
.lgnl-no-longer-see-links__title {
	margin: 0;
}

/**
 * Link created Popup
 */
.lgnl-link-created-dlg {
	display: flex;
	row-gap: 1em;
	flex-direction: column;
}

.lgnl-input-copy {
	display: flex;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 25px;
	background-color: #eaeaea;
}

input.lgnl-input-copy__input {
	font-size: inherit;
	border: 0;
	background-color: transparent;
	max-width: 450px;
	width: 50ch;
}

input.lgnl-input-copy__input:focus {
	border-color: none;
	box-shadow: none;
	outline: none;
}

.lgnl-input-copy__copy-btn {
	background: 0;
	border: 0;
	padding: 0.5em;
	cursor: pointer;
	border-left: 1px solid #ccc;
}

.lgnl-input-copy__icon {
	height: 35px;
	width: 35px;
	display: flex;
}

.lgnl-input-copy__icon svg {
	position: absolute;
}

.lgnl-input-copy__copy-btn .lgnl-input-copy__copied-icon{
	display: none;
}

.lgnl-input-copy__copy-btn.lgnl-input-copy__copy-btn--state-copied .lgnl-input-copy__copied-icon{
	display: block;
}

.lgnl-input-copy__copy-btn.lgnl-input-copy__copy-btn--state-copied .lgnl-input-copy__copy-icon{
	display: none;
}

.lgnl-send-link-dlg {
	display: flex;
}

.lgnl-split-button {
	display: flex;
	gap: 1px;
}

.lgnl-split-button .lgnl-split-button__left {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.lgnl-split-button .lgnl-split-button__right {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	line-height: 1;
}