#page-cont .art-cont .btn-toolbar {
  height: 0;
}

#page-cont .art-cont form.c-form {
  width: 100%;
}
#page-cont .art-cont form#FormCPCAccounts {
  display: none;
}
#page-cont .art-cont form#FormCPCAccounts.visible {
  display: block;
}
.c-form__group {
  /* display: flex; */
  width: 100%;
  padding-bottom: 12px;
}
#page-cont .art-cont form.c-form .c-form__group label {
  /* flex: 0 0 30%; */
  width: 35%;
  padding-right: 5%;
}
.c-form__group input[type="text"],
.c-form__group input[type="tel"],
.c-form__group input[type="email"] {
  /* flex: 0 0 60%; */
  width: 60%;
}
#page-cont .art-cont form.c-form .c-form__group input[type="checkbox"] {
  width: 13px;
  margin-right: 30px;
  display: inline-block;
}
#page-cont .art-cont form.c-form .c-form__group label[for="agreed"] {
  /* flex: 0 0 30%; */
  width: 90%;
}

#page-cont .art-cont form.c-form button {
  margin-left: 0;
  padding: 10px 45px;
}
.validation-input-danger {
  border-color: #d60000 !important;
}
.validation-message-danger {
  color: #d60000;
  display: block;
  position: relative;
  font-size: 0.75rem;
  margin-left: 35%;
  margin-top: 0.5em;
}
.checkbox-set .validation-message-danger {
  margin-left: 45px;
  display: none;
}
.checkbox-set.validation-danger .validation-message-danger {
  display: block;
}

.validation-danger {
  border-left: 2px solid #d60000;
  padding-left: 10px;
  margin-left: -1px;
}
.group-error-message {
  color: #d60000;
  display: none;
}

.alert .message {
  color: #d60000;
}

.message-popup {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-popup.shown {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.message-popup__wrapper {
  position: relative;
  background-color: #fff;
}

.message-popup__content {
  padding: 30px 30px;
  width: 80vw;
  height: 40vh;
  max-width: 600px;
  max-height: 300px;
  overflow-y: auto;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .message-popup__content {
    padding: 120px 60px 40px;
  }
}

.message-popup__close {
  /* default styles reset */
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent !important;
  color: #000 !important;
  font: inherit;
  line-height: normal;
  font-size: 35px;
  position: absolute;
  top: -3px;
  right: 8px;
  cursor: pointer;
}
