/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Dec 29, 2018, 5:44:07 PM
    Author     : Jim
*/
/*$screen-sm: 719px;*/
* {
  box-sizing: border-box;
}

.allOfficersBox {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  align-items: center;
}

.officerBox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 10px 0;
  padding: 5px;
  width: 500px;
  border: solid 1px black;
}

.officerInfoBox {
  /*flex: 0 1 auto;*/
  width: 300px;
  /*   height:0;
     min-height:120px;*/
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}

.officerContact {
  /*   height: 0;
     min-height: 115px;*/
}

.officerFlagBox {
  /*flex: 0 1 auto;*/
  width: 120px;
  height: 60px;
}
.officerFlagBox img {
  width: 100%;
  height: 100%;
}

.officerPhotoBox {
  /*flex: 0 1 auto;*/
  width: auto;
  height: 200px;
}
.officerPhotoBox img {
  /*width: 100%;*/
  height: 100%;
}

/* MEDIA QUERIES */
@media all and (max-width: 510px) {
  .officerBox {
    flex-flow: column nowrap;
    width: 300px;
    align-items: center;
  }
  .officerInfoBox {
    width: 100%;
    margin-bottom: 5px;
    order: 2;
  }
  .officerFlagBox {
    width: 60px;
    height: 30px;
    order: 3;
  }
  .officerPhotoBox {
    order: 1;
  }
  .noPhoto {
    height: 0px;
  }
}

/*# sourceMappingURL=d27Bridge.css.map */
