/* GLOBAL */

:root {
  --base: #002b59;
  --accent: #0095D9;
  --accent2: #33cccc;
  --accent3: #0caab0;
  --primary: #FF6A13;
  --primary2: #e7eae9;
  --primary3: #eee;
  --primary4: #ccc;
  --body-bg: #fff;
  --white: #fff;
  --body-color: #000;
  --body-size: 1.2rem;
  --border-radius-sm: 10px;
  --border-radius: 15px;
  --border-radius-lg: 500px;
}

body {
    background: var(--body-bg);
    font-family: "Lato", sans-serif;
    font-size: var(--body-size);
    line-height: 1.45;
    font-weight: 400;
    color: var(--body-color);
}
/* Text color */
.text-base {
    color: var(--base) !important;
}
.text-accent {
    color: var(--accent) !important;
}
.text-primary {
    color: var(--primary) !important;
}

.rounded {
	border-radius: var(--border-radius-sm) !important;
}

hr {
	margin-bottom: 3rem !important;
	margin-top: 4rem !important;
	border-color: var(--base);
}
.content-holder-404 {
    height: 100vh;
    padding: 25rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-holder-404 .text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.content-holder-404 .text .mega-title {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary);
}
.content-holder-404 .text .btn {
    margin-left: auto;
    margin-right: auto;
}
figure {
    margin: 0;
    width: 100%;
    overflow: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.5rem;
}
td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
tr:nth-child(even) {
    background-color: #dddddd;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: "Lato", sans-serif;
    line-height: 1.2;
    color:var(--base);
}
h1,h2,
.h1,.h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}
h3,h4,h5,h6,
.h3,.h4,.h5,.h6 {
    font-weight: 700;
     margin-bottom: 0.85rem;
}
h1,.h1 {
    font-size: 40px;
    line-height: 1;
}
h2,.h2 {
    font-size: 35px;
    line-height: 1;
}
h3,.h3 {
    font-size: 30px;
}
h4,.h4 {
    font-size: 25px;
}
h5,.h5 {
    font-size: 21px;
}
h6,.h6 {
    font-size: 18px;
}

.fs-sm {
	font-size:85% !important;
	line-height:1.1;
}
.fs-4 {
    font-size: 110% !important;
}
.fs-5 {
    font-size: 90% !important;
}
.fs-6 {
    font-size: 75% !important;
}

blockquote {
  line-height: 1.3;
  border-left: 3px solid #0caab0;
  padding-left: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
}
.intro h2 {
    margin: 0 0 1rem 0;
}

.badge {
    background: #0caab0;
    color: var(--white);
    padding:0.5rem 0.75rem !important;
    border-radius:  var(--border-radius-sm);
    font-size: 70% !important;
    letter-spacing: 0.05rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge i {
    font-size: 90%;
    margin-right: 0.15rem;
}

.grouped-inputs {
    transition: all 0.3s ease-in-out;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--primary2);
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.grouped-inputs .form-control,
.grouped-inputs .form-select {
    border-color: transparent;
    background-color: transparent;
}
.form-select {
    min-width: 225px;
}
.grouped-head-inputs {
    margin-top: -6.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
}
.grouped-head-inputs .col {
    border-right: 1px solid var(--primary4);
}
.grouped-head-inputs .col:last-child {
    margin-right: 2rem;
}
.form-select,
.form-control {
    display: block;
    width: 100%;
    padding: 1rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body-color);
    background-color: var(--white);
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:1px solid var(--primary4);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus,
.form-control:active {
    outline: none;
    box-shadow: none;
}
.form-control::placeholder {
    font-size: var(--body-size);
    color: var(--body-color);
}
.form-control-lg {
    min-height: auto;
    padding: 0.85rem 1.75rem;
    font-size: 1.125rem;
    line-height: 1.9;
}

.flickity-page-dots {
    position: relative;
    bottom: 0;
    margin-top: 3rem;
}
.flickity-page-dots .dot {
    background:var(--base); /* Ursprunglig bakgrund */
}
#section_event .flickity-page-dots .dot {
	background: var(--accent3);
}
.flickity-button {
    background: var(--base);
    padding: 1.5rem;
    z-index: 500;
    transition: 0.3s;
    border-radius: 0;
}
.flickity-button:hover,
.flickity-button:focus {
    outline: none !important;
    opacity: 1 !important;
    background: var(--primary);
}
.flickity-prev-next-button.previous {
    left: 0;
    border-top-right-radius:10px;
    border-bottom-right-radius:10px;
}
.flickity-prev-next-button.next {
    right: 0;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
}
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 32%;
    top: 33%;
    width: 35%;
    height: 35%;
    fill: var(--white);
}

/* SECTIONS */
.container {
    max-width: 1500px;
}
.container-fluid {
    max-width: 100%;
}
.container-fluid,
.container {
    padding: 0 2.5rem;
}
.content-holder {
    margin-bottom: 100px !important;
    position: relative;
    z-index: 15;
}
.content-holder-no-image {
    padding-top: 12rem;
}

body.page-template-template-logga_in_new {
	padding-top: 12rem;
}

