body,
html {
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #302A27;
    background-color: #fff;
    font-family: 'Noto Sans TC', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    text-transform: none;
    border: 0;
    margin: 0;
    overflow: visible;
    transition: .2s all;
    background: none;
    outline: none;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #F8E34A;
}

.hamburger-box {
    width: 40px;
    height: 28px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 5px;
    background-color: #F8E34A;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.container {
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}

.site-header {
    border-bottom: 13px solid #282828;
}

.site-header__inner {
    display: flex;
    justify-content: left;
    position: relative;
    padding: 15px 0 5px;
}

.site-header__logo {
    width: 190px;
    transition: .2s all;
}

.site-header.is-sticky {
    /*width: 100px;*/
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
}

.site-header__menu {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.site-header__menu a {
    padding: 0 10px;
}

.site-header__search button {
    border: 0;
    padding: 15px 10px;
    background: none;
    cursor: pointer;
}

.site-header__search input {
    height: 36px;
    line-height: 36px;
    width: 0;
    transition: .2s all;
    border: 1px solid transparent;
    outline: none;
}

.site-header__search:hover input {
    width: 210px;
    padding: 15px 20px;
    border: 1px solid #282828;
}

.site-nav {
    /*background: #F8E34A;*/
    position: sticky;
    top: 0;
    z-index: 11;
    min-width: 800px;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    width: 60%;
    float: left;
}

.site-nav ul a {
    padding: 0;
    line-height: 50px;
    display: block;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
}

.site-nav ul a:hover {
    color: #000;
}

.site-nav ul a:after {
    content: '';
    height: 20px;
    width: 2px;
    background: #302A27;
    display: block;
    position: absolute;
    top: 15px;
    right: -26px;
}

.site-nav ul a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    right: 0;
    background: #fff;
    transition: width .2s ease;
    bottom: 0;
}

.site-nav ul a:hover:before {
    width: 100%;
    left: 0;
    background: #fff;
}

.site-nav ul li {
    list-style: none;
    padding: 0 25px;
}

.site-nav ul li:last-child a:after {
    display: none;
}

.hero-section {
    border-bottom: 0px solid #282828;
}

.slide-content {
    background-color: rgba(216, 216, 216, 0.38);
    padding: 30px 40px;
    display: inline-block;
    float: left;
    text-align: left;
}

.slide-content h2 {
    font-size: 70px;
    line-height: 73px;
    font-weight: bold;
    margin: 0;
}

.slide-content p {
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
    margin: 0;
}

.slide-button {
    height: 45px;
    text-transform: uppercase;
    font-size: 13px;
    padding: 0 25px;
    line-height: 45px;
    background: #F8E34A;
    display: inline-block;
    margin-top: 30px;
}

.slide-button:hover {
    color: #fff;
    background: #302A27;
}

.site-footer {
    background:#f2f2f2;
}

.site-footer .sppb-column-addons {
    font-size: 16px;
}

.site-footer .sppb-column-addons > div {
    margin-bottom: 0 !important;
}

