a {
	text-decoration: underline;
}

textarea {
	width: 100%;
}

/*Styles for UI*/
.btn-wrapper {

	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.btn {
	box-sizing: border-box;
	padding: 10px 15px;
	font-size: 14px;
	border-radius: 10px;
	color: #ffffff;
	background: #0073aa;
	transition: all 0.3s;
	border: 1px solid #0073aa;
	width: fit-content;
	cursor: pointer;
}

.btn:hover {
	color: #0073aa;
	background: #ffffff;
}

.notification-wrapper {
	display: none;
	position: relative;
	background: #CAEACB;
	box-sizing: border-box;
	padding: 5px 7px 5px 30px;
	margin-bottom: 16px;
}

.notification-wrapper:before {
	content: '';
	background: url(../images/tick-icon.png) no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	top: 6px;
	left: 7px;
}

.notification-wrapper .message {
	font-weight: bold;
	color: #3EB049;
	font-size: 12px;
	margin: 0;
}

.notification-wrapper .close-btn {
    position: absolute;
    top: 3px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

.notification-wrapper.active {
	display: block;
}

.banner-wrapper .flex-wrapper {
	display: flex;
	flex-direction: row;
	background: #ffffff;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 16px 18px 0 18px;
	gap: 12px;
}

.banner-wrapper .flex-wrapper .left-wrapper img {
	max-width: 59px;
	width: 100%;
}

.banner-wrapper .flex-wrapper .right-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.banner-wrapper .flex-wrapper .right-wrapper h1 {
	font-weight: 400;
	font-size: 24px;
	padding: 0;
}


/*Dashboard*/
.breezy-dashboard-wrapper {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
	margin-top: 24px;
	margin-bottom: 100px;
}

.breezy-dashboard-item {
	width: calc((100% - 50px)/3);
	background: #FFFFFF;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 24px;
	transition: all 0.3s;
	cursor: pointer;
	text-decoration: none;
}

.breezy-dashboard-item * {
	text-decoration: none;
}

.breezy-dashboard-item:hover {
	background: #587BE1;
}

.breezy-dashboard-item .cus-icon {
	margin-bottom: 12px;
	position: relative;
	width: 38px;
	height: 38px;
}

.breezy-dashboard-item .cus-icon img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s;
}

.breezy-dashboard-item .cus-icon .unhover {
	visibility: visible;
}


.breezy-dashboard-item .cus-icon .hover {
	visibility: hidden;
}

.breezy-dashboard-item:hover .cus-icon .unhover {
	visibility: hidden;
}


.breezy-dashboard-item:hover .cus-icon .hover {
	visibility: visible;
}

.breezy-dashboard-item .plugin-name {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #000000;
	transition: all 0.3s;
}

.breezy-dashboard-item:hover .plugin-name {
	color: #ffffff;
}

.breezy-dashboard-item .btn-wrapper {
	display: flex;
    flex-direction: row;
    justify-content: flex-end;	
	display: none;
}
.breezy-dashboard-item .plugin-status {
	margin-bottom: 15px;
}

.breezy-dashboard-item .plugin-status .label {

	font-weight: bold;
}

.breezy-dashboard-item .plugin-status * {
	color: #000000;
	transition: all 0.3s;
}

.breezy-dashboard-item:hover .plugin-status * {
	color: #ffffff;
}

.breezy-dashboard-item .desc-wrapper {
	color: #000000;
	transition: all 0.3s;
}

.breezy-dashboard-item:hover .desc-wrapper {
	color: #ffffff;
}

/* Styles for the admin page tabs */
#tabs {
	margin-top: 20px;
	padding: 0;
	border-top: none !important;
	background: unset !important;
}

#tabs ul {
	padding: 0;
	list-style: none;
	background: unset;
	border-top: none;
	border-left: none;
}

#tabs li {
	display: inline;
	margin-right: 0;
	background: unset;
	border: 1px solid #d4d4d4;
	border-bottom: none;
}

#tabs a:focus {
	box-shadow: none;
}

#tabs li.ui-tabs-active {
	background: #d7d7d7;
}

#tabs a {
	text-decoration: none;
	color: #000000;
	transition: all 0.3s;
}

#tabs .ui-tabs-active a {
	color: #000000;
	font-weight: bold;

}

#tabs li:hover {
	background: #d7d7d7;
}



#tabs .ui-tabs-panel {
	padding: 10px;
	border: 1px solid #ccc;
	background: #fff;
}

.tab-inner-nav-wrapper {
	box-sizing: border-box;
	padding: 30px 30px 0 30px;
}

.tab-inner-nav-wrapper h2 {
	font-size: 20px;
	margin-bottom: 0;
}

.tab-inner-wrapper {
	box-sizing: border-box;
	padding: 30px;
}

#tab-3 .tab-inner-wrapper p:first-child {
	margin-top: 0;
}

.instructions-wrapper {
	box-sizing: border-box;
	padding: 20px;
	background: #f1f1f1;
	margin-bottom: 50px;

}

.instructions-wrapper h3 {
	margin-top: 0;
}

.instructions-wrapper ol {
	list-style-type: decimal;
	margin: 20px 0 0 0;
	padding-left: 0;
	font-size: 14px;
}

.instructions-wrapper ol li {
	margin-bottom: 10px;
	display: block !important;
	border: none !important;
}

.instructions-wrapper ol li:hover {
	background: unset !important;
}

.instructions-wrapper ol {
	counter-reset: list-counter;
}

.instructions-wrapper ol li::before {
	counter-increment: list-counter;
	content: counter(list-counter) ". ";
	font-weight: bold;
	color: #000000;
	margin-right: 10px;
}


.field-wrapper {
	margin-bottom: 16px;
}

.field-wrapper input {
	width: 100%;
}

.error-message {
	padding: 8px 0;
}


/*Table*/
table {
	border-collapse: collapse;
	width: 100%;
}

td,
th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
	vertical-align: middle !important;
}

tr:nth-child(even) {
	background-color: #dddddd;
}

.back-btn {
	text-decoration: underline !important;
	cursor: pointer !important;
	color: blue !important;
	text-underline-offset: 3px !important;
	display: block !important;
	margin-bottom: 30px !important;
	margin-top: 30px !important;
}

p a {
	text-decoration: underline;
	color: #135e96;
}