.accordion,
.accordion-button,
.accordion-item {
    font-size: 100%;
    border-color: var(--primary4);
    box-shadow: none !important;
    outline-color: none !important;
}
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
    padding: 0.75rem 1rem;
    transition: 0.3s;
}
.accordion-button i {
	color:#0caab0;
}
.accordion-button:hover,
.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: #0caab0;
    box-shadow: none;
}
.accordion-button:hover i,
.accordion-button:not(.collapsed) i {
	color: var(--white);
}
.accordion ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--primary4);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}
.accordion ul li {
    border-top: 1px solid var(--primary4);
    padding: 0.4rem 1rem;
    font-size: 90%;
}
.accordion ul li:first-child {
    border-top: 0;
}
.accordion ul li a {
    font-weight: 600;
}
.accordion-body a {
    color: var(--accent3);
}
.accordion-body a:hover {
    color: var(--accent3);
    opacity: 0.8;
}

/* BTN */
.btn {
    font-family: "Lato", sans-serif;
    padding:0.9rem 1.5rem;
    line-height: 1;
    display: flex;
    margin-top: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-lg);
    width: fit-content;
    background:var(--primary); /* Ursprunglig bakgrund */
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none !important;
}
.btn:hover,
.btn:focus {
    background:var(--primary); /* Ursprunglig bakgrund */
    border-color: var(--base);
}
.btn span {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: 0.3s;
    color: var(--white);
}
.btn-sm {
    font-size: 1.1rem;
    padding: 0.75rem 1.2rem;
}
.btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--base);
    z-index: 1;
    transition: height 0.4s ease;
    border-radius: var(--border-radius-lg);
}
.btn:hover span {
    color: var(--white) !important;
}
.btn:hover::before {
    height: 100%;
}

/* ACTION */
.action {
    font-family: "Lato", sans-serif;
    display: inline-block;
    padding:0.15rem 0;
    color: inherit;
    align-items: center;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: 0.4s;
    font-weight: 600;
    font-size: 95%;
    letter-spacing: -0.0124em;
    color: var(--base);
}
.action::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--base);
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.action:hover::after {
    transform: scaleX(1);
}

/*TABS*/
.nav-tabs-list .nav-tabs {
    border:none;
    justify-content: center;
    gap:1rem;
    margin-bottom:3rem;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    background: var(--base);
    color: var(--white);
}
.nav-tabs .nav-link {
    padding:0.85em 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: fit-content;
    border-radius: var(--border-radius-lg);
    background:var(--white);
    color: var(--base);
    font-size: 85%;
    font-weight: 600;
}

/* FLICK SLIDER */
.flickity-slider {
  display: flex;
  align-items: stretch;
}
.flickity-slider .card {
    width: 100%;
}
.flickity-slider > * {
  height: auto;
  display: flex;
}

.flickity-slider > * > * {
  height: 100%;
}

/*

.flickity-slider .carousel-cell {
    height: 100%;
}
*/
/* CARD */
.card {
    background: none;
    border:0;
}
.card .card-wrapper {
    background: #fff;
    text-decoration: none;
    display: flex;
    flex-flow: column wrap;
    height: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    padding: 1rem;
}
.card .card-wrapper p {
    margin: 0 0 1rem 0;
    font-size: 85%;
    width: 100%;
}
.card .card-wrapper figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}
.card .card-wrapper figure img {
    object-fit: cover;
    width: 100%;
    height: 200px;
    object-position: center;
}
.card .card-wrapper img {
    transition: 0.4s;
}
.card .card-wrapper .card-body {
    color: #101010;
    display: flex;
    line-height: 1.3;
    flex-flow: column wrap;
    align-content: flex-start;
    flex: auto;
    padding: 1rem 0 0 0;
    width: 100%;
}
.card .card-wrapper:hover img,
.card .card-wrapper:focus img {
    transform: scale(1.05);
}
.card .card-wrapper:hover .action::after {
    transform: scaleX(1);
}
.card .badge {
    position: absolute;
    z-index: 100;
    top: 0.5rem;
    left: 0.5rem;
}
.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--primary4);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}
.card ul li {
    border-top: 1px solid var(--primary4);
    padding: 0.4rem 1rem;
    font-size: 90%;
}
.card ul li:first-child {
    border-top: 0;
}
.card ul li a {
    font-weight:500;
}
.card .action {
    margin-top: auto;
}
.card .card-wrapper:hover .btn::before {
  height: 100%;
}
.card .card-wrapper:hover .btn span {
    color:var(--white);
}
.card .btn {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--white);
    border:1px solid var(--base);
    margin-top: auto;
}
.sidebar .card .btn {
	background: var(--primary);
	border-color: var(--primary);
}
.card .btn span {
    color: var(--base);
}
.sidebar .card .btn span {
	color: var(--white);
}
.card .btn::before {
    background: var(--primary);
}
.sidebar .card .btn::before {
    background: var(--base);
}
.card .card-wrapper.btn:hover,
.card .card-wrapper.btn:focus {
    border:1px solid var(--primary);
}
.card .card-quote {
    line-height: 1.3;
    border: 3px solid #0caab0;
    border-radius: var(--border-radius);
    padding: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.card .card-user {
    margin: 0;
    font-weight: 600;
}
.card .card-education {
    margin: 0;
}
.card .card-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
}
.card .card-bottom figure {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 500px;
    margin-right: 2rem;
}
.card .card-bottom img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}
.card .card-bottom p {
    margin-bottom: 0;
}
.card.card-puff img {
    border-radius: var(--border-radius);
    height: 200px;
    width: 100%;
    object-fit: cover;
}
/* On page Silfs utbildare */
.page.page-id-743 .card.card-puff img {
    height: 350px;
    width: 100%;
    object-position: top center
}
.card.card-puff p {
    margin-bottom: 1rem;
}
.card.card-puff a {
    color: var(--base);
    font-weight: 500;
    text-decoration: underline;
}
.card.card-puff a.btn {
    text-decoration: none;
    font-weight: 600;
}
.card.card-puff a.btn:hover span,
.card.card-puff a.btn:focus span {
    color: var(--white);
}
.login-card .card-wrapper {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.top-bar {
    padding: 1rem;
}
.top-bar ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}
.top-bar ul li a {
    display: block;
    font-size: 90%;
    font-weight: 600;
    padding: 0 1rem
}

