body {
    padding-top: 100px;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
}

footer {
  height: 55px;
  background-color: #003B6A;
}

main {
  min-height: calc(100vh - 155px);
  background-color: #fff;
}

a {
    text-decoration: none !important;
    transition: all .3s ease;
}

.header-content__logo {
    max-width: 150px;
    display: inline-block;
}

.header-content__menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header-content__menu li:not(:first-child) {
    margin-left: 40px;
}

.header-content__menu li a {
    display: inline-block;
    padding: 35px 10px 31px;

    color: #013A69 !important;
    font-family: 'museo-sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;

    position: relative;
}

.header-content__user-button {
    margin-left: 20px;
    padding-left: 40px;
    padding-top: 28px;
    padding-bottom: 24px;
    position: relative;
    display: inline;
}

.header-content__menu li a::after,
.header-content__user-button::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: transparent;
    transition: all .3s ease;
}

.header-content__user-button::after {
    width: 42px;
    right: 0;
    left: auto;
}

.header-content__menu li a:hover::after,
.header-content__user-button:hover::after {
    background-color: #AED136;
}

.header-content__user-button img,
.header-content__user-button__mobile img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.footer-content p {
    margin-bottom: 0;
    font-family: 'museo-sans', sans-serif;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    flex-basis: 100%;
}

