html, body {
  margin: 0;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}
html a, html button, body a, body button {
  -webkit-tap-highlight-color: transparent;
}

a, button {
  font-family: "sofia-pro";
}

body {
  background: #edf1f7;
  font-family: "sofia-pro";
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}
body input {
  font-family: "sofia-pro";
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "sofia-pro";
}

h2 {
  font-size: 25px;
}
@media (max-width: 700px), (max-height: 700px) {
  h2 {
    font-size: 20px;
  }
}
h2 span {
  font-size: 13px;
  margin-left: 20px;
  transform: translateY(-3px);
  position: relative;
  display: inline-block;
  font-weight: 400;
}
h2 span a:hover {
  text-decoration: underline;
}
@media (max-width: 700px), (max-height: 700px) {
  h2 span {
    margin-left: 0;
  }
}

a, button {
  text-decoration: none;
  transition: all 0.2s;
  outline: none;
  cursor: pointer;
}
a svg, button svg {
  transform: translateY(1px);
}

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-justify-content-end {
  justify-content: flex-end;
}

.w-20 {
  flex: 0 0 20%;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.mt {
  margin-top: 35px;
}

.mb {
  margin-bottom: 35px !important;
}
@media (max-width: 700px) {
  .mb {
    margin-bottom: 0 !important;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row > div {
  padding: 0 17.5px;
  box-sizing: border-box;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
@media (max-width: 1080px), (max-height: 700px) {
  .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
    margin-top: 15px;
  }
}

.col-8 {
  flex: 0 0 66.666666667%;
  max-width: 66.666666667%;
}
@media (max-width: 1080px), (max-height: 700px) {
  .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
  }
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-6 {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 1080px), (max-height: 700px) {
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
@media (max-width: 1080px), (max-height: 700px) {
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
    margin-top: 45px;
  }
  .col-4 .standard-block {
    border-radius: 8px;
    margin: 0;
  }
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 1080px), (max-height: 700px) {
  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
  }
}

.col-2 {
  flex: 0 0 20%;
  max-width: 20%;
}

.align-start {
  justify-content: flex-start;
}

.h-100 {
  height: 100%;
}

.form-group input {
  background: #F6F8FB;
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  border-radius: 8px;
  height: 48px;
  box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.08);
  display: block;
  transition: all 0.2s;
  padding: 0 17.5px;
  font-size: 14px;
  width: 250px;
  max-width: 100%;
}
.form-group input:focus {
  outline: none;
  background: #FFF;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.08);
}
.form-group label {
  margin-bottom: 5px;
  display: block;
}

.text-center {
  text-align: center;
}

.image-ul {
  padding: 0;
  margin: 0;
}
.image-ul li {
  list-style: none;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  max-width: 100%;
}
@media (max-width: 700px), (max-height: 700px) {
  .image-ul li {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
    border-bottom: 1px solid #f5f8fd;
    margin-left: -15px;
    margin-right: -15px;
  }
  .image-ul li:last-child {
    border-bottom: none;
  }
}
.image-ul li h4 {
  margin: 0;
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 700px), (max-height: 700px) {
  .image-ul li h4 {
    font-size: 16px !important;
    margin-top: 5px !important;
  }
}
.image-ul li img {
  margin-right: 20px;
}
@media (max-width: 700px), (max-height: 700px) {
  .image-ul li img {
    width: 80px;
    display: block;
  }
}
.image-ul li p {
  margin: 0;
  font-size: 14px;
  opacity: 0.5;
  max-width: 100% !important;
  width: 100% !important;
}
.image-ul li p a {
  text-decoration: underline;
  color: #000;
}
.image-ul li p a:hover {
  text-decoration: none;
}
@media (max-width: 700px), (max-height: 700px) {
  .image-ul li p {
    font-size: 14px !important;
  }
}

.pr {
  padding-right: 17.5px;
}

.ml {
  margin-left: 17.5px;
}

.pl {
  padding-left: 25px;
}
@media (max-width: 700px) {
  .pl {
    margin-bottom: 0;
  }
}
@media (max-width: 1080px) {
  .pl {
    padding-left: 0;
  }
}

.bg-white {
  background: #FFF !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-lg {
  margin-top: 40px;
}
@media (max-width: 1080px) {
  .mt-lg {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.pointer:hover {
  cursor: pointer;
}

.nowrap {
  white-space: nowrap;
}

.mobile-title {
  margin: 0;
  display: none;
  margin-bottom: 15px;
}
.mobile-title span {
  padding-right: 20px;
}
@media (max-width: 1080px) {
  .mobile-title {
    display: inline-block;
    font-size: 18px;
  }
}
.mobile-title:hover {
  color: #113496;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .mobile-title + h3 {
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: 15px;
  }
}

header {
  display: flex;
  background: #113496;
  color: #FFF;
  height: 63px;
  justify-content: center;
  align-items: center;
  padding: 0 35px;
  z-index: 1001;
}
@media (max-width: 1080px) {
  header {
    padding: 0 0;
  }
}
header .header-logo {
  color: #FFF;
  text-decoration: none;
  font-size: 20px;
  justify-content: flex-start;
  flex: 0 0 285px;
}
@media (max-width: 1080px), (max-height: 700px) {
  header .header-logo {
    justify-content: center;
    font-size: 18px;
    flex: 1;
  }
}
@media (max-width: 700px), (max-height: 700px) {
  header .header-logo:not(.not-hide) {
    display: none;
  }
}
header .header-logo sup {
  font-size: 7px;
}
@media (max-width: 1080px), (max-height: 700px) {
  header .navbar {
    position: fixed;
    background: #FFF;
    top: 63px;
    z-index: 1005;
    max-width: 320px;
    box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    box-sizing: border-box;
    transition: all 0.3s;
    transform: translateX(100%);
  }
  header .navbar.open {
    transform: translateX(0);
  }
  header .navbar a {
    padding: 8px 0;
    padding-left: 15px;
    min-height: 50px;
    color: #000;
    font-size: 14px;
    display: flex;
    width: 100%;
    flex: 1;
    height: 50px;
    align-items: center;
    border-bottom: 1px solid rgb(85.3936651584%, 88.6395173454%, 93.5082956259%);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  header .navbar a.active:before {
    content: "";
    height: 100%;
    position: absolute;
    background: #83C1E2;
    width: 5px;
    left: 0;
    top: 0;
    bottom: 0;
  }
  header .navbar a svg g {
    fill: #113496;
  }
}
header nav {
  margin-left: auto;
}
header nav a {
  color: #FFF;
  padding: 0 17.5px;
  position: relative;
}
header nav a:hover {
  color: #83C1E2;
}
header nav a.active:before {
  content: "";
  height: 2px;
  position: absolute;
  background: #83C1E2;
  width: 30px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
header nav a:hover svg path, header nav a:hover svg rect {
  fill: #83C1E2;
}
header .search-container {
  flex: 1;
  padding-right: 35px;
}
@media (max-width: 700px), (max-height: 700px) {
  header .search-container {
    padding: 0 10px;
    flex: 1;
    padding-left: 15px;
  }
  header .search-container input {
    font-size: 16px !important;
    -webkit-appearance: none;
  }
  header .search-container input::-webkit-input-placeholder {
    font-size: 14px;
  }
  header .search-container input::-moz-placeholder {
    font-size: 14px;
  }
  header .search-container input:-ms-input-placeholder {
    font-size: 14px;
  }
  header .search-container input:-moz-placeholder {
    font-size: 14px;
  }
}
header .search-container svg {
  margin-right: -30px;
  z-index: 10;
  position: relative;
  margin-bottom: -2px;
}
header .search-container form {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .search-container form button {
  position: absolute;
  right: 15px;
  padding: 5px 20px;
  font-size: 13px;
  height: 30px;
  border-radius: 8px;
  background: #FFF;
  color: #113496;
  box-shadow: 0 9px 8px -8px rgba(4, 14, 41, 0.44);
  opacity: 0;
}
header .search-container form button:hover {
  transform: translateY(-1px);
}
header .search-container form input:focus + button {
  opacity: 1;
}
header .search-container input {
  width: 100%;
  border: none;
  height: 43px;
  border-radius: 8px !important;
  background: #3a5fca;
  padding: 0 17.5px;
  font-size: 14px;
  transition: all 0.2s;
  padding-left: 45px;
  -webkit-appearance: none;
  color: #FFF;
}
header .search-container input::-webkit-input-placeholder {
  color: #FFF;
}
header .search-container input::-moz-placeholder {
  color: #FFF;
}
header .search-container input:-ms-input-placeholder {
  color: #FFF;
}
header .search-container input:-moz-placeholder {
  color: #FFF;
}
header .search-container input:focus {
  outline: none;
  background: rgb(16.6776617189%, 32.4775517684%, 77.2439069086%);
  color: #FFF;
}
header .search-container input:focus::-webkit-input-placeholder {
  color: rgb(69.0031701303%, 76.2357637666%, 96.4870259481%);
}
header .search-container input:focus::-moz-placeholder {
  color: rgb(69.0031701303%, 76.2357637666%, 96.4870259481%);
}
header .search-container input:focus:-ms-input-placeholder {
  color: rgb(69.0031701303%, 76.2357637666%, 96.4870259481%);
}
header .search-container input:focus:-moz-placeholder {
  color: rgb(69.0031701303%, 76.2357637666%, 96.4870259481%);
}
header .timespan {
  color: rgb(62.7450980392%, 73.9215686275%, 92.5490196078%);
  font-size: 13px;
  text-align: center;
  position: relative;
  bottom: 20px;
  left: 15px;
  right: 15px;
  margin-top: 30px;
}

.header-container {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.shadow {
  position: fixed;
  top: 0;
  height: 126px;
  right: 0;
  left: 0;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  z-index: 100;
}
.shadow.low {
  height: 63px;
}

.print-button {
  background: #113496;
  box-shadow: 0 9px 8px -8px rgba(41, 80, 192, 0.44);
  border-radius: 24px;
  width: 48px;
  height: 48px;
  border: none;
  position: fixed;
  bottom: 70px;
  right: 70px;
}
@media (max-width: 1080px) {
  .print-button {
    width: 40px;
    height: 40px;
    bottom: 22px;
    right: 15px;
  }
}

.popup-menu {
  border-radius: 8px;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  background: #FFF;
  position: fixed;
  top: 50px;
  z-index: 1000;
  right: 35px;
  overflow: hidden;
  display: none;
}
.popup-menu.active {
  display: block;
}
.popup-menu ul {
  padding: 0;
  margin: 0;
}
.popup-menu ul li {
  list-style: none;
}
.popup-menu a {
  color: #000;
  padding: 15px 20px;
  border-bottom: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  display: block;
  min-width: 180px;
}
.popup-menu a:hover {
  background: #f5f8fd;
}
.popup-menu li:last-child a {
  border: none;
}

.ui-autocomplete {
  overflow: hidden;
  margin-top: 25px;
  background: #FFF;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
}
.ui-autocomplete .ui-menu-item {
  display: block;
  position: relative;
  padding: 6px 15px;
}

.right-menu-btn,
.left-menu-btn,
.left-menu-btn-placeholder {
  display: none;
}
@media (max-width: 1080px), (max-height: 700px) {
  .right-menu-btn,
  .left-menu-btn,
  .left-menu-btn-placeholder {
    background: none;
    display: block;
    border: none;
    text-align: left;
    margin-left: 10px;
  }
}

.left-menu-btn-placeholder {
  width: 36px;
}

.right-menu-btn {
  text-align: right;
  margin-right: 10px;
  margin-left: 0;
}

.only-sm {
  display: none;
}
@media (max-width: 1080px) {
  .only-sm {
    display: block;
  }
}

header .navbar .search-container {
  padding: 15px;
  display: flex;
}
header .navbar .search-container input {
  margin: 0;
  box-sizing: border-box;
  background-color: #f5f8fd;
  color: #000;
  -webkit-appearance: none;
}
header .navbar .search-container input::-webkit-input-placeholder {
  color: rgb(15.8823529412%, 39.7058823529%, 79.4117647059%);
}
header .navbar .search-container input::-moz-placeholder {
  color: rgb(15.8823529412%, 39.7058823529%, 79.4117647059%);
}
header .navbar .search-container input:-ms-input-placeholder {
  color: rgb(15.8823529412%, 39.7058823529%, 79.4117647059%);
}
header .navbar .search-container input:-moz-placeholder {
  color: rgb(15.8823529412%, 39.7058823529%, 79.4117647059%);
}
header .navbar .search-container svg {
  position: absolute;
  left: 15px;
}
header .navbar .search-container svg path {
  fill: #113496;
}
header .navbar .search-container button {
  right: 8px;
  background: #264AB0;
  color: #FFF;
}

header .navbar ul {
  padding: 0;
  display: flex;
  flex: 1;
}
header .navbar ul li {
  flex: 1;
  align-items: center;
  list-style: none;
  width: 100%;
}
header .navbar ul li a {
  border: none;
}
header .navbar ul .sub-menu {
  display: none;
}
header .navbar ul button {
  display: none;
}

@media (max-width: 1080px) {
  header .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    max-height: 100%;
    overflow: auto;
  }
  header .navbar ul li {
    border-bottom: 1px solid rgb(85.3936651584%, 88.6395173454%, 93.5082956259%);
    flex-direction: column;
    width: 100%;
    align-items: baseline;
  }
  header .navbar ul li div {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
  }
  header .navbar ul li div a {
    border: none;
    display: block;
    color: #000;
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    min-height: 50px;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    height: 40px;
    padding: 5px 5px 5px 35px;
  }
  header .navbar ul li:hover {
    background: rgb(91.8954248366%, 95.9477124183%, 98.1045751634%);
  }
  header .navbar ul li.active {
    background: #113496 !important;
  }
  header .navbar ul li.active > a {
    background: #113496 !important;
    color: #FFF;
  }
  header .navbar ul li.active > a p {
    color: #FFF;
  }
  header .navbar ul li.active div > a {
    background: #113496 !important;
    color: #FFF;
  }
  header .navbar ul li.active div > a p {
    color: #FFF;
  }
  header .navbar ul li.active span {
    color: #FFF;
  }
  header .navbar ul li.active svg g {
    fill: #FFF;
  }
  header .navbar ul li button {
    border: none;
    width: 40px;
    padding-right: 20px;
    background: none;
    height: 40px;
    display: block;
  }
  header .navbar ul li button .minus {
    display: none;
  }
  header .navbar ul li button .plus {
    display: block;
  }
  header .navbar ul li.open {
    height: auto;
  }
  header .navbar ul li.open svg path {
    fill: #000;
  }
  header .navbar ul li.open div .minus {
    display: block;
  }
  header .navbar ul li.open div .plus {
    display: none;
  }
  header .navbar ul li.open ul {
    display: block;
  }
  header .navbar ul li a {
    color: #000;
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    min-height: 50px;
    flex-direction: row;
    align-items: center;
    height: 50px;
    box-sizing: border-box;
    padding: 5px 5px 5px 35px;
  }
  header .navbar ul li a svg {
    width: 50px;
    right: 35px;
  }
  header .navbar ul li a p {
    flex: 1;
  }
  header .navbar ul li a span {
    color: #113496;
    font-size: 11px;
    padding-right: 10px;
    font-weight: 700;
    flex: 0 0 30px;
  }
  header .navbar ul li ul {
    background: #FFF;
    padding-left: 0;
    display: none;
    width: 100%;
    border-top: 1px solid rgb(85.3936651584%, 88.6395173454%, 93.5082956259%);
    background: #F9FAFD;
  }
  header .navbar ul li ul li {
    min-height: 40px;
  }
  header .navbar ul li ul li a {
    min-height: 40px;
    font-size: 13px;
    border-color: rgb(93.7013574661%, 95.1010558069%, 97.2006033183%);
    padding-right: 10px;
  }
}
.sub-header {
  background: #FFF;
  height: 63px;
  display: flex;
  align-items: center;
  padding: 0 35px;
  font-size: 14px;
  z-index: 1000;
}
@media (max-width: 700px) {
  .sub-header {
    padding: 0 15px;
  }
}
.sub-header .center-part {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.sub-header .center-part ul li a {
  color: #000;
  padding: 11px 24px;
  border-radius: 14px;
}
.sub-header .center-part ul li a:hover {
  background: rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.sub-header .center-part ul li a.active {
  background: #113496;
  color: #FFF;
}
.sub-header .timespan {
  opacity: 0.26;
  font-size: 13px;
  margin-right: 17.5px;
}
@media (max-width: 700px) {
  .sub-header .center-part {
    white-space: nowrap;
    overflow: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sub-header .center-part .toggler {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sub-header .center-part {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (max-width: 1080px) {
  .sub-header .flex-justify-content-end {
    position: absolute;
    right: 35px;
  }
  .sub-header .flex-justify-content-end .timespan {
    display: none;
  }
}
@media (max-width: 700px), (max-height: 700px) {
  .sub-header .flex-justify-content-end {
    display: none;
  }
}
.sub-header .toggler {
  list-style: none;
  padding: 0;
}
.sub-header .toggler li {
  display: inline-block;
}
.sub-header .toggler li.toggle-state {
  border-radius: 14px;
  padding: 2px;
  position: relative;
  transition: al 0.2s;
  width: 119px;
  white-space: nowrap;
  transition: all 0.2s;
  overflow: hidden;
  margin-bottom: -17px;
}
@media (max-width: 700px) {
  .sub-header .toggler li.toggle-state {
    padding-left: 0;
    padding-right: 0;
  }
}
.sub-header .toggler li.toggle-state.active {
  width: 240px;
  background: rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
@media (max-width: 700px) {
  .sub-header .toggler li.toggle-state.active {
    width: auto;
  }
}
.sub-header .toggler li.toggle-state.active:before {
  content: "";
  top: 2px;
  bottom: 2px;
  left: 2px;
  position: absolute;
  width: calc(50% - 2px);
  background: #113496;
  border-radius: 14px;
  transition: all 0.2s;
}
.sub-header .toggler li.toggle-state:not(.active):hover > a {
  background: rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.sub-header .toggler li.toggle-state.second-active:before {
  left: 50%;
  right: 2px;
}
.sub-header .toggler li.toggle-state a {
  z-index: 10;
  position: relative;
  width: 70px;
  text-align: center;
}
.sub-header .toggler li.toggle-state a.active {
  color: #FFF;
  background: none;
}
.sub-header .toggler li.toggle-state a:hover {
  background: none;
}
.sub-header .toggler button {
  height: 42px;
  width: 42px;
  border: none;
  padding: 0;
  border-radius: 14px;
}
.sub-header .toggler button:hover {
  background: rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.sub-header .toggler button.active {
  background: #113496;
}
.sub-header .toggler button.active svg path {
  fill: #FFF;
}

.content-container {
  display: flex;
  flex: 1;
  padding: 35px;
  max-width: 1340px;
}
.content-container.wide {
  max-width: 100%;
}
.content-container .content {
  flex: 1;
  max-width: 100%;
}
@media (max-width: 700px) {
  .content-container {
    padding: 15px;
  }
}

.sidebar {
  flex: 0 0 280px;
  position: relative;
  z-index: 1;
  margin-left: -35px;
  padding-right: 35px;
}
@media (max-width: 1080px), (max-height: 700px) {
  .sidebar {
    position: fixed;
    top: 63px;
    bottom: 0;
    width: 100vw;
    max-width: 320px;
    box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
    z-index: 1002;
    background: #FFF;
    padding: 0;
    margin: 0;
    left: 0;
    right: 0;
    transition: all 0.3s;
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
}
.sidebar .sidebar-content {
  max-height: 100%;
  overflow: auto;
  position: fixed;
  width: 315px;
  bottom: 0;
  top: 126px;
  padding-bottom: 20px;
  transition: all 0.2s;
}
@media (max-width: 1080px), (max-height: 700px) {
  .sidebar .sidebar-content {
    width: 100%;
    top: 0;
  }
  .sidebar .sidebar-content ul {
    margin: 0;
  }
  .sidebar .sidebar-content ul li {
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sidebar .sidebar-content ul li a {
    padding-right: 15px !important;
    max-width: 100%;
    margin: 0 !important;
    padding-left: 15px !important;
  }
  .sidebar .sidebar-content ul li a p {
    margin: 0;
  }
  .sidebar .sidebar-content ul .sub-menu {
    background: #f9fafd;
    margin: 0;
    border-top: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  }
  .sidebar .sidebar-content ul .sub-menu li a {
    border-color: rgb(79.4117647059%, 85.5882352941%, 95.8823529412%);
    padding-right: 15px;
  }
}
.sidebar .sidebar-content.pushed {
  top: 260px;
}
.sidebar .sidebar-content ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.sidebar .sidebar-content ul li {
  display: flex;
  align-content: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  flex: 1;
  align-items: center;
  border-bottom: 1px solid rgb(85.3936651584%, 88.6395173454%, 93.5082956259%);
  flex-wrap: wrap;
}
.sidebar .sidebar-content ul li div {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.sidebar .sidebar-content ul li:hover {
  background: rgb(91.8954248366%, 95.9477124183%, 98.1045751634%);
}
.sidebar .sidebar-content ul li.active {
  background: #113496 !important;
}
.sidebar .sidebar-content ul li.active > a {
  background: #113496 !important;
  color: #FFF;
}
.sidebar .sidebar-content ul li.active > a p {
  color: #FFF;
}
.sidebar .sidebar-content ul li.active div > a {
  background: #113496 !important;
  color: #FFF;
}
.sidebar .sidebar-content ul li.active div > a p {
  color: #FFF;
}
.sidebar .sidebar-content ul li.active span {
  color: #FFF;
}
.sidebar .sidebar-content ul li.active svg g, .sidebar .sidebar-content ul li.active svg path {
  fill: #FFF !important;
}
.sidebar .sidebar-content ul li button {
  border: none;
  width: 40px;
  padding-right: 20px;
  background: none;
  height: 40px;
}
.sidebar .sidebar-content ul li button .minus {
  display: none;
}
.sidebar .sidebar-content ul li button .plus {
  display: block;
}
.sidebar .sidebar-content ul li.open {
  height: auto;
}
.sidebar .sidebar-content ul li.open svg path {
  fill: #000;
}
.sidebar .sidebar-content ul li.open div .minus {
  display: block;
}
.sidebar .sidebar-content ul li.open div .plus {
  display: none;
}
.sidebar .sidebar-content ul li.open ul {
  display: block;
}
.sidebar .sidebar-content ul li a {
  color: #000;
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  min-height: 40px;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding: 5px 5px 5px 35px;
}
.sidebar .sidebar-content ul li a svg {
  width: 50px;
  right: 35px;
}
.sidebar .sidebar-content ul li a p {
  flex: 1;
}
.sidebar .sidebar-content ul li a span {
  color: #113496;
  font-size: 11px;
  padding-right: 10px;
  font-weight: 700;
  flex: 0 0 50px;
  white-space: nowrap;
}
.sidebar .sidebar-content ul li ul {
  background: #FFF;
  padding-left: 0;
  display: none;
  width: 100%;
}
.sidebar .sidebar-content ul li ul li {
  min-height: 40px;
}
.sidebar .sidebar-content ul li ul li a {
  min-height: 40px;
  padding-left: 35px;
  font-size: 13px;
  border-color: rgb(93.7013574661%, 95.1010558069%, 97.2006033183%);
  padding-right: 10px;
}
.sidebar .sidebar-content .ad-container {
  width: 235px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .sidebar .sidebar-content .ad-container {
    width: 150px;
    margin-top: 15px;
  }
}
.sidebar .sidebar-content .ad-container img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 35px -19px rgba(22, 35, 91, 0.38);
  border: 4px solid #FFF;
}

.sidebar.open .sidebar-toggler {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 200%;
}

.navbar.open .navbar-menu-toggle {
  position: fixed;
  right: 100%;
  bottom: 0;
  top: 0;
  width: 100%;
}

table {
  background: #FFF;
  border-collapse: collapse;
  border-radius: 8px;
  font-size: 13px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "arial", sans-serif !important;
}
table:not(.filled-table) {
  width: 100%;
}
table.sofia-pro {
  font-family: "sofia-pro" !important;
  font-size: 14px !important;
}
table.sofia-pro td {
  font-family: "sofia-pro" !important;
  font-size: 14px !important;
}
table thead th {
  position: sticky;
  top: 126px;
  z-index: 400;
  background: #f5f8fd;
  font-size: 14px;
  font-family: "sofia-pro";
  text-align: left;
}
table thead th[align=right] {
  text-align: right;
}
@media (max-width: 1080px) {
  table thead th {
    position: relative;
    top: 0;
  }
}
table tr.divider {
  background: #F6F8FB;
}
table tr.divider td {
  height: auto;
  cursor: default;
  font-size: 14px;
}
@media (max-width: 700px) {
  table tr.divider td {
    font-size: 13px !important;
    padding-top: 2px !important;
  }
  table tr.divider td b {
    font-size: 13px !important;
    padding-top: 2px !important;
  }
}
table tr.divider td a {
  float: right;
  color: #000;
}
table tr.hightlighted {
  background-color: rgba(131, 193, 226, 0.2) !important;
}
table.filled-table {
  border-collapse: collapse;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  border-radius: 8px;
  font-size: 14px;
  vertical-align: middle;
  border: none;
  position: relative;
  font-size: 13px;
  table-layout: fixed;
  position: relative;
}
table.filled-table tr {
  vertical-align: top;
}
table.filled-table tr td {
  padding: 15px 25px;
}
table.filled-table tr td.text-center {
  padding: 5px 25px;
}
table.filled-table thead {
  overflow: hidden;
}
table.filled-table thead th {
  padding: 0 25px;
  position: sticky;
  top: 126px;
  background: #FFF;
}
@media (max-width: 1080px), (max-height: 700px) {
  table.filled-table thead th {
    position: relative;
    top: 0;
  }
}
table.filled-table td {
  padding: 0 25px;
  position: relative;
  transform: translateY(2px);
  font-size: 13px;
  border-right: none !important;
}
table.filled-table td:last-child {
  border-right: none !important;
}
table.filled-table td:first-child {
  border-left: none !important;
}
table.filled-table td.title-td {
  width: 210px;
  max-width: 210px;
  word-wrap: break-word;
}
table.filled-table td.title-td ~ td {
  width: 1px;
  white-space: nowrap;
}
table.filled-table th {
  border-top: none !important;
}
table.filled-table th:last-child {
  border-right: none !important;
}
table.filled-table th:first-child {
  border-left: none !important;
}
table.filled-table .low-rows td {
  height: 20px;
  padding-bottom: 3px;
  border-bottom: none;
  padding-top: 0;
}
@media (max-width: 1080px) and (max-height: 1100px) {
  table.filled-table .low-rows td {
    height: 16px;
    padding: 2px 10px !important;
  }
}
table.filled-table .low-rows tr.divider {
  border-top: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%) !important;
  border-bottom: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%) !important;
  background: #f5f8fd;
}
table.filled-table .low-rows tr.divider td {
  border-bottom: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%) !important;
  font-family: "sofia-pro";
}
table.filled-table .low-rows .space-top {
  vertical-align: bottom;
  height: 30px;
}
table.filled-table .low-rows .space-top td {
  padding-bottom: 7px;
}
table.filled-table .low-rows .space-top.bg-white {
  font-family: "arial", sans-serif !important;
}
table.filled-table tfoot {
  background: #f5f8fd;
  border-radius: 21px;
}
table.filled-table tfoot tr:last-child td {
  border-bottom: none !important;
}
table.filled-table tfoot td {
  padding: 0 25px;
}
table tr {
  transition: all 0.2s;
}
table tr.pointer:hover {
  background: rgb(97.8552036199%, 98.3318250377%, 99.0467571644%);
  cursor: pointer;
}
table tr.pointer:hover td {
  cursor: pointer;
}
@media (max-width: 700px) {
  table tr.pointer:hover {
    background-color: rgba(131, 193, 226, 0.2) !important;
  }
}
table tr.pointer.just-hover:hover {
  background: rgb(97.8552036199%, 98.3318250377%, 99.0467571644%);
  cursor: default;
}
table tr.pointer.just-hover:hover td {
  cursor: default;
}
@media (max-width: 700px) {
  table tr.pointer.just-hover:hover {
    background-color: rgba(131, 193, 226, 0.2) !important;
  }
}
table tr.wide td {
  height: 65px;
}
table tr.space-top {
  margin-top: -3px;
  vertical-align: baseline;
}
table tr.space-top td {
  padding-top: 15px;
  padding-bottom: 7px;
}
table tr.space-top.bg-white {
  font-family: "arial", sans-serif !important;
}
table tr.space-bottom {
  margin-top: -3px;
}
table tr.space-bottom td {
  padding-bottom: 15px !important;
}
table tr td {
  height: 24px;
  padding: 0 17.5px;
  border-bottom: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
table tr td .img-fluid {
  display: inline-block;
  display: block;
  margin: 5px auto;
  border-radius: 8px;
}
@media (max-width: 700px) {
  table tr td .img-fluid {
    max-width: 80px;
    max-height: 50px;
  }
}
table tr td .img-fluid.small {
  max-width: 100px;
  max-height: 60px;
}
@media (max-width: 700px) {
  table tr td .img-fluid.small {
    max-width: 80px;
    max-height: 50px;
  }
}
table tr td.fit {
  width: 1px;
  white-space: nowrap;
}
table tr td span {
  opacity: 0.6;
  font-size: 13px;
  color: #000000;
}
table tr td:last-child {
  border-right: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
table tr td:first-child {
  border-left: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
table tfoot {
  background: #f5f8fd;
}
table tfoot td:last-child {
  border-radius: 0 0 8px 0;
}
table tfoot td:first-child {
  border-radius: 0 0 0 8px;
}
table thead {
  background: #f5f8fd;
}
table thead th {
  height: 24px;
  padding: 0 17.5px;
  border-top: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  font-size: 10px;
  font-size: 13px;
  font-family: "sofia-pro";
  box-shadow: inset #E5EAF2 0 -1px;
}
table thead th:last-child {
  border-radius: 0 8px 0 0;
  border-right: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
table thead th:first-child {
  border-radius: 8px 0 0 0;
  border-left: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
table thead.sticky th {
  border-radius: 0 !important;
  box-shadow: inset #E5EAF2 0 1px, inset #E5EAF2 0 -1px, 0 10px 45px -19px rgba(22, 35, 91, 0.38);
}
table thead.bg-white th {
  border-radius: 8px 8px 0 0;
}
table table {
  padding: 0;
  margin-top: -2px;
}
table table thead {
  border-top: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%) !important;
}
table table thead th {
  border-radius: 0 !important;
}

.responsive-table-container.simple {
  border: none !important;
  font-family: "sofia-pro" !important;
}
.responsive-table-container.simple table {
  width: auto;
  padding: 0;
  border: none;
  font-size: 14px;
}
.responsive-table-container.simple table td, .responsive-table-container.simple table tr {
  border: none;
  padding-left: 0;
  font-family: "sofia-pro" !important;
  font-size: 14px;
  padding-right: 50px;
}
.responsive-table-container.simple table td span, .responsive-table-container.simple table tr span {
  opacity: 1;
  font-size: 14px;
}
.responsive-table-container.simple table td span.Bold, .responsive-table-container.simple table td span.bold, .responsive-table-container.simple table tr span.Bold, .responsive-table-container.simple table tr span.bold {
  font-weight: 700;
}

.p-0 {
  padding: 0 !important;
}

.responsive-table-container {
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  border-radius: 8px;
}
@media (max-width: 1320px) {
  .responsive-table-container {
    overflow: auto;
  }
  .responsive-table-container thead th {
    top: 0;
  }
}
.responsive-table-container.table-outside {
  border-radius: 8px 0 0 8px;
  margin-right: -35px;
  border: none;
  border-left: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
@media (max-width: 700px) {
  .responsive-table-container.table-outside {
    margin-right: -15px;
  }
}
.responsive-table-container.table-outside table {
  padding-right: 35px;
}
@media (max-width: 700px) {
  .responsive-table-container.table-outside table {
    padding-right: 15px;
  }
}
.responsive-table-container table td, .responsive-table-container table th {
  white-space: nowrap;
}
.responsive-table-container table td, .responsive-table-container table th {
  white-space: nowrap;
  border-left: 0 !important;
}
.responsive-table-container:not(.table-outside) table {
  margin-right: -1px;
}
.responsive-table-container:not(.table-outside) table td, .responsive-table-container:not(.table-outside) table th {
  white-space: nowrap;
  border-right: 0 !important;
  border-left: 0 !important;
}
.responsive-table-container:not(.table-outside) table tfoot td {
  border-bottom: 0;
}
.responsive-table-container:not(.table-outside) table th {
  border-top: 0;
}

.table-summary {
  padding: 0 17.5px 0;
  font-size: 14px;
  transition: all 0.2s;
}
.table-summary ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.table-summary ul li {
  display: flex;
  padding-bottom: 1px;
  align-items: center;
}
.table-summary ul li:last-child {
  padding-top: 17.5px;
}
.table-summary ul li h4 {
  margin: 0;
  font-size: 20px;
  flex-basis: 30%;
  text-align: right;
}
.table-summary ul li span {
  display: block;
  text-align: right;
}
.table-summary ul li span:last-child {
  text-align: right;
  flex-basis: 30%;
  flex-grow: 0;
}
.table-summary ul li span:first-child {
  flex: 1;
}
@media (max-width: 700px) {
  .table-summary {
    position: sticky;
    bottom: 15px;
    border-radius: 21px;
    background: #113496;
    color: #FFF;
    z-index: 500;
    padding: 15px 0;
    padding-bottom: 0;
    margin-top: 15px;
    box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
    padding-top: 0;
    margin-right: 50px;
  }
  .table-summary ul {
    margin: 0;
  }
  .table-summary ul li {
    padding: 0 15px;
    opacity: 0.5;
    margin-bottom: 5px;
    display: none;
  }
  .table-summary ul li:last-child {
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding: 15px 15px 20px 15px;
    margin-bottom: 0;
    display: flex;
    margin-top: 0;
  }
  .table-summary ul li span {
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
  }
  .table-summary ul li h4 {
    font-size: 16px;
    flex-basis: 40%;
  }
  .table-summary.open {
    padding-top: 15px;
  }
  .table-summary.open ul li {
    display: flex;
  }
  .table-summary.open ul li.last-child {
    margin-top: 10px;
  }
}

.content-container {
  max-width: 100%;
}

.filled-table-responsive .byggdelsbild-hidden tr td:first-child.fit {
  display: none !important;
}
@media (max-width: 1080px) and (max-height: 1080px) {
  .filled-table-responsive {
    padding: 15px;
    padding-top: 0;
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    margin-right: -15px;
    margin-left: -15px;
    padding-bottom: 20px;
    min-width: 100%;
  }
  .filled-table-responsive table.filled-table .divider {
    font-size: 14px;
  }
  .filled-table-responsive table.filled-table {
    min-width: 100% !important;
  }
  .filled-table-responsive table.filled-table tr td, .filled-table-responsive table.filled-table tr th {
    padding: 6px 10px;
    white-space: nowrap;
  }
  .filled-table-responsive table.filled-table tr th {
    align-items: center;
    padding-bottom: 3px;
  }
  .filled-table-responsive .filled-table-responsive-content {
    padding: 15px;
    padding-left: 0;
    padding-right: 0;
    min-width: 100%;
  }
}
@media (max-width: 1080px) and (max-height: 1080px) and (max-width: 1080px) {
  .filled-table-responsive .filled-table-responsive-content {
    padding-top: 0;
  }
}
@media (max-width: 1080px) and (max-height: 1080px) {
  .filled-table-responsive .filled-table-responsive-content.padding-save {
    padding-right: 15px;
    min-width: auto;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile {
    padding-right: 0;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table {
    width: 100%;
    border-radius: 8px;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table thead,
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tfoot {
    display: none;
    width: 100%;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tbody {
    display: block;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table .divider {
    display: block;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table .divider td {
    width: 100%;
    display: block;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:last-child td {
    border: none;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:first-child {
    border-radius: 8px 8px 0 0;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) {
    display: block;
    padding-top: 10px;
    width: 100%;
    border-bottom: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
    padding-left: 15px;
    box-sizing: border-box;
    margin: 0 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td {
    display: none;
    width: 100%;
    text-align: left !important;
    max-width: 100%;
    border: none;
    padding: 0 !important;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile {
    display: block;
    position: relative;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile.bubble {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    right: 0;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile.bubble svg {
    right: 10px;
    position: absolute;
    bottom: 4px;
    width: 16px;
    height: auto;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile.half {
    width: auto;
    display: inline-block;
  }
}
@media (max-width: 1080px) and (max-height: 1080px) and (max-width: 1080px), (max-width: 1080px) and (max-height: 1080px) and (max-height: 500px) {
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile.half {
    color: #a1a1a1;
    opacity: 1;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile.half span {
    color: #a1a1a1;
    opacity: 1;
  }
}
@media (max-width: 1080px) and (max-height: 1080px) {
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile b {
    opacity: 0.3;
    font-size: 10px;
    margin-bottom: -4px;
    object-position: relative;
    display: block;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.show-mobile.title-td {
    margin-top: -10px;
    position: relative;
    padding-right: 10px;
    max-width: 95%;
    white-space: break-spaces;
    height: auto;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.title-td {
    padding-top: 0;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td:nth-child(2) {
    padding-bottom: 10px;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.has-img {
    display: block;
    width: 120px;
    float: left;
    height: 60px;
    margin-right: 10px;
  }
  .filled-table-responsive .filled-table-responsive-content.simple-mobile table tr:not(.divider) td.has-img img {
    margin: 0;
    margin-left: 0;
    height: auto;
    right: 0;
    float: right;
    max-height: 80%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    max-width: 100%;
  }
}
@media (max-width: 1080px) and (max-height: 700px), (max-width: 700px) {
  .filled-table-responsive tr td.has-img {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hide-tablet {
    display: none;
  }
}

@media (min-width: 1080px) {
  .hide-desktop {
    display: none !important;
  }
}

.standard-block {
  background: #FFF;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  border-radius: 21px;
  z-index: 10;
  position: relative;
}
@media (min-width: 1360px) {
  .standard-block.not-100 {
    width: 1040px;
  }
}
.standard-block {
  max-width: 100%;
}
@media (max-width: 700px) and (max-height: 1080px) {
  .standard-block {
    margin: -15px;
    width: auto !important;
    border-radius: 0;
    max-width: none;
  }
}
.standard-block .header-price {
  padding-left: 35px;
  margin-top: -23px;
  font-size: 16px;
}
@media (max-width: 1080px) {
  .standard-block .header-price {
    display: none;
  }
}
.standard-block .standard-block-header {
  padding: 0 35px;
  display: flex;
  align-items: center;
  min-height: 60px;
}
@media (max-width: 700px) {
  .standard-block .standard-block-header {
    padding: 0 15px;
  }
}
@media (max-width: 1080px) {
  .standard-block .standard-block-header {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    height: auto;
  }
}
.standard-block .standard-block-header h2 {
  flex: 1;
  align-items: flex-end;
  display: flex;
  font-size: 25px;
  order: 1;
}
@media (max-width: 1080px) {
  .standard-block .standard-block-header h2 {
    font-size: 25px;
    flex-direction: row;
    padding-top: 0;
    order: 2;
    padding-right: 70px;
    margin-top: 35px;
    line-height: 1.2em;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .standard-block .standard-block-header h2 {
    font-size: 20px;
  }
}
.standard-block .standard-block-header h2 small {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 400;
  transform: translateY(-8px);
  margin-left: 10px;
}
.standard-block .standard-block-header h2 .to-notes-button {
  border: none;
  background: none;
  position: relative;
  margin-left: 10px;
  order: 4;
  align-self: center;
}
@media (max-width: 1080px) {
  .standard-block .standard-block-header h2 .to-notes-button svg {
    width: 16px;
    height: auto;
  }
}
.standard-block .standard-block-header h2 .to-notes-button svg path {
  fill: rgb(75.5656108597%, 80.9954751131%, 89.1402714932%);
}
.standard-block .standard-block-header h2 .to-notes-button:hover svg path, .standard-block .standard-block-header h2 .to-notes-button.active svg path {
  fill: #113496;
}
.standard-block .standard-block-header .part-no {
  align-items: flex-end;
  text-align: right;
  font-size: 20px;
  transform: translate(0, -3px);
  font-weight: 700;
  order: 3;
}
@media (max-width: 1080px) {
  .standard-block .standard-block-header .part-no {
    font-size: 16px;
    opacity: 0.4;
    font-size: 14px;
    margin-top: 20px;
    order: 1;
    position: absolute;
  }
}
.standard-block .standard-block-header .standard-block-navigation {
  display: flex;
  margin-left: 17.5px;
  order: 4;
}
@media (max-width: 1080px) {
  .standard-block .standard-block-header .standard-block-navigation {
    margin-left: 10px;
    margin-top: 5px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    right: 15px;
  }
}
.standard-block .standard-block-header .standard-block-navigation button {
  margin: 0;
  display: block;
  border: none;
  background: #FFFFFF;
  box-shadow: 0 4px 18px -10px rgba(22, 35, 91, 0.72);
  border-radius: 20px;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  margin-top: -2px;
}
.standard-block .standard-block-header .standard-block-navigation button:first-child svg {
  transform: translate(-2px, 2px);
  height: 15px;
}
.standard-block .standard-block-header .standard-block-navigation button:last-child svg {
  transform: translate(1px, 2px);
  height: 15px;
}
@media (max-width: 700px) {
  .standard-block .standard-block-header .standard-block-navigation button {
    width: 30px;
    height: 30px;
    margin: 0 2px;
  }
  .standard-block .standard-block-header .standard-block-navigation button svg {
    height: 10px;
    width: 8px;
  }
}
.standard-block .standard-block-header + .standard-block-content {
  padding-top: 0;
}
.standard-block .standard-block-content {
  padding: 35px;
  padding-top: 10px !important;
}
@media (max-width: 700px) {
  .standard-block .standard-block-content {
    padding: 15px;
  }
}
.standard-block .standard-block-content.account-content {
  margin-top: -20px;
}
@media (max-width: 700px) {
  .standard-block .standard-block-content.account-content .books {
    margin-right: -20px;
    padding-right: 15px;
  }
  .standard-block .standard-block-content.account-content div.mt:last-child {
    margin-top: 30px;
  }
}
.standard-block .standard-block-content article {
  width: 610px;
  max-width: 100%;
}
.standard-block .standard-block-content article .space-bottom {
  margin-bottom: 15px;
}
.standard-block .standard-block-content article img {
  border-radius: 14px;
  max-width: 100%;
}
.standard-block .standard-block-content article p {
  width: 780px;
  max-width: 100%;
  line-height: 1.4em;
  margin-top: 0;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 700px) {
  .standard-block .standard-block-content article p {
    font-size: 14px;
  }
}
.standard-block .standard-block-content article h4 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 2px;
}
@media (max-width: 700px) {
  .standard-block .standard-block-content article h4 {
    font-size: 16px;
  }
}
.standard-block .standard-block-content article h4:first-child {
  margin-top: 0;
}
.standard-block .standard-block-content article figure {
  width: 780px;
  max-width: 100%;
  margin: 0;
  margin-bottom: 35px;
}
.standard-block .standard-block-content article figure img {
  width: 100%;
  border-radius: 14px;
}
.standard-block .standard-block-content article .byggdel-html-content,
.standard-block .standard-block-content article .forutsattningar {
  font-family: "sofia-pro";
}
.standard-block .standard-block-content article .byggdel-html-content img,
.standard-block .standard-block-content article .forutsattningar img {
  border-radius: 14px;
  max-width: 100%;
}
.standard-block .standard-block-content article .byggdel-html-content p,
.standard-block .standard-block-content article .forutsattningar p {
  margin-bottom: 0;
}
.standard-block .standard-block-content article .byggdel-html-content h3, .standard-block .standard-block-content article .byggdel-html-content h2,
.standard-block .standard-block-content article .forutsattningar h3,
.standard-block .standard-block-content article .forutsattningar h2 {
  margin-top: 20px;
  margin-bottom: 5px;
}
.standard-block .standard-block-content article .byggdel-html-content h2,
.standard-block .standard-block-content article .forutsattningar h2 {
  margin-bottom: 20px;
}
.standard-block .standard-block-content article .byggdel-html-content .simple,
.standard-block .standard-block-content article .forutsattningar .simple {
  max-width: 100%;
  overflow: auto;
}
.standard-block .product-image-contianer {
  padding: 0 17.5px;
  margin: 0;
  margin-top: 25px;
  max-width: 300px;
}
@media (max-width: 1080px) {
  .standard-block .product-image-contianer {
    margin-bottom: 15px;
    padding: 0;
    margin: 20px auto;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .standard-block .product-image-contianer {
    margin-bottom: 15px;
    padding: 0;
    margin: 20px auto;
    max-width: 300px;
  }
}
.standard-block .product-image-contianer img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  max-height: 300px;
}

.box {
  border-radius: 8px;
  padding: 17.5px;
  font-size: 14px;
}
.box p {
  margin: 0;
}
.box.border {
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.box.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.box.info-box ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 13px;
}
.box.info-box ul li:before {
  content: "";
  width: 10px;
  height: 1px;
  display: block;
  position: absolute;
  left: -18px;
  background: #E4EAF3;
  top: 10px;
}

.note-container {
  border-top: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.note-container textarea {
  background: #F6F8FB;
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  width: 100%;
  outline: none;
  padding: 17.5px;
  box-sizing: border-box;
  transition: all 0.2s;
  font-family: "sofia-pro";
}
@media (max-width: 1080px) {
  .note-container textarea {
    font-size: 16px;
  }
}
.note-container textarea:focus {
  transition: all 0.2s;
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  box-shadow: 0 10px 35px -19px rgba(22, 35, 91, 0.38);
  background: #FFF;
}

.login-container {
  background: #113496;
  color: #FFF;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .login-container {
    max-width: 100vw;
    justify-content: normal;
  }
  .login-container h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-height: 800px) and (min-width: 800px) {
  .login-container h1 {
    margin-bottom: 0;
  }
}
.login-container sup {
  font-size: 7px;
}
.login-container.bg {
  background-image: url(http://s3.eu-central-1.amazonaws.com/wikellssite/wp-content/uploads/2018/06/bakgrund_betong-1.jpg);
  background-position: center;
  background-size: cover;
  color: #113496;
  height: 100%;
  min-height: 100vh;
}
.login-container p {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  line-height: 1.5em;
  padding: 0 20px;
}
.login-container .login-box {
  border-radius: 21px;
  color: #000;
  background: #FFF;
  padding: 35px;
  text-align: center;
  margin-top: 35px;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .login-container .login-box {
    border-radius: 14px;
    max-width: 90%;
    margin-top: 0;
  }
}
.login-container .login-box h2 {
  padding-bottom: 35px;
}
@media (max-width: 700px) {
  .login-container .login-box h2 {
    padding-bottom: 0;
    margin-top: 0;
  }
}
@media (max-height: 800px), (min-width: 800px) {
  .login-container .login-box h2 {
    padding-bottom: 0;
    margin-top: 0;
  }
}
.login-container .login-box form {
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}
.login-container .login-box form > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .login-container .login-box form > div {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-height: 800px) and (min-width: 800px) {
  .login-container .login-box form > div {
    padding-bottom: 30px;
  }
}
.login-container .login-box input[type=email],
.login-container .login-box input[type=password],
.login-container .login-box input.password-input {
  box-sizing: border-box;
  background: #F6F8FB;
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  display: block;
  width: 350px;
  height: 55px;
  padding: 0 17.5px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 600;
  outline: none;
  max-width: 100%;
}
@media (max-width: 700px) {
  .login-container .login-box input[type=email],
  .login-container .login-box input[type=password],
  .login-container .login-box input.password-input {
    height: 45px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
  }
}
@media (max-height: 800px) and (min-width: 800px) {
  .login-container .login-box input[type=email],
  .login-container .login-box input[type=password],
  .login-container .login-box input.password-input {
    height: 45px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
  }
}
.login-container .login-box input[type=email]:focus,
.login-container .login-box input[type=password]:focus,
.login-container .login-box input.password-input:focus {
  background: #FFF;
}
.login-container .login-box input[type=email]::-webkit-input-placeholder,
.login-container .login-box input[type=password]::-webkit-input-placeholder,
.login-container .login-box input.password-input::-webkit-input-placeholder {
  color: #9A9C9F;
}
.login-container .login-box input[type=email]::-moz-placeholder,
.login-container .login-box input[type=password]::-moz-placeholder,
.login-container .login-box input.password-input::-moz-placeholder {
  color: #9A9C9F;
}
.login-container .login-box input[type=email]:-ms-input-placeholder,
.login-container .login-box input[type=password]:-ms-input-placeholder,
.login-container .login-box input.password-input:-ms-input-placeholder {
  color: #9A9C9F;
}
.login-container .login-box input[type=email]:-moz-placeholder,
.login-container .login-box input[type=password]:-moz-placeholder,
.login-container .login-box input.password-input:-moz-placeholder {
  color: #9A9C9F;
}
.login-container .login-box button {
  border-radius: 14px;
  border: none;
  background: #000;
  color: #FFF;
  height: 50px;
  font-size: 17px;
  font-weight: 500;
  width: 50%;
  box-sizing: border-box;
  order: 2;
}
@media (max-width: 700px) {
  .login-container .login-box button {
    width: 100%;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
@media (max-height: 800px) and (min-width: 800px) {
  .login-container .login-box button {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 15px;
  }
}
.login-container .login-box button:hover {
  background: rgb(15%, 15%, 15%);
}
.login-container .login-box .checkbox-container {
  width: 50%;
  display: block;
  box-sizing: border-box;
  order: 1;
  align-items: baseline;
  display: flex;
  font-size: 14px;
}
@media (max-width: 700px) {
  .login-container .login-box .checkbox-container {
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
@media (max-height: 800px) and (min-width: 800px) {
  .login-container .login-box .checkbox-container {
    margin-top: -15px;
  }
}
.login-container .login-box .checkbox-container input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.login-container .login-box .checkbox-container input:checked ~ label::before {
  background: #113496;
  border: 1px solid transparent;
}
.login-container .login-box .checkbox-container input:checked ~ label::after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iOXB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDkgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNjMuMSAoOTI0NTIpIC0gaHR0cHM6Ly9za2V0Y2guY29tIC0tPgogICAgPHRpdGxlPlBhdGggNDwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQcm90b3R5cGUtIzIiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CiAgICAgICAgPGcgaWQ9IlAuLUxvZ2luIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNjExLjAwMDAwMCwgLTYxMi4wMDAwMDApIiBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgICAgICAgIDxwb2x5bGluZSBpZD0iUGF0aC00IiBwb2ludHM9IjYxMiA2MTYuNzAxMTcyIDYxNC4zOTE2MDIgNjE4LjA5Mjc3MyA2MTguNDg0Mzc1IDYxMyI+PC9wb2x5bGluZT4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==");
}
.login-container .login-box .checkbox-container label {
  position: relative;
  padding-left: 25px;
}
.login-container .login-box .checkbox-container label:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #F6F8FB;
  border-radius: 5px;
  border: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.login-container .login-box .checkbox-container label:after {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  border-radius: 5px;
  border: 1px solid transparent;
}
.login-container .login-box span, .login-container .login-box a {
  font-size: 13px;
  color: #5E5E5E;
}
.login-container .login-box span {
  display: block;
  margin-bottom: 10px;
}
.login-container .login-box a {
  text-decoration: underline;
}
.login-container .login-box a:hover {
  text-decoration: none;
  color: #113496;
}

.login-container.bg .toggle-background {
  color: #113496;
}

.toggle-background {
  position: absolute;
  color: #FFF;
  right: 20px;
  bottom: 20px;
  font-size: 13px;
}

.logo {
  width: 100px;
  height: 64px;
  background-image: url(../../assets/logo.png);
  background-size: 70px auto;
  margin-top: 10px;
  background-repeat: no-repeat;
  display: block;
  top: 35px;
  left: 35px;
  position: absolute;
  padding: 0;
  z-index: 901;
  text-indent: -999999px;
}
@media (max-width: 700px) {
  .logo {
    display: none;
  }
}

.show-pw {
  position: absolute;
  margin-top: -58px;
  right: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.show-pw:hover {
  opacity: 0.6;
}
@media (max-width: 700px) {
  .show-pw {
    margin-top: -52px;
  }
}
@media (max-height: 800px) and (min-width: 800px) {
  .show-pw {
    margin-top: -52px;
  }
}

.online-bok {
  font-size: 18px;
}
@media (max-width: 700px), (max-height: 700px) {
  .online-bok {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: -15px;
  }
  .online-bok svg {
    width: 20px;
    height: auto;
    margin-right: 5px !important;
    margin-bottom: -8px !important;
  }
}
.online-bok svg {
  margin-bottom: -10px;
  margin-right: 10px;
}

form button {
  border-radius: 14px;
  border: none;
  background: #000;
  color: #FFF;
  height: 50px;
  font-size: 17px;
  font-weight: 500;
  padding: 0 35px;
  box-sizing: border-box;
  order: 2;
}
form button:hover {
  background: rgb(15%, 15%, 15%);
}

a {
  color: #113496;
  font-size: 14px;
  display: inline-block;
}

.books {
  display: flex;
  white-space: nowrap;
  overflow: auto;
  margin-right: -35px;
  padding-bottom: 35px;
  padding-top: 5px;
}
@media (max-width: 1080px) {
  .books {
    margin-left: -35px;
    padding-left: 15px;
  }
}
@media (max-width: 700px) {
  .books {
    white-space: nowrap;
    overflow: auto;
    margin-right: -15px;
    margin-left: -15px;
    padding-left: 15px;
  }
}
.books .book .book-content {
  background-color: #83C1E2;
  border-radius: 14px;
  width: 200px;
  height: 250px;
  display: block;
  box-shadow: 0 7px 31px -13px rgba(22, 35, 91, 0.38);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #113496;
  font-weight: 700;
  margin-right: 17.5px;
  transition: all 0.2s;
  background-image: url("/images/bookgrid.png");
  background-size: 150px auto;
}
@media (max-width: 700px) {
  .books .book .book-content {
    width: 170px;
    height: 220px;
  }
}
.books .book .book-content p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  margin-top: 0;
}
.books .book .book-content b {
  margin-bottom: 20px;
}
.books .book .book-content sup {
  font-size: 6px;
}
.books .book .book-content figure {
  margin: 0;
  height: 120px;
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .books .book .book-content figure {
    height: 80px;
  }
  .books .book .book-content figure svg {
    height: 70px;
    width: auto;
    max-width: 70px;
  }
}
@media (min-width: 1280px) {
  .books .book:not(.inactive) .book-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 45px -14px rgba(22, 35, 91, 0.28);
  }
}
@media (hover: none), (pointer: coarse) {
  .books .book:not(.inactive) {
    transform: none !important;
    box-shadow: 0 7px 31px -13px rgba(22, 35, 91, 0.38);
  }
}
.books .book button {
  border: none;
  display: block;
  border-radius: 14px;
  background-color: #113496;
  padding: 14px 25px;
  font-size: 16px;
  color: #FFF;
  width: 80%;
  margin: 0 auto;
  margin-top: -58px;
  z-index: 100;
  position: relative;
  margin-left: 13px;
  font-family: "sofia-pro";
}
.books .book button:hover {
  background: rgb(4.630738523%, 14.1646119526%, 40.8594575555%);
}
.books .book svg {
  margin-bottom: 20px;
}
.books .book span {
  font-weight: 400;
  font-size: 14px;
  margin-top: 5px;
}
.books .book.rot .book-content {
  background-color: #CA8A51;
  background-position: left 40px;
}
.books .book.el .book-content {
  background-color: #ED7F82;
  background-position: right 80px;
}
.books .book.vs .book-content {
  background-color: #A3D4C4;
  background-position: top 80px;
}
.books .book.inactive .book-content {
  opacity: 0.4;
}

.faq {
  margin-left: -35px;
  margin-right: -35px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .faq {
    margin-right: -15px;
  }
}
.faq > li {
  border-bottom: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
  padding: 0 35px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 700px) {
  .faq > li {
    font-size: 14px;
    min-height: 50px;
  }
}
.faq > li:first-child {
  border-top: 1px solid rgb(89.5475113122%, 91.8702865762%, 95.3544494721%);
}
.faq > li div {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 700px) {
  .faq > li div {
    height: 50px;
  }
}
.faq > li ul {
  list-style: none;
  padding: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
}
.faq > li ul li {
  color: #757575;
}
.faq > li ul li div {
  margin-left: 20px;
  font-size: 14px;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .faq > li ul li div {
    margin-left: 0;
    height: auto;
    padding-top: 20px;
  }
}
.faq > li:hover {
  background: #F6F8FB;
}
.faq > li.active {
  background: #F6F8FB;
}
.faq > li.active ul {
  display: flex;
}
.faq > li.active ul li {
  margin-top: -17.5px;
}

@media (max-width: 1080px) {
  .faq-title {
    font-size: 16px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal.open {
  display: flex;
}
.modal .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 52, 150, 0.8);
}
.modal .modal-container {
  background: #FFF;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  border-radius: 21px;
  width: 680px;
  max-width: 90%;
  max-height: 90%;
  box-sizing: border-box;
  z-index: 1001;
  position: relative;
  padding: 70px;
  padding-bottom: 0;
  overflow: auto;
}
@media (max-width: 700px) {
  .modal .modal-container {
    padding: 15px;
  }
}
.modal .modal-container h2 {
  text-align: center;
  font-size: 25px;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.modal .modal-container .title {
  margin-bottom: 5px;
}
.modal .modal-container h4 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.modal .modal-container article {
  font-size: 14px;
}
@media (max-width: 700px) {
  .modal .modal-container article {
    font-size: 14px;
  }
}
.modal .modal-container article p {
  margin-top: 0;
  line-height: 1.4em;
}
.modal .modal-container .modal-footer {
  display: flex;
  justify-content: center;
  padding-top: 35px;
  position: sticky;
  bottom: 0;
  background: #000;
  padding-bottom: 35px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 34%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 700px) {
  .modal .modal-container .modal-footer {
    padding-bottom: 15px;
    bottom: -15px;
  }
}
.modal .modal-container .modal-footer button {
  border-radius: 14px;
  border: none;
  background: #000;
  color: #FFF;
  height: 50px;
  font-size: 17px;
  font-weight: 500;
  padding: 0 35px;
  box-sizing: border-box;
  order: 2;
  margin: auto;
}
@media (max-width: 700px) {
  .modal .modal-container .modal-footer button {
    height: 45px;
    font-size: 16px;
  }
}
.modal .modal-container .modal-footer button:hover {
  background: rgb(15%, 15%, 15%);
}

.converter {
  background: #2750C5;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 0;
  transition: all 0.2s;
}
@media (hover: none), (pointer: coarse) {
  .converter {
    overflow: scroll;
  }
}
.converter.open {
  height: 130px;
}
@media (max-width: 1080px) {
  .converter.open {
    height: 80px;
  }
}
.converter .converter-box {
  top: 0px;
  left: 0px;
  height: 100%;
  width: auto;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  padding: 0 30px;
  padding-right: 120px;
  display: flex;
  align-items: center;
}
@media (max-width: 1080px) {
  .converter .converter-box {
    padding: 0;
  }
}
.converter .converter-box .conv {
  text-align: center;
  color: #FFF;
  height: 82px;
  width: 58px;
  flex: 1 1 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5px;
  border-radius: 12px;
  transition: all 0.2s;
}
@media (max-width: 1080px) {
  .converter .converter-box .conv {
    width: 48px;
    height: 64px;
  }
}
.converter .converter-box .conv:hover {
  color: #113496;
  background: #FFF;
  background: #FFFFFF;
  box-shadow: 0 24px 45px -19px #000;
  transform: translateY(-2px);
}
.converter .converter-box .conv p {
  margin: 0;
}
.converter .converter-box .conv span {
  text-transform: uppercase;
  font-size: 8px;
  margin-top: -2px;
  display: block;
  position: relative;
  opacity: 0.4;
}
.converter .converter-box .conv .bottom {
  position: relative;
}
@media (max-width: 1080px) {
  .converter .converter-box .conv .bottom p {
    font-size: 14px;
  }
}
.converter .converter-box .conv .top {
  margin-top: 10px;
}
@media (max-width: 1080px) {
  .converter .converter-box .conv .top {
    margin-top: 2px;
  }
}

.glide {
  box-sizing: border-box;
  margin-top: -52.5px;
  margin-right: 35px;
}
.glide .glide__slides {
  margin-left: 35px;
  margin-right: 35px;
  overflow: visible;
  margin-bottom: 50px;
}
@media (max-width: 1080px) {
  .glide {
    margin-top: 0;
  }
  .glide .glide__slides {
    margin-bottom: 20px;
  }
}

.glide__slide {
  padding-bottom: 20px;
  padding-top: 40px;
}
@media (max-width: 1080px) {
  .glide__slide {
    padding-top: 0;
  }
}

.glide__track {
  margin-left: -35px;
  margin-right: -35px;
}
@media (max-width: 1080px) {
  .glide__track {
    margin-left: -35px;
    margin-right: -35px;
  }
}
@media (max-width: 700px) {
  .glide__track {
    margin-left: -35px;
    margin-right: -15px;
  }
}

.slide-block {
  border-radius: 21px;
  background-color: #FFF;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  padding: 35px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}
@media (max-width: 700px) {
  .slide-block {
    padding: 20px 30px;
    height: 170px;
  }
}
.slide-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 45px -14px rgba(22, 35, 91, 0.28);
}
.slide-block h2 {
  margin: 0;
}
@media (max-width: 700px) {
  .slide-block h2 {
    font-size: 18px;
  }
}
.slide-block p {
  font-size: 16px;
}
@media (max-width: 700px) {
  .slide-block p {
    font-size: 14px;
  }
}

.glide__bullets {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -40px;
}
@media (max-width: 1080px) {
  .glide__bullets {
    display: none;
  }
}
@media (max-width: 700px) {
  .glide__bullets {
    margin-top: -30px;
  }
  .glide__bullets:not(.only-sm) {
    display: none;
  }
}

.glide__bullet {
  border: none;
  background: rgba(0, 0, 0, 0.3);
  height: 10px !important;
  width: 10px !important;
  border-radius: 30px;
  display: inline-block;
  padding: 0;
  margin: 0 5px;
}
.glide__bullet.hidden {
  display: none;
}

.glide__bullet--active {
  background: #113496;
}

:not(.btn-group) .btn {
  border-radius: 14px;
  border: none;
  background: #000;
  color: #FFF;
  height: 50px;
  font-size: 17px;
  font-weight: 500;
  padding: 0 35px;
  box-sizing: border-box;
  order: 2;
  margin: auto;
  line-height: 47px;
}
@media (max-width: 700px) {
  :not(.btn-group) .btn {
    font-size: 14px;
    padding: 0 20px;
    height: 35px;
    line-height: 33px;
    border-radius: 8px;
  }
}
:not(.btn-group) .btn:hover {
  background: rgb(15%, 15%, 15%);
}
:not(.btn-group).sm {
  font-size: 14px;
  padding: 0 20px;
  height: 40px;
  line-height: 38px;
}
:not(.btn-group).mt {
  margin-top: 17.5px;
}
@media (max-width: 700px) {
  :not(.btn-group).mt {
    margin-top: 8.75px;
  }
}

.btn-group {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 9px 8px -8px rgba(41, 80, 192, 0.44);
}
.btn-group .btn {
  border: none;
  background: none;
  font-size: 14px;
  background: #FFF;
  padding: 10px 20px;
  display: inline-block;
  color: #000;
  line-height: normal;
  height: 39px;
}
.btn-group .btn:first-child {
  border-radius: 14px 0 0 14px;
}
.btn-group .btn:last-child {
  border-radius: 0 14px 14px 0;
}
.btn-group .btn:hover {
  background: #f5f8fd;
}
.btn-group .btn.active {
  background: #113496;
  color: #FFF;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-svg-arrow:after, .tippy-box[data-placement^=top] > .tippy-svg-arrow > svg {
  top: 16px;
  transform: rotate(180deg);
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-svg-arrow > svg {
  bottom: 16px;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-svg-arrow:after, .tippy-box[data-placement^=left] > .tippy-svg-arrow > svg {
  transform: rotate(90deg);
  top: calc(50% - 3px);
  left: 11px;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-svg-arrow:after, .tippy-box[data-placement^=right] > .tippy-svg-arrow > svg {
  transform: rotate(-90deg);
  top: calc(50% - 3px);
  right: 11px;
}

.tippy-svg-arrow {
  width: 16px;
  height: 16px;
  fill: #333;
}

.tippy-svg-arrow, .tippy-svg-arrow > svg {
  position: absolute;
}

.tippy-box {
  background-color: #113496;
  color: #FFF;
}

.tippy-box > .tippy-svg-arrow {
  fill: #113496;
}

.tippy-box[data-theme~=light] {
  background-color: #83C1E2;
  color: #113496;
}

.tippy-box[data-theme~=light] > .tippy-svg-arrow {
  fill: #83C1E2;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.custom-select {
  height: 100%;
  width: 245px;
  max-width: 100%;
  position: relative;
  margin-left: -35px;
  padding-left: 35px;
  padding-right: 35px;
  color: #113496;
  transition: all 0.2s;
}
.custom-select.nyb {
  background: #83C1E2;
}
.custom-select.nyb:hover {
  background: rgb(35.1633986928%, 67.5816993464%, 84.8366013072%);
}
.custom-select.rot {
  background: #D0955B;
}
.custom-select.rot:hover {
  background: rgb(75.5914877799%, 48.3969891274%, 21.6634141808%);
}
.custom-select.el {
  background: #EE7F83;
}
.custom-select.el:hover {
  background: rgb(90.9885057471%, 32.1487491548%, 34.2691007437%);
}
.custom-select.vs {
  background: #A3D4C5;
}
.custom-select.vs:hover {
  background: rgb(50.2919389978%, 76.7668845316%, 68.6623093682%);
}
.custom-select.luft {
  background: #A3D4C5;
}
.custom-select.luft:hover {
  background: rgb(50.2919389978%, 76.7668845316%, 68.6623093682%);
}
.custom-select button {
  border: none;
  background: none;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #113496;
}
.custom-select button i {
  flex: 1;
  font-style: normal;
  margin-left: 20px;
}
.custom-select button svg:first-child .color-swap:not(.hammer) {
  stroke: #FFF;
  path: #FFF;
}
.custom-select button svg:first-child .color-swap.hammer {
  fill: #FFF;
}
.custom-select button svg.arrow {
  float: right;
  margin-top: 3px;
  position: relative;
}
.custom-select button svg.arrow polyline {
  stroke: #113496;
}
.custom-select.active button svg.arrow {
  transform: rotate(180deg);
}
.custom-select .custom-select-values {
  position: absolute;
  left: 17.5px;
  right: 17.5px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  margin-top: 11.6666666667px;
  display: none;
  overflow: hidden;
}
.custom-select .custom-select-values.active {
  display: block;
}
.custom-select .custom-select-values.active ~ button {
  opacity: 0.3;
}
.custom-select .custom-select-values label {
  display: block;
  padding: 12px;
  display: flex;
  align-items: center;
  padding-left: 17.5px;
}
.custom-select .custom-select-values label svg {
  margin-right: 20px;
}
.custom-select .custom-select-values label:hover {
  background: #F5F7FA;
}
.custom-select .custom-select-values input:checked + label.nyb {
  background: rgb(87.0326797386%, 93.5163398693%, 96.9673202614%);
}
.custom-select .custom-select-values input:checked + label.rot {
  background: rgb(91.3695753183%, 80.5356379519%, 69.8853266425%);
}
.custom-select .custom-select-values input:checked + label.el {
  background: rgb(98.491954023%, 88.645300879%, 89.0001352265%);
}
.custom-select .custom-select-values input:checked + label.vs {
  background: rgb(93.9067538126%, 97.1520697168%, 96.1586056645%);
}
.custom-select .custom-select-values input:checked + label.luft {
  background: rgb(93.9067538126%, 97.1520697168%, 96.1586056645%);
}
.custom-select .custom-select-values input {
  position: absolute;
  opacity: 0;
}
.custom-select .custom-select-values.active ~ button {
  display: none;
}

@media (max-width: 1080px) {
  .book-select-container {
    display: none;
  }
}

.sidebar .custom-select {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0 15px;
}
.sidebar .custom-select button {
  height: 60px;
}
.sidebar .custom-select-values {
  background: #FFF;
  z-index: 1003;
}

.onboarding {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  max-width: 100%;
  overflow: hidden;
  height: 325px;
  transition: transform 0.5s;
  transform: translateY(100%);
}
.onboarding.active {
  transform: translateY(0%);
}
.onboarding .onboarding-container {
  position: relative;
  padding: 15px;
  width: auto;
  white-space: nowrap;
  bottom: 0;
  height: 325px;
}
.onboarding .onboarding-card {
  background: #113496;
  border-radius: 21px;
  box-shadow: 0 10px 45px -19px rgba(22, 35, 91, 0.38);
  height: 310px;
  right: 15px;
  left: 15px;
  bottom: 45px;
  position: absolute;
  transform: translateX(calc(100% + 15px));
  transition: transform 0.5s;
}
.onboarding .onboarding-card.active {
  transform: translateX(0);
}
.onboarding .onboarding-card.completed {
  transform: translateX(calc(-100% - 15px));
}
.onboarding .onboarding-card .onboard-card-content {
  padding: 30px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  white-space: normal;
  margin: 0 15px;
}
.onboarding .onboarding-card .onboard-card-content p {
  margin: 0;
  color: #FFF;
  font-size: 16px;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}
.onboarding .onboarding-card .onboard-card-content .btn {
  background: #FFF;
  color: #000;
  font-size: 16px;
  padding: 10px 20px;
  height: auto;
  min-width: 140px;
  margin-top: 20px;
}