/* HEADER */

.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
    position: static;
}
.dropdown-menu {
    width: 100%;
}

header {
    top: 2rem;
    left: 0;
    position: fixed;
    z-index: 1000;
    width: 100%;
    transition: 0.3s;
}
header .search-toggle {
    padding:1rem 2rem;
}
header .collapse .card {
    padding: 0;
}
header .navbar {
    max-width: 100%;
    padding: 0 2rem;
    transition: 0.3s;
}
header .container {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    max-width: 100%;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
header.is-scrolled {
    top: 0;
}
header.is-scrolled .navbar {
    padding: 0.5rem;
}
header .button-holder {
    display: flex;
}
header .navbar-collapse {
    flex-grow: inherit !important;
}
header .navbar .nav-item .nav-link {
    font-family: "Lato", sans-serif;
    color: var(--base);
    padding: 0.15rem 0 0.15rem 0;
    margin: 0 0.45rem;
    font-weight: 600;
    font-size: 95%;
    position: relative;
}
header .navbar .dropdown-menu {
    padding: 0;
    margin: 0;
    border-color: var(--primary4);
    overflow: hidden;
    min-width: 350px;
    margin-top: 1.95rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
/*
header .btn-holder .btn {
    background: var(--white);
    border:1px solid var(--base);
}
header .btn-holder .btn span {
    color: var(--base);
}
header .btn-holder .btn:hover span,
header .btn-holder .btn:focus span {
    color: var(--white);
}
*/
header .navbar .dropdown-menu li .dropdown-item {
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--primary4);
    color: var(--base);
    font-weight: 600;
    transition: 0.3s;
    font-size: 1.2rem;
}
header .navbar .dropdown-menu li .dropdown-item:hover,
header .navbar .dropdown-menu li .dropdown-item:focus {
    background: none;
}
header .navbar .dropdown-menu li:first-child .dropdown-item {
    border-top: 0;
}
header .navbar .dropdown-toggle::after {
    border:none;
    display: none;
}
header .navbar .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--base);
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
header .navbar .nav-item:hover .nav-link,
header .navbar .nav-item:focus .nav-link {
    color: var(--base);
}
header .navbar-top .nav-item:hover .nav-link,
header .navbar-top .nav-item:focus .nav-link {
    color: var(--base);
}
header .navbar .nav-item:hover .nav-link:before,
header .navbar .nav-item:focus .nav-link:before {
    transform: scaleX(1) !important;
}
header .header-extra {
  display: grid;
  grid-template-columns: repeat(3, auto);
  list-style: none;
  padding: 0;
  margin: 0 0 0 1rem;
}
header .header-extra > * {
    border-left: 1px solid var(--primary4);
    padding: 0 0.75rem;
    max-width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header-extra > ul > li > a {
    padding: 0 !important;
    margin: 0 !important;
}
header .header-extra .btn-holder {
    max-width: 100%;
}
header .header-extra .search-holder button {
    display: block;
    padding: 0;
    color: var(--base);
    background: none;
    border:0;
    font-size: 120%;
    position: relative;
}
header .header-extra .search-holder button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--base);
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
header .header-extra .search-holder button:hover:after,
header .header-extra .search-holder button:hover:after {
    transform: scaleX(1) !important;
}
.navbar-brand {
    display: block;
}
.navbar-brand img {
    width: 105px;
}

header .navbar .mega-dropdown-menu {
    margin-top: 0;
    padding: 0 !important;
    background: none;
    border:0;
}
header .navbar .mega-dropdown-menu .row {
    max-width: 1200px;
    padding:1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 0 auto;
    border: 1px solid var(--primary4);
}
header .navbar .mega-dropdown-menu .row .col-lg-4 .mb-2.h5 {
    display: none;
}
header .navbar .mega-dropdown-menu li .dropdown-item {
    padding: 0.35rem 0;
    font-size: 1.2rem;
    color: var(--base);
}
header .navbar .dropdown-menu li .dropdown-item:hover,
header .navbar .dropdown-menu li .dropdown-item:focus,
header .navbar .mega-dropdown-menu li .dropdown-item:hover,
header .navbar .mega-dropdown-menu li .dropdown-item:focus {
    text-decoration: underline;
}
header .navbar .mega-dropdown-menu .card .card-wrapper .btn {
    font-size: 1.2rem;
}
/* IMPORTENT */
.importent-section .card-wrapper {
    border:1px solid var(--primary4);
    padding: 0.75rem;
}
.importent-section .category-card h5 {
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--base);
}
.importent-section .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
}
.importent-section .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:0.5rem;
    margin-top: 4rem;
}
.importent-section .stat {
    text-align: center;
}
.importent-section .stat-number {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.15rem;
    display: block;
    color: var(--base);
}
.importent-section .stat-label {
    margin-top: 0.25rem;
    display: block;
}
.importent-section .action {
    padding-top: 1rem;
}

