.cupo-modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.cupo-modal.active {
  visibility: visible;
  overflow: initial;
  width: 100vw;
  height: 100vh;
}

.cupo-modal-overlay {
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1001;
}

.cupo-modal-body {
  flex: 0 0 auto;
  background: #fff;
  border-radius: var(--smgCupoBorderRadius);
  box-shadow: 0 1px 9px -1px #000000;
  max-width: calc(100% - 40px);
  margin: 20px;
  padding: 20px 0 0;
  z-index: 1002;
  position: relative;
}
@media screen and (min-width: 2100px) {
  .cupo-modal-body {
    transform: scale(1.3);
  }
}
.cupo-modal-body > header {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin: 0;
  padding: 5px 10px;
  text-align: center;
  background: var(--smgCupoPrimaryColor, #ed6102);
  width: auto;
  max-width: 98%;
  position: absolute;
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: var(--smgCupoBorderRadiusSmall);
  box-shadow: 0 0 10px #002d68;
  padding: 5px 25px;
}
.cupo-modal-body .cupo-modal-buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.cupo-modal-body .cupo-modal-buttons > button.cupo-modal-confirm_button {
  margin-left: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  border: none;
  line-height: 30px;
  height: 30px;
  background: var(--smgCupoPrimaryColor, #ed6102);
  font-size: 14px;
  color: #fff;
  padding: 0 20px;
  width: 140px;
  text-align: center;
  outline: none;
  border-radius: var(--smgCupoBorderRadius) 0 var(--smgCupoBorderRadius) 0;
}
.cupo-modal-body .cupo-modal-buttons > button.cupo-modal-confirm_button:hover, .cupo-modal-body .cupo-modal-buttons > button.cupo-modal-confirm_button:focus {
  text-decoration: none;
  font-weight: bold;
}
@media screen and (min-width: 2100px) {
  .cupo-modal-body .cupo-modal-buttons > button.cupo-modal-confirm_button {
    font-size: 22px;
    line-height: 38px;
    height: 40px;
    width: 200px;
  }
}
.cupo-modal-body .cupo-modal-buttons > button.cupo-modal-cancel_button {
  margin-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  border: none;
  line-height: 30px;
  height: 30px;
  background: var(--smgCupoPrimaryColor, #ed6102);
  font-size: 14px;
  color: #fff;
  padding: 0 20px;
  width: 140px;
  text-align: center;
  outline: none;
  border-radius: 0 var(--smgCupoBorderRadius) 0 var(--smgCupoBorderRadius);
}
.cupo-modal-body .cupo-modal-buttons > button.cupo-modal-cancel_button:hover, .cupo-modal-body .cupo-modal-buttons > button.cupo-modal-cancel_button:focus {
  text-decoration: none;
  font-weight: bold;
}
@media screen and (min-width: 2100px) {
  .cupo-modal-body .cupo-modal-buttons > button.cupo-modal-cancel_button {
    font-size: 22px;
    line-height: 38px;
    height: 40px;
    width: 200px;
  }
}

.cupo_icon {
  display: block;
  width: 20px;
  height: 20px;
}
.cupo_icon.cupo_icon_white {
  fill: #fff;
}
.cupo_icon.cupo_icon_dark {
  fill: #4a4a4a;
}
.cupo_icon.cupo_icon_red {
  fill: red;
}
.cupo_icon.cupo_icon_green {
  fill: green;
}
.cupo_icon.cupo_icon_primary_color {
  fill: var(--smgCupoPrimaryColor, #ed6102);
}
.cupo_icon.cupo_icon_secondary_color {
  fill: var(--smgCupoSecondaryColor, #0068af);
}

.kupo_footer {
  background: #e6e6e6;
  padding: 15px 15px;
}
@media (min-width: 700px) {
  .kupo_footer {
    padding: 15px 40px;
    height: 145px;
  }
}
.kupo_footer .kupo_footer_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 10px;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 700px) {
  .kupo_footer .kupo_footer_content {
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
  }
}
@media (min-width: 1600px) {
  .kupo_footer .kupo_footer_content {
    max-width: 80%;
  }
}
.kupo_footer .kupo_footer_content > a {
  color: #696e71;
  font-size: 16px;
}
.kupo_footer .kupo_footer_content > a:hover {
  color: #2f2f2f;
}

.cupo_footer {
  height: fit-content;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../includes/shortcodes/Footer/smg-cupo-footer.png") bottom no-repeat;
  background-size: cover;
  padding: 15px 15px;
}
@media (min-width: 800px) {
  .cupo_footer {
    height: 145px;
    background-size: 100%;
  }
}
.cupo_footer .cupo_footer_content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  column-gap: 25px;
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
}
.cupo_footer .cupo_footer_content .cupo_footer_listing {
  display: flex;
  flex-direction: row;
  column-gap: 25px;
}
.cupo_footer .cupo_footer_content .cupo_footer_listing a:hover {
  text-decoration: underline;
}
.cupo_footer .cupo_footer_content .cupo_footer_listing-1, .cupo_footer .cupo_footer_content .cupo_footer_listing-2 {
  display: flex;
  flex-direction: row;
  column-gap: 25px;
}
@media (max-width: 800px) {
  .cupo_footer .cupo_footer_content {
    height: fit-content;
    flex-direction: column;
    row-gap: 10px;
  }
  .cupo_footer .cupo_footer_content .cupo_footer_listing {
    display: flex;
    flex-direction: row;
  }
  .cupo_footer .cupo_footer_content .cupo_footer_listing-1, .cupo_footer .cupo_footer_content .cupo_footer_listing-2 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
}
.cupo_footer .cupo_footer_content .cupo_footer_main {
  font-weight: bold;
  color: #696e71;
  font-size: 18px;
}
.cupo_footer .cupo_footer_content .cupo_footer_second {
  color: #696e71;
  font-size: 16px;
}

.cupo-toast {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  position: fixed;
  top: 20px;
  right: 20px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  z-index: 2000;
  visibility: visible;
  max-width: fit-content;
}
.cupo-toast.cupo-toast-index_2 {
  top: 84px;
}
.cupo-toast.cupo-toast-index_3 {
  top: 148px;
}
.cupo-toast.cupo-toast-index_4 {
  top: 212px;
}
.cupo-toast.cupo-toast-success {
  background: green;
}
.cupo-toast.cupo-toast-error {
  background: red;
}
.cupo-toast.cupo-toast-auto_hide button {
  display: none;
}
.cupo-toast span {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  max-width: 450px;
}
.cupo-toast button {
  flex: 0 0 auto;
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0 0 0 20px;
  width: 14px;
  height: 14px;
  color: inherit;
  cursor: pointer;
}
.cupo-toast button svg.cupo_icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cupo-input-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
}
.cupo-input-wrapper.cupo-input-readonly {
  cursor: default;
}
.cupo-input-wrapper.cupo-input-readonly input {
  cursor: default;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px 1px 0 0;
}
.cupo-input-wrapper.cupo-input-readonly label {
  transition: none !important;
  transform: none !important;
  font-size: initial !important;
}
.cupo-input-wrapper.cupo-input-readonly input:not(:placeholder-shown) + label {
  transform: translate(0, -20px) !important;
  font-size: 12px !important;
}
.cupo-input-wrapper input {
  background: transparent;
  z-index: 2;
}
.cupo-input-wrapper input + label {
  position: relative;
  font-size: initial;
  transition-property: transform, font-size;
  transition: 0.2s ease-in-out;
  top: 25px;
  z-index: 2;
}
.cupo-input-wrapper select + label {
  position: relative;
}
.cupo-input-wrapper select:focus:invalid + label {
  color: #ff0000;
}
.cupo-input-wrapper input:focus + label, .cupo-input-wrapper input:not(:placeholder-shown) + label, .cupo-input-wrapper input:not([placeholder=" "]) + label, .cupo-input-wrapper input:-webkit-autofill + label {
  transform: translate(0, -20px);
  font-size: 12px;
}
.cupo-input-wrapper input:focus:invalid + label, .cupo-input-wrapper input:focus:invalid ~ svg {
  color: #ff0000;
  fill: #ff0000;
}
.cupo-input-wrapper svg {
  position: absolute;
  margin: 2.5px;
  align-self: end;
  z-index: 3;
}
.cupo-input-wrapper textarea + label {
  margin-top: 20px;
}
.cupo-input-wrapper textarea:focus:invalid + label {
  color: #ff0000;
}
.cupo-input-wrapper textarea.invalid, .cupo-input-wrapper textarea:focus:invalid {
  border-color: red;
}

.cupo-registration-response,
.cupo-delete_account-response,
.cupo-verify_account-response,
.kupo-change-credential {
  display: block;
  font-family: var(--smgCupoDefaultFont);
  font-size: 14px;
  line-height: 20px;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  box-shadow: 0 1px 9px -1px #000000;
}
.cupo-registration-response > h1,
.cupo-delete_account-response > h1,
.cupo-verify_account-response > h1,
.kupo-change-credential > h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  margin: 0 0 20px;
  padding: 0;
  color: var(--smgCupoPrimaryColor, #ed6102);
}
.cupo-registration-response > p,
.cupo-delete_account-response > p,
.cupo-verify_account-response > p,
.kupo-change-credential > p {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
.cupo-registration-response > a,
.cupo-delete_account-response > a,
.cupo-verify_account-response > a,
.kupo-change-credential > a {
  display: block;
  appearance: none;
  border: none;
  outline: none;
  max-width: calc(100% - 40px);
  text-align: center;
  margin: 30px auto 0;
  padding: 0 20px;
  background: var(--smgCupoPrimaryColor, #ed6102);
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  border-radius: 3px;
  cursor: pointer;
}
.cupo-registration-response > a:hover,
.cupo-delete_account-response > a:hover,
.cupo-verify_account-response > a:hover,
.kupo-change-credential > a:hover {
  color: #fff;
}

.cupo-popup {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.cupo-popup.active {
  visibility: visible;
  overflow: initial;
  width: 100vw;
  height: 100vh;
}

.cupo-popup-overlay {
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1001;
}

.cupo-popup-body {
  flex: 0 0 auto;
  background: #fff;
  border-radius: var(--smgCupoBorderRadius);
  box-shadow: 0 1px 9px -1px #000000;
  max-width: calc(100% - 40px);
  margin: 20px;
  padding: 20px 0 0;
  z-index: 1002;
  position: relative;
  min-width: 400px;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 2100px) {
  .cupo-popup-body {
    transform: scale(1.3);
  }
}
.cupo-popup-body > header {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin: 0;
  padding: 5px 10px;
  text-align: center;
  background: var(--smgCupoPrimaryColor, #ed6102);
  width: auto;
  max-width: 98%;
  position: absolute;
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: var(--smgCupoBorderRadiusSmall);
  box-shadow: 0 0 10px #002d68;
  padding: 5px 25px;
}
.cupo-popup-body .cupo-popup-buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.cupo-popup-body .cupo-popup-buttons > button.cupo-popup-confirm_button {
  margin-left: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  border: none;
  line-height: 30px;
  height: 30px;
  background: var(--smgCupoPrimaryColor, #ed6102);
  font-size: 14px;
  color: #fff;
  padding: 0 20px;
  width: 140px;
  text-align: center;
  outline: none;
  border-radius: var(--smgCupoBorderRadius) 0 var(--smgCupoBorderRadius) 0;
}
.cupo-popup-body .cupo-popup-buttons > button.cupo-popup-confirm_button:hover, .cupo-popup-body .cupo-popup-buttons > button.cupo-popup-confirm_button:focus {
  text-decoration: none;
  font-weight: bold;
}
@media screen and (min-width: 2100px) {
  .cupo-popup-body .cupo-popup-buttons > button.cupo-popup-confirm_button {
    font-size: 22px;
    line-height: 38px;
    height: 40px;
    width: 200px;
  }
}
.cupo-popup-body .cupo-popup-content {
  padding: 20px 20px 0;
  margin: 0 0 25px;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
:root {
  --smgCupoPrimaryColor: #ed6102;
  --smgCupoSecondaryColor: #0068af;
  --smgCupoDefaultFont: Calibri Bold, Calibri Regular, Calibri, sans-serif;
  --smgCupoBorderRadius: 15px;
  --smgCupoBorderRadiusSmall: 6px;
}

.cupo-virtual_page-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  width: 100vw;
}
.cupo-virtual_page-wrapper > * {
  flex: 0 0 auto;
  width: 100%;
}
.cupo-virtual_page-wrapper .cupo-shortcode_wrapper {
  flex: 1 1 auto;
}

.cdk-overlay-container {
  z-index: 9999;
}