.freddie-home-content {
    min-height: inherit;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.freddie-home-content h1 {
    color: #013A69;
    font-family: 'museo-slab', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 52px;
    margin-top: 0;
}

.freddie-home-content__options__option__image {
    height: 100px;
    width: auto;
    transition: all .3s ease;
}

.freddie-home-content__options__option__title {
    color: #3C3C3C;
    font-family: 'museo-slab', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    padding-top: 30px;
    margin-top: 0;
    transition: all .3s ease;
}

.freddie-home-content__options {
    margin-top: 100px;
}

.freddie-home-content__options__option__text {
    color: #013A69 !important;
    font-family: 'museo-sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    padding-top: 8px;
    transition: all .3s ease;
}

.freddie-home-content__options__option a:hover .freddie-home-content__options__option__image {
    transform: scale(1.2);
}

.freddie-home-content__options__option a:hover .freddie-home-content__options__option__title {
    color: #003B6A;
}

.header-mobile-menu-overlay {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: rgba(0,0,0,.75);
    transition: all .3s ease;

    display: none;
    opacity: 0;
}

.header-mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-content__menu-mobile {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.header-content__menu-mobile a,
.header-content__user-button__mobile {
    display: block;
    padding: 10px;

    color: #013A69 !important;
    font-family: 'museo-sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.header-content__user-button__mobile {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

.header-content__menu-mobile a:hover,
.header-content__user-button__mobile:hover {
    background-color: #f7f7f7;
}

.header-content__user-button-logout {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    padding: 25px 40px 30px;
    white-space: nowrap;

    color: #013A69 !important;
    font-family: 'museo-sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    display: none;
}

.header-content__user-button:hover {
    cursor: pointer;
}

.header-content__user-button:hover .header-content__user-button-logout {
    display: block;
}

.header-content__mobile-menu-button {
    display: none !important;

    color: #3C3C3C;
    background-color: transparent;
    border: none;

    font-size: 26px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: all .3s ease;
}

.header-content__mobile-menu-button:hover {
    color: #013A69;
}

.freddie-breadcrumb {
    background-color: #E9ECEF;
    padding-top: 10px;
    padding-bottom: 10px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.freddie-breadcrumb__link,
.freddie-breadcrumb__separator,
.freddie-breadcrumb__last {
    color: #3C3C3C;
    font-size: 16px;
    line-height: 28px;
    font-family: 'museo-sans', sans-serif;
    font-weight: 300;
}

.freddie-breadcrumb__separator {
    margin: 0 5px;
}

a.freddie-breadcrumb__link {
    color: #007BFF !important;
}

.freddie-title-block {
    background-color: #F9F9F9;
    padding-top: 30px;
    padding-bottom: 30px;
}

.freddie-title-block h1 {
    font-family: 'museo-slab', sans-serif;
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    color: #013A69;
}

.btn-kr {
    display: inline-block;
    position: relative;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all .3s ease;
}

.btn-kr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 8px;
    transition: all .3s ease;
}

.btn-kr span {
    position: relative;
    font-family: 'museo-sans', sans-serif;
}

.btn-kr-color__white {
    background-color: #fff;
    color: #3C3C3C !important;
    border: 1px solid #BDBDBD;
}

.btn-kr-color__blue-green {
    background-color: #1d4c7e;
    color: #fff !important;
    border: 1px solid #BDBDBD;
}

.btn-kr-color__white::before {
    background-color: #AED136;
}

.btn-kr-color__blue-green::before {
    background-color: #AED136;
}

button:hover {
    cursor: pointer;
}

.btn-kr:hover::before {
    width: 100%;
}

.freddie-filters-block input, 
.freddie-filters-block select {
    appearance: none;
    border-radius: 0;
    height: 46px;
    border: #BDBDBD;
    border: 1px solid #BDBDBD;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-family: 'museo-sans', sans-serif;
    font-weight: 400;
}

.freddie-filters-block select {
    background: url('../images/dd-arrow.png') 98%/12px no-repeat #fff;
    padding-right: 25px !important;
}

.freddie-filters-block input[type="text"]{
    background: url('../images/text-search.svg') 4%/18px no-repeat #fff;
    padding-left: 35px !important;
}

.freddie-filters-block input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.freddie-filters-block input[type="text"]::-moz-placeholder { /* Firefox 19+ */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.freddie-filters-block input[type="text"]:-ms-input-placeholder { /* IE 10+ */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.freddie-filters-block input[type="text"]:-moz-placeholder { /* Firefox 18- */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.freddie-filters-block label, 
.freddie-filters-block input, 
.freddie-filters-block select {
    display: block;
    width: 100%;
}

.freddie-filters-block label {
    font-weight: 700;
    color: #3C3C3C;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}

.freddie-filters-block__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.freddie-filters-block__fields {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.freddie-filters-block__fields__field {
    margin-right: 24px;
}

.freddie-filters-block__fields__field.freddie-filters-block__fields__field__regular-field {
    flex-basis: 200px;
    width: 200px;
}

.freddie-filters-block__fields__field.freddie-filters-block__fields__field__big-field {
    flex-basis: 200px; /*312px;*/
    width: 200px; /*312px;*/
}

.freddie-filters-block {
    padding-top: 35px;
    padding-bottom: 35px;
}

.freddie-filters-block__content {
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 35px;
}

/* .table-headlines__name {
    min-width: 439px
}

.table-headlines__type {
    min-width: 170px
}

.table-headlines__service {
    min-width: 310px
}

.table-headlines__language {
    min-width: 130px
}

.table-headlines__date {
    min-width: 170px
} */

.table-headlines__check,
.cell-with-checkbox {
    width: 36px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    vertical-align: middle;
}

.freddie-table-block td {
    box-sizing: border-box;
}

.freddie-table-block td {
    font-family: 'museo-sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #3C3C3C;
    font-weight: 300;
}

.freddie-table-block td:not(.cell-with-button) {
    padding-left: 25px;
    padding-right: 25px;
}

.freddie-table-block td .cell-with-button-wrapper { display: flex; }

.freddie-table-block tr {
    transition: background-color .3s ease;
}

.freddie-table-block tr:hover {
    background-color: #f9f9f9;
}

.freddie-table-block {
    padding-bottom: 50px;
}

.freddie-table-block tr td {
    border-right: 1px solid #f9f9f9;
    border-left: 1px solid #f9f9f9;
    border-bottom: 1px solid #f9f9f9;

    padding: 0;
    height: 36px;
    vertical-align: middle;
}

.table-headlines td {
    background-color: #F9F9F9;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.freddie-table-block__file-popup-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;

    position: absolute;
    left: 0;
    top: 100%;
    width: 225px;

    background-color: #fff;
    box-shadow: 0 0 8px 1px rgba(0,0,0,.1);
    padding: 10px;

    opacity: 0;
    z-index: -1;

    transition: opacity .3s ease;
}

.freddie-table-block__file-popup-menu a {
    font-family: 'museo-sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #3C3C3C !important;
    font-weight: 300;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    display: inline-block;
    padding: 10px 20px;
    transition: background-color .3s ease;
    width: 100%;
}

.freddie-table-block__file-popup-menu a:hover {
    background-color: #f7f7f7;
}

.freddie-table-block__file-popup-menu a img {
    margin-right: 15px;
}

.freddie-table-block__file-popup-menu-toggler {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 36px;

    width: 36px;
    height: 36px;
    transition: background-color .3s ease;
    cursor: pointer;
    margin-right: 10px;
}
.cwb-job_title { padding-top: 5px;
   /* display: inline-flex;
    align-items: center;*/
}

.freddie-table-block__file-popup-menu-toggler i {
    transition: all .3s ease;
    color: #3C3C3C;
}

.freddie-table-block__file-popup-menu-toggler:hover {
    background-color: #AED136;
}

.freddie-table-block__file-popup-menu-toggler:hover i {
    color: #fff;
}

.freddie-table-block__file-popup-menu-toggler:hover .freddie-table-block__file-popup-menu {
    opacity: 1;
    z-index: 10;
}

.freddie-table-block .table-responsive {
    padding-bottom: 100px;
}

.freddie-title-block__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-kr i {
    margin-right: 5px;
}

.cell-with-checkbox input,
.table-headlines__check input {
    display: none !important;
}

.cell-with-checkbox label::before,
.table-headlines__check label::before {
    content: '\f0c8';
    font-family: 'Font Awesome 6 Free';
    color: #3C3C3C;
}

.cell-with-checkbox input:checked + label::before,
.table-headlines__check input:checked + label::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    color: #AED136;
    font-weight: 700;
}

.freddie-table-brochures__admin .freddie-table-block__file-popup-menu li:last-child {
    border-top: 1px solid #f9f9f9;
    margin-top: 10px;
}

.freddie-table-block.freddie-table-brochures__admin .table-responsive {
    padding-bottom: 160px;
}

.freddie-brochures__upload-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.85);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    z-index: -10;

    transition: all .3s ease;
}

.freddie-brochures__upload-lightbox.freddie-brochures__upload-lightbox__visible {
    opacity: 1;
    z-index: 10000;
}

.freddie-brochures__upload-lightbox__box {
    width: 100%;
    max-width: 648px;
    background-color: #fff;
}

.modal .modal-header,
.freddie-brochures__upload-lightbox__box__title-bar {
    height: 50px;
    background-color: #003B6A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 20px;
}
.modal .modal-header .modal-title,
.freddie-brochures__upload-lightbox__box__title-bar p {
    font-family: 'museo-sans', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.freddie-brochures__upload-lightbox__close {
    width: 16px;
    height: 16px;
    line-height: 1;
    position: relative;
    top: -3px;
}

.freddie-brochures__upload-lightbox__close img {
    width: 100%;
    height: auto;
}

.freddie-brochures__upload-lightbox__box__content {
    background-color: #fff;
}

.freddie-brochures__upload-lightbox__box__content {
    padding: 50px;
}

.freddie-brochures__upload-lightbox__box__content__drop-area {
    height: 150px;
    background-color: #F9F9F9;
    border: 2px dashed #707070;
    display: flex;
    justify-content: center;
    align-items: center;
}

.freddie-brochures__upload-lightbox__box__content__upload-image {
    width: 48px;
    margin: 0 auto;
    height: auto;
    display: block;
}

.freddie-brochures__upload-lightbox__box__content__text {
    font-family: 'museo-sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #013A69;
    margin-top: 16px;
}

#freddie-brochures__upload-lightbox__input {
    display: none;
}

.freddie-green-button {
    background-color: #AED136;
    appearance: none;
    border-radius: none;
    border: none;
    outline: none;
    font-family: 'museo-sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #013A69;
    padding: 10px 40px;
    transition: all .3s ease;
    min-width: 200px;
}

.freddie-green-button:hover {
    background-color: #013A69;
    color: #fff;
}

.freddie-green-button:disabled {
    color: #3C3C3C !important;
    background-color: #AED136 !important;
    opacity: .6;
    cursor: default;
}

.freddie-brochures__upload-lightbox__input__upload-wrapper {
    margin-top: 15px;
}

.freddie-table-block__floating-menu-wrapper {
    position: fixed;
    bottom: 100px;
    left: 0;
    width: 100%;

    z-index: -1;
    opacity: 0;

    transition: opacity .3s ease;
}

.freddie-table-block__floating-menu-wrapper.freddie-table-block__floating-menu-wrapper__visible {
    opacity: 1;
    z-index: 100;
}

.freddie-table-block__floating-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 8px 1px rgba(0,0,0,.1);
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
}

.freddie-table-block__floating-menu__button {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;

    color: #3C3C3C !important;
    font-family: 'museo-sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    transition: background-color .3s ease;
}

.freddie-table-block__floating-menu__button:hover {
    background-color: #f7f7f7;
}

.freddie-table-block__floating-menu__button img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.freddie-table-block__floating-menu__li-close {
    border-left: 1px solid #f9f9f9;
}

.freddie-table-block__floating-menu__li-close .freddie-table-block__floating-menu__button {
    padding-left: 20px;
    padding-right: 20px;
}

.freddie-table-block__floating-menu__li-close .freddie-table-block__floating-menu__button img {
    margin-right: 0;
    position: relative;
    left: 3px;
}

.freddie-share-menu-block-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.freddie-share-menu-block-menu a {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    color: #3C3C3C !important;
    font-family: 'museo-sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    transition: background-color .3s ease;
    margin-right: 50px;

    padding-top: 16px;
    padding-bottom: 16px;
}

.freddie-share-menu-block-menu a img {
    width: 100%;
    height: auto;
    margin-right: 10px;
}

.freddie-share-menu-block {
    border-bottom: 2px solid rgba(112, 112, 112, .5);
}

.freddie-brochure-single-overall-content {
    min-height: 700px;
    background-color: #F9F9F9;

    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.freddie-brochure-single-overall-content__left {
    flex-basis: calc(100% - 800px);
    width: calc(100% - 800px);
    padding: 80px 25px 80px 12px;
}

.freddie-brochure-single-overall-content__right {
    background-color: #fff;
    flex-basis: 800px;
    width: 800px;
    border-left: 2px solid rgba(112, 112, 112, .5);
}

.freddie-brochure-single-overall-content__right__title {
    border-bottom: 2px solid rgba(112, 112, 112, .5);
    padding: 25px 20px;
}

.freddie-brochure-single-overall-content__right__title h2 {
    color: #3C3C3C;
    font-family: 'museo-sans', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0;
}

.freddie-brochure-single-overall-content__right__details {
    padding: 25px 20px;
}

.freddie-brochure-single-overall-content__right__details p {
    margin-bottom: 2px;
    color: #013A69;
    font-family: 'museo-sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.freddie-brochure-single-overall-content__left__content {
    width: 100%;
}

.freddie-brochure-single__carousel__item img {
    max-width: 400px;
    margin: 0 auto;
}

.freddie-brochure-single__carousel__button {
    color: #013A69;
    border: 2px solid #013A69;
    border-radius: 50%;
    width: 34px;
    height: 34px;

    position: absolute;
    left: auto;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;

    background-color: #F9F9F9;
    z-index: 100;
    cursor: pointer;
}

.freddie-brochure-single__carousel__button.slick-disabled {
    color: rgba(112, 112, 112, .5);
    border-color: rgba(112, 112, 112, .5);
    position: default;
}

.freddie-brochure-single__carousel__button.freddie-brochure-single__carousel__button__prev {
    left: 0;
}

.freddie-brochure-single__carousel__button.freddie-brochure-single__carousel__button__next {
    right: 0;
}

.freddie-filters-block__fields.freddie-filters-block__fields__bios {
    display: flex;
    justify-content: space-between;
    align-items: stretch;

    flex-basis: 100%;
}

.freddie-filters-block__fields__bios__right {
    flex-basis: 300px;

    display: flex;
    align-items: flex-end;
}

.freddie-filters-block__fields__bios__left {
    flex-basis: calc(100% - 300px);
}

.freddie-filters-block__fields__bios__left__top,
.freddie-filters-block__fields__bios__left__bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.freddie-filters-block__fields__bios__left__bottom {
    margin-top: 10px;
}

.freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
    flex-basis: 648px;
    width: 648px;
}

.freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field input {
    background: url('../images/text-search.svg') 12px/18px no-repeat #fff;
}

/* .freddie-table-bio table,
.freddie-table-brochures {
    table-layout: fixed;
}

.table-headlines__bioname {
    width: 280px;
}

.table-headlines__title {
    width: 260px;
}

.table-headlines__department,
.table-headlines__location,
.table-headlines__service,
.table-headlines__industry,
.table-headlines__company {
    width: 225px;
} */

.freddie-table-bio .freddie-table-block__file-popup-menu {
    width: 285px;
}

.freddie-table-block.freddie-table-bio .table-responsive {
    padding-bottom: 200px;
}

.freddie-filters-block__fields__bios__right.freddie-filters-block__fields__bundles__right {
    flex-basis: 200px;
    width: 200px;
    justify-content: flex-end;
}

.freddie-filters-block__fields__bios__left.freddie-filters-block__fields__bundles__left {
    flex-basis: calc(100% - 200px);
    width: calc(100% - 200px);
}

.freddie-filters-block__content form {
    width: 100%;
}

.freddie-filters-block__fields__bios__left.freddie-filters-block__fields__bundles__left .freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
    flex-basis: 100%;
    width: 100%;
    margin-right: 0;
}

/* .table-headlines__bundlename {
    width: 502px;
}

.table-headlines__bundlecreator {
    width: 360px;
}

.table-headlines__bundledate {
    width: 312px;
} */

.freddie-table-bundles .freddie-table-block__file-popup-menu li:last-child {
    border-top: 1px solid #f9f9f9;
    margin-top: 10px;
}

.freddie-table-bundles .table-responsive {
    padding-bottom: 260px;
}

.freddie-table-bundles table {
    width: 1296px;
}

.freddie-brochures-admin-create__field-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.freddie-brochures-admin-create__field__full {
    flex-basis: 100%;
}

.freddie-brochures-admin-create__field__half {
    flex-basis: calc(50% - 6px);
}

.freddie-brochures-admin-create__field-row label,
.freddie-brochures-admin-create__field-row input,
.freddie-brochures-admin-create__field-row select {
    display: block;
    width: 100%;
}

.freddie-brochures-admin-create__file {
    display: none !important;
}

.freddie-brochures-admin-create__field__submit {
    flex-basis: 138px;
    text-align: right;
}

.freddie-brochures-admin-create__field__service {
    flex: 1;
}

.freddie-brochures-admin-create__field-row label {
    font-family: 'museo-sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: #3C3C3C;
}

.freddie-brochures-admin-create__field-row input,
.freddie-brochures-admin-create__field-row select {
    appearance: none;
    border-radius: 0;
    height: 46px;
    border: #BDBDBD;
    border: 1px solid #BDBDBD;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-family: 'museo-sans', sans-serif;
    font-weight: 400;
    color: #3C3C3C;
}

.freddie-brochures-admin-create__field-row select {
    background: url(../images/dd-arrow.png) 98%/12px no-repeat #fff;
    padding-right: 25px !important;
}

.freddie-brochures__upload-lightbox__box__content__drop-area {
    margin-bottom: 25px;
    cursor: pointer;
}

.freddie-brochures__upload-lightbox__box__content__drop-area__filename {
    text-align: center;
    font-family: 'museo-sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-top: 8px;
    color: #3C3C3C;
    margin-bottom: 0;
}

.freddie-brochures-admin-create__error {
    padding: 20px;
    border: 2px solid #ad1a00;
    font-family: 'museo-sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #ad1a00;
    text-align: center;
    margin: 0;

    display: none;
}

.freddie-brochures-admin-create__error.freddie-brochures-admin-create__error__visible {
    display: block;
}

.freddie-table-brochures td:first-child a,
.freddie-table-brochures__admin td:nth-child(2) a,
.freddie-table-bundles td:first-child a {
    color: #013A69 !important;
}

.freddie-create-bundle-content__layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 60px;
}

.freddie-create-bundle-content__layout__steps {
    flex-basis: 312px;
    background-color: #F9F9F9;
    padding: 35px 20px;
}

.freddie-create-bundle-content__layout__form {
    flex: 1;
    margin-left: 25px;
}

.freddie-create-bundle-content__layout__steps__title {
    color: #3C3C3C;
    font-family: 'museo-sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.freddie-create-bundle-content__layout__steps__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.freddie-create-bundle-content__layout__steps__list li {
    padding: 10px;
}

.freddie-create-bundle-content__layout__form__field:not(:first-child) {
    margin-top: 30px;
}

.freddie-create-bundle-content__layout__steps__list li span,
.freddie-create-bundle-content__layout__form__field label {
    color: #3C3C3C;
    font-family: 'museo-sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}

.freddie-create-bundle-content__layout__steps__list li i {
    font-size: 10px;
    position: relative;
    top: -1px;
    margin-right: 5px;
    opacity: 0;
}

.freddie-create-bundle-content__layout__steps__list li.active {
    background-color: rgba(174, 209, 54, .25);
}

.freddie-create-bundle-content__layout__steps__list li.active span {
    color: #003B6A;
    font-weight: 700;
}

.freddie-create-bundle-content__layout__steps__list li.active i {
    opacity: 1;
}

.freddie-create-bundle-content__layout__form__title {
    color: #013A69;
    font-family: 'museo-slab', sans-serif;
    font-size: 32px;
    line-height: 54px;
    font-weight: 700;
    text-transform: uppercase;
}

.freddie-create-bundle-content__layout__form__field label,
.freddie-create-bundle-content__layout__form__field input {
    width: 100%;
    display: block;
}

.freddie-create-bundle-content__layout__form__field label {
    font-weight: 700;
    margin-bottom: 8px;
}

.freddie-create-bundle-content__layout__form__field input {
    appearance: none;
    border-radius: 0;
    height: 40px;
    border: #BDBDBD;
    border: 1px solid #BDBDBD;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-family: 'museo-sans', sans-serif;
    font-weight: 400;
}

.freddie-create-bundle-content__layout__form__image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-grid__value__row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-grid__value__row p {
    margin-bottom: 0;
    margin-left: 8px;
    color: #013A69;
    font-family: 'museo-sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.image-grid__value__icons {
    width: 16px;
    height: 16px;
    position: relative;
}


.image-grid__value__icons img {
    width: 100%;
    height: auto;

    position: absolute;
    top: 0;
    left: 0;
}

.image-grid__value__icons img.image-grid__value__icons__checked {
    display: none;
}

.image-grid__value__icons img.image-grid__value__icons__unchecked {
    display: block;
}

.image-grid__value.image-grid__value__selected img.image-grid__value__icons__checked {
    display: block;
}

.image-grid__value.image-grid__value__selected img.image-grid__value__icons__unchecked {
    display: none;
}

.image-grid__value {
    padding: 20px 56px;
    border: 2px solid #BDBDBD;
    cursor: pointer;
    transition: border-color .3s ease;
}

.image-grid__value.image-grid__value__selected {
    border: 2px solid #AED136;
}

.image-grid__value:hover {
    border-color: #AED136;
}

.image-grid__value .image-grid__value__poster {
    box-shadow: 0 0 8px 1px rgba(0,0,0,.1);
    position: relative;
    margin-bottom: 10px;
}

.freddie-create-bundle-content__layout__form__buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

.freddie-create-bundle-content__layout__form__buttons-row p {
    margin-bottom: 0;
    color: #003B6A;
    font-size: 16px;
    line-height: 28px;
    font-family: 'museo-sans', sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 700;
}

.freddie-create-bundle-content__layout__form__buttons-row button:not(.step-5-buttons__save) {
    appearance: none;
    border-radius: 50%;

    border: 2px solid #003B6A;
    color: #003B6A;
    background-color: #fff;

    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.freddie-create-bundle-content__layout__form__buttons-row button:disabled {
    color: #BDBDBD;
    border-color: #BDBDBD;
    cursor: default;
}

.image-grid__value__poster-wrapper {
    position: relative;
}

.image-grid__value__poster__view {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: auto;
}

.freddie-create-bundle-content__layout__form.freddie-create-bundle-content__layout__form__step-table {
    flex-basis: calc(100% - 312px);
    width: calc(100% - 312px);
}

.create-bundle-filters-step2-table td a,
.create-bundle-filters-step3-table td a {
    color: #003B6A !important;
}

.create-bundle-filters-form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.create-bundle-filters-form-wrapper__right {
    flex-basis: 180px;
}

.create-bundle-filters-form-wrapper__left {
    flex-basis: calc(100% - 180px);
    width: calc(100% - 180px);

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.create-bundle-step-form {
    margin-top: 40px;
}

.create-bundle-filters-form-wrapper__left__field label,
.create-bundle-filters-form-wrapper__left__field input,
.create-bundle-filters-form-wrapper__left__field select {
    width: 100%;
    display: block;
}

.create-bundle-filters-form-wrapper__left__field {
    flex-basis: calc(50% - 12px);
    margin-top: 12px;
}

.create-bundle-filters-form-wrapper__left__field label {
    font-weight: 700;
    color: #3C3C3C;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
    font-family: 'museo-sans', sans-serif;
}

.create-bundle-filters-form-wrapper__left__field input,
.create-bundle-filters-form-wrapper__left__field select {
    appearance: none;
    border-radius: 0;
    height: 46px;
    border: #BDBDBD;
    border: 1px solid #BDBDBD;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-family: 'museo-sans', sans-serif;
    font-weight: 400;
}

.create-bundle-filters-form-wrapper__left__field select {
    background: url(../images/dd-arrow.png) 98%/12px no-repeat #fff;
    padding-right: 25px !important;
}

.create-bundle-filters-form-wrapper__left__field input.create-bundle-filters-form-wrapper__left__field__keyword {
    background: url(../images/text-search.svg) 10px/18px no-repeat #fff;
    padding-left: 35px !important;
}

.create-bundle-filters-form-wrapper__left__field input.create-bundle-filters-form-wrapper__left__field__keyword::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.create-bundle-filters-form-wrapper__left__field input.create-bundle-filters-form-wrapper__left__field__keyword::-moz-placeholder { /* Firefox 19+ */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.create-bundle-filters-form-wrapper__left__field input.create-bundle-filters-form-wrapper__left__field__keyword:-ms-input-placeholder { /* IE 10+ */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.create-bundle-filters-form-wrapper__left__field input.create-bundle-filters-form-wrapper__left__field__keyword:-moz-placeholder { /* Firefox 18- */
    font-family: 'museo-sans', sans-serif;
    font-size: 14px;
    font-style: italic;
}

.create-bundle-filters-form-wrapper__right__button-wrapper {
    text-align: right;
}

.create-bundle-filters-form__bios .create-bundle-filters-form-wrapper__left__field {
    flex-basis: calc(33.33% - 10px);
}

/* .create-bundle-filters-step3-table table {
    table-layout: fixed;
}

.create-bundle-filters-step3-table .table-headlines__name {
    width: 350px;
}

.create-bundle-filters-step3-table .table-headlines__title {
    width: 130px;
}

.create-bundle-filters-step3-table .table-headlines__department {
    width: 130px;
}

.create-bundle-filters-step3-table .table-headlines__location {
    width: 130px;
} */

.freddie-create-bundle-content__layout__form__your-selection-label {
    font-weight: 700;
    color: #3C3C3C;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
    margin-top: 20px;
    font-family: 'museo-sans', sans-serif;
}

.freddie-create-bundle-content__layout__form__your-selection__list__item {
    border: 1px solid #BDBDBD;
    margin-bottom: 15px;
    padding: 15px 30px;
}

.freddie-create-bundle-content__layout__form__your-selection__list {
    margin-top: 15px;
}

.your-selection__list__item__name,
.your-selection__list__item__data,
.freddie-create-bundle-content__layout__form__description {
    font-weight: 700;
    color: #003B6A;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    font-family: 'museo-sans', sans-serif;
}

.freddie-create-bundle-content__layout__form__description {
    color: #013A69;
    font-weight: 300;
    margin-top: 25px;
}

.your-selection__list__item__name {
    margin-bottom: 10px;
}

.your-selection__list__item__data {
    font-weight: 300;
    color: #3C3C3C;
}

.freddie-create-bundle-content__layout__form-bundle-list {
    margin-top: 25px;
}

.freddie-create-bundle-content__layout__form-bundle-list__item {
    height: 170px;
    padding: 20px;
    padding-right: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #BDBDBD;
    margin-bottom: 5px;
    cursor: move;
}

.freddie-create-bundle-content__layout__form-bundle-list__item.dragging {
    opacity: .5;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__image {
    height: 100%;
    width: auto;
    margin-left: 55px;
    margin-right: 55px;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__title {
    color: #013A69;
    margin-bottom: 0;
    font-family: 'museo-sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    flex: 1;
}

.btn-text-kr-color__blue-green {
    position: relative;
    color: #1d4c7e !important;
    padding-bottom: 7px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
}

.btn-text-kr-color__blue-green::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 20px;
    transition: all .3s ease;
}

.btn-text-kr-color__blue-green::before {
    background-color: #AED136;
}

.btn-text-kr-color__blue-green:hover::before {
    width: 100%;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__delete {
    margin-left: auto;
    flex-basis: 90px;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__delete img {
    margin-right: 10px;
    width: 20px;
    height: auto;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__left {
    height: 100%;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.freddie-create-bundle-content__layout__form__buttons-row .step-5-buttons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.freddie-create-bundle-content__layout__form__buttons-row .step-5-buttons .step-5-buttons__preview {
    cursor: pointer;
}

.freddie-create-bundle-content__layout__form__buttons-row .step-5-buttons .step-5-buttons__save {
    margin-left: 35px;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__saved {
    cursor: default !important;
}

.freddie-create-bundle-content__layout__form-bundle-list__item__saved .freddie-create-bundle-content__layout__form-bundle-list__item__image {
    margin-left: 35px;
}

.freddie-create-bundle-content__layout__form__buttons-row__saved {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.freddie-create-bundle-content__layout__form__buttons-row__saved button,
.freddie-create-bundle-content__layout__form__buttons-row__saved a:not(:first-child){
    margin-left: 40px;
}

.freddie-preview-bundle-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: -10;
    transition: all .3s ease;
}

.freddie-preview-bundle-lightbox__visible {
    opacity: 1;
    z-index: 10000;
}

.freddie-preview-bundle-lightbox__content {
    max-width: 1000px;
    width: 100%;
    flex-basis: 100%;
    height: calc(100vh - 100px);
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.freddie-preview-bundle-lightbox__content__file {
    height: 100%;
}

.freddie-preview-bundle-lightbox__close {
    position: absolute;
    top: 20px;
    right: 25px;
}

.freddie-create-bundle-content__layout__form__field label i.fa-solid {
    font-size: 14px;
    cursor: pointer;
    margin-left: 2px;
    transition: all .3s ease;
}

.freddie-create-bundle-content__layout__form__field label i.fa-solid:hover {
    color: #013A69 !important;
}

.freddie-create-bundle__step1-image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.85);
    z-index: -1;
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 15px;
    transition: all .3s ease;
}

.freddie-create-bundle__step1-image-popup.freddie-create-bundle__step1-image-popup__visible {
    opacity: 1;
    z-index: 10000;
}

.freddie-create-bundle__step1-image-popup__image {
    width: calc(100% - 10px);
    max-width: 500px;
    height: auto;
    display: block;
}


.freddie__send-email-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.85);

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all .3s ease;
    z-index: -10000;
    opacity: 0;
}


.freddie__send-email-lightbox.freddie__send-email-lightbox__visible {
    opacity: 1;
    z-index: 100000;
}

.freddie-brochures-admin-create__field__full textarea {
    display: block;
    width: 100%;
    height: 200px;
    overflow: auto;
    padding: 10px;
    box-sizing: border-box;
    resize: none;
    border: 1px solid #BDBDBD;
}

.freddie-brochures-admin-create__field-row.freddie-send-email__send-button-row {
    margin-bottom: 0;
    justify-content: flex-end;
}

.freddie-scroll-mobile-overlay {
    position: fixed;
    background-color: rgba(0,0,0,.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;

    padding-left: 15px;
    padding-right: 15px;

    justify-content: center;
    align-items: center;

    display: none !important;
}

.freddie-scroll-mobile-overlay__content__image {
    width: 100%;
    max-width: 120px;
    display: block;
    margin: 0 auto;
}

.freddie-scroll-mobile-overlay__content_text {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.freddie-scroll-mobile-overlay__content_button-wrapper {
    margin-top: 50px;
    text-align: center;
}

.freddie-scroll-mobile-overlay__content_button {
    color: #fff !important;
    text-decoration: underline !important;
    font-size: 18px;
}

/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */
/* ************************************************************************ */


@media (min-width: 992px){
    .header-mobile-menu-overlay {
        display: none !important;
    }

    .freddie-filters-block label {
        font-size: 14px;
    }
}

@media (max-width: 1669px){
    .freddie-brochure-single-overall-content__left {
        flex-basis: calc(100% - 500px);
        width: calc(100% - 500px);
    }
    
    .freddie-brochure-single-overall-content__right {
        flex-basis: 500px;
    }
}

@media(max-width: 1399px){
    .freddie-create-bundle-content__layout__form__image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1199px){
    .freddie-home-content__options__option__title { 
        font-size: 22px;
        line-height: 26px;
    }

    .freddie-home-content__options__option__image {
        height: 80px;
    }

    .freddie-filters-block__button,
    .freddie-filters-block__fields {
        flex-basis: 100%;
    }

    .freddie-filters-block__content,
    .freddie-filters-block__fields {
        flex-wrap: wrap;
    }

    .freddie-filters-block__content {
        display: block;
    }

    .freddie-filters-block__button {
        text-align: right;
    }

    .freddie-filters-block__fields.freddie-filters-block__fields__brochures {
        justify-content: space-between;
    }

    .freddie-filters-block__fields__field,
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__regular-field,
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__big-field
     {
        margin-bottom: 15px;

        flex-basis: calc(25% - 10px);
        margin-right: 10px;
    }

    .freddie-filters-block__fields.freddie-filters-block__fields__brochures .freddie-filters-block__fields__field {
        margin-right: 0 !important;
    }

    .freddie-filters-block label {
        font-size: 14px;
    }

    .freddie-brochure-single-overall-content__left {
        flex-basis: calc(100% - 300px);
        width: calc(100% - 300px);
    }
    
    .freddie-brochure-single-overall-content__right {
        flex-basis: 300px;
    }

    .freddie-filters-block__fields__bios__left,
    .freddie-filters-block__fields__bios__right {
        flex-basis: 100%;
    }

    .freddie-filters-block__fields__bios__left__bottom,
    .freddie-filters-block__fields__bios__left__top {
        justify-content: space-between;
    }

    .freddie-filters-block__fields__bios__left__bottom {
        margin-top: 0;
    }

    .freddie-filters-block__fields__bios__left__bottom .freddie-filters-block__fields__field,
    .freddie-filters-block__fields__bios__left__top .freddie-filters-block__fields__field.freddie-filters-block__fields__field__regular-field {
        margin-right: 0;
        flex-basis: calc(25% - 10px);
        width: calc(25% - 10px);
    }

    .freddie-filters-block__fields__bios__left__top .freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
        flex-basis: calc(75% - 3px);
        width: calc(75% - 3px);
    }

    .freddie-filters-block__fields__bios__left.freddie-filters-block__fields__bundles__left .freddie-filters-block__fields__field {
        margin-bottom: 0;
    }

    .create-bundle-filters-form__bios .create-bundle-filters-form-wrapper__left__field {
        flex-basis: calc(50% - 10px);
    }

    .freddie-create-bundle-content__layout__form__buttons-row__step5 {
        justify-content: flex-start;
    } 

    .freddie-create-bundle-content__layout__form__buttons-row .step-5-buttons .step-5-buttons__save {
        margin-left: 30px;
    }
} /* end 1199 */

@media (max-width: 991px){ 
    .freddie-home-content__options__option {
        padding-bottom: 60px;
    }

    .freddie-home-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .header-content__menu-wrapper {
        display: none !important;
    }

    .header-content__mobile-menu-button {
        display: flex !important;
    }

    .header-content__logo {
        max-width: 280px;
    }

    footer {
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-content p {
        text-align: center;
    }

    .freddie-brochure-single-overall-content {
        flex-wrap: wrap;
        min-height: auto;
    }

    .freddie-brochure-single-overall-content__right {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .freddie-brochure-single-overall-content__left {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .freddie-brochure-single-overall-content__left {
        flex-basis: 100%;
        width: 100%;
    }
    
    .freddie-brochure-single-overall-content__right {
        flex-basis: 100%;
    }

    .freddie-brochure-single-overall-content__right__title,
    .freddie-brochure-single-overall-content__right__details {
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .freddie-brochure-single-overall-content .freddie-dynamic-container-left {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .freddie-create-bundle-content__layout {
        flex-wrap: wrap;
    }

    .freddie-create-bundle-content__layout__steps,
    .freddie-create-bundle-content__layout__form {
        flex-basis: 100%;
    }

    .freddie-create-bundle-content__layout__form {
        margin-left: 0;
        margin-top: 30px;
    }
} /* end 991 */


@media (max-width: 767px){
    .freddie-filters-block__fields {
        justify-content: space-between !important;
    }

    .freddie-filters-block__fields__field,
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__regular-field,
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__big-field
     {
        flex-basis: calc(50% - 6px);
        margin-right: 0;
        margin-bottom: 10px;
    }

    .freddie-filters-block__button {
        text-align: center;
        padding-top: 10px;
    }

    .freddie-title-block__content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .freddie-title-block__content h1 {
        flex-basis: 100%;
        margin-bottom: 15px;
    }

    .freddie-title-block h1 {
        text-align: center;
    }

    .freddie-table-block__floating-menu__button {
        font-size: 16px;
        line-height: 22px;

        padding-left: 33px;
        padding-right: 33px;
    }

    .freddie-table-block__floating-menu__li-close .freddie-table-block__floating-menu__button {
        padding-left: 20px;
        padding-right: 20px;
    }

    .freddie-filters-block__fields__bios__left__bottom, 
    .freddie-filters-block__fields__bios__left__top {
        flex-wrap: wrap;
    }

    .freddie-filters-block__fields__bios__left__bottom .freddie-filters-block__fields__field, 
    .freddie-filters-block__fields__bios__left__top .freddie-filters-block__fields__field {
        flex-basis: calc(50% - 10px) !important;
        width: calc(50% - 10px) !important;
    }

    .freddie-filters-block__fields.freddie-filters-block__fields__bundle {
        flex-wrap: wrap;
    }

    .freddie-filters-block__fields__bundle .freddie-filters-block__fields__bundles__left,
    .freddie-filters-block__fields__bundle .freddie-filters-block__fields__bundles__right {
        flex-basis: 100%;
    }

    .freddie-filters-block__fields__bundle .freddie-filters-block__fields__bundles__left .freddie-filters-block__fields__field {
        flex-basis: 100% !important;
        margin-bottom: 10px;
    }

    .freddie-table-bundles table {
        width: 800px;
    }

    .freddie-share-menu-block-menu span {
        display: none !important;
    }

    .freddie-create-bundle-content__layout__form__image-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .image-grid__value {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .freddie-create-bundle-content__layout__form__title {
        font-size: 24px;
        line-height: 36px;
    }

    .create-bundle-filters-form-wrapper {
        flex-wrap: wrap;
    }

    .create-bundle-filters-form-wrapper__left,
    .create-bundle-filters-form-wrapper__right {
        flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .create-bundle-filters-form-wrapper__right {
        margin-top: 30px;
    }

    .create-bundle-filters-form-wrapper__right__button-wrapper {
        text-align: center;
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item {
        padding-right: 20px;
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item__image {
        margin-left: 15px;
        margin-right: 15px;
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item__right {
        flex-wrap: wrap;
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item__right p,
    .freddie-create-bundle-content__layout__form-bundle-list__item__right a {
        flex-basis: 100%;
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item__title {
        text-align: right;
        margin-bottom: 15px;
    }

    .freddie-create-bundle-content__layout__form__buttons-row .step-5-buttons .step-5-buttons__save {
        margin-left: 10px;
    }

    .freddie-create-bundle-content__layout__saved .freddie-create-bundle-content__layout__form-bundle-list__item__title {
        text-align: left;
        padding-left: 15px;
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item__saved .freddie-create-bundle-content__layout__form-bundle-list__item__image {
        margin-left: 0;
    }

    .freddie-create-bundle-content__layout__form__buttons-row__saved button, .freddie-create-bundle-content__layout__form__buttons-row__saved a:not(:first-child) {
        margin-left: 10px;
    }

    .freddie-scroll-mobile-overlay.freddie-scroll-mobile-overlay--visible {
        display: flex !important;
    }

} /* end 767 */


@media (max-width: 575px){
    .freddie-table-block__floating-menu__button span {
        display: none;
    }

    .freddie-table-block__floating-menu__button {
        padding-left: 20px !important;
        padding-right: 20px !important;

        align-items: center;
        justify-content: center;

        height: 58px;
    }

    .freddie-table-block__floating-menu__button img {
        margin-right: 0;
    }

    .freddie-table-block__floating-menu {
        max-width: 240px;
    }

    .freddie-table-block__floating-menu__li-close .freddie-table-block__floating-menu__button img {
        left: 0;
    }

    .freddie-brochure-single__carousel__item img {
        max-width: calc(100% - 100px);
    }

    .freddie-brochure-single-overall-content__left {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .freddie-brochure-single__carousel__button {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .freddie-share-menu-block-menu a {
        margin-right: 20px;
    }

    .freddie-brochures-admin-create__field__half,
    .freddie-brochures-admin-create__field__service,
    .freddie-brochures-admin-create__field__submit {
        flex-basis: 100%;
    }

    .freddie-brochures-admin-create__field__half:first-child,
    .freddie-brochures-admin-create__field__service {
        margin-bottom: 16px;
    }

    .freddie-brochures-admin-create__field-row {
        flex-wrap: wrap;
    }

    .freddie-brochures-admin-create__field__submit {
        text-align: center;
        margin-top: 16px;
    }

    .freddie-brochures-admin-create__field-row__last {
        margin-bottom: 0;
    }

    .freddie-brochures__upload-lightbox__box__content {
        padding: 25px;
    }

    .freddie-create-bundle-content__layout__form__buttons-row.freddie-create-bundle-content__layout__form__buttons-row__step5 {
        padding-bottom: 80px;
        justify-content: center;
    }

    .freddie-create-bundle-content__layout__form__buttons-row .step-5-buttons {
        top: auto;
        transform: none;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .freddie-create-bundle-content__layout__form__buttons-row__saved {
        display: block;
    }

    .freddie-create-bundle-content__layout__form__buttons-row__saved a,
    .freddie-create-bundle-content__layout__form__buttons-row__saved button {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-left: 0 !important;
    }

    .freddie-create-bundle-content__layout__form__buttons-row__saved button {
        margin-top: 40px;
        margin-bottom: 0;
    }
} /* end 575 */

/* most modern phones have 414px of width */
/* this media is for very small phobnes */
@media (max-width: 413px){
    .header-content__logo {
        max-width: 220px;
    }
}

.freddie-table-block td {
    font-size: 16px;
    line-height: 24px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.freddie-table-block tr.even {
    background-color: #f9f9f9;
}

.freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
    flex-basis: 424px;
    width: 424px;
}

.freddie-brochures-admin-create__field__full textarea {
    height: 100px !important;
}

.freddie-home-content {
    padding-top: 50px;
}

.header-content__logo {
    max-width: 150px !important;
}

.create-bundle-filters-form-wrapper__left__field__full {
    flex-basis: 100% !important;
}

@media (max-width: 1199px){
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
        flex-basis: 462px !important;
        width: 462px !important;
        margin-right: 0;
    }
}

@media (max-width: 991px){
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
        flex-basis: 342px !important;
        width: 342px !important;
        margin-right: 0;
    }
}

@media (max-width: 767px){
    .freddie-filters-block__fields__field.freddie-filters-block__fields__field__name-field {
        flex-basis: 100% !important;
        width: 100% !important;
        margin-right: 0;
    }

    .header-content__logo {
        max-width: 120px !important;
    }
}

.header-mobile-menu-overlay {
    z-index: 10000;
}

@media (min-width: 1400px){
    .freddie-table-block.freddie-table-bio .table-responsive {
        overflow-x: hidden;
    }
}

@media (max-width: 767px){
    .step-5-buttons__preview,
    .freddie-create-bundle-content__layout__form__buttons-row__saved .step-5-buttons .btn-kr:first-child {
        display: none;
    }
}

@media (max-width: 575px){
    .freddie-create-bundle-content__layout__form-bundle-list__item {
        width: calc(100% - 40px);
    }

    .freddie-create-bundle-content__layout__form-bundle-list__item__title {
        font-size: 14px;
        line-height: 22px;
    }
}