/* TICKER */
.ticker {
    overflow: hidden;
    position: relative;
    padding: 0.45rem 0;
    background: var(--base);
}
.ticker-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    position: relative;
}
#usp-ticker {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    white-space: nowrap;
    transform: translateX(0);
    will-change: transform;
}
#usp-ticker li {
    display: flex;
    align-items: center;
    padding: 2px 30px 0 30px;
    font-size: 70%;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    line-height: 30px;
    color: var(--white);
    font-family: "Lato", sans-serif;
}
#usp-ticker li i {
    font-size: 150%;
    margin-right: 0.4rem;
	color: #16afb5;
}

.comments-section {
    background: var(--primary3);
    padding: 100px 0;
}
.comments-section .card {
    width: 425px;
}
.comments-section .carousel-cell {
    margin-right: 2rem;
}
.comments-section .card .card-wrapper {
    padding: 2.5rem;
    flex-direction: column;
    min-height: 300px;
}

/* HERO */
.service {
    overflow: hidden;
}
.service .service-usp-holder {
    display: flex;
    align-items: center;
}
.service .service-usp-holder .inner {
    padding: 14rem 3rem 9rem 0;
    background: var(--primary3);
    border-radius: var(--border-radius);
    width: 100%;
}
.service .service-usp-holder .inner-inner {
    max-width: 690px;
    padding: 0 3rem;
    margin: 0 auto;
}
.service .service-usp-content {
    position: relative;
}
.service .service-img-holder figure {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.service .service-img-holder figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-checkbox {
    margin-top: 1.5rem;
}
.service-checkbox ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:0.5rem;
}
.service-checkbox ul li {
    display: flex;
    justify-content: center;
    padding:0.3rem;
    font-weight: 500;
    align-items: center;
    font-size: 70%;
    border: 1px solid var(--primary2);
    background: var(--white);
    border-radius: var(--border-radius-lg);
}
.service-checkbox ul li i {
    margin-right: 0.4rem;
    font-size: 110%;
}

/* BENEFITS */
.benefit-section {
    background: var(--primary3);
    padding: 100px 0;
}
.benefit-card-wrap {
  display: flex;
  gap: 30px;
}
.benefit-card {
  flex: 0.7;
  border-radius:  var(--border-radius-sm);
  height: 550px;
  position: relative;
  overflow: hidden;
  background: var(--base);
  transition: flex 0.6s cubic-bezier(.19,1,.22,1);
}
.benefit-card.active {
  flex: 1;
}
.benefit-card-content-two {
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  transition: opacity 0.3s ease;
}
.benefit-card.active .benefit-card-content-two {
  opacity: 0;
}
.benefit-card-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 300px;
}
.benefit-card-title-wrap h2 {
    color: var(--white);
}
.benefit-card-title-wrap img {
    max-width: 50px;
}
.benefit-card-content-wrap-title {
    display: flex;
    flex-wrap: wrap;
}
.benefit-card-content-wrap-title img {
    max-width: 50px;
    object-fit: contain;
    margin-right: 1.5rem;
}
.benefit-card-content-wrap-title h3 {
    flex: 1 0 0;
    width: 100%;
}
.benefit-card-content-wrap p {
    margin: 0;
}
.benefit-card-content-hover {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  background-image: linear-gradient(#ffffff00, #0b2e4b 79%), var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: none;
  transition: opacity 0.6s ease;
}
.benefit-card.active .benefit-card-content-hover {
  opacity: 1;
  transform: none;
}
.benefit-card-content-wrap,
.benefit-card-content-wrap-two,
.benefit-card-content-wrap-three {
  background-color: var(--white);
  border-radius:  var(--border-radius-sm);
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s cubic-bezier(.19,1,.22,1), opacity 0.7s ease;
}
.benefit-card.active .benefit-card-content-wrap,
.benefit-card.active .benefit-card-content-wrap-two,
.benefit-card.active .benefit-card-content-wrap-three {
  transform: translateY(0);
  opacity: 1;
}
.benefit-card-title-wrap-hover {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* LEARNING */
.learning-section {
    background:var(--base);
    padding: 100px 0;
    color: var(--white);
}
.learning-section h2 {
    color: var(--white);
}
.learning-content-block {
    gap:10rem;
    display: grid;
    grid-template-columns: 1fr 500px;
}
.learning-content-wrapper {
    flex-direction: column;
    gap: 40px;
    width: 100%;
}
.learning-content-wrapper.active {
    display: flex;
}
.learning-title-wrap {
    display: flex;
    flex-direction: column;
}
.learning-image-wrap {
    border-radius:  var(--border-radius);
    overflow: hidden;
    margin-top: auto;
    margin-bottom: auto;
}
.learning-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.learning-content-widget-block-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    cursor: pointer;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
}
.learning-content-widget-block-wrapper .btn {
    margin-top: 0;
}
.learning-content-widget-block-wrapper .btn::before,
.learning-content-widget-block-wrapper .btn::before {
    background: var(--white);
}
.learning-content-widget-block-wrapper .btn:hover span,
.learning-content-widget-block-wrapper .btn:focus span {
    color: var(--base);
}
.learning-content-widget-block-wrap {
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
}
.learning-content-widget-block {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem;
    gap:3rem;
    transition: 0.3s;
}
.learning-content-widget-block:hover,
.learning-content-widget-block:focus,
.learning-content-widget-block.active {
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
}
.learning-content-widget-wrap {
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 60px 1fr;
    /* margin-bottom: 1rem; */
}
.learning-content-widget-wrap .step-badge {
    /* width: 48px;
    height: 48px;
    */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
}
.learning-content-widget-img h3 {
    margin: 0;
    color: var(--white);
}
.learning-content-widget-block p {
    margin: 0;
    opacity: 0.85;
}

/* CASE */
.case-section {
    background: var(--primary3);
    padding:100px 0 100px 0;
}
.case-section .case-intro .container {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 0 4rem;
    margin-bottom: 3rem;
}
.case-section .container > * {
    min-width: 0;
}
.carousel {
    position: relative;
}
.carousel .carousel-cell {
    width: 425px;
    margin-right: 1.25rem;
    border-radius: 5px;
}
.case-section .carousel .carousel-cell .card-wrapper {
    min-height: 560px;
}

.half-half {
    background: var(--body-bg);
    /*
    position: sticky;
    top: 0rem;
    z-index: -1;
    */
}
.half-half-thumbnail {
    position: relative;
}
.half-half-thumbnail figure {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius:  var(--border-radius);
}
.half-half-thumbnail figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.half-half-content-txt {
    padding:5rem;
}
.half-half ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.half-half ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
}
.half-half ul li i {
    font-size: 115%;
    margin-right: 0.5rem;
	color: #0caab0;
}
.half-half:nth-of-type(even) .row {
    flex-flow: row-reverse wrap;
}

