.content {
	margin-top: calc(var(--topbar-height) + 35px);
	padding-bottom: 75px;
}

.header__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

h1.title {
	font-size: 1.5em;
	font-weight: 400;
}

p.subtitle {
	font-size: .9em;
	font-weight: 300;
	margin-bottom: 0px;
	color: #343a40c1;
}

button.action {
	font-size: .9em;
	background: transparent;
	border: 1px solid #343a40;
	border-radius: 5px;
	padding: 6px 12px;
	color: #343a40;
}

button.action svg {
	width: 20px;
	margin-top: -2px;
}

div.divider {
	margin: 35px 0px;
	border-top: 1px solid #00000010;
}

div.content__module {
	background: white;
	border-radius: 10px;
	border: 1px solid #00000010;
	box-shadow:  5px 5px 15px #dcdcdc20,
	             -5px -5px 15px #e4e4e420;
}

.content__module div.module__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #00000010;
	padding: 15px 20px;
}

.content__module h1.module__title {
	font-size: 1em;
	font-weight: 300;
	margin-bottom: 0px;
	color: #161617;
}

.content__module .module__body {
	padding: 15px 20px 15px 20px;
}

p.nothing {
	font-size: .8em;
	font-weight: 400;
	text-align: center;
	color: #343a4050;
	margin: 15px 0px;
}

.box__title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.box__title h1 {
	line-height: 1;
}

label.badge {
	font-size: .6em;
	font-weight: 400;
	padding: 3px 5px;
	background: #ff7f34;
	margin-bottom: -2px;
	text-transform: uppercase;
	margin-left: 15px;
}

/* INPUT BOX */

.input__box .iti {
	width: 100%;
}

.input__box label {
	font-size: .75em;
	text-transform: uppercase;
	font-weight: 400;
	color: #343a40ae;
	width: 100%;
}

.input__box input {
	width: 100% !important;
	padding: 6px 12px;
	font-size: .9em;
	font-weight: 400;
	border-radius: 5px;
	background: transparent;
	border: 1px solid #343a4040;
	color: #343a40;
}

.input__box input::placeholder {
	color: #343a4070;
}

.input__box input:disabled {
	background: #f9f9f9;
}

.input__box {
	margin-bottom: 10px;
}

.input__box label b {
	font-weight: 300;
	color: #ff0000;
}


/* ACTION BOX */

.module__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0px 20px 20px 20px;
}

.module__actions button {
	padding: 6px 12px;
	font-size: .9em;
	font-weight: 400;
	background: transparent;
	border: 1px solid #161617;
	border-radius: 5px;
	line-height: 1.3;
	color: #161617;
}


/* DELETE BOX */

.confirmDelete {
	display: flex;
	justify-content: flex-start;
	align-items: center;

	margin: 20px 0px !important;
}

.confirmDelete input {
	margin-right: 5px;
}

.confirmDelete label {
	font-size: .9em;
	font-weight: 300;
	line-height: 1;
	color: #343a40;
}

textarea.feedbackDelete {
	padding: 6px 12px;
	border-radius: 10px;
	border: 1px solid #00000020;
	background: white;
	font-size: .9em;
	font-weight: 300;
	width: 100%;
	min-height: 100px;
}

.deleteButton {
	background: #ea295e !important;
	border-color: #ea295e !important;
	color: #ffffff !important;
}


/* API KEY BOX */

button.newApi {
	cursor: not-allowed;
	background: transparent;
	padding: 6px 12px;
	font-size: .8em;
	font-weight: 300;
	color: #007bff;
	border: none;
}

button.newApi svg {
	margin-top: -2px;
	stroke-width: 1px;
	margin-right: 3px;
	width: 18px;
}

.api__box {
	padding: 10px;
}

.api__box .input__api {
	display: flex;
	justify-content: space-between;
	align-items: center;

	overflow: hidden;
	padding: 0px 0px 0px 15px;
	border: 1px solid #00000010;
	border-radius: 10px;
}

.api__box .input__api svg {
	width: 20px;
	stroke-width: 1px;
	color: #343a4080;
}

.api__box .input__api input {
	width: 100%;
	background: transparent;
	border: none;
	padding: 0px 20px;
	font-size: .8em;
	font-weight: 300;
}

.api__box .input__api .copyApiKey {
	padding: 10px 15px;
	background: #00000005;
	cursor: pointer;
}

.api__box .input__api .copyApiKey svg {
	margin-top: -3px;
	stroke-width: 1px;
	color: #343a40ac !important;
	width: 18px;
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgb(255 64 119 / 32%);
		box-shadow: 0 0 0 0 rgb(255 64 119 / 32%);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgb(204 44 44 / 0%);
		box-shadow: 0 0 0 10px rgb(204 44 44 / 0%);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgb(204 44 44 / 0%);
		box-shadow: 0 0 0 0 rgb(204 44 44 / 0%);
	}
}

.plan__expired {
	background: #ffd2df;
	color: #a7002e;
	padding: 10px 15px;
	font-size: .9em;
	font-weight: 300;
	margin-bottom: 30px;
	border-radius: 15px;
	animation: pulse 2s infinite;
}

.plan__status {
	padding: 3px 5px;
	font-size: .8em;
	font-weight: 400;
	line-height: 1;
	border-radius: 5px;
	margin-bottom: 10px;
}

.status__expired { background: #ffd2df; color: #a7002e; }
.status__active { background: #dbffd2; color: #1aa700; }

.plan__name {
	font-size: 1.8em;
	font-weight: 400;
	margin-bottom: 15px;
}

.plan__method {
	margin-bottom: 5px;
	font-size: .8em;
	font-weight: 300;
	color: #343a40;
}

.plan__method strong {
	color: #161617;
	margin-left: 5px;
	font-size: .9rem !important;
}

.plan__method:last-child {
	margin-bottom: 0px;
}

.plan__box {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.plan__actions {
	text-align: right;
}

.plan__actions button {
	padding: 8px 15px;
	border-radius: 15px;
	border: 1px solid #343a40c1;
	color: #161617;
	font-weight: 400;
	font-size: .9em;
	background: transparent;
	margin-top: 10px;
	margin-left: 10px;
}

.plan__actions svg {
	width: 23px;
	stroke: #000;
	margin-top: -3px;
	margin-right: 3px;
	stroke-width: 1px;
}

#renewPlan {
	background: #161617;
	font-weight: 300;
	color: #fff;
}

#renewPlan svg {
	stroke: #fff;
	margin-top: -5px;
	stroke-width: 1.5;
}