#pinecast-add-podcast {
	margin-top: 10px;
}


.pinecast-feed-template {
	display: none;
}
.pinecast-feed {
	background: #fff;

	// Header
	.pinecast-feed-header {
		display: flex;
		flex-grow: 1;
		height: 30px;
		cursor: pointer;
		font-size: 14px;
		padding: 12px 7px 12px 12px;
		line-height: 30px;
		font-weight: 600;
		border-bottom: 1px solid #eee;

		.title {
			flex-grow: 1;

			.placeholder {
				color: #999;
			}
		}
		.delete {
			color: #a00;
			line-height: 20px;
			vertical-align: middle;
			font-size: 13px;
			margin-right: 1em;
			height: 20px;
			margin-top: 5px;
			margin-bottom: 5px;
			display: inline-block;
			font-weight: normal;
			visibility: hidden;

			&:hover {
				color: #dc3232;
			}
		}

		.handlediv {
			width: 36px;
			display: block;
			justify-self: flex-end;
			height: 36px;
			margin: 0;
			padding: 0;
			border: 0;
			background: none;
			cursor: pointer;

			&:before {
				content: "\f141";
				display: inline-block;
				font: normal 20px/1 dashicons;
				speak: none;
				-webkit-font-smoothing: antialiased;
				-moz-osx-font-smoothing: grayscale;
				text-decoration: none !important;
				padding: 0;
				right: 0;
				vertical-align: middle;
			}
		}

		&:hover {

			.delete {
				visibility: visible;
			}
		}
	}
	.pinecast-feed-body {
		display: none;

		background: #f9f9f9;
		//padding: 12px;
		border-bottom: 1px solid #eee;

		.row {
			display: flex;
			flex-direction: row;
			width: 100%;

			.label {
				border-color: #e5e5e5;
				border-width: 0 1px 1px 0;
				border-style: solid;
				padding: 15px 10px;
				font-weight: bold;
				background: #F9F9F9;
				width: 200px;
			}
			.field {
				padding: 15px 10px;
				width: 100%;
				border-bottom: 1px solid #e5e5e5;
				background: #fff;

				input,
				textarea,
				select {
					width: 100%;
					box-sizing: border-box;
					font-size: 14px;
					line-height: 1.4;
				}
				input[type='radio'],
				input[type='checkbox'] {
					width: auto !important;
				}
			}

			&:last-of-type {
				.label, .field {
					border-bottom: none;
				}
			}

			.description {
				color: #788;
				font-size: 12px;
				font-weight: normal;
			}
		}

		/** Element specific */
		.row.actions {
			background: red !important;
			.button {

				.dashicons {
					line-height: 27px;
					height: 27px;
				}
			}
		}
	}
	&.open {

		.pinecast-feed-body {
			display: block;
		}
		.handlediv:before {
			content: '\f140';
		}
	}
}


.spinner {
	float: none;
}
