@import url("https://libs.coop.ch/fonts/Coop/stylesheet.css");
@import url("https://libs.coop.ch/fonts/Coop_Bold/stylesheet.css");
body {
  font-family: "coopregular", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5F3F0;
}

main {
  min-height: calc(100vh - 249px);
}
main .content-wrapper {
  padding: 95px 23px 95px 23px;
}
main .content-wrapper .content {
  max-width: 700px;
  margin: auto;
  position: relative;
}
main hr {
  border-top: 2px solid #CCCCCC;
}
@media (min-width: 1200px) {
  main {
    min-height: calc(100vh - 273px);
  }
  main .content-wrapper {
    padding: 145px 138px 145px 138px;
  }
}
header {
  height: 57px;
  width: 100%;
  background-color: white;
  border-image: linear-gradient(90deg, #f60 0%, #ffa940 100%) 1;
  border-top: 6px solid transparent;
  width: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 4px 0;
  display: flex;
}
header img {
  width: 57px;
  height: 17px;
  margin-left: 23px;
  margin-top: 23px;
}
header p {
  margin-left: 16px;
  margin-top: 11px;
  margin-bottom: 0;
  height: 40px;
  font-weight: 700;
  font-size: 11px;
  line-height: 12.65px;
  display: flex;
  align-items: center;
}
header .language-control {
  display: none;
}

@media (min-width: 1200px) {
  header {
    height: 69px;
  }
  header img {
    width: 142px;
    height: 42px;
    margin-left: 79px;
    margin-top: 13px;
  }
  header p {
    margin-left: 17px;
    margin-top: 6px;
    height: 50px;
    font-size: 15px;
    line-height: 17.25px;
  }
  header .language-control {
    display: flex;
    gap: 34px;
    position: absolute;
    right: 105px;
    top: 50%;
    transform: translateY(-50%);
  }
  header .language-control a {
    font-weight: 700;
    font-size: 16px;
    line-height: 18.4px;
    color: #FF8C00;
    text-decoration: none;
  }
  header .language-control a.current {
    color: black;
  }
}
footer {
  height: 180px;
  border-image: linear-gradient(90deg, #f60 0%, #ffa940 100%) 1;
  border-top: 6px solid transparent;
  font-weight: 400;
  line-height: 21.78px;
  background-color: white;
}
footer p {
  margin: 0;
}
footer a {
  text-decoration: none;
  color: black;
}
footer a:hover {
  color: #FF8C00;
}
footer .gray {
  background-color: #858585;
  height: 126px;
}
footer .gray p {
  font-size: 14px;
  text-align: center;
  color: white;
}
footer .gray p.title {
  padding-top: 14px;
  margin-bottom: 6px;
}
footer .white {
  background-color: #ffffff;
  height: 54px;
  display: flex;
}
footer .white p {
  display: inline-block;
}
footer .white p#open-settings-modal {
  cursor: pointer;
}
footer .white p, footer .white a {
  margin: auto;
}
footer .white p:first-child {
  margin-left: 32px;
}
footer .white a:last-child {
  margin-right: 32px;
}

@media (min-width: 1200px) {
  footer {
    height: 192px;
  }
  footer .gray {
    height: 138px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  footer .gray p {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  footer .gray p.title {
    padding-top: 0;
    margin-bottom: 0;
  }
  footer .white {
    float: right;
    display: inline-grid;
    grid-template-columns: auto auto auto;
    gap: 64px;
  }
  footer .white p, footer .white a {
    margin: auto auto auto 0;
  }
}
h1 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
}

@media (min-width: 1200px) {
  h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 41.4px;
  }
}
.form__group {
  position: relative;
  margin-top: 31px;
}
.form__group.hidden {
  display: none;
}
.form__group h2 {
    font-weight: 800;
    font-size: 14px;
    line-height: 17.8px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
@media (min-width: 1200px) {
  .form__group h2 {
    font-size: 16px;
  }
}
.form__field {
  width: calc(100% - 24px);
  border: 1px solid #ababab;
  font-size: 15px;
  padding: 11px;
  color: #676767;
  background: #ffffff;
  outline: 0;
  border-radius: 6px;
}

.form__field:focus::placeholder {
  color: transparent;
}

.form__label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.form__group button.toggle-password {
  position: absolute;
  top: 47%;
  right: 10px;
  background: white;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 30px;
  outline: 0;
  background-image: url("https://libs.coop.ch/idp-icons/closed.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form__group button.toggle-password.shown {
  background-image: url("https://libs.coop.ch/idp-icons/open.svg");
}

.form__group button.toggle-password:focus {
  outline: 1px solid rgba(245, 156, 0, 0.5);
  border-radius: 4px;
}

.error input.has-error {
  border-color: #CE0000;
}

@media (min-width: 1200px) {
  .form__label {
    font-size: 20px;
  }
  .form__group button.toggle-password {
    top: 50%;
  }
}
a.link {
  text-decoration: none;
  color: black;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  max-width: 200px;
  display: block;
  cursor: pointer;
  text-decoration: underline;
}
a.link:hover {
  color: #FF8C00;
}
a.link.hidden {
  display: none;
}

@media (min-width: 1200px) {
  a.link {
    max-width: none;
    margin-top: 34px;
  }
}
button.button.hidden {
  display: none;
}
button.button {
  background-color: #FF8C00;
  color: white;
  outline: 0;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 20px;
  line-height: 22.26px;
  padding: 7px 44px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 2px 0;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
button.button .spinner {
  display: none;
}
button.button.right {
  float: right;
}
button.button:focus, button.button:hover {
  background-color: #FFA940;
}
button.button:disabled {
  background-color: #FFA940;
  cursor: default;
  /*font-size: 0;*/
}
button.button:disabled .spinner {
  display: inline-block;
  height: 14px;
  width: 14px;
  border: 4px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  right: 7px;
}
button.button.secondary {
  background-color: #DBDBDB;
}
button.button.secondary:focus, button.button.secondary:hover {
  background-color: #E8E8E8;
}
button.button.secondary:disabled {
  background-color: #E8E8E8;
}
button.button.secondary:disabled .spinner {
  border-top-color: #DBDBDB;
}

.modal-content button {
  font-size: 16px;
  width: auto;
  padding: 9px 16px;
}
.modal-content button.secondary {
  margin-right: 10px;
}

@media (min-width: 1200px) {
  button.button {
    max-width: 352px;
  }
  .modal-content button {
    font-size: 20px;
    width: 100%;
    max-width: 352px;
  }
  .modal-content button.secondary {
    width: auto;
    margin-right: 10px;
    padding: 9px 16px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.selection-wrapper {
  margin-bottom: 20px;
}

.selection-title {
  margin-bottom: 8px;
  font-size: 14px;
  color: #676767;
}

.selection-bar {
  display: flex;
  flex-direction: column;
  background-color: #F903;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.selection-bar .selection-option {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: auto;
  border: 1px solid transparent;
}
.selection-bar .selection-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.selection-bar .selection-option .option-label {
  color: #676767;
  background-color: #F903;
  transition: background-color 0.3s ease;
  padding: 12px 12px;
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.selection-bar .selection-option input[type=radio]:checked + .option-label {
  background-color: #f90;
  color: #fff;
}
.selection-bar .selection-option input[type=radio]:focus + .option-label {
  opacity: 0.7;
}
.selection-bar .selection-option:last-child {
  width: 100%;
}

@media (min-width: 1200px) {
  .selection-bar {
    flex-direction: row;
    border-radius: 33px;
  }
  .selection-bar .selection-option {
    flex: 1;
    min-width: 0;
  }
  .selection-bar .selection-option:last-child {
    min-width: 350px;
  }
  .selection-bar .selection-option .option-label {
    font-size: 20px;
    padding: 12px 36px;
    border-radius: 0;
  }
  .modal .selection-wrapper p.selection-title {
    font-size: 16px;
    padding: 14px 0;
  }
}
.access-app-download .links {
  margin-top: 25px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr;
}
.access-app-download .links div {
  display: grid;
  grid-template-columns: 1fr;
}
.access-app-download .links div a {
  margin: auto;
}
.access-app-download .links div a img {
  width: 150px;
}
.access-app-download .links div .qr-code {
  display: none;
}

@media (min-width: 1200px) {
  .access-app-download .links {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  .access-app-download .links div a img {
    width: auto;
    height: 60px;
  }
  .access-app-download .links div .qr-code {
    display: block;
    height: 150px;
    margin: 40px auto auto;
  }
}
.info-button {
  width: 17px;
  height: 17px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
}

@media (min-width: 1200px) {
  .access-app .info-button {
    width: 23px;
    height: 23px;
  }
}

.info-icon {
  width: 100%;
  height: 100%;
  background-image: url("https://libs.coop.ch/idp-icons/info.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.criteria p {
  font-weight: 400;
  font-size: 13px;
  line-height: 14.47px;
  color: #676767;
}
.criteria.missing-only .fulfilled {
  display: none;
}
.criteria.missing-only ul {
  color: #CE0000;
}
.criteria ul {
  padding-left: 23px;
  list-style: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 13.35px;
  color: #676767;
}
.criteria ul li:before {
  content: "-";
  padding-right: 12px;
  margin-left: -16px;
}

.access-app {
  margin-top: 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.access-app button.coop-access-app {
  padding: 0 8px;
  background-color: #FF8C00;
  height: 48px;
  border-radius: 6px;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 17.8px;
  text-align: center;
  position: relative;
  cursor: pointer;
  color: white;
}
.access-app button.coop-access-app:focus, .access-app button.coop-access-app:hover {
  background-color: #FFA940;
}
.access-app a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.access-app a img {
  height: 48px;
  width: 48px;
}
@media (min-width: 1200px) {
  .access-app {
    margin-bottom: 44px;
    gap: 27px;
  }
  .access-app button.coop-access-app {
    padding: 0 16px;
    height: 54px;
    font-size: 20px;
    line-height: 22.26px;
  }
  .access-app button.coop-access-app img {
    height: 48px;
    width: 48px;
    top: 3px;
    left: 8px;
  }
}

.sms-token {
  font-size: 13px;
  line-height: 14.47px;
}
.sms-token p {
  margin: 18px 0 0;
}
.sms-token p.gray {
  margin: 8px 0 0;
  color: #676767;
}
.sms-token a {
  color: #676767;
  text-decoration: underline;
}
.sms-token a:hover {
  color: #FF8C00;
}

@media (min-width: 1200px) {
  .sms-token {
    font-size: 16px;
    line-height: 17.8px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: calc(100% - 40px);
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}
.modal .modal-content {
  background-color: #ffffff;
  margin: 100px auto;
  padding: 32px 32px 92px;
  border: 1px solid #888;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.modal .modal-content h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36.8px;
  margin: 0;
}
.modal .modal-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.8px;
  color: #676767;
  margin: 0;
  padding-top: 10px;
}
.modal .modal-content a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 17.8px;
  color: #F59C00;
}
.modal .no-break {
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .modal .modal-content {
    margin: 150px auto;
  }
  .modal .modal-content h2 {
    font-size: 32px;
  }
  .modal .modal-content p, .modal .modal-content a {
    font-size: 16px;
  }
}
div.error {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
div.error .card {
  display: none;
  background-color: #FFFFFF;
  border-left: 20px solid #B03814;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 20px;
  z-index: 2;
  width: calc(100% - 81px);
  max-width: 659px;
  margin: 0 20px;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  padding: 13px 13px 13px 8px;
}
div.error .card .contend {
  max-width: 93%;
}
div.error .card p {
  color: #676767;
  font-size: 14px;
  line-height: 15.58px;
  font-weight: 400;
  margin: 0;
}
div.error .card h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 27.6px;
  margin: 0 0 8px;
}
div.error .card img {
  width: 29px;
  height: 29px;
  margin: auto;
}
div.error .card .close {
  right: 12px;
  top: 6px;
  color: #DBDBDB;
  font-size: 24px;
  position: absolute;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border: none;
}
div.error.info .card {
  border-left: 20px solid #E0D466;
}
div.error.error-shown .card {
  display: grid;
}

@media (min-width: 1200px) {
  div.error .card {
    padding: 30px 13px 30px 8px;
  }
  div.error .card p {
    font-size: 20px;
    line-height: 28px;
  }
  div.error .card h2 {
    font-size: 32px;
    line-height: 36.8px;
    margin-bottom: 12px;
  }
}
.dropdown {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #FF8C00;
  width: 55px;
  height: 28px;
  border: 1px solid #F5F3F0;
  border-radius: 4px;
  background-color: white;
  position: absolute;
  right: 20px;
  top: 13px;
}
.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 6px 9px 3px 9px;
}
.dropdown-arrow {
  display: inline-block;
  background-image: url("https://libs.coop.ch/idp-icons/arrow.svg");
  height: 5px;
  width: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.dropdown[aria-expanded=true] {
  height: 99px;
}
.dropdown[aria-expanded=true] .dropdown-selected {
  border-bottom: 0;
}
.dropdown[aria-expanded=true] .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-options {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
  width: 100%;
  background: transparent;
  z-index: 1;
}
.dropdown-options[aria-hidden=false] {
  display: block;
}
.dropdown-option {
  padding: 10px;
  cursor: pointer;
  color: black;
  outline: none;
  padding: 3px 9px;
}
.dropdown-option:hover, .dropdown-option:focus {
  background: #f0f0f0;
}
.dropdown-option.current {
  display: none;
}
.form__group .selected {
  display: none;
}

@media (min-width: 1200px) {
  .dropdown {
    display: none;
  }
}

.copy {
  cursor: pointer;
}

#expired-modal {
  z-index: 3;
}

.hidden {
  display: none;
}