
/*begin:: define style -----*/
/* Portal Corporate Design */

:root {
    --primary-color      : #ffbe00;
    --primary-color-hover: #fb7d00;;
    --secondary-color    : #be3c00;
    --secondary-color-hover   : #fb7d00;





    --bs-primary-rgb: 0, 127, 0;

    --blue    : #008AB7;
    --darkblue: #004D6E;
    --bluegrey: #718287;
    --yellow  : #FBBA00;

    --black-100: #000;
    --black-90 : rgba(0, 0, 0, 0.9);
    --black-80 : rgba(0, 0, 0, 0.8);
    --black-70 : rgba(0, 0, 0, 0.7);
    --black-60 : rgba(0, 0, 0, 0.6);
    --black-50 : rgba(0, 0, 0, 0.5);
    --black-40 : rgba(0, 0, 0, 0.4);
    --black-30 : rgba(0, 0, 0, 0.3);
    --black-20 : rgba(0, 0, 0, 0.2);
    --black-10 : rgba(0, 0, 0, 0.1);


    --font-primary: "Barlow Semi Condensed", "Open Sans", sans-serif;


    /* --font-primary: "Open Sans"; */
    --font-secondary  : "Calibri";
    --default-color   : #ffffff;
    --dark-color      : #1c1c1c;
    --dark-color-hover: #FF9E17;

    --link-color      : #ffbe00;
    --link-color-hover: #FF9E17;

    --link-color-light      : #ffbe00;
    --link-color-light-hover: #FF9E17;


    --btn-yellow        : #fff396;
    --btn-yellow-hover  : #fff396;
    --btn-hover         : #fff396;
    --btn-blue          : #008bd2;
    --btn-blue-hover    : #04a0ee;
    --btn-red           : #c00000;
    --btn-red-hover     : #ff1e1e;
    --btn-darkblue      : #004D6E;
    --btn-darkblue-hover: #015b81;

    --btn-grey      : #E6E6E6;
    --btn-grey-hover: #c4c4c4;

	--btn-disabled-bg: #718287;
	--btn-disabled-border-color: #718287;


    --border-color     : #718287;
    --border-color-dark: #000;

    --transition-menu: 300ms;
}




body {
    font-family: var(--font-primary);
    font-size  : 13.5px;
    margin-top : 55px;
    color      : var(--bluegrey);
}

h1 {
    color      : var(--black-100);
    font-weight: 600;
    font-size  : 38px;
}

h2 {
    color      : var(--black-100);
    font-weight: 600;
    font-size  : 27px;
}

h3 {
    color      : var(--black-100);
    font-weight: 600;
    font-size  : 18px
}

h4 {
    color      : var(--primary-color);
    font-weight: 600;
    font-size  : 16px
}

h5 {
    color      : var(--black-100);
    font-weight: 500;
    font-size  : 15px
}

h6 {
    color      : var(--primary-color);
    font-weight: 500;
    font-size  : 14px
}

a {
    text-decoration: none;
    color          : var(--link-color);
}

.card.bg-primary a {
    text-decoration: none;
    color          : var(--link-color-light);
}

a:hover,
a:active {
    color: var(--link-color-hover);
}

.card.bg-primary a:hover,
.card.bg-primary a:active {
    color: var(--link-color-light-hover);
}

.card {
    --bs-card-border-radius: 0.5rem;
}

/* tools */

.hidden {
    display: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width   : none;
    /* Firefox */
}

.card {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Bootstrap overrides */
.card.dia {
    --bs-card-border-radius: 0px;
    border                 : 0px solid var(--border-color);
    display                : block;
    position               : relative;
    background-color       : transparent;
}

.card.dia::after {
    content   : '';
    position  : absolute;
    top       : 0px;
    right     : 0;
    bottom    : 0;
    left      : 0;
    z-index   : 0;
    transform : skew(-10deg);
    background: #fff;
}

.card.gradient {
    border       : 0px solid var(--border-color);
    display      : block;
    position     : relative;
    background   : #fff;
    /* background: linear-gradient(25deg, rgba(0, 139, 210, 0.3) 0%, #fff 60%); */
}

.card-body {
    z-index : 1;
    position: relative;
}

.btn {
    --bs-btn-border-radius: 2rem;
}

.modal {
    --bs-modal-border-radius: 12px;
}

.progress {
    --bs-progress-height: 9px;
    --bs-progress-bar-bg: var(--primary-color);
}

.badge.big {
    font-size: 1em;
}


/* Modal */

.close-modal {
    position: absolute;
    top     : 10px;
    right   : 10px;
    z-index : 1060;
    height  : 25px;
    width   : 25px;
    padding : 0;
}



/* backgrounds */
.bg-blue {
    background-color: var(--blue) !important;
}

.bg-darkblue {
    background-color: var(--primary-color) !important;
}

.bg-bluegrey {
    background-color: var(--bluegrey) !important;
}

.bg-grey {
    background-color: var(--black-10) !important;
}




/* text */

.font-primary {
    font-family: var(--font-primary) !important;
}

.font-secondary {
    font-family: var(--font-secondary) !important;
}

.c-default {
    color: var(--default-color) !important;
}

.c-grey {
    color: var(--bluegrey) !important;
}

.c-blue {
    color: var(--blue) !important;
}

.c-darkblue {
    color: var(--primary-color) !important;
}

.c-dark {
    color: var(--dark-color) !important;
}

a.c-dark:hover {
    color: var(--dark-color-hover) !important;
}

a.c-default:hover {
    color: var(--yellow) !important;
}

a.c-default:focus,
a.c-default:active {
    color: var(--yellow) !important;
}

section.content {
    padding-bottom: 69px;
}

/* buttons */
.setLang {
    cursor: pointer;
}

.setLang img {
    height      : 18px;
    padding-left: 10px;
    padding-top : 4px;
}

/* select2 */
.select2 {
    min-height: 34px;
    border    : 0px;
    display   : block;
    background: linear-gradient(to right,
            rgba(236, 239, 241, 0),
            rgba(236, 239, 241, 0.5) 50%,
            rgba(236, 239, 241, 0) 80%),
        #f8f9fc;
    background-repeat  : repeat-y;
    background-size    : 50px 500px;
    background-position: 0 0;
    animation          : shine 1s infinite;
}

.select2.min {
    width    : 240px;
    min-width: 240px;
}

.select2-container--open .select2-dropdown {
    z-index: 9999;
}

@keyframes shine {
    to {
        background-position: 100% 0, 0 0;
    }
}

.select2-container--default,
.select2-selection--single,
.select2-dropdown,
.select2-selection__rendered {
    background-color: #fff !important;
    background      : linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 50%) 50%, rgb(255 255 255 / 0%) 80%), #ffffff;
}

.select2-container--default .select2-selection,
.select2-container--default .select2-selection--single {
    border-radius: 12px;
    border       : 1px solid var(--border-color);
    padding      : 0.65rem 0.88rem;
    margin-bottom: 1.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: unset;
    top   : 0;
    bottom: 0;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color    : var(--primary-color);
}   
.page-item.active .page-link:hover {
    color: #fff;
}   



.modal .select2 {
    z-index: 1060;
}

.select2-container .select2-selection--single {
    height: unset;
}

.select2-container {
    display : block;
    overflow: visible;
}

.select2-selection__rendered {
    display: block;
}
/* end select2 */


.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
 
.loading-indicator:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    border: 6px solid #f3f3f3;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}
 
@keyframes spin {
    to {
    transform: rotate(360deg);
    }
}


.form-check {
    display: inline-block;
}

.form-check-input {
    width : 1.3rem;
    height: 1.3rem;
}

.form-check-input.small {
    width : 1rem;
    height: 1rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    margin-top : auto;
	line-height: normal;
    padding-left: 10px;
}




/* Custom select field */
.custom-select {
    position: relative;
    cursor  : pointer;
}

.select-header {
    display    : flex;
    align-items: center;
    padding    : 8px;
}

.select-header .option-icon {
    height: 22px;
    width : 22px;
    margin: 0 !important;
}

.selected-icon img,
.option-icon img {
    width       : 24px;
    height      : 16px;
    margin-right: 8px;
}

.options {
    display         : none;
    position        : absolute;
    right           : 0;
    background-color: #fff;
    border          : 1px solid #ccc;
    overflow-y      : auto;
}

.option {
    display    : flex;
    align-items: center;
    padding    : 8px;
    cursor     : pointer;
}

.option:hover {
    background-color: #f0f0f0;
}


.show-options {
    display: block;
}

.option-icon {
    box-shadow: 0 0 1px #000;
}

.btn {
    line-height: normal;
    width          : fit-content;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    padding        : 10px 16px;
    border-radius  : 4px;
    font-size      : 16px;
	font-weight    : 500;
}

/* begin::Default Button Settings */

.btn-primary {
    background     : var(--primary-color);
    border-color   : var(--primary-color);
    color          : #ffffff;
    }

.btn-primary:hover,
.btn-primary:active {
    background: var(--primary-color-hover) !important;
    color     : #000 !important;
    box-shadow: none !important;
  border-color : var(--primary-color-hover);
}

.btn-primary:disabled {
    background: var(--btn-disabled-bg) !important;
    color     : #000 !important;
    box-shadow: none !important;
  	border-color : var(--btn-disabled-border-color);
}

.btn-secondary {
    width          : fit-content;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    padding        : 8px 20px;
    background     : var(--secondary-color);
    border-color   : var(--secondary-color);
    border-radius  : 4px;
    color          : #fff;
    text-transform : uppercase;
    font-size      : 14px;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: var(--secondary-color-hover); 
    color     : #fff !important;
 box-shadow: none !important;
  border-color : var(--secondary-color-hover);
}


/* end::Default Button Settings */



/* begin:: btn reveal */

button:disabled.btn-reveal span,
.btn:disabled.btn-reveal span {
    cursor: not-allowed;
}

.btn-reveal span {
    cursor    : pointer;
    display   : inline-block;
    position  : relative;
    transition: 0.5s;
}

.btn-reveal span:after {
    content   : "\279E";
    position  : absolute;
    opacity   : 0;
    top       : 0;
    right     : -25px;
    transition: 0.5s;
}

.btn-reveal:hover span {
    padding-right: 22px;
}

.btn-reveal:hover span:after {
    opacity: 1;
    right  : 0;
}

/* end:: btn reveal */


.btn-circle,
.btn-circle:hover {
    width        : 36px;
    height       : 36px;
    min-width    : 36px;
    min-height   : 36px;
    border-radius: 50%;
    position     : relative;
    background   : var(--primary-color);
}

.btn-circle:hover,
.btn-circle:active,
.btn-circle:focus,
.btn-circle:visited {
    background: var(--primary-color-hover) !important;
}

.btn-circle.darkblue {
    background: var(--btn-darkblue);
}

.btn-circle.darkblue:hover,
.btn-circle.darkblue:active,
.btn-circle.darkblue:focus {
    background: var(--btn-darkblue-hover) !important;
}

.btn-circle.blue {
    background: var(--btn-blue);
}

.btn-circle.blue:hover,
.btn-circle.blue:active,
.btn-circle.blue:focus {
    background: var(--btn-blue-hover) !important;
}



.btn-circle.red {
    background: var(--btn-red);
}

.btn-circle.red:hover,
.btn-circle.blue:active,
.btn-circle.blue:focus {
    background: var(--btn-red-hover) !important;
}



.btn-circle i {
    position: absolute;
    left    : 0;
    right   : 0;
    top     : 0;
    bottom  : 0;
    margin  : auto;
    display : table;
    color   : #fff;
}



