/*
 * @file
 * CSS for ECTL RA compliance tool.
 */

#wrap > .container {
		width: fit-content !important;
		padding: 5px  !important;
                max-width: unset;

}

.ectl-inline {
  display: inline-block;
}

.field-disabled-ectl {
    background: #dbdbdb;
}

.ectl-fieldset {
  width: 900px;
}

.ectl-container {
  width: 200px;
}

.ectl-center {
  text-align: center;
}

.ectl-center-small {
  text-align: center;
  font-size: xx-small;
}

.ectl-numbers {
  text-align: right;
}

.form-item-radios {
  display: inline-block;
}


.ectl-aural {
 line-height: 90%;
 margin: 5px;
}

.ectl-main-cont {
    align-self: center;
    margin: 0 auto;
    width: fit-content;
}

.ectl-under-dev {
  text-align: left;
  font-size: large;
  width: fit-content;
  height: fit-content;
  font-weight: bold;
  background-color: aqua;
  color: yellow;
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }

@-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
}

.ectl-50 {
  height: 50px;
}

.ectl-10 {
  height: 10px;
}

.description { 
  display:none; 
}

.button, .image-button {
 margin-left:0 !important;
 margin-right:0 !important;
}


@media only screen and (max-width: 480px){
	.ectl-fieldset {
		width: 50% !important;
	}
}

