html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body,
h1,
h2,
h3,
p,
label,
a {
  font-family: "Dax Regular", sans-serif; /* Fallback to sans-serif if Dax Regular doesn't load */
  font-size: 16px;
  color: #666;
}

#Telefon {
    width: 100%;
    padding: 8px;
    max-width:170px;
}
.mr {
  margin-right: 10px;
}
.ml {
  margin-left: 10px;
}
.mb {
  margin-bottom: 10px;
}
.mt {
  margin-top: 10px;
}

.pr {
  padding-right: 10px;
}
.pl {
  padding-left: 10px;
}
.pb {
  paading-botttom: 10px;
}
.pt {
  padding-top: 10px;
}
.header {
  height: 120px;
  display: flex;
  align-items: center;
  background-color: #efefef;
  margin-bottom: 15px;
  border-bottom: 2px solid #ecebe8;
}
.main {
  display: flex;
}
.rows {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.column {
  display: grid;
  margin-left: 10px;
  float: left;
}
.label {
  margin-right: 20px;
  flex: 0 0 150px;
}
.staticInput {
  max-width: 30px;
  padding: 8px;
}
.input,
.selectBox {
  padding: 8px;
  box-sizing: border-box;
  flex: 1;
  max-width: 250px;
  width: 100%;
}
.input:invalid {
  border-color: red;
  outline-color: red;
  box-shadow: 0 0 5px red;
}
.centerPosition {
  display: flex;
  align-items: center;
  justify-content: center;
}
.applicationText {
  font-size: 36px;
  text-align: center;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 3px;
  appearance: none;
  padding: 5px;
  border: 1px solid #ccc;
  background-color: #fff;

  background-image: url("/assets/svg/arrowDown.svg");
  background-repeat: no-repeat;
  background-position: right 5px center;
}


.btn_form {
    padding: 0;
    margin: 0;
    border: none;
    background-color: inherit;
    cursor:pointer;
}

.field-validation-error {
    color: red;
}

a{cursor:pointer}


.yellow-button {
    width: 290px;
    height: 71px;
    background-color: #fdb913;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 27px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    font-weight: 500;
}

    .yellow-button:hover {
        border: 1px solid black;
    }

    .yellow-button:active {
        background-color: black;
        color: white;  
        border: 1px solid black;
    }


.swal-yellow-button {
    background-color: #fdb913;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 27px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    font-weight: 500;
}

.swal-yellow-buttonn:hover {
    border: 1px solid black;
}

.swal-yellow-button:active {
    background-color: black;
    color: white;
    border: 1px solid black;
}


.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #fdb913;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swal2-icon.swal2-warning {
    border-color: #fbba00;
    color: #fbba00;
}