.site-footer .sppb-addon-title {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.site-footer__top {
    position: relative;
}

.site-footer__top .backtop {
    font-size: 36px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    width: 40px;
    text-align: center;
    position: relative;
}

.site-footer ul {
    margin: 0;
    padding: 0;
}

.site-footer ul li {
    list-style: none;
}

.site-footer__bot {
    background: #1d1d1b;
    color: #fff;
    position: relative;
    padding: 10px 0;
}

.site-footer__bot a {
    color: #F8E34A;
}

.site-footer__links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.site-footer__links a {
    font-size: 18px;
    padding: 0 8px;
}

/* new version css */
#ajax-login {
	 position: relative;
	 cursor: pointer;
	 text-align: center;
	 margin: 0;
	 padding: 8px 24px;
	 border: none;
	 border-radius: 0.5em;
	 text-transform: uppercase;
	 overflow: hidden;
	 box-shadow: 0 11px 6px -10px rgba(0, 0, 0, 0.43);
	 background: #1d1d1d;
	 display: inline-block;
	 font-family: 'Montserrat', Helvetica;
	 font-size: 14px;
	 color: #fff;
	 font-weight: 400;
	 text-decoration: none;
	 line-height: 22px;
}
 .hamburger-box {
	 display: none;
}
 .eb-inst.eb-center.eb-module.eb-1.eb-init {
	 background-color: rgba(0, 0, 0, 0.4);
}
 .eb-dialog {
	 border-top: 5px solid #000 !important;
	 overflow: visible !important;
	 background-color: #f2f2f2 !important;
	 max-width: 277px !important;
	 padding-top: 0 !important;
}
 [data-id="1"] .eb-dialog:before {
	 display: block;
	 content: " ";
	 font-size: 20px;
	 color: #39add2;
	 font-weight: normal;
	 font-weight: 300;
	 text-align: left;
	 line-height: 30px;
	 text-align: center;
	 max-width: 170px;
	 margin: 0 auto;
	 font-weight: 200;
	 margin-bottom: 10px;
}
 .eb-dialog .form-control {
	 display: block;
	 width: 100%;
	 height: auto !important;
	 margin: 0 0 14px;
	 padding: 9px;
	 background: #fff;
	 border: none;
	 box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.2);
	 -webkit-animation: autofill both;
	 font-family: 'Roboto', Helvetica;
	 font-size: 17px;
	 color: #a1a1a1;
	 font-weight: 300;
	 text-decoration: none;
	 line-height: normal;
	 border-radius: 0;
	 text-align: center;
}
 .eb-dialog .form-control:focus {
	 outline: none !important;
}
 .eb-dialog .btn-primary {
	 position: relative;
	 cursor: pointer;
	 text-align: center;
	 margin: 0;
	 padding: 8px 24px;
	 border: none;
	 border-radius: 0.5em;
	 text-transform: uppercase;
	 overflow: hidden;
	 box-shadow: 0 11px 6px -10px rgba(0, 0, 0, 0.43);
	 background: #1d1d1d;
	 display: inline-block;
	 font-family: 'Montserrat', Helvetica;
	 font-size: 14px;
	 color: #fff;
	 font-weight: 400;
	 text-decoration: none;
	 line-height: 22px;
	 width: 100%;
}
 .eb-dialog .btn-secondary {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: 0;
	 padding: 0;
	 color: #39add2;
	 text-decoration: none;
	 width: 100%;
	 margin: 10px 0;
	 font-size: 13px;
     min-height: 38px;
}
 .eb-dialog .btn-secondary svg {
	 width: 16px;
	 height: 16px;
	 margin-right: 5px;
}
 .eb-dialog .btn-secondary .icon-eye {
	 margin-right: 5px;
}
 .eb-dialog .input-group .input-group-text, .eb-dialog .input-group label {
	 display: none;
}
 .eb-dialog .form-check {
	 display: flex;
	 justify-content: center;
}
 .eb-dialog label.form-check-label {
	 display: flex;
	 align-items: center;
	 margin-bottom: 1px;
	 font-size: 13px;
	 font-weight: normal;
	 line-height: 20px;
	 color: #a1a1a1;
	 font-family: 'Roboto', Helvetica;
}
 .eb-dialog label.form-check-label input[type="checkbox"] {
	 position: relative;
	 display: block;
	 margin: 0 4px 0 0;
	 padding: 0;
	 width: 20px;
	 height: 20px !important;
	 float: left;
	 background: #fff;
	 box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.2);
	 border: 0 !important;
	 border-radius: 0 !important;
	 appearance: none;
	 cursor: pointer;
	 margin-right: 10px;
}
 .eb-dialog label.form-check-label input[type="checkbox"]:checked {
	 appearance: auto;
}
 .eb-dialog .mod-login__options {
	 list-style: none;
	 margin: 0;
	 padding: 0;
}
 .eb-dialog .mod-login__options li {
	 margin: 0;
	 padding: 0;
}
 .eb-dialog .mod-login__options li a {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: 0;
	 padding: 0;
	 color: #39add2;
	 text-decoration: none;
	 width: 100%;
	 margin: 10px 0;
	 font-size: 13px;
}
  .eb-dialog .eb-close {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 width: 30px;
	 height: 30px;
	 transform: translate3d(50%, -50%, 0);
	 background-color: #fff;
	 border-radius: 100px;
	 color: #000 !important;
	 font-weight: bold;
	 font-size: 24px !important;
	 line-height: 1 !important;
	 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
 div#tip-1, a.btn.btn-link.jmodedit {
	 display: none;
}
 .site-nav ul a {
	 padding: 0;
	 line-height: 50px;
	 display: block;
	 position: relative;
	 font-size: 16px;
	 text-transform: uppercase;
	 background-color: transparent;
	 text-decoration: none;
	 color: #004c93;
	 transition: 0.2s all;
}
 .site-nav ul a:hover {
	 text-decoration: underline;
}