.content .half-half:nth-of-type(even) .half-half-content-txt {
	padding-left: 0;
	padding-right: 2rem;
}
.content .half-half:nth-of-type(odd) .half-half-content-txt {
	padding-right:0;
	padding-left: 2rem;
}

.event-section {
    background: var(--white);
}
.event-section-blue {
	color: var(--white);
  padding: 100px 0;
	background: url("https://ktmp.se/silf/wp-content/uploads/2026/01/bigstock-Group-Of-Diverse-Designers-Bu-343806865-scaled.jpg") no-repeat fixed center;
}
.event-section-blue .intro {
	position:relative;
	z-index:10;
}
.event-section-blue::before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: var(--base);
	opacity:0.85;
}
.event-section-blue h2 {
	color: var(--white);
}
.event-section .card {
    width: 450px;
}
.event-section .carousel-cell {
    margin-right: 2rem;
}
.event-section .card .card-wrapper {
    flex-direction: column;
    min-height: 500px;
}
.comment-section .card .card-wrapper {
    min-height: 100%;
}

/* =========================
   NEWSLETTER
========================= */

.form-control-newsletter {
    font-size: 115% !important;
    border-radius: 500px !important;
    padding: 1rem 2rem !important;
    height: 75px !important;
}

/* =========================
   FORM
========================= */

.newsletter-form {
  display: flex;
  align-items: stretch;
  max-width: 520px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Input */
.newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 18px;
  font-size: 1rem;
  outline: none;
  color: #000;
}

.newsletter-form input::placeholder {
  color: #888;
}

/* Button */
.newsletter-form button {
  border: 0;
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;

  background: linear-gradient(135deg, #3f5543, #56785e);
  color: #fff;

  transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.newsletter-form button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}


footer {
    padding: 100px 0;
    background: var(--base);
    color: var(--white);
}
footer .action,
footer .h4 {
    color: var(--white);
}
footer .action::after {
    background: var(--white);
}
footer .btn::before {
    background: var(--white);
}
footer .btn:hover span,
footer .btn:focus span {
    color: var(--base);
}
.footer-holder,
.footer-bottom {
    border-top: 1px solid #06407e;
    margin-top: 4rem;
    padding-top: 4rem;
}
footer li span {
    font-size: 75%;
}
footer li i {
    margin-right: 0.25rem;
	color:#0caab0;
}
footer li a:hover,
footer li a:focus {
    color: var(--white) !important;
}

.pagination {
    justify-content: center;
    margin-top: 4rem;
    border-color: var(--primary4) !important;
}
.pagination li a {
    border-color: var(--primary4) !important;
    color: var(--base) !important;
}
.active>.page-link,
.page-link.active {
    border-color: var(--primary4) !important;
    background: var(--base) !important;
    color: var(--white) !important;
}

/* SUB PAGES */
.hero {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    height: 450px;
    background: var(--base);
}
.hero figure img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}
.hero figure::before {
    content:"";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--base);
    opacity: 0.55;
}
.hero .hero-caption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 0 1rem;
}
.hero .hero-caption h1 {
    margin:6rem auto 0 auto;
    padding: 0;
    max-width: 1000px;
    color: var(--white);
}

.rank-math-breadcrumb {
    margin-bottom: 2rem;
    font-size: 85%;
}
.rank-math-breadcrumb li a:hover,
.rank-math-breadcrumb li a:focus {
    text-decoration: underline;
    color: var(--base);
}

