#specifications-form .specifications-form-field {
margin: 20px 0;
}
#specifications-form select {
width: 100%;
padding: 10px 15px;
}
#specifications-table {
margin: 40px 0;
position: relative;
padding: 40px 0;
}
#specifications-table table {
width: 100%;
border-collapse: collapse;
}
#specifications-table thead tr td {
text-align: right;
border-bottom: 1px solid #dedcdc;
padding: 10px 15px;
}
#specifications-table thead tr td:first-child {
text-align: left;
}
#specifications-table tbody tr td {
text-align: right;
border-bottom: 1px solid #dedcdc;
padding: 10px 15px;
}
#specifications-table tbody tr td:first-child {
text-align: left;
}
.loader-wrapper {
position: absolute;
width: 100%;
height: 100%;
background: white;
top: 0;
left: 0;
display: none;
align-items: center;
justify-content: center;
}
.loader-wrapper.active {
display: flex;
}
.csb-loader {
border: 8px solid #f3f3f3;
border-radius: 50%;
border-top: 8px solid #3498db;
width: 50px;
height: 50px;
-webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite;
} @-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}