div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

body,
html {
  margin: 0;
  padding: 0;
}

p,
a {
  font-family: "Titillium Web";
  text-decoration: none;
}

.Screen {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.Payment_Screen {
  width: 100vw;
  min-height: 80vh;
  background-color: #f5f5f5;
}

.PS_Head {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
}

.PS_Head h1 {
  font-family: "Manrope";
  font-weight: 700;
  font-size: clamp(1em, 2vw, 2.5em);
  color: grey;
}

.PS_Body {
  flex-direction: row;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
}

.PS_L,
.PS_R {
  width: 50%;
  height: 100%;
}

.Rechnungsdaten {
  width: 100%;
  height: auto;
}

.Rechnungsdaten form {
  display: flex;
  width: 100%;
  flex-direction: column;
}

fieldset {
  background-color: #fff;
  margin: 0;
  box-sizing: border-box;
}

.PMO {
  transition: 0.3s ease;
}

.PMO:hover {
  border: 2px solid orangered;
  cursor: pointer;
}

.Rechnungsdaten input {
  border: 0;
  border-bottom: 1px solid transparent;
  height: 3vh;
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: clamp(0.9em, 1.25vw, 1.2em);
  background-color: transparent;
  text-indent: 15px;
}

.fieldset_long {
  border: 1px solid lightgray;
  border-radius: 10px;
  width: 100%;
  margin-top: 1vh;
}

.fieldset_80 {
  border: 1px solid lightgray;
  border-radius: 10px;
  width: 70%;
  margin-top: 1vh;
}

.fieldset_20 {
  border: 1px solid lightgray;
  border-radius: 10px;
  width: 25%;
  margin-top: 1vh;
}

.Input_8020 {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.Input_8020_reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
}

.Rechnungsdaten legend {
  padding-left: 15px;
  padding-right: 15px;
  font-family: "Titillium Web";
  color: grey;
}

.Input_long {
  width: 100%;
}

input:focus {
  outline: none;
}

.Zahlungsoptionen {
  width: 100%;
  height: auto;
  flex-direction: row;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
  flex-direction: column;
}

.Payment_Option_PP {
  width: 10vw;
  height: 4vh;
  background-color: #fcbb32;
  align-items: center;
  justify-content: center;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 1vh;
  padding-bottom: 1vh;
  border-radius: 5px;
  margin-top: 1vh;
  margin-right: 1vw;
  border: 2px solid transparent;
}

.Payment_Option {
  width: 10vw;
  height: 4vh;
  background-color: white;
  align-items: center;
  justify-content: center;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 1vh;
  padding-bottom: 1vh;
  border-radius: 5px;
  margin-top: 1vh;
  margin-right: 1vw;
  flex-direction: row;
  box-shadow: 0px 0px 3px 0px grey;
  border: 2px solid transparent;
}

.Payment_Option_PP svg {
  width: 90%;
  height: auto;
}

.Payment_Option p {
  font-family: "Manrope";
  font-weight: 500;
  font-size: clamp(0.9em, 1vw, 1.2em);
}

.PS_ZO_Head {
  font-family: "Manrope";
  font-weight: 700;
  color: grey;
  font-size: clamp(1em, 1vw, 1.5em);
}

.PS_ZO_Body {
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  flex-direction: row;
}

.selected_Payment {
  border: 2px solid royalblue;
}

.PS_R {
  align-items: flex-end;
  justify-content: center;
}

.Cart_Summary {
  width: 95%;
  background-color: #fff;
  border: 1px solid lightgrey;
  border-radius: 15px;
  height: auto;
  min-height: 41vh;
  margin-top: 2vh;
  flex-direction: column;
}

.Cart_Summary_Header {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  font-family: "Manrope";
  font-weight: 600;
  color: grey;
  font-size: clamp(1em, 1.5vw, 1.5em);
}

.Cart_Summary_Container {
  width: 100%;
  height: auto;
}

.Cart_Summary_Totals {
  width: 100%;
  height: auto;
  border-top: 1px solid grey;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
}

.CST_Item {
  width: 90%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0.5vh;
  padding-bottom: 0.5vh;
}

.CST_Description,
.CST_Value {
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: clamp(1em, 1.2vw, 1.5em);
  margin: 0;
}

.CST_Value {
  font-weight: 500;
}

.Final_Sum {
  margin-top: 1vh;
}

.Final_Sum p {
  font-weight: 800;
  font-family: "Manrope";
}

.Cart_Summary_Item {
  width: 90%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 1vh;
  padding-bottom: 1vh;
  border-top: 1px dashed lightgrey;
}

.CSI_Title {
  font-weight: 500;
  font-family: "Manrope";
  font-size: clamp(0.8em, 1.2vw, 1.2em);
}

.CSI_Price {
  font-weight: 400;
  font-family: "Titillium Web";
  font-size: clamp(0.8em, 1vw, 1em);
}

.PS_Footer {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  height: auto;
  padding-top: clamp(5vh, 5vw, 10vh);
  padding-bottom: clamp(5vh, 5vw, 10vh);

  align-items: flex-end;
}

.Pay_Now_BTN {
  width: 20vw;
  height: 5vh;
  background-color: green;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.Pay_Now_BTN:hover {
  background-color: royalblue;
  cursor: pointer;
}

.Pay_Now_BTN p {
  font-size: clamp(1em, 1vw, 1.5em);
  font-weight: 400;
  font-family: "Manrope";
  color: white;
}

.Payment_Response_Popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgb(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 0.4s ease;
  display: none;
}

.Popup_Screen {
  width: 60vw;
  height: 80vh;
  background-color: white;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.Popup_Loading_Paypal {
  width: 80%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Popup_Success {
  width: 80%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Popup_Failed {
  width: 80%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Popup_Title {
  width: fit-content;
  font-family: "Manrope";
  font-weight: 600;
  font-size: clamp(1em, 2vw, 3em);
  color: grey;
}

.Popup_SubTitle {
  width: fit-content;
  font-family: "Manrope";
  font-weight: 400;
  font-size: clamp(1em, 1.5vw, 2em);
  color: grey;
  width: 60%;
  text-align: center;
}

.PP_Loading_Animation {
  width: 20vw;
  height: 20vw;
  align-items: center;
  justify-content: center;
}

.load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*change these sizes to fit into your project*/
  width: 100px;
  height: 100px;
}
.load hr {
  border: 0;
  margin: 0;
  width: 40%;
  height: 40%;
  position: absolute;
  border-radius: 50%;
  animation: spin 2s ease infinite;
}

.load :first-child {
  background: #19a68c;
  animation-delay: -1.5s;
}
.load :nth-child(2) {
  background: #f63d3a;
  animation-delay: -1s;
}
.load :nth-child(3) {
  background: #fda543;
  animation-delay: -0.5s;
}
.load :last-child {
  background: #193b48;
}

@keyframes spin {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(160%);
  }
  50% {
    transform: translate(160%, 160%);
  }
  75% {
    transform: translate(0, 160%);
  }
}

.success-animation {
  margin: 10px auto;
}

.checkmark {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb71b;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: #fff;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4bb71b;
  }
}

.checkmark__circle__failed {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #ff2b2b;
  fill: none;
  animation: stroke-failed 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__failed {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #ff2b2b;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #ff2b2b;
  animation: fill-failed 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check__failed {
  transform-origin: 50% 50%;
  stroke-dasharray: 29;
  stroke-dashoffset: 29;
  animation: stroke-failed 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.checkbox_label{
  margin-top: 2vh;
  font-family: 'Manrope';
  font-weight: 200;
}

@keyframes stroke-failed {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale-failed {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@media (max-width: 600px) {
  .PS_Body {
    flex-direction: column;
  }

  fieldset{
    height: 10vh;
  }

  .PS_L,
  .PS_R {
    width: 100%;
  }

  .PMO{
    width: 45%;
  }

  .PS_ZO_Body{
    justify-content: space-between;
  }

  .Cart_Summary{
    width: 100%;
  }

  .Pay_Now_BTN{
    width: 100%;
  }

  .Popup_Screen{
    width: 90vw;
    height: 60vh;
  }

  .success-animation{
    width: 100%;
    height: 100%;
  }

  .checkmark{
    width: 100%;
    height: 100%;
  }
  .checkmark__failed{
    width: 100%;
    height: 100%;
  }

  .Popup_Success{
    width: 80%;
  }

  .Popup_SubTitle{
    width: 100%;
  }

  .Popup_Title{
    font-size: clamp(1em, 2.5vh, 3em);
    text-align: center;
  }

  .PP_Loading_Animation{
    width: 12.5vh;
    height: 12.5vh;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
  }
}