.site-main .card {
	 position: relative;
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-direction: column;
	 flex-direction: column;
	 min-width: 0;
	 word-wrap: break-word;
	 background-color: #fff;
	 background-clip: border-box;
	 border: 1px solid rgba(0, 0, 0, .125);
	 border-radius: 0.25rem;
	 height: 100%;
}
 .site-main .card img {
	 vertical-align: middle;
}
 .site-main .card .card-img-top {
	 width: 100%;
	 border-top-left-radius: calc(0.25rem - 1px);
	 border-top-right-radius: calc(0.25rem - 1px);
}
 .site-main .card .justify-content-end {
	 -ms-flex-pack: end !important;
	 justify-content: flex-end !important;
}
 .site-main .card .flex-column {
	 -ms-flex-direction: column !important;
	 flex-direction: column !important;
}
 .site-main .card .d-flex {
	 display: -ms-flexbox !important;
	 display: flex !important;
}
 .site-main .card .card-body {
	 -ms-flex: 1 1 auto;
	 flex: 1 1 auto;
	 padding: 1.25rem;
}
 .site-main .card .card-title {
	 margin-bottom: 0.75rem;
}
 .site-main .card .btn {
	 display: inline-block;
	 font-weight: 400;
	 color: #212529;
	 text-align: center;
	 vertical-align: middle;
	 -webkit-user-select: none;
	 -moz-user-select: none;
	 -ms-user-select: none;
	 user-select: none;
	 background-color: transparent;
	 border: 1px solid transparent;
	 padding: 0.375rem 0.75rem;
	 font-size: 1rem;
	 line-height: 1.5;
	 border-radius: 0.25rem;
	 transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 .site-main .card .btn-primary {
	 color: #fff;
	 background-color: #007bff;
	 border-color: #007bff;
}
 .site-main .card .btn, .site-main .card .btn-toolbar .btn, .site-main .card .quick_query-buttons .btn {
	 padding: 6px 12px;
	 transition: all 0.4s ease 0s;
}
 .site-main .card .btn-primary {
	 background-color: #39add2;
	 border-color: #39add2;
}
 .site-main .card .btn {
	 padding: 0.375rem 0.75rem !important;
	 border: 1px solid transparent;
	 font-size: 1rem;
	 line-height: 1.5;
	 border-radius: 0.25rem;
}
 .site-main .card .h1, .site-main .card .h2, .site-main .card .h3, .site-main .card .h4, .site-main .card .h5, .site-main .card .h6, .site-main .card h1, .site-main .card h2, .site-main .card h3, .site-main .card h4, .site-main .card h5, .site-main .card h6 {
	 margin-bottom: 0.5rem;
	 font-weight: 500;
	 line-height: 1.2;
}
 .site-main .card h1, .site-main .card h2, .site-main .card h3, .site-main .card h4, .site-main .card h5, .site-main .card h6 {
	 margin-top: 0;
	 margin-bottom: 0.5rem;
}
 .site-main .card .h5, .site-main .card h5 {
	 font-size: 1.25rem;
}
 .site-main .row {
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-wrap: wrap;
	 flex-wrap: wrap;
	 margin-right: -15px;
	 margin-left: -15px;
}
 .site-main .justify-content-center {
	 -ms-flex-pack: center !important;
	 justify-content: center !important;
}
 .site-main .justify-content-center {
	 -ms-flex-pack: center !important;
	 justify-content: center !important;
}
 .site-main .card-group {
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-direction: column;
	 flex-direction: column;
}
#myTabContent h3 {
  padding: 10px 0px;
}
 @media (min-width: 576px) {
	 .site-main .card-group {
		 -ms-flex-flow: row wrap;
		 flex-flow: row wrap;
	}
}
 .site-main .col, .site-main .col-1, .site-main .col-10, .site-main .col-11, .site-main .col-12, .site-main .col-2, .site-main .col-3, .site-main .col-4, .site-main .col-5, .site-main .col-6, .site-main .col-7, .site-main .col-8, .site-main .col-9, .site-main .col-auto, .site-main .col-lg, .site-main .col-lg-1, .site-main .col-lg-10, .site-main .col-lg-11, .site-main .col-lg-12, .site-main .col-lg-2, .site-main .col-lg-3, .site-main .col-lg-4, .site-main .col-lg-5, .site-main .col-lg-6, .site-main .col-lg-7, .site-main .col-lg-8, .site-main .col-lg-9, .site-main .col-lg-auto, .site-main .col-md, .site-main .col-md-1, .site-main .col-md-10, .site-main .col-md-11, .site-main .col-md-12, .site-main .col-md-2, .site-main .col-md-3, .site-main .col-md-4, .site-main .col-md-5, .site-main .col-md-6, .site-main .col-md-7, .site-main .col-md-8, .site-main .col-md-9, .site-main .col-md-auto, .site-main .col-sm, .site-main .col-sm-1, .site-main .col-sm-10, .site-main .col-sm-11, .site-main .col-sm-12, .site-main .col-sm-2, .site-main .col-sm-3, .site-main .col-sm-4, .site-main .col-sm-5, .site-main .col-sm-6, .site-main .col-sm-7, .site-main .col-sm-8, .site-main .col-sm-9, .site-main .col-sm-auto, .site-main .col-xl, .site-main .col-xl-1, .site-main .col-xl-10, .site-main .col-xl-11, .site-main .col-xl-12, .site-main .col-xl-2, .site-main .col-xl-3, .site-main .col-xl-4, .site-main .col-xl-5, .site-main .col-xl-6, .site-main .col-xl-7, .site-main .col-xl-8, .site-main .col-xl-9, .site-main .col-xl-auto {
	 position: relative;
	 width: 100%;
	 padding-right: 15px;
	 padding-left: 15px;
}
 .site-main .mb-4, .site-main .my-4 {
	 margin-bottom: 1.5rem !important;
}
 @media (min-width: 576px) {
	 .site-main .col-sm-12 {
		 -ms-flex: 0 0 100%;
		 flex: 0 0 100%;
		 max-width: 100%;
	}
}
 @media (min-width: 768px) {
	 .site-main .col-md-6 {
		 -ms-flex: 0 0 50%;
		 flex: 0 0 50%;
		 max-width: 50%;
	}
}
 @media (min-width: 992px) {
	 .site-main .col-lg-4 {
		 -ms-flex: 0 0 33.333333%;
		 flex: 0 0 33.333333%;
		 max-width: 33.333333%;
	}
}
 @media (min-width: 1200px) {
	 .site-main .site-content {

	}
}
 @media (min-width: 992px) {
	 .site-main .site-content {

	}
}
 @media (min-width: 768px) {
	 .site-main .site-content {

	}
}
 @media (min-width: 576px) {
	 .site-main .site-content {

	}
}
 .site-main .site-content {
	 width: 100%;
	 padding-right: 15px;
	 padding-left: 15px;
	 margin-right: auto;
	 margin-left: auto;
}
 .site-main .site-content {
	 padding: 0 15px;
	 margin: 0 auto;
	 position: relative;
	 margin-bottom: 20px;
}
.sppb-col, .sppb-col-auto, .sppb-col-lg, .sppb-col-lg-1, .sppb-col-lg-10, .sppb-col-lg-11, .sppb-col-lg-12, .sppb-col-lg-2, .sppb-col-lg-3, .sppb-col-lg-4, .sppb-col-lg-5, .sppb-col-lg-6, .sppb-col-lg-7, .sppb-col-lg-8, .sppb-col-lg-9, .sppb-col-lg-auto, .sppb-col-md, .sppb-col-md-1, .sppb-col-md-10, .sppb-col-md-11, .sppb-col-md-12, .sppb-col-md-2, .sppb-col-md-3, .sppb-col-md-4, .sppb-col-md-5, .sppb-col-md-6, .sppb-col-md-7, .sppb-col-md-8, .sppb-col-md-9, .sppb-col-md-auto, .sppb-col-sm, .sppb-col-sm-1, .sppb-col-sm-10, .sppb-col-sm-11, .sppb-col-sm-12, .sppb-col-sm-2, .sppb-col-sm-3, .sppb-col-sm-4, .sppb-col-sm-5, .sppb-col-sm-6, .sppb-col-sm-7, .sppb-col-sm-8, .sppb-col-sm-9, .sppb-col-sm-auto, .sppb-col-xl, .sppb-col-xl-1, .sppb-col-xl-10, .sppb-col-xl-11, .sppb-col-xl-12, .sppb-col-xl-2, .sppb-col-xl-3, .sppb-col-xl-4, .sppb-col-xl-5, .sppb-col-xl-6, .sppb-col-xl-7, .sppb-col-xl-8, .sppb-col-xl-9, .sppb-col-xl-auto, .sppb-col-xs-1, .sppb-col-xs-10, .sppb-col-xs-11, .sppb-col-xs-12, .sppb-col-xs-2, .sppb-col-xs-3, .sppb-col-xs-4, .sppb-col-xs-5, .sppb-col-xs-6, .sppb-col-xs-7, .sppb-col-xs-8, .sppb-col-xs-9 {
	padding: 0px !important;
}
body {
  padding-top: 90px;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
}
main.site-main {
  flex: 1;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .info-box {
        width: 100%;
        font-size: 11px;
    }

    .fancy.slds-card {
        flex-flow: column-reverse;
        padding: 10px;
    }

    .info-box + div{
        margin: 5px 0 20px !important;
        padding: 0 15px;
    }

    .card-columns {
        margin-left: 0 !important;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
footer.site-footer .container{
    padding-top: 40px;
    padding-bottom: 40px;
}
.site-header {
        box-shadow: 0px 5px 5px 0px #0002;
}
.site-header .container {
    margin-bottom: 0;
}
.site-header__inner {
    padding: 0;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-header__logo {
    flex: 1;
    width: auto;
}
.site-header__menu {
    position: relative;
}

.site-nav {
    min-width: unset;
    display: flex;
    align-items: center;
}
.site-nav ul {
    float: unset;
    display: flex;
    width: 100%;
}

.site-nav ul a:after {
    display: none;
}
.site-nav ul a {
    font-size: 15px;
    font-weight: 500;
    font-family: Raleway, Arial, Helvetica, sans-serif;
    color: #212934;
    text-decoration: none;
}
.site-nav ul li.nav-item.is-active a{
    color: #259a38;
}
.site-nav ul a:hover {
    color: #259a38;
}
#ajax-login {
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    background-color: #259a38;
    color: #212934;
  white-space: nowrap;
}
.ajax-login {
    margin-top: 0 !important;
    padding-left: 25px;
}

body {
  padding-top: 130px;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 768px) {
    .ajax-login {
        padding-left: 0px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .site-nav ul li {
        padding: 10px;
    }
}
footer.site-footer .site-footer__bot .container {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

#dato {
  padding-top: 50px;
}

.eb-dialog .mod-login:before {
    content: "ANMELDEN";
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 7px;
    font-weight: bold;
    color: #259a38;
    font-size: 1rem;
}

.eb-dialog .btn-secondary {
    background-color: #259a38;
    color: #fff;
}

.eb-dialog .input-group>.custom-select:not(:last-child),
.eb-dialog .input-group>.form-control:not(:last-child) {
    margin-bottom: 0px;
}

.eb-dialog .mod-login__password.form-group {
    margin-bottom: 5px;
}

.eb-dialog .mod-login-logout {
    padding-top: 10px;
}
.eb-dialog .mod-login-logout a{
    font-size: 15px;
    font-weight: 500;
    font-family: Raleway, Arial, Helvetica, sans-serif;
    color: #212934;
    text-decoration: none;
}

eb-dialog .mod-login-logout a:hover {
    color: #28a745;
}

@media screen and (max-width: 768px) {
    .site-header__menu {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
        background-color: #0005;
        transition: all .3s;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

  	.site-header__menu.is-active {
        opacity: 1;
        pointer-events: visible;
        visibility: visible;
  	}

    nav.site-nav.navigation {
        flex-flow: column;
        width: 300px;
        height: 100%;
        background-color: #fff;
        justify-content: center;
        align-items: flex-start;
        transform: translate3d(-100%,0,0);
    }

    .site-header__menu.is-active nav.site-nav.navigation{
        transform: translate3d(0,0,0);
    }

    ul.mod-menu.mod-list.nav {
        flex-flow: column;
    }

    .ajax-login {
        margin-left: 25px;
    }

    .mobile-toggle button.hamburger.hamburger--spin > span {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        background-color: #212934;
        width: 30px;
    }
}
a {
  color: #212934;
}
a:hover {
  color: #259a38;
}

    div#column-wrap-id-1672759922843 .sppb-text-left {
        text-align: center;
    }
@media screen and (max-width: 768px) { 
    
    div#sppb-addon-wrapper-1672760311595 {
        left: 0;
    }
    
    #sppb-addon-wrapper-1672760005400 {
        left: 50%;
        /* width: 100%; */
        margin-left: 0;
        transform: translate3d(-50%, 0px, 0px);
    }
}

@media screen and (min-width: 768px) {
  #myTabContent .box + div {
    display: flex;
    width: 100%;
  }
  #myTabContent .box + div input {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  #myTabContent .box + div {
    width: 100%;
  }

  #myTabContent .box + div input {
    max-width: 100%;
  }

  #myTabContent .box + div select {
    width: 100% !important;;
  }
}