.submit-er-btn {
  min-width: 215px;
  padding: 12px 15px;
  background: #EBCD82;
  border: 1px solid #C9A856;
  border-radius: 4px;
  -webkit-transition: background 250ms;
  transition: background 250ms;
  text-align: center;
  color: #37475A;
  text-decoration: none;
  display: inline-block;
  color: #37475A;
  cursor: pointer; }
.submit-er-btn:hover {
  background: #C9A856;
  color: #37475A; }

.submit-er-btn.btn-red {
  background: #FF2C38;
  border-color: #FF2C38;
  color: #ffffff; }
.submit-er-btn.btn-red:hover {
  color: #ffffff;
  background: #f8000e; }
.submit-er-btn.btn-clear {
  color: #232F3E;
  background: none;
  border-color: #004979; }
.submit-er-btn.btn-auto-width {
  min-width: auto; }
.submit-er-btn.btn-full-width {
  min-width: auto;
  width: 100%; }

.button-country {
  width: 60%;
  background-color: darkorange; /* Green */
  border: none;
  color: white;
  padding: 10px;
  margin: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  vertical-align: top;
  display: block;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 200ms ease-in, color 200ms ease-in;
}
.button-country:hover {
  background-color: #bb8749;
  transform: scale(1.02);
}

.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; }

.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;
  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; }