.content-row {
    gap:3rem;
}
.content .content-wrap img {
    margin:1rem 0 1rem 0;
    border-radius:  var(--border-radius);
}
.content .iframe .ratio {
    border-radius:  var(--border-radius);
    overflow: hidden;
}
.content .content-wrap > *:first-child {
    margin-top: 0;
}
.content .content-wrap a {
    color: var(--base);
    font-weight: 600;
    text-decoration: underline;
}
.content .content-wrap .half-half-thumbnail figure img {
    border-radius:  var(--border-radius);
}
.content .form {
    background: var(--primary3);
    border-radius:  var(--border-radius);
    padding: 2rem;
}
.archive-content p {
    max-width: 90%;
}
.sort-archive {
	margin: 1.5rem 0;
}
.archive-content a {
    text-decoration: underline;
    color: var(--primary);
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap:2.5rem;
    width: 380px;
}
.sidebar .card {
    height: auto !important;
}
.sidebar .card-wrapper {
    padding: 0 !important;
}
.sidebar .card ul li {
    padding: 0.75rem 1rem;
}
.sidebar .card ul li span {
    /* text-transform: capitalize; */
}
.sidebar .action {
	margin-top:0 !important;
	font-size:115%;
}
.sidebar li,
.sidebar li a,
.sidebar p {
    font-size: 90%;
}
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5,
.sidebar h6 {
    font-size: 24px;
}

body.page-template-template-page-grid-with-sidebar .card-wrapper,
body.post-type-archive-referenser .card-wrapper,
body.blog .card-wrapper,
body.category .card-wrapper,
body.post-type-archive-event .card-wrapper,
body.post-type-archive-course_date .card-wrapper {
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Primary themed link */
.link-primary-custom {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.link-primary-custom:hover,
.link-primary-custom:focus {
  color: var(--base);
  text-decoration: underline;
}

.link-primary-custom:active {
  opacity: 0.85;
}

/**
 * Posts & pages section
 **/
.new-posts-pages-section {
    background: var(--primary3);
    padding: 100px 0;
}
.new-posts-pages-section-blue {
    color: var(--white);
    background: url("https://ktmp.se/silf/wp-content/uploads/2026/01/bigstock-Group-Of-Diverse-Designers-Bu-343806865-scaled.jpg") no-repeat fixed center;
}
.new-posts-pages-section-blue .intro {
    position:relative;
    z-index:10;
}
.new-posts-pages-section-blue::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: var(--base);
    opacity:0.85;
}
.new-posts-pages-section-blue h2 {
    color: var(--white);
}
.new-posts-pages-section .card {
    width: 450px;
}
.new-posts-pages-section .carousel-cell {
    margin-right: 2rem;
}
.new-posts-pages-section .card .card-wrapper {
    flex-direction: column;
    min-height: 500px;
}
/* Temporary  */
a#menu-item-305 {
    display: none;
}
.mobile-nav__panel {
    display: none;
}
.menu-mask {
    background: linear-gradient(to left, rgba(0,0,0,.55), rgba(0,0,0,.2));
}
.navbar-toggler-icon {
    padding: 0;
    border:0;
    width: 2em;
    height: 2em;
}
@media only screen and (max-width: 1399px) {
    h1, .h1 {
        font-size: 45px;
        line-height: 1;
    }
    h2, .h2 {
        font-size: 40px;
    }
    .service-checkbox ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .learning-content-block {
        gap: 4rem;
    }
}
@media only screen and (max-width: 1199px) {
    h1, .h1 {
        font-size: 40px;
        line-height: 1;
    }
    h2, .h2 {
        font-size: 35px;
    }
    .content-holder {
        margin-top: 70px;
        margin-bottom: 70px !important;
    }
    footer,
    .event-section-blue,
    .new-posts-pages-section,
    .learning-section,
    .benefit-section,
    .case-section {
        padding: 70px 0;
    }
    .content-holder-no-image {
        padding-top: 12rem;
    }
    .container-fluid, .container {
        padding: 0 1.5rem;
    }
    .navbar-toggler {
        padding: 0;
        border:0;
    }
    .mobile-nav__panel {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        width: 98%;
        max-width: 500px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .35s ease;
    }
    .mobile-nav__inner {
        padding: 32px 24px;
    }
    body.mobile-menu-open .mobile-nav__panel {
        transform: translateX(0);
    }
    body.mobile-menu-open {
        overflow: hidden;
    }
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
        z-index: 9998;
    }
    body.mobile-menu-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .mobile-nav__close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        line-height: 1;
        border: 0;
        border-radius: 50%;
        background: rgba(0,0,0,.06);
        cursor: pointer;
        transition: background .2s ease;
    }
    .mobile-nav__close:hover {
        background: rgba(0,0,0,.12);
    }
    .mobile-nav__inner .navbar-nav .dropdown-menu {
        min-width: 100% !important;
        margin-top: 0 !important;
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        border-top: 0;
        border-radius: 0;
        border-bottom: 0;
        padding: 0;
    }
    .mobile-nav__inner .navbar-nav .dropdown-toggle::after {
        display: none !important;
    }
    .mobile-nav__inner .navbar-nav > li a {
        display: flex;
        align-items: center;
        border-top: 1px solid #ccc;
        font-size: 110%;
        font-weight: 500;
        line-height: 1.6;
    }
    .mobile-nav__inner .navbar-nav > li > a > i {
        margin-left: auto !important;
    }
    .mobile-nav__inner .navbar-nav > li .dropdown-menu {
        border: 0;
        padding: 0 0 1rem 0 !important;
    }
    .mobile-nav__inner .navbar-nav > li .dropdown-menu .row {
        margin: 0;
    }
    .mobile-nav__inner .navbar-nav > li .dropdown-menu .col-lg-4 {
        padding: 0;
        margin-top: 1rem;
    }
    .mobile-nav__inner .navbar-nav > li .dropdown-menu li a {
        font-size: 135% !important;
        font-weight: 500 !important;
        padding-right: 0;
        padding-left: 0;
        border:0;
    }
    .mobile-nav__panel .navbar-brand {
        margin: 1.5rem 0 0 1.5rem !important;
    }
    header {
        top: 0.75rem;
    }
    header .navbar {
        padding: 0 0.75rem;
    }
    .importent-section .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-section .case-intro .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 2rem;
        margin-bottom: 1rem;
    }
    .half-half-content-txt {
        padding: 4rem 0 0 0;
    }
    /* SUB PAGES */
    .hero {
        height: 350px;
    }
    .hero,
    .hero figure img {
        height: 350px;
    }
}

