.tpsm-field {
	width: 100%;
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}
.tpsm-field-label {
	width: 35%;
}
.tpsm-field .tpsm-field-input {
	width: calc( 100% - 38% );
}
.tpsm-field-label label {
	font-size: 14px;
	color:#242628;
	font-weight: 500;
}
.tpsm-field-desc {
	margin: 0;
	margin-top: 5px;
	font-size: 12px;
	color: #a9a8a8;
	font-weight: 400;
}
.tpsm-field select:focus {
	outline: 0 !important;
	box-shadow: 0 !important;
}
.tpsm-field .tpsm-field-input input[type="text"],
.tpsm-field .tpsm-field-input input[type="text"]:focus {
	width: 50%;
	border: 1px solid #a8a8a8;
	border-radius: 4px;
	box-shadow: none;
}


table {
	border-collapse: collapse;
	border: 1px solid #ddd;
}
table thead tr {
	border-bottom: 1px solid #ddd;
}
table thead tr th {
	text-align: center;
	padding: 10px;
	border-right: 1px solid #ddd;
}
table tbody tr td {
	border-right: 1px solid #ddd;
	padding: 10px;
}
table tbody tr td input[type="text"],
table tbody tr td input[type="text"]:focus {
	width: 80%;
	border:none;
	border: 1px solid #e9e9e9;
	box-shadow: none;
}
/*== switch style ==*/
.tpsm-switch-wrapper {
	position: relative;
}
.tpsm-switch[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
	position: absolute;
}

.tpsm-switch-label {
	cursor: pointer;
	text-indent: -9999px;
	width: 40px;
	height: 20px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}

.tpsm-switch-label:after {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50px;
	transition: 0.3s;
}

.tpsm-switch:checked + label {
	background: #f25500;
}

.tpsm-switch:checked + label:after {
	left: calc(100% - 1px);
	transform: translateX(-100%);
}

.tpsm-switch-label:active:after {
	width: 50px;
}

/*== end switch style ==*/


/*=== Start Color Field Style ===*/
.tpsm-color-field {
	display: flex;
	gap: 5px;
}
.tpsm-color-field input[type="color"],
.tpsm-color-field input[type="color"]:focus {
	box-shadow: none;
	border: 1px solid #a8a8a8;
}
.tpsm-color-field input[type="text"] {
	width: 150px !important;
}
/*=== end Color Field Style ===*/