.smart-table {
    overflow-x: auto;
    width: 100%;    
}

.smart-table table {
    border-collapse: collapse;
    width: 100%;
}

.smart-table table th,
.smart-table table td {
    border: 1px solid #fff;
    padding: 5px 10px;
    font-size: 13px;
    vertical-align: middle;
}

.smart-table table thead th {
    background-color: #ddebf8;
    font-size: 13px;
    text-align: center;
}

.smart-table-button {
    background-color: #001f60;
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.smart-table-empty {
    text-align: center;
}

.smart-table table .smart-table-row-1:not(:first-child) td {
    border-top: 6px solid #fff;
}

.smart-form {
	display: block;
	width: 100%;
}

.smart-form-flex {
	display: grid;
	flex-direction: column;
	gap: 20px;	
}

@media (min-width: 992px) {
	.smart-form-flex {
		grid-template-columns: repeat(2, 1fr);
		flex-direction: row;
		gap: 20px
	}
}

.smart-form input,
.smart-form select {
	border: 1px solid #d6dde7;	
	display: block;
	font-size: 14px;
	height: 40px;
	outline: none !important;
	padding: 0 15px;
	width: 100%;
}

.smart-form input::placeholder {
	color: #a6a7a9;
}

.smart-form input:focus {
	border-color: #0067c8;
}


.smart-parametric-parameters {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	gap: 10px;
}

.smart-parametric-parameter {
	flex: 1;
	width: 100%;
}

.smart-parametric-title {
	background-color: #ddebf8;
	display: block;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
	text-align: center;
	width: 100%;
}

.smart-parametric-parameters ul {
	list-style: none;
	margin: 0;
	padding: 10px;
}

.smart-parametric-input {
	align-items: center;
	display: inline-flex;
	font-size: 14px;
}

.smart-parametric-input input {
	-webkit-appearance: none;
	border: 2px solid #0067c8;
	border-radius: 100%;
	display: block;		
	height: 16px;
	margin-right: 5px;
	position: relative;
	width: 16px;
}

.smart-parametric-input input:checked::after {
	background-color: #0067c8;
	border-radius: 100%;
	content: "";
	display: block;
	height: 8px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 8px;
}

@media (min-width: 768px) {
	.smart-parametric-parameters {
		flex-direction: row;
		gap: 1px;
	}
}

@media (min-width: 992px) {
	.smart-parametric-parameters {
		grid-template-columns: repeat(8, 1fr);
		gap: 1px;
	}
	
	.smart-parametric-parameters-2 {
		grid-template-columns: repeat(2, 1fr);
		max-width: 400px;
	}		
}