.hide-field{
  display: none;
}

.boat_container{
  display: flex;
  flex-flow: column;
}

td.gpnf-field tr:nth-child(n+5){
  display: none;
}

td.gpnf-field tr:nth-child(3){
  display: none;
}

td.gpnf-field tr:nth-child(4) td{
  text-transform: lowercase;
}

td.gpnf-field tr td:first-child{
  display: none;
}

td.gpnf-field tr td{
  border: 0;
  padding: 0;
}

td.gpnf-field tr{
  display: inline;
}

td.gpnf-field tr:not(:empty):not(:nth-child(4)):after {
  content: ", ";
  vertical-align: super;
}

.field-deactivated{
	opacity: 0.4;
    pointer-events: none;
}

.field-deactivated.loading{
	
}
.field-deactivated.loading .select2-selection{
	position: relative;
}
.field-deactivated.loading .select2-selection__rendered{
	opacity: 0.3;
}
.field-deactivated.loading .select2-selection::after{
    font-family: 'FontAwesome';
	font-weight: 400;
	content: "\f110";
	display: block;
	position: absolute;
	z-index: 9999;
	animation-name: spin;
	animation-duration: 5000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear; 
	top: 30%;
    width: fit-content;
    display: flex;
    align-items: center;
	left: 0;
	right: 0;
	margin: 0 auto;

}


@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}