@media only screen and (max-width: 991px) {
    h1, .h1 {
        font-size: 35px;
        line-height: 1;
    }
    h2, .h2 {
        font-size: 30px;
    }
    footer,
    .event-section-blue,
    .new-posts-pages-section,
    .learning-section,
    .benefit-section,
    .case-section {
        padding: 50px 0;
    }
    .content-holder {
        margin-top: 50px;
        margin-bottom: 50px !important;
    }
    .navbar-brand img {
        width: 70px;
    }
    header .header-extra .search-holder button {
        font-size: 100%;
    }
    .service .service-usp-holder .inner {
        padding: 2rem;
    }
    .service .service-usp-holder .inner-inner {
        padding: 0;
    }
    .case-section .case-intro .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .benefit-card-wrap {
        display: block;
    }
    .benefit-card {
        height: 100%;
        margin-bottom: 1rem;
    }
    .benefit-card.active .benefit-card-content-two {
        opacity: 1;
    }
    .benefit-card-content-two {
        display: none;
    }
    .benefit-card-content-wrap,
    .benefit-card-content-hover {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
    }
    .half-half-content-txt {
        padding: 3rem 0 0 0;
    }
    .learning-content-block {
        gap: 10rem;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap:1rem;
    }
    .learning-content-widget-block-wrap {
        width: 100%;
        gap:0.5rem;
    }
    .learning-content-widget-wrap {
        margin: 0;
    }
    .learning-content-widget-block p {
        display: none;
    }
    .learning-content-wrapper {
        gap: 0;
    }
    header .navbar .dropdown-menu {
        min-width: 250px;
        margin-top: 0.35rem;
    }
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 1.15rem;
    }
    h1, .h1,
    h2, .h2 {
        font-size: 27px;
        line-height: 1;
    }
    h4, .h4 {
        font-size: 23px;
    }
    h5, .h5 {
        font-size: 16px;
    }
    .fs-5 {
        font-size: 100% !important;
    }
    footer,
    .event-section-blue,
    .new-posts-pages-section,
    .learning-section,
    .benefit-section,
    .case-section {
        padding: 30px 0;
    }
    .grouped-inputs {
        border-radius: var(--border-radius-sm);
    }
    .grouped-inputs .row {
        display: block;
        margin: 0;
    }
    .grouped-inputs .btn {
        width: 100% !important;
        margin: 1rem auto !important;
    }
    .grouped-head-inputs {
        margin-top: -3.5rem;
        padding: 0;
    }
    .grouped-head-inputs .col {
        border-right: 0;
        border-bottom: 1px solid #ccc;
    }
    .content-holder {
        margin-top: 30px;
        margin-bottom: 30px !important;
    }
    .container-fluid, .container {
        padding: 0 0.75em;
    }
    header {
        top: 0;
        position: sticky;
    }
    header.is-scrolled .navbar,
    header .navbar {
        padding: 0;
    }
    header .container {
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    header .header-extra > * {
        max-width: 52px;
    }
    .card .card-wrapper p {
        font-size: 80%;
    }
    .form-control-lg {
        padding: 0.85rem 1rem;
        font-size: 1.1rem;
    }
    .navbar-brand img {
        width: 60px;
    }
    .navbar-toggler-icon {
        width: 1.65em;
        height: 1.65em;
    }
    .half-half-content-txt {
        padding: 1.5rem 0 0 0;
    }
    .service-checkbox ul {
        gap:0.15rem;
    }
    .service-checkbox ul li {
        font-size: 60%;
        font-weight: 600;
    }
    .benefit-card-content-wrap, .benefit-card-content-wrap-two, .benefit-card-content-wrap-three,
    .service .service-usp-holder .inner {
        padding:1rem;
    }
    .btn {
        font-size: 1rem;
        padding:0.75rem 1.15rem;
    }
    .importent-section .stat-number {
        font-size: 3rem;
    }
    .importent-section .card-wrapper {
        padding: 0.5rem;
    }
    .carousel {
        padding: 0 1rem;
    }
    .carousel .carousel-cell {
        width: 100%;
    }
    .benefit-card-content-hover {
        padding: 1rem;
    }
    .benefit-card-content-wrap-title {
        display: block;
    }
    .benefit-card-content-wrap-title img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .flickity-prev-next-button {
        width: 25px;
        padding: 0;
    }
    .learning-content-widget-block {
        padding: 0.5rem;
    }
    .importent-section .stats {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 2rem;
    }
    .case-section .carousel .carousel-cell .card-wrapper,
    .new-posts-pages-section .card .card-wrapper {
        min-height: 100%;
    }
    .footer-holder, .footer-bottom {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    /* SUB PAGES */
    .hero {
        height: 250px;
        margin-bottom: 2rem;
    }
    .hero,
    .hero figure img {
        height: 250px;
    }
    .hero .hero-caption h1 {
        margin: 0;
    }
    .content-row {
        gap:1rem;
    }
}

/* Ordlista */
.ordlista-item {
  scroll-margin-top: 120px;
}
.tax-ordlista_letter .entry-content a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Scroll */
[id]{
  scroll-margin-top: 120px;
}

/* Logga in */
/* LOGIN CARD */
.login-card {
  border-radius: 1.25rem;
}
.login-icon {
    font-size: 3rem;
    color: var(--primary);
}

#checkout-form {
	margin-top: 3rem;
}
.ff-default .ff-el-form-control {
	border-color: var(--base) !important;
}
.ff-default .ff-el-form-control {
	padding: 1.2rem !important;
}


