body {
    font-family: "Open Sans", sans-serif !important;
}
#overlay {
    position: fixed; /* Sit on top of the page content */
    /*display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 1000; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    align-items: center;
    justify-content: center;
}
.hide {
    display: none;
}
.show {
    display: grid;
}
.flex-container {
    padding: 0px 80px 0px 80px;
    /* padding: 0; */
    margin-top: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-container {
    padding: 10px 50px 10px 50px;
    /* margin: 10px; */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.zero-height {
    height: 0px;
}
.custom-row {
    width: 700px;
    min-height: 700px;
    border: 0px solid grey;
    color: rgba(0, 0, 0, 0.87);
    /* background-color: #f1f1f16e; */
    background-color: #fff;
    padding: 15px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(230, 230, 230, 1);
    -moz-box-shadow: 0px 0px 5px 0x rgba(230, 230, 230, 1);
    box-shadow: 0px 0px 5px 0px rgba(230, 230, 230, 1);
}
.custom-row-alt {
    width: 700px;
    min-height: 300px;
    border: 0px solid grey;
    color: rgba(0, 0, 0, 0.87);
    /* background-color: #f1f1f16e; */
    background-color: #fff;
    padding: 15px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(230, 230, 230, 1);
    -moz-box-shadow: 0px 0px 5px 0x rgba(230, 230, 230, 1);
    box-shadow: 0px 0px 5px 0px rgba(230, 230, 230, 1);
}
.preview-image {
    display: flex;
    position: relative;
    z-index: 100;
    align-items: center;
    justify-content: flex-end;
    -moz-box-shadow: 0px 0px 5px 3px rgba(230, 230, 230, 1);
    box-shadow: 0px 0px 5px 3px rgba(230, 230, 230, 1);
    height: 700px;
    width: 450px;
    background: rgb(244, 107, 3);
    background: linear-gradient(
        90deg,
        rgba(244, 107, 3, 1) 35%,
        rgba(244, 67, 0, 1) 100%
    );
    /* background-color:rgba(218, 218, 218, 0.87);              */
    /* background-color: #f44300; */
}
.promo-text {
    position: absolute;
    top: 80px;
    left: 50px;
    color: white;
    font-size: 36px;
    font-weight: 700;
}
.preview-image > img {
    position: absolute;
    bottom: 0px;
    right: -1px;
    height: 300px;
    /* -moz-box-shadow: -3px 1px 10px 4px #b9b7b7;
    -webkit-box-shadow: -3px 1px 10px 4px #b9b7b7;
    box-shadow: -3px 1px 10px 4px #b9b7b7; */
}
.preview-gradient {
    height: 700px;
    width: 5000px;
    position: absolute;
    background-color: #f44300;
}
.preview-image-hidden {
    animation: fadeOut ease 1s;
    -webkit-animation: fadeOut ease 1s;
    -moz-animation: fadeOut ease 1s;
    -o-animation: fadeOut ease 1s;
    -ms-animation: fadeOut ease 1s;
    z-index: 0;
}
.hidden {
    visibility: hidden;
}
.visible {
    visibility: visible;
}
.preview-image-visible {
    z-index: 100;
    animation: fadeIn ease 1.3s;
    -webkit-animation: fadeIn ease 1.3s;
    -moz-animation: fadeIn ease 1.3s;
    -o-animation: fadeIn ease 1.3s;
    -ms-animation: fadeIn ease 1.3s;
}
.preview-image-visible-mobile {
    z-index: 100;
    animation: fadeIn ease 3.3s;
    -webkit-animation: fadeIn ease 3.3s;
    -moz-animation: fadeIn ease 3.3s;
    -o-animation: fadeIn ease 3.3s;
    -ms-animation: fadeIn ease 3.3s;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 0;
    }
    100% {
        opacity: 0;
        z-index: 100;
    }
}
@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 0;
    }
    100% {
        opacity: 0;
        z-index: 100;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 0;
    }
    100% {
        opacity: 0;
        z-index: 100;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 0;
    }
    100% {
        opacity: 0;
        z-index: 100;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 0;
    }
    100% {
        opacity: 0;
        z-index: 100;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.flex-error {
    line-height: 20px;
    font-size: 1.5em;
    text-align: left;
    padding-bottom: 20px;
    width: 510px;
}
/* .login-btn{
    font-size: 17px;
    padding: 15px 15px !important;
    background: transparent;
    color: #7f7f7f;
    border: 2px solid #7f7f7f;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    text-decoration: none;
}
.login-btn:hover{
    background-color: #7f7f7f;
    color: #ffffff;
    text-decoration: none;
} */
.disable-pointer {
    pointer-events: none;
}
.login-btn {
    transition: box-shadow 0.5s ease;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    background-color: #f44300;
    border-color: transparent;
    padding: 15px 15px !important;
    margin-right: 0px !important;
    width: 540px;
    -webkit-box-shadow:
        0 2px 2px 0 rgba(244, 67, 0, 0.14),
        0 3px 1px -2px rgba(244, 67, 0, 0.2),
        0 1px 5px 0 rgba(244, 67, 0, 0.12);
    box-shadow:
        0 2px 2px 0 rgba(244, 67, 0, 0.14),
        0 3px 1px -2px rgba(244, 67, 0, 0.2),
        0 1px 5px 0 rgba(244, 67, 0, 0.12);
}
.login-btn:hover {
    -webkit-box-shadow:
        0 14px 26px -12px rgba(244, 67, 0, 0.42),
        0 4px 23px 0 rgba(0, 0, 0, 0.12),
        0 8px 10px -5px rgba(244, 67, 0, 0.2);
    box-shadow:
        0 14px 26px -12px rgba(244, 67, 0, 0.42),
        0 4px 23px 0 rgba(0, 0, 0, 0.12),
        0 8px 10px -5px rgba(244, 67, 0, 0.2);
}
.login-btn-gray {
    transition: box-shadow 0.5s ease;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    background-color: #dedede;
    border-color: transparent;
    padding: 15px 15px !important;
    margin-right: 0px !important;
    width: 540px;
    -webkit-box-shadow:
        0 2px 2px 0 rgba(17, 17, 17, 0.14),
        0 3px 1px -2px rgba(17, 17, 17, 0.2),
        0 1px 5px 0 rgba(17, 17, 17, 0.12);
    box-shadow:
        0 2px 2px 0 rgba(7, 17, 17, 0.14),
        0 3px 1px -2px rgba(17, 17, 17, 0.2),
        0 1px 5px 0 rgba(17, 17, 17, 0.12);
}

.login-btn-gray:hover {
    -webkit-box-shadow:
        0 14px 26px -12px rgba(17, 17, 17, 0.42),
        0 4px 23px 0 rgba(0, 0, 0, 0.12),
        0 8px 10px -5px rgba(17, 17, 17, 0.2);
    box-shadow:
        0 14px 26px -12px rgba(17, 17, 17, 0.42),
        0 4px 23px 0 rgba(0, 0, 0, 0.12),
        0 8px 10px -5px rgba(17, 17, 17, 0.2);
}
.flex-item {
    padding: 0px;
    /* margin: 10px; */
    line-height: 20px;
    font-size: 2em;
    text-align: left;
    width: 100%;
}
.flex-item-label {
    color: #aaaaaa;
    font-size: 14px;
    text-align: left;
}
.flex-item-input {
    box-sizing: border-box;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #d4d3d3 !important;
    font-size: 14px;
    color: #000000;
    background-color: #f7f7f7;
    box-shadow: 0 0 0 10px #f7f7f7 inset;
    -webkit-box-shadow: 0 0 0 10px #f7f7f7 inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
.fullscreen-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.ui-switch {
    transition: box-shadow 0.5s ease;
    font-size: 14px;
    border: 1px solid #000;
    width: 240px;
    height: 150px;
    padding: 20px;
    border: 2px solid #cecece;
    border-radius: 5px;
    cursor: pointer;
}
.ui-switch:hover {
    -webkit-box-shadow: 0px 0px 5px 3px rgba(230, 230, 230, 1);
    -moz-box-shadow: 0px 0px 5px 3px rgba(230, 230, 230, 1);
    box-shadow: 0px 0px 5px 3px rgba(230, 230, 230, 1);
}
.ui-switch-label {
    padding-top: 70px;
    text-align: center;
    color: #aaaaaa;
    font-size: 12px;
}
.ui-switch-label-active {
    color: #f44300;
}

.ui-switch-active {
    border: 2px solid #ff4430;
    -webkit-box-shadow: 0px 0px 5px 3px #ff490454;
    -moz-box-shadow: 0px 0px 5px 3px #ff490454;
    box-shadow: 0px 0px 5px 3px #ff490454;
}
.ui-switch-inactive {
    width: 230px;
    height: 145px;
    position: absolute;
    margin: -20px;
    padding: 20px;
    z-index: 101;
}
.svg-logo {
    position: absolute;
}
.active-switch-tick {
    position: absolute;
    right: -38px;
    top: -15px;
    width: 40px;
}

.login-header {
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 25px;
    padding-top: 15px;
    text-align: center;
}
.footer {
    height: 50px;
    text-align: center;
    background-color: transparent;
    width: 100%;
    padding-top: 15px;
    position: fixed;
}

/** stuff for mobile */

@media (max-width: 991px) {
    .visible-mobile {
        display: block;
        padding-top: 100px;
    }
    .x-customer-background {
        display: none;
    }
    .visible-desktop {
        display: none;
    }
    .footer-mobile {
        font-size: 3em;
        padding-top: 50px;
        position: relative;
    }
}
@media (min-width: 992px) {
    .visible-mobile {
        display: none;
    }
    .visible-desktop {
        display: flex !important;
    }
}

.mobile-container {
    color: #cecece !important;
    padding-top: 50px;
    padding-bottom: 50px;
}

.mobile-row {
    font-size: 3.5em;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}
.mobile-row div,
.mobile-row span,
.mobile-row input {
    color: #848484 !important;
}

.mobile-active-btn {
    border-bottom: 10px solid #ff4430;
    text-align: center;
    cursor: pointer;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: white;
    color: #848484 !important;
}
.mobile-inactive-btn {
    border-bottom: 10px solid #cecece;
    text-align: center;
    cursor: pointer;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: white;
    color: #cecece;
}
.mobile-input {
    box-sizing: border-box;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 4px solid #ff4430 !important;
    font-size: 2em;
    color: #000000;
    background-color: #f7f7f7;
    box-shadow: 0 0 0 10px #f7f7f7 inset;
    -webkit-box-shadow: 0 0 0 10px #f7f7f7 inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

.login-btn-mobile {
    cursor: pointer;
    width: 100%;
    height: 140px;
    font-size: 1.5em;
    padding: 0px !important;
}

/* Start Animated Arrow */

/* Farbvariation*/
.darkarrow span,
.darkarrow:after,
.darkarrow:before {
    background: var(--text-base) !important;
}

.arrow_1 .arrow {
    display: block;
    position: relative;
}

.arrow_1 .arrow span,
.arrow_1 .arrow:before,
.arrow_1 .arrow:after {
    background: #fff;
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    position: absolute;
    top: calc(41% - (2px / 2));
    border-radius: 10em;
    margin-top: 3px;
}
.arrow_1 a {
    background: transparent;
    padding-left: 25px;
    font-weight: 600;
}

.arrow_1 .arrow:before {
    -webkit-transform: translateY(-0.7px) rotate(-45deg);
    transform: translateY(-0.7px) rotate(-45deg);
}

.arrow_1 .arrow:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow_1 .arrow span {
    width: 0;
    -webkit-transform: translateY(-0.5px);
    transform: translateY(-0.5px);
}

.arrow_1 .arrow:hover span {
    width: 16.968px;
}

.arrow_1 .arrow.arrow--left span,
.arrow_1 .arrow.arrow--left:before,
.arrow_1 .arrow.arrow--left:after {
    left: 0;
    -webkit-transform-origin: left 50%;
    transform-origin: left 50%;
}

.arrow_1 .arrow.arrow--left:before,
.arrow_1 .arrow.arrow--left:after {
    -webkit-transition: left 0.3s 0.05s;
    transition: left 0.3s 0.05s;
}

.arrow_1 .arrow.arrow--left span {
    -webkit-transition:
        width 0.3s,
        left 0.3s 0.05s;
    transition:
        width 0.3s,
        left 0.3s 0.05s;
}

.arrow_1 .arrow.arrow--left:hover span,
.arrow_1 .arrow.arrow--left:hover:before,
.arrow_1 .arrow.arrow--left:hover:after {
    left: -8.48656px;
}

.arrow_1 .arrow.arrow--right span,
.arrow_1 .arrow.arrow--right:before,
.arrow_1 .arrow.arrow--right:after {
    right: 0;
    -webkit-transform-origin: right 50%;
    transform-origin: right 50%;
}

.arrow_1 .arrow.arrow--right:before,
.arrow_1 .arrow.arrow--right:after {
    -webkit-transition: right 0.3s 0.05s;
    transition: right 0.3s 0.05s;
}

.arrow_1 .arrow.arrow--right span {
    -webkit-transition:
        width 0.3s,
        right 0.3s 0.05s;
    transition:
        width 0.3s,
        right 0.3s 0.05s;
}

.arrow_1 .arrow.arrow--right:hover span,
.arrow_1 .arrow.arrow--right:hover:before,
.arrow_1 .arrow.arrow--right:hover:after {
    right: -8.48656px;
}

/* Animated Arrow End*/

.arrow-centered {
    margin-left: -25px;
}

.arrowtext {
    margin-bottom: 6px;
    margin-right: -25px;
    padding-right: 53px;
}

.no-arrow {
    padding-right: 1.5rem;
}

span.custom-tooltip {
    position: relative;
    text-decoration: none;
}

span.custom-tooltip:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 20%;
    background: #d5d4d4;
    padding: 5px 15px;
    color: black;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    white-space: pre-line;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 200px;
    font-size: 14px;
}

span.custom-tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid #d5d4d4;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    left: 30%;
    bottom: 90%;
}

span.custom-tooltip:hover:after {
    bottom: 100%;
}

span.custom-tooltip:hover:before {
    bottom: 70%;
}

span.custom-tooltip:hover:after,
span:hover:before {
    opacity: 1;
}
