.card {
  background: #ffffff;
  padding: 20px 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 30px; }
@media (max-width: 768.98px) {
  .card {
    padding-left: 12px;
    padding-right: 12px; } }
.card.card-no-border {
  border: 0; }
.card .card-header {
  border-bottom: 2px solid #e7e7e7;
  margin-bottom: 20px;
  padding-bottom: 15px; }
.card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6, .card .card-header p {
  margin-bottom: 0; }
@media (max-width: 768.98px) {
  .card .card-header.mobile-accordion {
    position: relative; }
  .card .card-header.mobile-accordion:not(.open) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .card .card-header.mobile-accordion::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    width: 15px;
    height: 15px;
    background-image: url(../images/open-down-caret.svg);
    background-size: contain;
    background-repeat: no-repeat; }
  .card .card-header.mobile-accordion.open::after {
    top: calc(50% - 10px);
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg); } }
@media (max-width: 768.98px) {
  .card .card-body.mobile-accordion:not(.open) {
    display: none; } }
.card .card-footer {
  border-top: 2px solid #e7e7e7;
  margin-top: 20px;
  padding-top: 20px; }

.select{
  -webkit-appearance: none;
  -moz-appearance: none;
  border: #A4A4A4 1px solid;
  background: #fff;
  border-radius: 4px;
  display: block;
  width: 100%;
  padding: 12px 10px;
}
.select-invalid{
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 0 0 3px rgba(221,0,0,.1);
  border: #d00 1px solid;
  border-radius: 4px;
  display: block;
  width: 100%;
  padding: 12px 10px;
}
.input-invalid {
  box-shadow: 0 0 0 3px rgba(221,0,0,.1);
  display: block;
  width: 100%;
  border: #d00 1px solid;
  border-radius: 4px;
  padding: 12px 10px;
}
.input-alert{
  color: #c40000;
  margin: 8px 0 0 0;
  text-align: left;
  font-size: 12px;
  line-height: 15px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 300ms, visibility 300ms;
  transition: opacity 300ms, visibility 300ms; }
.modal.modal-open {
  visibility: visible;
  opacity: 1; }
.modal .modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background: rgba(15, 23, 30, 0.8); }
.modal .modal-container {
  position: relative;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  padding: 20px 30px;
  width: calc(100% - 2rem);
  max-width: 900px;
  z-index: 9999;
  max-height: calc(100vh - 30px);
  overflow-y: scroll; }
.modal .modal-container.modal-narrow {
  max-width: 550px; }
@media (max-width: 999.98px) {
  .modal .modal-container {
    padding: 15px; } }
.modal .modal-close {
  position: absolute;
  top: -30px;
  right: -35px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  z-index: 9999; }
.modal .modal-header {
  border-bottom: 2px solid #e7e7e7;
  margin-bottom: 20px;
  padding-bottom: 15px; }
.modal .modal-header h1, .modal .modal-header h2, .modal .modal-header h3, .modal .modal-header h4, .modal .modal-header h5, .modal .modal-header h6, .modal .modal-header p {
  margin-bottom: 0; }
@media (max-width: 999.98px) {
  .modal .modal-header {
    padding-bottom: 10px; } }
.modal .modal-body {
  overflow-x: scroll; }
.modal .modal-footer {
  border-top: 2px solid #e7e7e7;
  margin-top: 20px;
  padding-top: 20px; }