.course-picker__inner {
    max-width: 760px;
    margin: 0 auto;
}
.course-picker__intro {
    margin: 0 0 1.5rem;
    font-size: 2.125rem;
    line-height: 1.15;
}
.course-step + .course-step {
    margin-top: 0.5rem;
}
.course-step__trigger {
    width: 100%;
    border: 1px solid var(--base);
    border-radius: var(--border-radius-sm);
    background: var(--light);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    text-align: left;
    box-shadow: none;
    cursor: pointer;
}
.course-step__title {
    font-size: 1.125rem;
    line-height: 1.2;
    color: #474747;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.course-step__check {
    color: #18bb14;
    font-size: 1.5rem;
    display: none;
    flex: 0 0 auto;
}
.course-step__placeholder {
    font-size: 1rem;
    color: var(--base);
    white-space: nowrap;
}
.course-step__chevron {
    width: 12px;
    height: 14px;
    position: relative;
    flex: 0 0 auto;
}
.course-step__chevron::before,
.course-step__chevron::after {
    content: "";
    position: absolute;
    right: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.course-step__chevron::before {
    top: 0;
    border-bottom: 6px solid var(--base);
}
.course-step__chevron::after {
    bottom: 0;
    border-top: 6px solid var(--base);
}
.course-step__panel {
    display: none;
    margin-top: -8px;
    border: 2px solid var(--base);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.course-step.is-open .course-step__panel {
    display: block;
}
.course-option {
    width: 100%;
    border: 0;
    background: var(--base);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
}
.course-option + .course-option {
    border-top: 8px solid #ececec;
}
.course-option__date,
.course-option__location {
    font-size: 1rem;
    line-height: 1.2;
}
.course-step.is-complete .course-step__check {
    display: inline-block;
}
.course-step.is-complete .course-step__placeholder {
    display: none;
}
.course-step.is-disabled .course-step__trigger {
    opacity: 0.55;
    cursor: default;
}
.course-step.is-disabled .course-step__trigger,
.course-step.is-disabled .course-step__panel {
    pointer-events: none;
}
.course-picker__summary {
    margin-top: 2rem;
}
.course-picker__summary-title {
    margin: 0 0 0.75rem;
    color: #003f82;
    font-size: 2rem;
    line-height: 1.1;
}

.course-picker__summary-item {
    border-top: 1px solid var(--base);
    padding: 0.5rem 0;
}
.course-picker__summary-course,
.course-picker__summary-venue {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.35;
    color: #4b4b4b;
}
.course-picker__price {
    margin-top: 0.5rem;
    color: var(--base);
    font-size: 1.5rem;
    line-height: 1.2;
}
.course-picker__price strong {
    font-weight: 700;
}

.course-picker__price span {
    font-size: 0.8em;
}
.course-picker__cta {
    width: 100%;
    margin-top: 2rem;
    min-height: 88px;
    border: 0;
    border-radius: 10px;
    background: #d9d9d9;
    color: #f6f6f6;
    font-size: 1.75rem;
    font-weight: 700;
    cursor: not-allowed;
}
.course-picker__cta.is-ready {
    background: #003f82;
    cursor: pointer;
}
@media (max-width: 767px) {
  .course-picker__intro {
    font-size: 1.625rem;
  }
  .course-step__trigger {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 1rem 1rem;
  }
  .course-step__title,
  .course-step__placeholder,
  .course-option__date,
  .course-option__location,
  .course-picker__summary-date,
  .course-picker__summary-course,
  .course-picker__summary-venue {
    font-size: 0.95rem;
  }
  .course-picker__summary-title,
  .course-picker__price {
    font-size: 1.75rem;
  }
  .course-picker__cta {
    font-size: 1.35rem;
    min-height: 72px;
  }
}

.search-page {
    padding-top: 10rem;
}
