.dispatch-popin {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
}

.dispatch-popin select {
  cursor: pointer;

  /* custom arrow */
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iQ2FscXVlXzIiIGRhdGEtbmFtZT0iQ2FscXVlIDIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDE0LjY2IDguMDYiPgogIDxnIGlkPSJDYWxxdWVfMS0yIiBkYXRhLW5hbWU9IkNhbHF1ZSAxIj4KICAgIDxwb2x5Z29uIHBvaW50cz0iNy4zMSA4LjA2IDAgLjc5IC43MSAuMDggNy4zMSA2LjY1IDEzLjk1IDAgMTQuNjYgLjcxIDcuMzEgOC4wNiIvPgogIDwvZz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: right top 50%;
  background-size: 1rem auto;
  padding-right: 1rem;
}

.dispatch-popin__body {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 880px;
  height: auto;
  min-height: 322px;
  max-height: 650px;
  padding: 3rem;
  background-color: #fff;
  margin: 1rem;
}

@media (min-width: 481px) {
  .dispatch-popin__body {
    margin: 2rem;
  }
}

@media (min-width: 768px) {
  .dispatch-popin__body {
    margin: 3rem;
  }
}

.dispatch-popin__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.dispatch-popin-logo {
  max-width: 192px;
  width: 100%;
  display: block;
  margin: auto;
}

.dispatch-popin-submit {
  display: none;
  background-color: #fff;
}

.dispatch-popin-select-lang {
  display: none;
}

.dispatch-popin-select-country {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
}

@media (min-width: 481px) {
  .dispatch-popin-select-country {
    flex-direction: row;
  }
}

.dispatch-popin-select-country li:not(:last-child) {
  margin-bottom: 1rem;
}

@media (min-width: 481px) {
  .dispatch-popin-select-country li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

.dispatch-popin-select-country input[type="radio"] + label {
  margin: 0;
}

.dispatch-popin-select-country input[type="radio"]:checked + label {
  background-color: #d52819;
  color: #fff;
}

.dispatch-popin-select-country input[type="radio"] + label::before,
.dispatch-popin-select-country input[type="radio"] + label::after {
  content: none;
}

.radio-btn {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}