/* universal helpers */
.crop-text-1 {
    -webkit-line-clamp: 1;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-2 {
    -webkit-line-clamp: 2;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-3 {
    -webkit-line-clamp: 3;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-4 {
    -webkit-line-clamp: 4;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-5 {
    -webkit-line-clamp: 5;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-6 {
    -webkit-line-clamp: 6;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-7 {
    -webkit-line-clamp: 7;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}

.crop-text-8 {
    -webkit-line-clamp: 8;
    overflow          : hidden;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
}


.money::after {
    content: '€';
}

.form-group:has([required]) label::after {
    content: '*';
}


.underline {
    width: 100px;
    height: 3px;
    display: inline-block;
    background-color: #fb7d00;
}


/* form helpers */

input[type="search"],
input[type="text"],
input[type="email"],
input[type="password"],
select {
    border-radius: 5px;
    border       : 1px solid var(--border-color);
    padding      : 0.65rem 0.88rem;
}

.form-group .form-control {
    border-radius: 12px;
    border       : 1px solid var(--border-color);
    padding      : 0.65rem 0.88rem;
}

.form-group {
    position     : relative;
    margin-bottom: 1.5rem;
}

.form-group button{
    position     : relative;
    margin-top: 1.33rem;
}

.form-group label[for] {
    font-size    : 12px;
    position     : absolute;
    top          : -15px;
    left         : 15px;
    background   : #fff;
    padding      : 0 0.88rem;
    border-radius: 10px;
    z-index      : 1050;
}

.form-check-inline {
    display      : block;
    min-height   : 1.5rem;
    margin-bottom: 0.125rem;
}

.form-check-inline input {
    padding-left: 10px !important;
}

.form-check-inline .form-check-label {
    width: 86%
}

.fab-icon {
    position        : fixed;
    bottom          : 20px;
    right           : 20px;
    font-size       : 2rem;
    color           : #ffffff;
    background-color: var(--primary-color);
    border          : none;
    border-radius   : 50%;
    width           : 60px;
    height          : 60px;
    line-height     : 60px;
    text-align      : center;
    cursor          : pointer;
    z-index         : 9999;
}

.fab-icon i,
.fab-icon i:hover {
    font-size: 2.2rem;
    color    : #ffffff;
}

.form-select.is-invalid,
.form-control.is-invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545 !important;
}




/* submenu */

.navbar {
    height : 55px;
    top    : 0;
    z-index: 20;
}

.navbar-brand img {
    height: 52px;
}

.divider-bottom {
    height          : 3rem;
    background-color: rgba(0, 0, 0, .1);
    border          : solid rgba(0, 0, 0, .15);
    border-width    : 1px 0;
    box-shadow      : inset 0 0.5em 1.5em rgba(0, 0, 0, .1), inset 0 0.125em 0.5em rgba(0, 0, 0, .15);

}




.breadcrumb {
    font-size: 13.5px;
    padding  : 0.5rem 0;
}

.breadcrumb .breadcrumb-item.active {
    font-weight: 700;
    color: var(--default-color);
}



.submenu-container {
    z-index   : 100;
}

.submenu {
    display: flex;
}

.submenu .submenu-item {
    text-transform    : uppercase;
    border-bottom     : transparent;
    color             : var(--mhw-darkblue);
    transition        : all var(--mhw-transition-menu);
    -webkit-transition: all var(--mhw-transition-menu);
}



.submenu .submenu-item:hover {
    cursor: pointer;
}

.submenu .submenu-item:after {
    display      : block;
    content      : '';
    transform    : scaleX(0);
    transition   : transform 250ms ease-in-out;
}

.submenu .submenu-item:hover:after {
    transform: scaleX(1);
}

.submenu .submenu-item.active:after {
    transform: scaleX(1);
}

.menu-border {
    margin-top: -2px;
}

/* custom */

.profile-banner {
    height: 10rem;
}


.img-overlay {
    position  : absolute;
    left      : 0px;
    top       : 0px;
    right     : 0px;
    bottom    : 0px;
    background: var(--primary-color);
    opacity   : 0.6;
    z-index   : 1
}

.step-icon {
    font-size: 4rem;
}






.form-checkbox-label {
    display      : inline-block;
    margin-top   : 1px;
    margin-bottom: 0;
    margin-left  : auto;
    text-align   : center;
}

.btn-container-fixed {
    position: fixed;
    bottom  : 20px;
    right   : 20px;
    z-index : 1000;
}
/*end:: define style -----*/


body,
html {
    height: 100%;
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: #000000;
    font-size: 1.1rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.7rem;
    background: #fff;
    font-weight: 400;
}

.hidden {
    display: none;
}





/*------------------------------------*1.TYPO*------------------------------------*/

.dark h1.light,
.light h1,
.dark .light h1,
h1.light {
    font-size: 3.8em;
    font-weight: 900;
    font-style: normal;
    color: #000000;
}

.light h1.dark,
.dark h1,
.light .dark h1,
h1.dark {
    font-size: 3.8em;
    font-weight: 900;
    font-style: normal;
    color: #fff;
}

.dark h2.light,
.light h2,
.dark .light h2,
h2.light {
    font-size: 2.5em;
    font-weight: 700;
    font-style: normal;
    color: #000000;
}

.light h2.dark,
.dark h2,
.light .dark h2,
h2.dark {
    font-size: 2.5em;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.dark h3.light,
.light h3,
.dark .light h3,
h3.light {
    font-size: 1.6em;
    font-weight: 700;
    font-style: normal;
    color: #000000;
}

.light h3.dark,
.dark h3,
.light .dark h3,
h3.dark {
    font-size: 1.6em;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.dark h4.light,
.light h4,
.dark .light h4,
h4.light {
    font-size: 1.2em;
    font-weight: 400;
    font-style: normal;
    color: #000000;
}

.light h4.dark,
.dark h4,
.light .dark h4,
h4.dark {
    font-size: 1.2em;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    color: #000000;
    font-family: "Barlow Semi Condensed", sans-serif;

}


.blockquote {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.4;
    font-style: normal;
    color: #000000;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

@media all and (max-width: 1230px) {
    .dark h1.light,
    .light h1,
    .dark .light h1,
    h1.light {
        font-size: 3.5em;
    }

    .light h1.dark,
    .dark h1,
    .light .dark h1,
    h1.dark {
        font-size: 3.5em;
    }

    .dark h2.light,
    .light h2,
    .dark .light h2,
    h2.light {
        font-size: 2em;
    }

    .light h2.dark,
    .dark h2,
    .light .dark h2,
    h2.dark {
        font-size: 2em;
    }

    .dark h3.light,
    .light h3,
    .dark .light h3,
    h3.light {
        font-size: 1.2em;
    }

    .light h3.dark,
    .dark h3,
    .light .dark h3,
    h3.dark {
        font-size: 1.2em;
    }

    #news h1 {
        font-size: 2em;
    }
}

@media all and (max-width: 1023px) {
}

@media all and (max-width: 576px) {
    .dark h1.light,
    .light h1,
    .dark .light h1,
    h1.light {
        font-size: 2.3em;
    }

    .light h1.dark,
    .dark h1,
    .light .dark h1,
    h1.dark {
        font-size: 2.3em;
    }

    .dark h2.light,
    .light h2,
    .dark .light h2,
    h2.light {
        font-size: 30px;
    }

    .light h2.dark,
    .dark h2,
    .light .dark h2,
    h2.dark {
        font-size: 30px;
    }

    .dark h3.light,
    .light h3,
    .dark .light h3,
    h3.light {
        font-size: 25px;
    }

    .light h3.dark,
    .dark h3,
    .light .dark h3,
    h3.dark {
        font-size: 25px;
    }

    .lead {
        font-size: 120%;
        line-height: 1.5em;
    }
}

@media all and (max-width: 320px) {
    .dark h1.light,
    .light h1,
    .dark .light h1,
    h1.light {
        font-size: 2em;
    }

    .light h1.dark,
    .dark h1,
    .light .dark h1,
    h1.dark {
        font-size: 2em;
    }

    .dark h2.light,
    .light h2,
    .dark .light h2,
    h2.light {
        font-size: 30px;
    }

    .light h2.dark,
    .dark h2,
    .light .dark h2,
    h2.dark {
        font-size: 30px;
    }

    .dark h3.light,
    .light h3,
    .dark .light h3,
    h3.light {
        font-size: 25px;
    }

    .light h3.dark,
    .dark h3,
    .light .dark h3,
    h3.dark {
        font-size: 25px;
    }
}

.dark a.light:not(.btn),
.light a:not(.btn),
.dark .light a:not(.btn),
a.light:not(.btn) {
    color: #dc6414;
}

.light a.dark:not(.btn),
.dark a:not(.btn),
.light .dark a:not(.btn),
a.dark:not(.btn) {
    color: #fff;
}

.dark a.light:not(.btn):hover,
.light a:not(.btn):hover,
.dark .light a:not(.btn):hover,
a.light:not(.btn):hover {
    color: var(--primary-color);;
    text-decoration: none;
}

.light a.dark:not(.btn):hover,
.dark a:not(.btn):hover,
.light .dark a:not(.btn):hover,
a.dark:not(.btn):hover {
    color: var(--primary-color);;
    text-decoration: none;
}

.btn {
    white-space: normal !important;
}



.box-icon a,
.box-icon a:active,
.box-icon a:hover {
    color: #7d8693;
}

.padding-list li {
    padding: 0.3em 0;
}



.fx-btn-pill {
    border-radius: 10em !important;
}

.dark .btn-light.light,
.light .btn-light,
.dark .light .btn-light,
.btn-light.light {
    color: #dc6414 !important;
    background-color: #ddd !important;
    border-color: #ddd !important;
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
}

.dark .btn-light.light:hover,
.light .btn-light:hover,
.dark .light .btn-light:hover,
.btn-light.light:hover,
.dark .btn-light.light:active,
.light .btn-light:active,
.dark .light .btn-light:active,
.btn-light.light:active,
.dark .btn-light.active.light,
.light .btn-light.active,
.dark .light .btn-light.active,
.btn-light.active.light {
    color: #fff !important;
    border-color: #fff !important;
    background-color: var(--primary-color) !important;
}

.dark .btn-outline-primary.light,
.light .btn-outline-primary,
.dark .light .btn-outline-primary,
.btn-outline-primary.light {
    color: #dc6414;
    border-color: #dc6414;
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
}

.light .btn-outline-primary.dark,
.dark .btn-outline-primary,
.light .dark .btn-outline-primary,
.btn-outline-primary.dark {
    color: #fff;
    border-color: #fff;
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
}

.dark .btn-outline-primary.light:hover,
.light .btn-outline-primary:hover,
.dark .light .btn-outline-primary:hover,
.btn-outline-primary.light:hover,
.dark .btn-outline-primary.light:active,
.light .btn-outline-primary:active,
.dark .light .btn-outline-primary:active,
.btn-outline-primary.light:active,
.dark .btn-outline-primary.active.light,
.light .btn-outline-primary.active,
.dark .light .btn-outline-primary.active,
.btn-outline-primary.active.light {
    color: #fff;
    border-color: #fff;
    background-color: var(--primary-color);;
}

.light .btn-outline-primary.dark:hover,
.dark .btn-outline-primary:hover,
.light .dark .btn-outline-primary:hover,
.btn-outline-primary.dark:hover,
.light .btn-outline-primary.dark:active,
.dark .btn-outline-primary:active,
.light .dark .btn-outline-primary:active,
.btn-outline-primary.dark:active,
.light .btn-outline-primary.active.dark,
.dark .btn-outline-primary.active,
.light .dark .btn-outline-primary.active,
.btn-outline-primary.active.dark {
    color: #fff;
    border-color: var(--primary-color);;
    background-color: var(--primary-color);;
}

.dark .btn-noline.light,
.light .btn-noline,
.dark .light .btn-noline,
.btn-noline.light {
    color: #dc6414;
    border-color: transparent;
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
}

.light .btn-noline.dark,
.dark .btn-noline,
.light .dark .btn-noline,
.btn-noline.dark {
    color: #fff;
    border-color: transparent;
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
}

.dark .btn-noline.light:hover,
.light .btn-noline:hover,
.dark .light .btn-noline:hover,
.btn-noline.light:hover,
.dark .btn-noline.light:active,
.light .btn-noline:active,
.dark .light .btn-noline:active,
.btn-noline.light:active,
.dark .btn-noline.active.light,
.light .btn-noline.active,
.dark .light .btn-noline.active,
.btn-noline.active.light {
    color: #fff;
    border-color: #fff;
    background-color: var(--primary-color);;
}

.light .btn-noline.dark:hover,
.dark .btn-noline:hover,
.light .dark .btn-noline:hover,
.btn-noline.dark:hover,
.light .btn-noline.dark:active,
.dark .btn-noline:active,
.light .dark .btn-noline:active,
.btn-noline.dark:active,
.light .btn-noline.active.dark,
.dark .btn-noline.active,
.light .dark .btn-noline.active,
.btn-noline.active.dark {
    color: #fff;
    border-color: var(--primary-color);;
    background-color: var(--primary-color);;
}


.top-bar a {
    color: #eee;
}

.top-bar a:focus,
.top-bar a:hover {
    color: #fff;
}

p {
    /*margin: 0 0 1.75em;*/
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.7em;
    font-size: 1.1em;
}

p.small {
    /*color: #bababb;*/
    font-size: 14px;
}

p.medium {
    /*color: #bababb;*/
    font-size: 1.33rem;
}

h1 + ol,
h1 + p,
h1 + ul,
h2 + ol,
h2 + p,
h2 + ul,
h3 + ol,
h3 + p,
h3 + ul,
h4 + ol,
h4 + p,
h4 + ul,
h5 + ol,
h5 + p,
h5 + ul,
h6 + ol,
h6 + p,
h6 + ul {
    padding-top: 0;
}

ul.unstyled {
    list-style: none;
}



.bg-dark {
    background-color: #202529;
}




.raised {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
}

.color-green {
    color: #124b88;
}

.color-orange {
    color: #ff5722;
}

.color-blue {
    color: #124b88;
}

.bg-light {
    background-color: #f1f5f8;
}

.bg-blue-2 {
    background-color: #124b88;
}

.bg-orange {
    background: #ff5722;
}

.bg-green {
    background: #124b88;
}

.bg-blue {
    /*    background: #124b88;*/
    background: #124b88;
}



/*------------------------------------*3.NAVIGATION*------------------------------------*/
.top-bar {
    padding: 10px 0 0;
    background: #124b88;
    color: #dbdbe5;
    font-size: 13px;
    /*border-bottom: 4px solid #0c3969;*/
}

.top-bar p {
    margin: 0;
}

.top-bar strong {
    color: #fff;
}

.top-bar ul li a {
    color: #dbdbe5;
}

.invert {
    filter: invert(1);
}

#btnUp {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    background-color: #124b88;
    /* Set a background color */
    border: none;
    /* Remove borders */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    outline: none;
    /* Remove outline */
    border-radius: 0px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
}

#btnUp:hover {
    background-color: #ff5722;
    /* Add a dark-grey background on hover */
}

@media (max-width: 768px) {
    #btnUp {
        bottom: 15px;
        right: 15px;
        padding: 8px;
        font-size: 18px;
    }
}

/*------------------------------------Nav wrapper-------------------------------------*/
#nav-wrap {
    background: #fff;
    width: 100%;
    border-bottom: 1px dashed #ededed;
}

.link, .link-blank {
    cursor: pointer;
}


.loading,
.lazy {
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.flexslider.carousel {
    max-height: 80px;
    overflow: hidden;
}

.flex-viewport {
    background: rgba(125, 134, 147, 0.08);
    margin-bottom: 6px;
}

/*------------------------------------Navbar-------------------------------------*/
.navbar.nav-white {
    color           : #eee;
    background-color: #ffffff;
}

.navbar.nav-white .navbar-nav > li > a,
.navbar.nav-white .navbar-nav > li > .dropdown > a {
    color: #000;
    background-color: #fff;

    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}




.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}

.choicePayment {
    cursor: pointer;
}



/*------------------------------------Parallax-------------------------------------*/

.parallax {
    /* Set a specific height */
    height: 280px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



/*------------------------------------Info-------------------------------------*/

/*
#info {
    position: absolute;
    left: 10px;
    top: 10px;
}

#info {
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 10px;
    margin-bottom: 1px;
    color: #fff;
}

#info h1 {
    line-height: 22px;
    font-weight: 300;
    font-size: 18px;
    margin: 0;
}

#info h2 {
    line-height: 14px;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 6px 0;
}

#info a {
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin-right: 4px;
    line-height: 20px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

#info a:hover {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 1);
}

*/
/* ENTRY */
.entry-deal {
    padding: 10px;
    border: 1px solid #ededed;
}

.entry-deal h2 {
    font-size: 18px;
}

.entry-media {
    height: 250px;
    position: relative;
    display: block;
}

.deal-entry {
    padding: 0 0 0;
    float: right;
    width: 100%;
    background-color: #fff;
    zoom: 1;
    margin-bottom: 25px;
    position: relative;
    /*box-shadow: 0px 2px 3px -1px rgba(151, 171, 187, 0.7);*/
    /*transition: all .3s;*/
}

.deal-entry:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.deal-entry .image {
    margin: 0;
    max-width: 100%;
    display: block;
    position: relative;
}

.deal-entry .bought {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    color: #ffffff;
    padding: 2px 15px;
    font-size: 13px;
}

.deal-entry .title {
    /*padding: 20px 15px 20px 15px;*/
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    /*text-shadow: 0 1px 0 #FFF;*/
    overflow: hidden;
}

.btn-info-link {
    color: #000;
    background-color: #ddd;
    border-width: 0 1px 0 0;
    border-color: #fff;
    border-style: solid;
}

.btn-info-link:hover {
    color: #fff;
    background-color: var(--primary-color);;
}

.btn-info-link-left {
    color: #000;
    background-color: #ddd;
    border-width: 0 0 0 1px;
    border-color: #fff;
    border-style: solid;
}

.btn-info-link-left:hover {
    color: #fff;
    background-color: var(--primary-color);;
    border-color: var(--primary-color);;
}


.deal-entry.green .offer-discount,
.deal-entry.green .bought {
    background-color: #124b88;
}

.deal-entry.green .title {
    border-left: 5px solid #124b88;
}

.deal-entry.orange .title {
    border-left: 5px solid #ff5722;
}

.deal-entry.orange .offer-discount,
.deal-entry.orange .bought {
    background-color: #ff5722;
}

.deal-entry.orange .title {
    border-left: 5px solid #ff5722;
}

.deal-entry.blue .offer-discount,
.deal-entry.blue .bought {
    background-color: #124b88;
}

.deal-entry.blue .title {
    /*border-left: 5px solid #124b88;*/
}

.deal-entry .title a {
    color: #272630;
    text-decoration: none;
}

.deal-entry .title a:hover {
    color: #dc6414;
}

.deal-entry .prices {
    padding: 0 0 10px 0;
    margin: 0;
    display: block;
}

.deal-entry .procent {
    padding: 0;
    margin: 0;
    font-size: 29px;
    line-height: 50px;
    float: left;
    color: #ff5722;
    font-weight: 500;
}

.deal-entry.green .procent {
    color: #124b88;
}

.deal-entry.orange .procent {
    color: #ff0623;
}

.deal-entry.blue .procent {
    color: #124b88;
}

.discount-red {
    background: #ff5722;
}

.discount-green {
    background: #124b88;
}

.discount-blue {
    background: #124b88;
}

.deal-entry .price {
    padding: 0;
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 30px;
    float: right;
}

.deal-entry .price b {
    color: #000000;
    font-size: 32px;
    font-size: 29px;
}

.deal-entry .old-price {
    padding: 0 8px 0 0;
    margin: 0;
    color: #b4b4b4;
    line-height: 30px;
    text-align: right;
    float: right;
}

.deal-entry .old-price span {
    font-size: 14px;
    text-decoration: line-through;
}

@media (max-width: 990px) {
    .deal-entry .old-price span {
        font-size: 11px;
    }

    .deal-entry .title {
        /*padding: 7px 0px 7px 11px;*/
    }
}

.deal-entry .info {
    padding: 8px 0 0;
    margin: 0 8px;
    border-top: 1px solid #e6e7e7;
    font-size: 12px;
}

.deal-entry.deal-sm .info_bar ul li:last-child {
    width: 50%;
}

.deal-entry.deal-sm .info_bar .info_link .btn {
    padding: 5px 8px;
    width: 75px;
}

.deal-entry.result-entry .info_bar {
    font-size: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.deal-entry .info_bar {
    /*border-top: 1px solid #ededed;*/
    /*font-size: 12px;*/
    /*padding: 15px;*/
    background: #ddd;
}

.deal-entry .info_bar ul {
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
    display: flex;
}

.deal-entry .info_bar ul li {
    text-align: center;
    word-wrap: break-word;
}

.deal-entry .info_bar b {
    padding-right: 5px;
}

.deal-entry .info_bar .person {
    padding: 5px 8px 0 5px;
    border-right: 1px dashed #ededed;
}

.deal-entry .info_bar .info_link {
    text-align: right;
}

.deal-entry .info_bar .info_link .btn {
    font-size: 14px;
    text-transform: uppercase;
}

.deal-entry .info_bar .time {
    padding: 5px 8px 0 5px;
}

.deal-entry .info_bar i {
    padding-right: 6px;
}

.product-page-meta {
    padding: 30px;
}

.entry-content {
    /*padding: 10px 15px 10px;*/
    overflow: hidden;
    /*min-height: 10px;*/
    min-height: 100px;
}

.offer-discount {
    position: absolute;
    top: -9px;
    z-index: 2;
    min-height: 55px;
    min-width: 55px;
    left: -9px;
    border: 1px DASHED #fff;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-weight: 700;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 17px;
    color: #fff !important;
    line-height: 24px;
    text-transform: uppercase;
    padding: 15px 0 0 0;
    box-shadow: 0 1px 3px 0 rgba(160, 158, 169, 0), 0 1px 2px 0 rgba(140, 139, 152, 0.13);
}

.divider {
    background-color: #eaedf2;
}

.divider {
    position: relative;
    width: 1px;
    height: 100%;
}

/* Small entry for sidebars,no full description */
.deal-entry-sm .image .bought {
    position: absolute;
    top: 0;
    right: 0;
    bottom: inherit;
}

.deal-entry-sm .image .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px 10px;
    background: linear-gradient(0deg, rgba(36, 27, 36, 0.76) 0, rgba(34, 34, 44, 0) 100%);
    color: #fff;
}

.deal-entry-sm .image .caption h5 a,
.deal-entry-sm .image .caption h4 a,
.deal-entry-sm .image .caption h3 a {
    color: #fff;
}

.deal-entry-sm .image .caption p {
    margin-bottom: 5px;
}

.deal-entry-sm .info_bar {
    background-color: #fff;
    padding: 15px 15px 5px;
}

/* RESULTS ENTRY */
.result-entry .entry-left {
    padding: 0;
}

.result-entry .entry-left .image {
    /* height: 320px*/
    height: 180px;
}

.result-entry .entry-right {
    position: relative;
    /*min-height: 320px;*/
    min-height: 180px;
    padding: 20px;
}

.result-entry .entry-right .title {
    font-size: 20px;
    /*margin: 10px 0;*/
    margin-bottom: 5px;
}

.result-entry.small .entry-right {
    position: relative;
    min-height: 180px;
}

/*------------------------------------Post Comments-------------------------------------*/
.blog-comments img {
    width: 80px;
    height: auto;
    height: 80px;
    border-radius: 50%;
}

.blog-comments .comments-itself {
    position: relative;
}

.blog-comments .comments-itself h4 {
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 12px;
}

.blog-comments .comments-itself span {
    float: right;
    color: #000;
    font-size: 10px;
}

.blog-comments .comments-itself span a {
    padding: 3px 8px;
    border-radius: 3px;
    background: #eff1f5;
    color: #000;
}

.blog-comments .comments-itself p {
    color: #555;
}

/*Comments Reply*/
.blog-comments.blog-comments-reply {
    margin-left: 70px;
}

/*Media Queries*/
@media (max-width: 768px) {
    .blog-comments .comments-itself:before {
        display: none;
    }

    .result-entry .entry-left .image {
        height: 200px;
    }

    .result-entry .entry-right {
        position: relative;
        min-height: 180px;
    }

    .blog-comments .comments-itself:after {
        position: absolute;
        top: -17px;
        left: 20px;
        width: 0;
        height: 0;
        border-width: 0 15px 17px 15px;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
        content: " ";
    }
}

hr {
    position: relative;
    clear: both;
    margin-top: 30px;
    outline: none;
    border-top: 1px solid #353535;
}

hr.no-text {
    margin-bottom: 20px;
}

hr:before {
    padding: 3px 0;
    border-top: 1px solid #ff5722;
    color: inherit;
    color: #000;
    content: attr(data-symbol);
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hr-link {
    position: relative;
}

.hr-link .view-all {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
}

.hr-link .view-all a {
    color: #8a8a8a;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 10px;
}

.hr-link .view-all a:hover {
    color: #000;
}

.hr-grid-space {
    margin: 10px 0 55px;
}

.form-group.mt-4 {
    margin-top: 1rem;
}

#leadForm input[type="checkbox"],
input[type="radio"],
.form-section input[type="checkbox"],
input[type="radio"] {
    opacity: 1;
    position: relative;
    z-index: 12;
/*
    width: auto;
    height: auto;
*/
}

/* stop the glowing blue shadow */
.add-on .form-control:focus {
    border-color: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.form-control {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
    height: auto;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #fff;
    background-image: none;
    box-shadow: none;
    /*color: #dc6414;*/
    font-size: 1.05em;
    line-height: 1.5;
}

.dark .nav-form-control {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
    height: auto;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    font-size: 1.1rem;
    line-height: 1.1;
}

.dark .nav-form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff !important;
    opacity: 1;
    /* Firefox */
}

.dark .nav-form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff !important;
}

.dark .nav-form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff !important;
}

.light .nav-form-control {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
    height: auto;
    border: 1px solid #dc6414;
    border-radius: 0;
    color: #dc6414;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    font-size: 1.1rem;
    line-height: 1.1;
}

#kompetenzen input[type="checkbox"] + .lbl::before,
input[type="radio"] + .lbl::before {
    border: 1px solid #be3c00;
}

#kompetenzen input[type="checkbox"] + .lbl::after,
input[type="radio"] + .lbl::after {
    background-color: #be3c00;
}

input[type="checkbox"].checkbox-white + .lbl::before,
input[type="radio"].checkbox-white + .lbl::before {
    border: 1px solid #fff;
}

input[type="checkbox"].checkbox-white + .lbl::after,
input[type="radio"].checkbox-white + .lbl::after {
    background-color: #fff;
}



.group-option {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.group-option .option {
    background: #eee;
    cursor: pointer;
}

textarea {
    overflow: auto;
    border: 1px solid #ededed;
}

label {
    display: inline-block;
    max-width: 100%;
    font-weight: 400;
    color: initial;
}

/* SOCILA ICONS */
.social {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 0;
}

.social li {
    display: inline-block;
    margin-right: 6px;
    font-size: 14px;
}

.social li a i {
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.social-btn.social-twitter i {
    border: 1px solid #00aced;
    color: #00aced;
}

.social-btn.social-twitter i:hover {
    background-color: #00aced;
    color: #fff;
}

.social-btn.social-google i {
    border: 1px solid #dd4b39;
    color: #dd4b39;
}

.social-btn.social-google i:hover {
    background-color: #dd4b39;
    color: #fff;
}

.social-btn.social-linkedin i {
    border: 1px solid #0976b4;
    color: #0976b4;
}

.social-btn.social-linkedin i:hover {
    background-color: #0976b4;
    color: #fff;
}

.social-btn.social-facebook i {
    border: 1px solid #3b5999;
    color: #3b5999;
}

.social-btn.social-facebook i:hover {
    background-color: #3b5999;
    color: #fff;
}

#tabs {
    padding-top: 30px;
}

.tab-content {
    padding: 20px 0 10px;
}

.nav-tabs,
.nav-pills {
    position: relative;
}

.nav-tabs {
    border-top: 1px solid #ededed;
    border-bottom: transparent;
}

.nav-tabs.bottom-border{
     border-bottom: 1px solid #ededed;
    border-top: transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border: transparent;
    border-top: 1px solid #ff5722;
    background-color: #f1f5f8;
    color: #000;
    cursor: default;
}

.nav-tabs > li > a {
    margin-right: 2px;
    border: 1px solid transparent;
    border-radius: 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 12px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    line-height: 1.42857143;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
    border: 1px solid #ff5722;
    background-color: #ff5722;
    color: #fff;
}

.nav-tabs .dropdown .caret {
    display: none;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item.hover,
.dropdown-item:hover {
    background-color: var(--primary-color);
}

.dropdown-menu {
    border: 1px solid #ededed;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    border-color: #f1f5f8;
    background-color: #f1f5f8;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    outline: 0;
    background-color: #95d725;
    color: #fff;
    text-decoration: none;
}

/* TAGS */
.tags {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tags li {
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.black-text {
    color: #000000 !important;
}

.tag2 {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0 20px 0 23px;
    height: 26px;
    border-radius: 3px 0 0 3px;
    background: #eff1f5;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    line-height: 26px;
    -webkit-transition: all 0.4s;
}

.tag {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0 20px 0 23px;
    height: 26px;
    border-radius: 3px 0 0 3px;
    background: #eff1f5;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    line-height: 26px;
    -webkit-transition: all 0.4s;
}

.tag::before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: "";
    -webkit-transition: all 0.4s;
}

.tag::after {
    position: absolute;
    top: 0;
    right: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eff1f5;
    background: #fff;
    content: "";
    -webkit-transition: all 0.4s;
}

.tag:hover {
    background-color: #337ab7;
    color: white;
}

.tag:hover::after {
    border-left-color: #337ab7;
}




section.overlap {
    z-index: 2000 !important;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ededed;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f1f5f8;
}

.table-hover > tbody > tr:hover {
    background-color: #f1f5f8;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border: 1px solid #ededed;
}


.timeLeft .time b,
.timeLeft .time i,
#buyPanel .content .statistic i,
#buyPanel .content .statistic b {
    padding-right: 4px;
}

.deal-short-entry {
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 20px 20px 0;
    width: 80%;
    color: #fff;
}

.inner-side {
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.widget {
    margin-bottom: 35px;
}

.widget-inner {
    padding: 20px 20px;
}


/* NEWSLETTER */
.newsletter button {
    height: 42px;
}

/* Rating entry */
.entry-rating .media-body ul {
    margin: 0;
}

.entry-rating .media-body ul li {
    padding: 0 10px 0 0px;
}

.entry-rating .stars {
    margin: 8px 0 2px;
}

.entry-rating .stars i,
.stars i {
    margin: 0;
    color: #f4d819;
}

.entry-rating .stars .disabled {
    color: #ccccd5;
}

.entry-rating .media-body .price {
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.entry-rating .media-body .price.line-trough {
    text-decoration: line-through;
    font-size: 13px;
    color: inherit;
    font-weight: inherit;
}

.smallFrame {
    padding: 18px 15px;
    margin: 20px 0;
}

.smallFrame i {
    position: absolute;
    font-size: 30px;
    color: #9ab84b;
}

.smallFrame .content {
    margin-left: 55px;
    margin-top: 7px;
    margin-bottom: 3px;
    font-size: 20px;
}

/* CART---------------------------------------------------------- */
.cart {
    width: 100%;
    margin-bottom: 40px;
    background-color: #fff;
    margin-top: 40px;
}

.cart-buttons .btn {
    width: 28%;
    padding: 15px 0;
    float: right;
    margin-left: 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* CART CONTENTS---------------------------------------------------------- */
table.cart-contents {
    width: 100%;
    margin: 0;
    background-color: #fff;
}

table.cart-contents thead {
    border-bottom: 1px solid #ededed;
}

table.cart-contents thead th {
    margin: 0;
    font-size: 16px;
}

table.cart-contents tbody tr {
    border-bottom: 1px solid #ededed;
}

table.cart-contents tbody tr:hover {
    background: #fcfcfc;
}

table.cart-contents th,
table.cart-contents td {
    padding: 20px;
    border-left: 1px solid #ededed;
}

table.cart-contents th:first-child,
table.cart-contents td:first-child {
    border-left: none;
}

table.cart-contents td {
    vertical-align: top;
}

table.cart-contents .image {
    width: 12%;
}

table.cart-contents .image img {
    width: 100%;
    height: auto;
}

table.cart-contents .details .rating {
    margin-bottom: 10px;
}

table.cart-contents .details .rating i {
    color: #f2cf1c;
}

table.cart-contents .details .title {
    display: block;
    color: #000000;
    font-size: 14px;
    text-transform: capitalize;
    margin: 0 0 10px 0;
}

table.cart-contents .details span {
    display: block;
    margin: 0 0 5px 0;
    line-height: 1;
    font-size: 12px;
}

table.cart-contents .action {
    width: 110px;
}

table.cart-contents .action button {
    float: left;
    border: none;
    text-align: center;
    padding: 0;
    width: 33%;
    line-height: 30px;
}

table.cart-contents .qty {
    width: 9%;
}

table.cart-contents .qty input {
    border: 1px solid #ededed;
    height: 30px;
    padding: 0;
    width: 100%;
    text-align: center;
}

table.cart-contents .unit-price,
table.cart-contents .total-price {
    width: 14%;
    font-size: 16px;
    color: #000;
    font-weight: normal;
}

table.cart-contents .total-price {
    color: #000000;
    font-weight: 500;
}

table.cart-contents .currency {
    margin-right: 3px;
}

/* CART SUMMARY---------------------------------------------------------- */
.cart-summary.terms {
    padding: 0 35px;
    color: inherit;
    width: 72%;
    vertical-align: middle;
}

.cart-summary.terms h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.cart-summary.terms h5 .fa {
    margin-right: 10px;
    color: #ccc;
    font-size: 20px;
    vertical-align: middle;
}

.totals {
    width: 28%;
    border-left: 1px solid #ededed;
    vertical-align: top;
}

.cart-totals {
    width: 100%;
    height: 100%;
    height: 100%;
}

.cart-totals tr {
    border-bottom: 1px solid #ddd;
}

.cart-totals tr:last-child {
    border: none;
}

.cart-totals td {
    border-left: 1px solid #ededed;
    width: 49%;
    padding: 7px 20px;
    color: inherit;
}

.cart-totals td:first-child {
    border-left: none;
}

.cart-totals td.cart-total {
    font-size: 20px;
    color: #000000;
    text-transform: uppercase;
    padding: 20px;
}

.cart-totals td.cart-total.price {
    color: #000000;
    font-weight: 500;
}

@media (max-width: 767px) {
    table.cart-contents thead h5 {
        margin: 0;
        font-size: 14px;
    }

    table.cart-contents .total-price {
        width: 25%;
        font-size: 12px;
    }

    table.cart-contents .qty {
        width: 15%;
    }

    table.cart-contents .qty input {
        padding: 5px 0;
    }

    table.cart-contents th,
    table.cart-contents td {
        padding: 15px;
        border-right: 1px solid #ededed;
    }

    table.cart-contents .currency {
        margin-right: 0;
    }

    table.cart-contents .action {
        margin-top: 15px;
        float: none !important;
    }

    .cart-buttons .btn {
        display: block;
        float: none;
        margin: 0 0 20px 0;
        width: 100%;
    }

    .cart-summary .terms {
        display: none;
    }

    .cart-totals td {
        width: auto;
    }

    .cart-totals td.price {
        width: 40%;
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 24px;
    min-width: 38px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #dc6414;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

.float-left {
    float: left;
}

/* Rounded sliders */
.slider.round {
    border-radius: 12px;
    padding-top: 12px !important;
}

.slider.round:before {
    border-radius: 50%;
}

.border-grid .border {
    margin-top: -1px;
    margin-left: -1px;
}

.border-grid .border-x2 {
    margin-top: -2px;
    margin-left: -2px;
}

.dark [class*="border"].light,
.light [class*="border"],
.dark .light [class*="border"],
[class*="border"].light,
.dark hr.light,
.light hr,
.dark .light hr,
hr.light,
.dark .separate-list.light li,
.light .separate-list li,
.dark .light .separate-list li,
.separate-list.light li,
.dark .media.light,
.light .media,
.dark .light .media,
.media.light,
.dark .border-bottom-container.light::after,
.light .border-bottom-container::after,
.dark .light .border-bottom-container::after,
.border-bottom-container.light::after {
    border-color: #ddd;
}

.light [class*="border"].dark,
.dark [class*="border"],
.light .dark [class*="border"],
[class*="border"].dark,
.light hr.dark,
.dark hr,
.light .dark hr,
hr.dark,
.light .separate-list.dark li,
.dark .separate-list li,
.light .dark .separate-list li,
.separate-list.dark li,
.light .media.dark,
.dark .media,
.light .dark .media,
.media.dark,
.light .border-bottom-container.dark::after,
.dark .border-bottom-container::after,
.light .dark .border-bottom-container::after,
.border-bottom-container.dark::after {
    border-color: #fff;
}

.border-bottom-none {
    border-bottom: 0;
}

.border-top-none {
    border-top: 0;
}


/*----------------------------------------------------------------------------------------
                        GALLERY STYLES
----------------------------------------------------------------------------------------*/

.gallery-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.gallery-item .item-title > *:first-child {
    margin-top: 0;
}

.gallery-item .item-title > *:last-child {
    margin-bottom: 0;
}

.gallery-item .item-img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    /*    -webkit-backface-visibility: hidden;*/
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gallery-item .item-icon,
.gallery-item .item-title {
    padding-top: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gallery-item .item-icon:empty,
.gallery-item .item-title:empty {
    display: none;
}

.gallery-item .item-icon img + img,
.gallery-item .item-icon svg + svg,
.gallery-item .item-icon a + a {
    margin-left: 15px;
}

a.image-popup:not(.btn) {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.gallery-item.padding,
.gallery-item.padding-x2,
.gallery-item.padding-x3,
.gallery-item.padding-x4 {
    padding: 0 !important;
}

.gallery-item.padding .item-icon,
.gallery-item.padding .item-title {
    padding: 15px;
}

.gallery-item.padding-x2 .item-icon,
.gallery-item.padding-x2 .item-title {
    padding: 30px;
}

.gallery-item.padding-x3 .item-icon,
.gallery-item.padding-x3 .item-title {
    padding: 60px;
}

.gallery-item.padding-x4 .item-icon,
.gallery-item.padding-x4 .item-title {
    padding: 90px;
}

/*---------------  STYLE 1 ---------------*/

.gallery-style-1[class*="padding"] .item-icon {
    padding-top: 0 !important;
}

/*---------------  STYLE 2 ---------------*/

.gallery-item.gallery-style-2 .item-title {
    float: left;
    width: 70%;
}

.gallery-item.gallery-style-2 .item-icon {
    float: right;
    width: 30%;
    text-align: right;
}

.gallery-style-2[class*="padding"] .item-title {
    padding-right: 0 !important;
}

.gallery-style-2[class*="padding"] .item-icon {
    padding-left: 0 !important;
}

/*---------------  STYLE 3 ---------------*/

.gallery-item.gallery-style-3 .item-icon,
.gallery-item.gallery-style-3 .item-title {
    position: absolute;
    opacity: 0;
}

.gallery-item.gallery-style-3 .item-title {
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.gallery-item.gallery-style-3 .item-icon {
    left: 0px;
    top: 0px;
    right: 0px;
}

.gallery-item.gallery-style-3:hover .item-title,
.gallery-item.gallery-style-3:hover .item-icon {
    opacity: 1;
}

/*---------------  STYLE 4 ---------------*/

.gallery-item.gallery-style-4 .item-icon,
.gallery-item.gallery-style-4 .item-title {
    position: absolute;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.gallery-item.gallery-style-4:hover .item-title,
.gallery-item.gallery-style-4:hover .item-icon {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.gallery-item.gallery-style-4 .item-icon {
    right: 0px;
    bottom: 0px;
}

.gallery-item.gallery-style-4 .item-title {
    right: 0;
    left: 0;
    bottom: 0;
    text-align: left;
    background-color: inherit;
}

/*---------------  STYLE 5 ---------------*/

.gallery-item.gallery-style-5 .item-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery-item.gallery-style-5 .item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
}

.gallery-item.gallery-style-5:hover .item-icon {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item.gallery-style-5:hover .item-img {
    opacity: 0.1;
}

/*---------------  STYLE 6 ---------------*/

.gallery-item.gallery-style-6 .item-icon,
.gallery-item.gallery-style-6 .item-title {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
}

.gallery-style-6[class*="padding"] .item-title {
    padding-bottom: 0 !important;
}

.gallery-item.gallery-style-6 .item-title {
    bottom: 51%;
}

.gallery-item.gallery-style-6 .item-icon {
    top: 51%;
}

.gallery-item.gallery-style-6:hover .item-title {
    opacity: 1;
    bottom: 50%;
}

.gallery-item.gallery-style-6:hover .item-icon {
    opacity: 1;
    top: 50%;
}

.gallery-item.gallery-style-6:hover .item-img {
    opacity: 0.1;
}

/*---------------  STYLE 7 ---------------*/

.gallery-item.gallery-style-7 .item-icon,
.gallery-item.gallery-style-7 .item-title {
    position: absolute;
    opacity: 0;
}

.gallery-item.gallery-style-7 .item-title {
    bottom: 0;
    left: 0;
    background-color: inherit;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
}

.gallery-item.gallery-style-7 .item-icon {
    top: 0;
    left: 0;
    background-color: inherit;
    opacity: 1;
}

.gallery-item.gallery-style-7:hover .item-title {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.gallery-item.gallery-style-7:hover .item-img {
    opacity: 0.75;
}

/*---------------  STYLE 8 ---------------*/

.gallery-item.gallery-style-8 .item-icon,
.gallery-item.gallery-style-8 .item-title {
    position: absolute;
}

.gallery-item.gallery-style-8 .item-title {
    top: 0;
    left: 0;
    right: 0;
}

.gallery-item.gallery-style-8 .item-icon {
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-item.gallery-style-8 .item-img {
    opacity: 0.8;
}

.gallery-item.gallery-style-8:hover .item-img {
    opacity: 0.1;
}

/*---------------  STYLE 9 ---------------*/

.gallery-item.gallery-style-9 .item-icon,
.gallery-item.gallery-style-9 .item-title {
    position: absolute;
}

.gallery-item.gallery-style-9 .item-title {
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gallery-item.gallery-style-9 .item-icon {
    bottom: 0;
    right: 0;
}

.gallery-item.gallery-style-9 .item-img {
    opacity: 0.75;
}

.gallery-item.gallery-style-9:hover .item-img {
    opacity: 0.1;
}

/*---------------  STYLE 10 ---------------*/

.gallery-item.gallery-style-10 .item-icon,
.gallery-item.gallery-style-10 .item-title {
    position: absolute;
}

.gallery-item.gallery-style-10 .item-title {
    bottom: 0;
    left: 0;
    background-color: inherit;
}

.gallery-item.gallery-style-10 .item-icon {
    top: 0;
    right: 0;
}

/*----------------------------------------------------------------------------------------
                       END GALLERY STYLES
----------------------------------------------------------------------------------------*/

/* PAYOUTS */
.pay-opt li a img {
    max-width: 40px;
}

.side-details {
    padding-top: 10px;
    padding-bottom: 35px;
}

.content ul {
    list-style-type: none;
}

.content ol {
    margin-left: 30px;
}

.content ul.tick li {
    background: url("../images/tick.png") no-repeat 0 2px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.content ul.tick ul {
    padding-top: 10px;
}

.content ul.tick ul,
.content ol ol,
.content ol ul,
.content ul.tick ol {
    margin-bottom: 0;
}

/* COMMENTS */
.comment-avatar {
    width: 50px;
    float: left;
    margin: 0 15px 0 0;
}

.comment-avatar img {
    width: 50px;
    border-radius: 100%;
    display: block;
    height: 50px;
}

.comment h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.comment-content {
    overflow: hidden;
    padding: 10px 0;
}

.media.media-sm img {
    width: 115px;
    height: auto;
    display: block;
}

.google-maps {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media handheld, only screen and (max-width: 767px) {
    .modal.fullscreen {
        padding: 0px;
    }

    .modal.fullscreen .modal-content {
        height: 100vh;
    }
}

.modal-content {
    border-radius: 0;
    /*border: 1px solid #ededed;*/
}

.modal-body {
    position: relative;
    padding: 0;
}



.panel .panel-collapse .collapse {
    transition: transform 0.25s ease-in-out;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
}

/* *======= CTA 1 / Call to action box ==========*==================================================================================================== */
.cta-main {
    margin-top: 90px;
}

.cta-box {
    padding: 50px 30px;
    background-color: #124b88;
    color: #afacbb;
    /*margin-top: 25px;*/
}

.cta-box h3 {
    line-height: 34px;
    color: #fff;
    font-weight: 400;
    margin-top: 0;
}

.cta-box p {
    /* color: #fff */
}

.cta-box a.btn {
    /*margin-top: 24px;*/
}

.cta-grey {
    background: #f1f1f1;
}

@media handheld, only screen and (max-width: 767px) {
    .cta-box {
        text-align: center;
    }

    .cta-box a.btn {
        margin: 25px 0;
    }
}

/* Icon Box ========================================================================== */
.box-icon {
    padding: 30px 0;
}

.box-icon .icon-wrap {
    float: left;
    font-size: 40px;
    margin-top: 12px;
}

.box-icon .text {
    overflow: hidden;
    padding-left: 20px;
}

.box-icon .text h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 13px 0 5px;
}

.box-icon .text p {
    margin-bottom: 13px;
}

@media handheld, only screen and (max-width: 767px) {
    .box-icon .text {
        padding-left: 10px;
    }
}

/* CREDIT CARD DIV STYLES - MODAL */
.credit-card-div span {
    padding-top: 10px;
}

.credit-card-div img {
    padding-top: 48px;
    height: 89px;
}

.credit-card-div .small-font {
    font-size: 9px;
}

.credit-card-div .pad-adjust {
    padding-top: 10px;
}

.credit-card-div .form-control {
    margin: 5px 0;
}

.credit-card-div textarea {
    margin: 15px 0;
    padding: 10px;
}

/* WIZARD FORM */
.wizNav {
    margin: 10px 0 30px;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f1f5f8;
    border: #f1f5f8;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.rating .fa {
    font-size: 22px;
}

.rating-num {
    margin-top: 0px;
    font-size: 60px;
}

.progress {
    margin-bottom: 5px;
}

.progress-bar {
    text-align: left;
}

.checkout-progress-bar {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
}

.step {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    display: block;
    width: 25px;
    height: 25px;
    margin-bottom: 30px;
    border: 4px solid #fff;
    border-radius: 50%;
    background-color: var(--primary-color);;
}

.step:after {
    position: absolute;
    z-index: -1;
    top: 5px;
    left: 22px;
    width: 225px;
    height: 6px;
    content: "";
    background-color: var(--primary-color);;
}

@media all and (max-width: 576px) {
    .step:after {
        width: 100px;
    }
}

.step:before {
    color: #2e2e2e;
    position: absolute;
    top: 40px;
}

.step:last-child:after {
    content: none;
}

.step.active {
    background-color: #dc6414;
}

.step.active:after {
    background-color: #dc6414;
}

.step.active:before {
    color: #dc6414;
}

.step.active + .step {
    background-color: #dc6414;
}

.step.active + .step:before {
    color: #dc6414;
}

.step:nth-child(1) {
    background-color: #dc6414;
}

.step:nth-child(1):before {
    content: "Auswahl";
}

.step:nth-child(2):before {
    right: -40px;
    content: "Themen/Adresse";
}

.step:nth-child(3):before {
    right: -30px;
    content: "Prüfen";
}

.step:nth-child(4):before {
    right: 0;
    content: "Fertig";
}

.step-container {
    min-height: 500px;
}

.rating-desc .col-md-3 {
    padding-right: 0px;
}

.fa-blue {
    color: #38c5f1;
    width: 20px;
}

p.small i.fa-blue {
    width: auto;
}

.addCart {
cursor: pointer;
}
.ticket-box {
    padding         : 2rem;
    position        : relative;
    background-color: #fb7d00;
    transition      : transform 0.5s ease, box-shadow 0.5s ease;
    border-radius   : 2rem;
    height          : 100%;
}

.ticket-box p,
.ticket-box h3,
.ticket-box li {
    color: #fff;
}

.ticket-box:hover {
    transform : rotateX(6deg) rotateY(4deg) scale(1.1);
    /* Füge die Skalierung hinzu */
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}



.ticket-box:before,
.ticket-box:after {
    content         : "";
    position        : absolute;
    left            : calc(50% - 24px);
    transform       : translateX(+28%);
    width           : 24px;
    height          : 20px;
    background-color: #fff;
    border-radius   : 50%;
}

.ticket-box:before {
    top: -10px;
}

.ticket-box:after {
    bottom: -10px;
}

.ticket-desc {
    margin-bottom: 100px;
    text-align: left;
}

.ticket-btn {
    position: absolute;
    bottom  : 2rem;
    width   : calc(100% - 4rem);
}

p.price {
    font-size  : 4rem;
    line-height: initial;
    font-weight: 700;
}


.carousel-inner {
    min-height: 240px;
}

ul.ticket-details code {
    background-color: #ddd;
    padding: 0.3rem 0.6rem;
    overflow-wrap: anywhere;
}

ul.ticket-details li {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

ul.ticket-details .badge {
    padding: 0.5rem 0.6rem;
    font-size: 90%;
    border-radius: 0.25rem;
}

p.ticket {
    font-size: 1.3rem;
    font-weight: 500;
    color: #38c5f1;
    border-bottom: 2px solid #38c5f1;
    margin-bottom: 20px;
}

div .bestellnummer {
    border: 2px solid #ddeffa;
    padding: 2px 6px;
    background-color: #ddeffa;
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    text-align: right;
    font-size: 80%;
}

.bestellnummer .border-bottom {
    border-bottom: 1px solid #fff;
}




.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}





.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .bg-box[class*="col-sm-"] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: auto;
    }

    .bg-box[class*="col-sm-"]:first-child {
        left: 0;
    }

    .bg-box[class*="col-sm-"]:last-child {
        right: 0;
    }
}

@media (min-width: 768px) {
    .bg-box[class*="col-md-"] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: auto;
    }

    .bg-box[class*="col-md-"]:first-child {
        left: 0;
    }

    .bg-box[class*="col-md-"]:last-child {
        right: 0;
    }
}

@media (min-width: 1230px) {
    .bg-box[class*="col-lg-"] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: auto;
    }

    .bg-box[class*="col-lg-"]:first-child {
        left: 0;
    }

    .bg-box[class*="col-lg-"]:last-child {
        right: 0;
    }
}

@media (min-width: 1600px) {
    .bg-box[class*="col-xl-"] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: auto;
    }

    .bg-box[class*="col-xl-"]:first-child {
        left: 0;
    }

    .bg-box[class*="col-xl-"]:last-child {
        right: 0;
    }
}

.bg.parallax[data-rellax-speed="1"],
.bg.parallax[data-rellax-speed="-1"] {
    top: -10vh;
    bottom: -10vh;
}

.bg.parallax[data-rellax-speed="2"],
.bg.parallax[data-rellax-speed="-2"] {
    top: -20vh;
    bottom: -20vh;
}

.bg.parallax[data-rellax-speed="3"],
.bg.parallax[data-rellax-speed="-3"] {
    top: -30vh;
    bottom: -30vh;
}

.bg.parallax[data-rellax-speed="4"],
.bg.parallax[data-rellax-speed="-4"] {
    top: -40vh;
    bottom: -40vh;
}

.bg.parallax[data-rellax-speed="5"],
.bg.parallax[data-rellax-speed="-5"] {
    top: -50vh;
    bottom: -50vh;
}

.bg.parallax video {
    width: auto !important;
}

.full-height {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bg-dark .bg,
.bg-dark,
.bg-dark.bg-wrap {
    background-color: #111 !important;
}

.light .bg-wrap.dark,
.dark .bg-wrap,
.light .dark .bg-wrap,
.bg-wrap.dark,
.light .bg-default.dark,
.dark .bg-default,
.light .dark .bg-default,
.bg-default.dark {
    background-color: #232122;
}

.bg,
.bg-wrap,
.nav-bg {
    position: absolute;
    overflow: hidden;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.bg-koernig .bg {
    background-image     : url("../img/hintergrund-koernig-12-white.png");
    background-repeat    : no-repeat;
    background-position  : center;
    background-size      : cover;
    opacity              : 0.6;
    background-attachment: fixed;
}

.bg-koernig-2 .bg {
    background-image     : url("../img/hintergrund-koernig-21-white.png");
    background-repeat    : no-repeat;
    background-position  : center;
    background-size      : cover;
    opacity              : 0.5;
    background-attachment: fixed;
}

.bg-kariert .bg {
    background-image     : url("../svg/kariert.svg");
    background-repeat    : repeat;
    background-position  : center;
    background-size      : 200px 200px;
    opacity              : 0.2;
    background-attachment: fixed;
}

.bg-stern .bg {
    background-image     : url("../svg/bg-sterne.svg");
    background-repeat    : repeat;
    background-position  : center;
    background-size      : 800px 800px;
    opacity              : 0.7;
    background-attachment: fixed;
}

@media all and (max-width: 1230px) {
    .bg-stern .bg {
        background-size: 450px 450px;
    }
}

@media all and (max-width: 576px) {
    .bg-stern .bg {
        background-size: 300px 300px;
    }
}

.bg-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-light-grey .bg,
.bg-light-grey,
.bg-light-grey.bg-wrap {
    background-color: #eee !important;
}

.bg-primary .bg,
.bg-primary,
.bg-primary.bg-wrap {
    background: linear-gradient(90deg, rgba(190, 60, 0, 1) 0%, rgba(220, 100, 20, 1) 100%);
}

.bg-secondary .bg,
.bg-secondary,
.bg-secondary.bg-wrap {
    background-color: var(--primary-color) !important;
}

.bg-dark .bg,
.bg-dark,
.bg-dark.bg-wrap {
    background-color: #000000 !important;
}

.bg-light .bg,
.bg-light,
.bg-light.bg-wrap {
    background-color: #ddd !important;
}

.bg-darkgrey {
    background-color: #444;
    color: #fff;
}

.bg-transparent.bg,
.bg-transparent,
.bg-transparent.bg-wrap {
    background-color: rgba(255, 255, 255, 0) !important;
}

.bg-white {
    background-color: #fff !important;
    -webkit-animation: fadein 1s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s;
    /* Firefox < 16 */
    -ms-animation: fadein 1s;
    /* Internet Explorer */
    -o-animation: fadein 1s;
    /* Opera < 12.1 */
    animation: fadein 1s;
}

section,
header,
footer {
    position: relative;
    z-index: 1;
}

.light .dark,
.dark,
.light .dark,
.dark {
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.5;
    color: #fff;
}

.light svg.svg-default.dark,
.dark svg.svg-default,
.light .dark svg.svg-default,
svg.svg-default.dark {
    fill: #fff;
}

address {
    margin-bottom: 0;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
    /* padding-left: 0; */
}

ol:not(.light-page):not(.dark-page) ol,
ul:not(.light-page):not(.dark-page) ul,
ol:not(.light-page):not(.dark-page) ul,
ul:not(.light-page):not(.dark-page) ol {
    margin-bottom: 0;
}

.container .content-list ul {
    list-style: disc inside;
    list-style-position: outside;
    margin-left: 20px !important;
}

img {
    max-width: 100%;
  }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bold;
}

sub,
sup {
    position: relative;
    font-size: 65%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.75em;
}

sup {
    top: -1em;
}

ul.default li {
    padding-left: 2em;
    text-indent: -1.4em;
}

ul.list-unstyled {
    padding-left: 0;
    list-style: none;
}

ul.list-justify {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.list-inline {
    padding-left: 0;
    list-style: none;
}

ul.list-inline > li {
    display: inline-block;
    margin-bottom: 2px;
    margin-top: 2px;
}

ul.list-inline > li > a {
    vertical-align: middle;
}

ul.list-inline > li + li,
ul.list-justify > li + li {
    margin-left: 15px;
}

ul.padding-x2-list li > .icon-pos-right {
    margin: 0 0 0 1em;
}

ul.padding-x2-list li > .icon-pos-left {
    margin: 0 1em 0 0;
}

ul.lead li > .icon-pos-right {
    margin: 0 0 0 1em;
}

ul.lead li > .icon-pos-left {
    margin: 0 1em 0 0;
}


.text-secondary {
    color: var(--primary-color) !important;
}

.text-light {
    color: #a4a4a4 !important;
}

.bold {
    font-weight: 500;
}

.padding-x2 {
    padding: 30px !important;
}

.content-box {
    position: relative;
}
.content-box-2 {
    margin-bottom: 2.8rem;
    border-radius: 0.5rem;
}

.shadow {
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.07);
}

img,
svg {
    vertical-align: middle;
    border-style: none;
    /*max-width: 100%;*/
}

.mw-0 {
    max-width: unset !important;
}

svg.icon {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    overflow: visible !important;
}

.color-live {
    color: #32cd32;
}

.svg-live {
    fill: #32cd32;
}

ul.tag-list li a {
    color: #a4a4a4 !important;
    font-weight: 500;
}

ul.tag-list li a:hover {
    color: var(--primary-color) !important;
}

.dark svg.svg-default.light,
.light svg.svg-default,
.dark .light svg.svg-default,
svg.svg-default.light {
    fill: #dc6414;
}

.light svg.svg-default.dark,
.dark svg.svg-default,
.light .dark svg.svg-default,
svg.svg-default.dark {
    fill: #fff;
}

.dark svg.svg-primary.light,
.light svg.svg-primary,
.dark .light svg.svg-primary,
svg.svg-primary.light {
    fill: #dc6414;
}

.light svg.svg-primary.dark,
.dark svg.svg-primary,
.light .dark svg.svg-primary,
svg.svg-primary.dark {
    fill: #dc6414;
}

.dark svg.svg-secondary.light,
.light svg.svg-secondary,
.dark .light svg.svg-secondary,
svg.svg-secondary.light {
    fill: var(--primary-color);;
}

.light svg.svg-secondary.dark,
.dark svg.svg-secondary,
.light .dark svg.svg-secondary,
svg.svg-secondary.dark {
    fill: var(--primary-color);;
}

.border-bottom {
    border-bottom: 1px solid #eee;
}

.bg-default {
    background-color: #fff;
}



.rounded {
    border-radius: 0.5rem !important;
    position: relative;
    overflow: hidden;
}

img:not(.logo):not(.random-logo) {
    border-radius: 0.5rem;
}

.text-primary {
    color: #FFBE00 !important;
}

.text-default {
    color: #000000 !important;
}

.text-white {
    color: #fff !important;
}
.text-black {
    color: #000 !important;
}

.overflow-y-hidden {
	overflow-y: hidden !important;
}
  
.overflow-y-visible {
	overflow-y: visible !important;
}

.overflow-x-hidden {
	overflow-y: hidden !important;
}
  
.overflow-x-visible {
	overflow-y: visible !important;
}


.container-fluid > .row.no-gutters,
.modal .container-fluid > .row.no-gutters {
    margin-left: -15px;
    margin-right: -15px;
}

.letter-space {
    letter-spacing: 0.07em;
}

.close-modal {
    padding: 5px !important;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    /* right: 0; */
}

.close-modal:focus,
.close-modal:hover,
.close-modal:active,
.close-modal:focus-within,
.close-modal:visited {
    color: #dc6414;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    outline: 0;
}



.valid-day {
    background-color: #dc6414;
    color: #fff;
    /* padding: 0px 5px; */
    border-radius: 12em;
    width: 35px;
    height: 35px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* end label */



.qrcode img {
    margin: auto;
}

.deal-entry h2 {
    font-size: 1.5em !important;
}

.ellipsis {
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    white-space: nowrap;
    overflow: hidden;
}

.share {
    display: flex;
}

.share li {
    padding-right: 14px;
}

.fa-whatsapp:before {
    content: "\f232";
}

.content-box-list ol,
.content-box-list ul {
    padding-left: 18px;
}

ol {
    list-style: decimal inside;
}

/* VIDEO STYLE CUSTOMIZATION */
.video-wrapper {
    position: relative;
    padding-top: 25px;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.thumb {
    position: relative;
    margin: 20px;
    padding-bottom: 75%;
}

.thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*	height: 100%;*/
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.3s ease;
}

.thumbs:hover .overlay {
    opacity: 1;
}

.icons {
    color: white !important;
    font-size: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.fa-play:hover {
    color: #eee !important;
    cursor: pointer;
}

.marquee {
    max-width: 100vw;
    /* iOS braucht das */
    white-space: nowrap;
    overflow: hidden;
    background-color: #8bca1d;
    color: #fff;
    font-weight: 700;
    padding-top: 4px;
    padding-bottom: 4px;
}

.marquee a,
.marquee a:hover,
.marquee a:visited,
.marquee a:active {
    color: #fff !important;
}

.marquee span {
    display: inline-block;
    padding-left: 105%;
    /* die zusätzlichen 5% erzeugen einen verzögerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
    animation: marquee 10s linear infinite;
}

/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
.marquee span:hover {
    animation-play-state: paused;
}




/*   RATING START   */




.rating {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-direction: row-reverse;
    height: 150px;
    position: relative;
}

.rating-0 {
    filter: grayscale(100%);
}

.rating > input {
    display: none;
}

.rating > label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='126.729'%20height='126.73'%3e%3cpath%20fill='%23e3e3e3'%20d='M121.215%2044.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101%200l-12.4%2030.3c-.8%202.1-2.8%203.5-5%203.7l-34.9%203.3c-5.2.5-7.3%207-3.4%2010.5l26.3%2023.1c1.7%201.5%202.4%203.7%201.9%205.9l-7.9%2032.399c-1.2%205.101%204.3%209.3%208.9%206.601l29.1-17.101c1.9-1.1%204.2-1.1%206.1%200l29.101%2017.101c4.6%202.699%2010.1-1.4%208.899-6.601l-7.8-32.399c-.5-2.2.2-4.4%201.9-5.9l26.3-23.1c3.8-3.5%201.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    /* transition: .3s;*/
}

.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='126.729'%20height='126.73'%3e%3cpath%20fill='%23fcd93a'%20d='M121.215%2044.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101%200l-12.4%2030.3c-.8%202.1-2.8%203.5-5%203.7l-34.9%203.3c-5.2.5-7.3%207-3.4%2010.5l26.3%2023.1c1.7%201.5%202.4%203.7%201.9%205.9l-7.9%2032.399c-1.2%205.101%204.3%209.3%208.9%206.601l29.1-17.101c1.9-1.1%204.2-1.1%206.1%200l29.101%2017.101c4.6%202.699%2010.1-1.4%208.899-6.601l-7.8-32.399c-.5-2.2.2-4.4%201.9-5.9l26.3-23.1c3.8-3.5%201.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='126.729'%20height='126.73'%3e%3cpath%20fill='%23d8b11e'%20d='M121.215%2044.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101%200l-12.4%2030.3c-.8%202.1-2.8%203.5-5%203.7l-34.9%203.3c-5.2.5-7.3%207-3.4%2010.5l26.3%2023.1c1.7%201.5%202.4%203.7%201.9%205.9l-7.9%2032.399c-1.2%205.101%204.3%209.3%208.9%206.601l29.1-17.101c1.9-1.1%204.2-1.1%206.1%200l29.101%2017.101c4.6%202.699%2010.1-1.4%208.899-6.601l-7.8-32.399c-.5-2.2.2-4.4%201.9-5.9l26.3-23.1c3.8-3.5%201.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.emoji-wrapper {
    width: 100%;
    text-align: center;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after {
    content: "";
    height: 15px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}

.emoji-wrapper:before {
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 35%,
        rgba(255, 255, 255, 0) 100%
    );
}

.emoji-wrapper:after {
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 35%,
        rgba(255, 255, 255, 0) 100%
    );
}

.emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.emoji > svg {
    margin: 15px 0;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

#rating-1:checked ~ .emoji-wrapper > .emoji {
    transform: translateY(-100px);
}

#rating-2:checked ~ .emoji-wrapper > .emoji {
    transform: translateY(-200px);
}

#rating-3:checked ~ .emoji-wrapper > .emoji {
    transform: translateY(-300px);
}

#rating-4:checked ~ .emoji-wrapper > .emoji {
    transform: translateY(-400px);
}

#rating-5:checked ~ .emoji-wrapper > .emoji {
    transform: translateY(-500px);
}

.feedback {
    /* max-width: 360px;
     background-color: #fff;*/
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    /*  box-shadow: 0 4px 30px rgba(0,0,0,.05);*/
}

/*   RATING END   */




/*  OWL CAROUSEL STYLES  */

.owl-theme .owl-dots {
    margin: 0 0 40px 0;
    line-height: 0;
}

.owl-carousel {
    display: none;
}

.carousel-single {
    display: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-theme .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-theme .owl-dot span {
    width: 40px;
    height: 1px;
    margin: 10px 0;
    background-color: transparent;
    border: 0px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}

.owl-theme .owl-nav {
    margin: 40px 0 0 0;
    line-height: 0;
}

.owl-theme .owl-nav [class*="owl-"] {
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    display: block;
    position: relative;
    height: 14px;
    width: 14px;
    margin: 25px;
    border-top-width: 2px;
    border-top-style: solid;
    border-right-width: 2px;
    border-right-style: solid;
    border-color: inherit;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.owl-theme .owl-nav [class*="owl-"]::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    height: 1px;
    left: 0;
    right: 0;
    border-top-width: 2px;
    border-top-style: solid;
    border-color: inherit;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.owl-theme .owl-nav .owl-next::before {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.owl-theme .owl-nav .owl-next::after {
    right: 25px;
}

.owl-theme .owl-nav .owl-prev::before {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.owl-theme .owl-nav .owl-prev::after {
    left: 25px;
}

.full-height .carousel-single,
.full-height .owl-stage-outer {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.carousel-stretch .owl-stage,
.carousel-stretch .owl-stage .owl-item {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
}

.carousel-nav-none .owl-nav,
.carousel-dots-none .owl-dots {
    display: none;
}

.carousel-nav-center-bottom .owl-nav,
.carousel-nav-left-bottom .owl-nav,
.carousel-nav-right-bottom .owl-nav {
    position: absolute;
    z-index: 2;
    margin: 0;
    bottom: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.carousel-nav-center-bottom .owl-nav {
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.carousel-nav-left-bottom .owl-nav {
    left: 30px;
}

.carousel-nav-right-bottom .owl-nav {
    right: 30px;
}

.carousel-nav-aside-center .owl-nav .owl-prev,
.carousel-nav-aside-center .owl-nav .owl-next,
.carousel-nav-aside-bottom .owl-nav .owl-prev,
.carousel-nav-aside-bottom .owl-nav .owl-next {
    position: absolute;
    z-index: 1;
    margin: 0;
}

.carousel-nav-aside-center .owl-nav,
.carousel-nav-aside-bottom .owl-nav {
    margin: 0;
}

.carousel-nav-aside-center .owl-nav .owl-prev {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.carousel-nav-aside-center .owl-nav .owl-next {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.carousel-nav-aside-bottom .owl-nav .owl-prev {
    left: 0;
    bottom: 1px;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.carousel-nav-aside-bottom .owl-nav .owl-next {
    right: 0;
    bottom: 1px;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.carousel-dots-center-bottom .owl-dots,
.carousel-dots-left-bottom .owl-dots,
.carousel-dots-right-bottom .owl-dots {
    position: absolute;
    z-index: 1;
    margin: 0;
    bottom: 10px;
}

.carousel-dots-left-bottom .owl-dots {
    left: 30px;
}

.carousel-dots-right-bottom .owl-dots {
    right: 30px;
}

.carousel-dots-center-bottom .owl-dots {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.carousel-dots-aside-bottom .owl-dots,
.carousel-dots-aside-top .owl-dots {
    position: absolute;
    z-index: 1;
    margin: 0;
}

.carousel-dots-aside-bottom .owl-dots {
    bottom: 1px;
    left: 0;
    width: 100%;
    display: table;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.carousel-dots-aside-top .owl-dots {
    top: 1px;
    left: 0;
    width: 100%;
    display: table;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.carousel-dots-aside-bottom .owl-dot,
.carousel-dots-aside-top .owl-dot {
    display: table-cell;
}

.carousel-dots-aside-bottom .owl-dot span,
.carousel-dots-aside-top .owl-dot span {
    width: 100%;
}

.owl-dot > span {
    border-color: #ddd !important;
}

.owl-dot.active > span,
.owl-dot:hover > span {
    border-color: #dc6414 !important;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

/* end OWL CAROUSEL STYLES  */


#map-marketplace {
    height: 80vh;
    min-height: 600px;
}

.badge-filter {
    color: #fff;
    background-color: var(--primary-color);;
    border: 1px solid var(--primary-color);;
    font-weight: 500;
    border-radius: 2rem;
}





/* ---------------- Start Formular Mediadaten ---------------- */

label.c-error {
    color: #e44646;
}





.text-xs {
	font-size: clamp(0.7rem, 0.3rem + 1.5vw, 0.8rem) !important;
	line-height: normal;
}

.text-sm {
	font-size: clamp(0.85rem, 0.3rem + 1.5vw, 0.9rem) !important;
	line-height: normal;
}

.text-md {
	font-size: clamp(0.9rem, 0.3rem + 1.5vw, 1rem) !important;
	line-height: normal;
}

.text-lg {
	font-size: clamp(0.95rem, 0.3rem + 1.5vw, 1.15rem) !important;
	line-height: normal;
}

.text-xl {
	font-size: clamp(1rem, 0.3rem + 1.5vw, 1.22rem) !important;
	line-height: normal;
}

.text-xxl {
	font-size: clamp(1.3rem, 0.3rem + 1.5vw, 1.5rem) !important;
	line-height: normal;
}



.lh-0 {
	line-height: 1;
}

.lh-1 {
	line-height: 1rem;
}

.lh-1-5 {
	line-height: 1.5rem;
}

.lh-2 {
	line-height: 2rem;
}

.lh-2-5 {
	line-height: 2.5rem;
}

.lh-3 {
	line-height: 3rem;
}

.lh-4 {
	line-height: 4rem;
}

.lh-5 {
	line-height: 5rem;
}



/* Weights */
.weight-100 {
	font-weight: 100 !important;
}
.weight-200 {
	font-weight: 200 !important;
}
.weight-300 {
	font-weight: 300 !important;
}
.weight-400 {
	font-weight: 400 !important;
}
.weight-500 {
	font-weight: 500 !important;
}
.weight-600 {
	font-weight: 600 !important;
}
.weight-700 {
	font-weight: 700 !important;
}
.weight-800 {
	font-weight: 800 !important;
}
.weight-900 {
	font-weight: 900 !important;
}

.mt-6 {
	margin-top: 3.5rem !important;
}

.mt-7 {
	margin-top: 4.5rem !important;
}

.mt-8 {
	margin-top: 6rem !important;
}

.mt-9 {
	margin-top: 7rem !important;
}


.nav-link {
   /* color: var(--black-50) !important;*/
}

.nav-link.active {
    color: #000 !important;
}

/* ---------------------------- Card Speaker ---------------------------- */
.card.speaker .card-img img{
    object-fit: cover;
    height: 160px;
    width: 160px;
    /* border-radius: 10rem 10rem 0 0 !important; */
    border-radius: 5rem !important;
    margin-top: -4rem;
    border: 8px solid #ffbe00;
    background: #fff;
}
.card.speaker {
	padding: 1rem;
    height: 100%;
    cursor: pointer;
    border-radius: 2rem;
	background-color: #fb7d00;
}
.card.speaker:hover {
    background-color: #BE3C00;
}
.card.speaker:hover .speaker .card-body h3, .speaker .card-body p, .programm .card-body h3, .programm .card-body p {
    color: #fff;
}
.card-img .icon {
    position: absolute;
    width: 160px;
    height: 160px;
    margin-top: -4rem;
    border-radius: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.card.speaker:hover .card-img .icon{
    background: rgba(251, 125, 0, 0.7);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card.speaker:hover .card-img .icon svg {
    fill: #fff;
}
.card.speaker .card-img {
    display: flex;
    justify-content: end;
}
.card.speaker .card-title{
    color: #fff;
    padding: 0;
    border-bottom: 2px dotted #fff;
    height: 140px;
}
@media all and (max-width: 576px) {
    .card.speaker .card-title{
        height: auto;
    }
}
.card.speaker .card-title h3{
    color: #fff;
}
.card.speaker .card-text{
    margin: 0;
}
.card.speaker .speaker-details p{
    margin: 10px 0;
    font-size: 1.1rem;
    color: #fff;
    text-align: end;
    letter-spacing: 1px;
    line-height: 1;
}
/* .modal-speaker{
    border-radius: 2rem;
} */
.modal-speaker img.speaker-img{
    width: 160px;
    height: 160px;
    border-radius: 5rem;
    margin-bottom: 10px;
}
.modal-speaker .line{
    display: block;
    width: 100%;
    border-bottom: 2px dotted #fb7d00;
}
/* ---------------------------- END Card Speaker ---------------------------- */

/* ---------------------------- Card Programm ---------------------------- */
.card.programm,
.card.speaker {
    display         : block;
    background-color: #ffbe00;
    padding         : 0 2rem 2rem;
    border-radius   : 2rem;
}

.card-body {
    width: 100%;
}

@media all and (max-width: 576px) {
    .programm .card-body {
        position: relative;
    }
}

.card.programm {
    /* height: 100%; */
    display          : flex;
    position         : relative;
    /* flex-direction: column;
    flex             : 1 33%; */
    background-color : #fb7d00;
    margin-bottom    : 50px;
}

@media all and (max-width: 1230px) {
    .card.programm {
        display: block;
        padding: 1rem;
    }
}

@media all and (max-width: 576px) {
    .card.programm {
        display: block;
    }
}

.card.programm .card-container,
.card.speaker .card-container {
    display  : flex;
    flex-wrap: wrap;
    gap      : 10px 20px;
}

.programm .card-img img {
    object-fit      : cover;
    height          : 160px;
    width           : 160px;
    /* border-radius: 10rem 10rem 0 0 !important; */
    border-radius   : 500px !important;
    margin-top      : -2rem;
}

.programm p {
    margin: 0;
}

/* .programm p.card-truncate {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
} */
.programm .card-header-absolute {
    position: absolute;
    top     : -10px;
}

@media all and (max-width: 1230px) {
    .programm .card-header-absolute {
        position: relative;
        top     : 0;
    }
}

@media all and (max-width: 576px) {
    .programm .card-header-absolute {
        /* top: -25px; */
        position     : relative;
        margin-bottom: 10px;
    }
}

.programm .card-header-absolute .detail {
    display      : inline-flex;
    background   : #222;
    color        : #fff;
    padding      : 0.2rem 0.8rem;
    border-radius: 5rem;
    margin-top   : -1rem;
    position     : relative;
}

@media all and (max-width: 1230px) {
    .programm .card-header-absolute .detail {
        margin-top   : 0;
        margin-bottom: 5px;
        padding      :0.4rem 0.8rem;
    }
}

.programm .card-header-absolute .detail.stage {
    background: #BE3C00;
}

/* @media all and (max-width: 576px) { 
    .programm .card-header-absolute .detail.stage {
        margin-top: 10px;
    }
} */
.programm .card-title {
    padding         : 2.5rem 0 1rem 0;
    /* border-bottom: 2px dotted #fff; */
}

@media all and (max-width: 1230px) {
    .programm .card-title {
        padding: 1rem 0;
    }
}

@media all and (max-width: 576px) {
    .programm .card-title {
        padding: 0 0 1rem 0;
    }
}

.programm .card-title h3 {
    margin: 0;
    color : #fff;
}
.programm .card-text b, .programm .card-text p, .programm .card-text ul, .programm .card-text li, .programm .card-text h3, .programm .card-text h4, .programm .card-text h5, .programm .card-text h6 {
    margin: 0;
    color : #fff;
}

.programm a {
text-decoration: underline;
}

.programm .speaker-box a {
text-decoration: none;
}
.programm .card-text h3, .programm .card-text h4, .programm .card-text h5, .programm .card-text h6 {
  padding-top:10px;
padding-top:4px;

}

.programm .card-text {
    /* margin: 0.8rem 0; */
    border-bottom: 2px dotted #fff;
    border-top   : 2px dotted #fff;
    padding      : 0.8rem 0;
}

.programm .card-text .timestamp {
    margin        : 2px 0;
    font-size     : 1.1rem;
    color         : #fff;
    text-align    : end;
    letter-spacing: 1px;
}

.programm .speaker-box p {
    margin: 0 0 5px 0;
}

.programm div.speaker {
    display  : flex;
    flex-flow: wrap;
}

.programm .speaker-box {
    width        : 100%;
    /* border-top: 2px dotted #fff; */
    padding-top  : 0.8rem;
}

.programm .btn-link, .programm .speaker-single {
    display      : inline-flex;
    position     : relative;
    font-size    : 90%;
    background   : transparent;
    border       : 1px solid #fff;
    padding      : 0.4em 0.45em;
    line-height  : 1;
    white-space  : nowrap;
    margin       : 0 6px 6px 0;
    align-items  : center;
    cursor       : pointer;
    color        : #fff !important;
    border-radius: 2rem;
    overflow     : hidden;
    transition: background-color 0.2s linear,
    color 0.2s linear;
}


.programm .btn-link span, .programm .speaker-single span {
    margin-left  : 5px;
    margin-bottom: 0;
    line-height  : 1;
    font-size    : 1.2rem;
}

.programm .btn-link span.ellipsis, .programm .speaker-single span.ellipsis {
    text-overflow: ellipsis;
    white-space  : nowrap;
    overflow     : hidden;
}

.speaker-single img {
    width        : 50px;
    height       : 50px;
    object-fit   : cover;
    border-radius: 5rem !important;
}

@media all and (max-width: 1230px) {
    .programm .speaker-single img {
        width : 30px;
        height: 30px;
    }

    .programm .speaker-single span {
        font-size  : 1rem;
        margin-left: 2px;
    }
}

.programm .speaker-single:hover {
    background-color: #fff;
    color           : #222 !important;
}

.grid-item {
    margin-bottom: 20px;
    width        : 50%;
    float        : right;
}

/* ---------------------------- END Card Programm ---------------------------- */
/* ---------------------------- BEGIN ANIMATION ---------------------------- */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.spaceship {
    animation       : floatUpDown 4s ease-in-out infinite;
    transform-origin: center;
}


/* ---------------------------- END ANIMATION ---------------------------- */

/* ---------------------------- START Benefit Box ---------------------------- */

.benefits .benefit-box {
    /* -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.65); */
    padding              : 1.5rem;
    /* -webkit-box-shadow: 6px 6px 0px 0px #ffbe00;
    box-shadow           : 6px 6px 0px 0px #ffbe00; */
    border-radius        : 2rem;
    background-color     : #fff;
    height               : 100%;
    border               : 6px solid #fb7d00;
}

.benefits .benefit-box h3,
.benefits .benefit-box p {
    color: #222;
}

/* ---------------------------- END Benefit Box ---------------------------- */