@media only screen and (max-width: 429px) {
  .view .view-content td,
  .view .view-content th {
    padding: 5px 8px;
  }
}

@media only screen and (min-width: 430px) and (max-width: 768px) {
  .view .view-content td,
  .view .view-content th {
    padding: 20px 8px;
  }
}

@media only screen and (max-width: 499px) {
  .views-exposed-form .form-actions {
    flex-direction: column;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .views-exposed-form .help-wrapper:nth-child(1) > .help-icon {
    right: 63%;
  }
}

@media only screen and (max-width: 1199px) {
  .views-exposed-form .help-wrapper:nth-child(2),
  .views-exposed-form .help-wrapper:nth-child(3),
  .views-exposed-form .help-wrapper:nth-child(4) {
    float: left;
    width: 30%;
  }
  
  .views-exposed-form .help-wrapper:nth-child(5) {
    float: left;
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .views-exposed-form .help-wrapper:nth-child(2),
  .views-exposed-form .help-wrapper:nth-child(3),
  .views-exposed-form .help-wrapper:nth-child(4) {
    float: left;
    width: 15%;
  }
  
  .views-exposed-form .help-wrapper:nth-child(5) {
    float: left;
    width: 55%;
  }
  
  .views-exposed-form .help-wrapper:nth-child(1) > .help-icon {
    right: 70%;
  }
}

@media only screen and (max-width: 991px) {
  .help-icon {
    display: none;
  }
}

.view-header {
  height: auto;
  padding-top: 20px;
  padding-bottom: 10px;
}

.views-exposed-form {
  margin-top: 0;
  padding: 10px;
  background-color: #F5F5F5;
  border: 1px solid #003263;
  border-radius: 15px;
}

.views-exposed-form .form-select:focus,
.views-exposed-form .form-text:focus {
  border-color: #003263;
}

.views-exposed-form .help-wrapper .form-item,
.views-exposed-form .help-wrapper .form-item input {
  width: 100%;
}

.views-exposed-form .form-actions {
  width: 100%;
}

.views-exposed-form .form-actions .form-submit {
  margin: 10px;
}

.views-exposed-form .form-actions .form-submit:nth-child(2) {
  float: right;
}

.help-wrapper {
  position: relative;
  padding: 10px;
}

.help-wrapper .form-group {
  margin-bottom: 0;
}

.help-icon {
    position: absolute;
    border: 1px solid #003263;
    padding: 1px 6px;
    border-radius: 15px;
    font-size: 10px;
    background: white;
    color: #003263;
    font-weight: bold;
}

.help-text {
  visibility: hidden;
  width: 20vw;
  background-color: #003263;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  position: absolute;
  z-index: 10000;
  right: 103%;
}

.views-exposed-form .help-wrapper > .help-icon {
  top: 8px;
  right: 10px;
}

.views-exposed-form .help-wrapper > .help-text{
  right: 100%;
  top: 37%;
}

.views-exposed-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.views-exposed-form .form-actions button {
  min-width: 195px;
  max-width: 275px;
}