@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url("/fonts/allRoundGothic/style.css");


:root {
    --primary: #111111;
    --primary-light: #1c1c1c;
    --primary-text-color: #ffffff;

    --secondary: #f3f3f3;
    --secondary-hover: #e3e3e3;
    --secondary-text-color: #000000;

    --accent: #3189C1;
    --accent-light: #3e93cb;
    --accent-text-color: #ffffff;

    --app-primary: #000000;
    --app-primary-light: #232323;
    --app-primary-text-color: #ffffff;

    --navbar-height: 105px;
    --navbar-height-mobile: 70px;
}




* {
    /*font-family: 'all_round_gothictext';*/
    font-family: 'Roboto', sans-serif;
}

body {

}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400;
    margin-bottom: 20px;
}
h1, .h1 {
    font-size: 3rem;
}
h2, .h2 {
    font-size: 2.5rem;
}
h3, .h3 {
    font-size: 2rem;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

ul {
    list-style: none; /* Remove default bullets */
}
li {
    font-size: 18px;
}
ul li::before {
    content: "";
    background-color: var(--primary);
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: -3px;
    margin-left: -1.5em;
    margin-right: 0.75em;
}

.customer-logos .logo {
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.75;
}

.py-default {
    padding-top: 75px;
    padding-bottom: 75px;
}
.pt-default {
    padding-top: 75px;
}
.pb-default {
    padding-bottom: 75px;
}

a {
    color: var(--accent);
}
a:hover {
    color: var(--accent-light);
}

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

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

.bg-success-light {
    background-color: #8bfabb !important;
}
.bg-danger-light {
    background-color: #f39298 !important;
}

.bg-gray {
    background-color: #cccccc;
}

.richtext p:last-child {
    margin-bottom: 0;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0 !important;
    border: none !important;
}
.card .content {
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    padding: 20px;
}
.card h4,
.card p {
    margin-bottom: 15px !important;
}
.card a {
    display: block;
    color: var(--primary);
    text-decoration: none !important;
    font-size: 18px;
    margin-top: auto;
}
.card a i {
    margin-left: 0;
    transition: all 0.2s ease;
}
.card a:hover i {
    margin-left: 10px;
}


.btn {
    border-radius: 0 !important;
    font-weight: 300;
    font-size: 18px;
    padding: 0.85rem 1.75rem;
    outline: none !important;
    box-shadow: none !important;
}

.btn-normal {
    font-size: 16px;
    padding: 0.7rem 1.2rem;
}

.btn-input-sm {
    padding: 0.6rem 1rem !important;
    font-size: .875rem;
}

.btn-sm {
    font-size: 14px;
    padding: 2px 10px;
}

.btn-primary {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary-text-color) !important;
}
.btn-primary:hover {
    background-color: var(--primary-light) !important;
    border: 1px solid var(--primary-light) !important;
}

.btn-accent {
    background-color: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent-text-color) !important;
}
.btn-accent:hover {
    background-color: var(--accent-light) !important;
    border: 1px solid var(--accent-light) !important;
}
.btn-secondary {
    background-color: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
    color: var(--secondary-text-color) !important;
}
.btn-secondary:hover {
    background-color: var(--secondary-hover) !important;
    border: 1px solid var(--secondary-hover) !important;
}

.btn-danger {
    color: #ffffff !important;
}

.btn-white {
    background-color: #ffffff !important;
    border: 1px solid #ffffff !important;
    color: #000000 !important;
}
.btn-white:hover {
    background-color: #dadada !important;
    border: 1px solid #dadada !important;
}

.buttons-as-text .btn {
    padding: 0 !important;
    border: none !important;
    background-color: transparent !important;
    color: var(--primary) !important;
    font-size: 18px;
    font-weight: 400;
}
.buttons-as-text .btn:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: all 0.2s ease;
}
.buttons-as-text .btn:hover:after {
    width: 100%;
}



.service-row {
    display: flex;
    flex-direction: row;
    background-color: var(--secondary);
    margin-bottom: 35px;
}
.service-row:last-child {
    margin-bottom: 0;
}
.service-row .body {
    order: 1;
    padding: 40px 150px 40px 40px;
}
.service-row .body p {
    font-size: 18px;
}
.service-row .image {
    order: 2;
    background-color: #cccccc;
    background-size: cover;
    background-position: center;
    flex: 0 0 35%;
}

@media only screen and (max-width: 767px) {
    .service-row {
        flex-direction: column;
    }
    .service-row .body {
        order: 2;
        padding: 40px 30px;
    }
    .service-row .body h3 {

    }
    .service-row .image {
        order: 1;
        padding-bottom: 56%;
    }
}




.form-label {
    margin-bottom: 0;
    font-weight: 300;
}
.form-control,
.form-select {
    box-shadow: none !important;
    color: #000000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--accent) !important;
    border-radius: 0 !important;
    padding: 0.6rem 1rem !important;
}
.form-control:active,
.form-control:focus,
.form-select:active,
.form-select:focus {
    background-color: transparent;
}

.form-control::placeholder,
.form-select::placeholder{
    font-weight: 300;
    color: #000000;
    opacity: 1; /* Firefox */
}

.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder { /* Edge 12 -18 */
    font-weight: 300;
    color: #000000;
}

.header-cta {
    display: none;
    position: absolute;
    right: 150px;
    top: 20px;
}
header.solid .header-cta {
    display: block;
}
@media only screen and (max-width: 991px) {
    .header-cta {
        display: none !important;
    }
}


.socials-sidebar {
    z-index: 100;
    position: fixed;
    bottom: 17.5%;
    right: 0;
    background-color: var(--accent);
    display: flex;
    flex-direction: column;
    padding: 10px 5px;
}
.socials-sidebar a {
    color: #ffffff !important;
    text-decoration: none !important;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 5px;
}
.socials-sidebar a:last-child {
    margin-bottom: 0;
}


.checkbox-list-holder {
    border: 1px solid var(--primary) !important;
    padding: 0.6rem 0.5rem !important;
    border-radius: 0;
    max-height: 250px;
    overflow-y: auto;
}
.checkbox-list-holder label {
    display: block;
    padding: 2px 0.5rem;
}
.checkbox-list-holder label:hover {
    background-color: rgba(0, 0, 0, 0.08);
}


.parked-page {
    display: flex;
    flex-direction: column;
    margin-top: calc(-1 * var(--navbar-height));
    padding-top: 50px;
    min-height: 100vh;
}
.parked-logo {
    max-width: 100%;
    max-height: 100px;
}
.parked-footer {
    margin-top: auto;
}
.parked-footer .main-footer {
    background-color: var(--primary);
    color: var(--primary-text-color) !important;
    padding: 25px;
}
.parked-footer .sub-footer {
    color: var(--primary) !important;
    padding: 25px;
}

.parked-footer .footer-contact-col {
    font-size: 18px;
}
.parked-footer .footer-contact-col i {
    font-size: 22px;
}
.parked-footer .social-link {
    background-color: var(--accent);
    color: var(--accent-text-color) !important;
    text-decoration: none !important;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;

    transition: all 0.2s ease;
}
.parked-footer .social-link:hover {
    background-color: var(--primary-text-color);
    color: var(--primary) !important;
}

.navbar-spacer {
    height: var(--navbar-height);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    z-index: 100;
    background-color: #ffffff;
}
.navbar-logo {
    height: 95px;
}
.navbar-holder {
    z-index: 100;
    display: inline-flex;
    justify-content: end;
}
.navbar-link {
    display: block;
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 18px;
    margin-right: 25px;
    font-weight: 400;
}
.navbar-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background-color: var(--primary);

    transition: width 0.2s ease;
}
.navbar-link:hover::after {
    width: 100%;
}
.navbar-link:last-child {
    margin-right: 0;
}

.nav-toggler {
    z-index: 200;
    display: none;
    position: relative;
    height: 18px;
    width: 22px;
    padding: 0.5rem 0;
    cursor: pointer;
}
.nav-toggler .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #000000;
}
.nav-toggler .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.nav-toggler .bar:nth-child(3) {
    top: unset;
    bottom: 0;
}

.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}


header.transparent {
    background-color: transparent !important;

    transition: background-color 0.1s ease;
}
header.transparent .navbar-logo {
    filter: invert(1);
}
header.transparent .navbar-link {
    color: #ffffff !important;
}
header.transparent .nav-toggler .bar {
    background-color: #ffffff;
}
header.open.transparent .nav-toggler .bar {
    background-color: #000000;
}

header.transparent.solid {
    background-color: #ffffff !important;
}
header.transparent.solid .navbar-logo {
    filter: unset;
}
header.transparent.solid .navbar-link {
    color: #000000 !important;
}
header.transparent.solid .nav-toggler .bar {
    background-color: #000000;
}


@media only screen and (max-width: 991px) {
    header .container {
        width: 100%;
        max-width: none;
    }
    header.transparent .navbar-link {
        color: #000000 !important;
    }
    .navbar-overlay.open {
        display: block;
    }
    .navbar-holder {
        display: flex;
        flex-direction: column;
        position: fixed;
        align-items: start;
        justify-content: start;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        top: 0;
        right: -100%;
        background-color: #ffffff;
        padding: 70px 20px 30px 20px;

        transition: right 0.2s ease;
    }
    .navbar-holder.open {
        right: 0;
    }
    .navbar-link {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .nav-toggler {
        display: inline-block;
    }
}




footer {
    padding: 50px 0;
    background-color: var(--secondary);
}
.footer-logo {
    height: 50px;
}
.footer-title {
    margin-bottom: 15px;
}
.footer-link {
    display: block;
    color: #000000 !important;
    text-decoration: none !important;
    margin-bottom: 5px;
    font-weight: 400;
}
.footer-link:last-child {
    margin-bottom: 0;
}
.footer-link:hover {
    text-decoration: underline !important;
}

.footer-credits-row {
    margin-top: 35px;
}
.footer-credits {
    font-weight: 400;
    font-size: 12px;
}
.footer-credits a {
    color: #000000 !important;
    text-decoration: none !important;
}
.footer-credits a:hover {
    text-decoration: underline !important;
}


.grid.v-align .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-align .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.call-to-action {
    padding: 50px 0;
}
.call-to-action .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.image-collection {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}
.image-collection img {
    position: absolute;
    width: 55%;
}
.image-collection .image-1 {
    left: 0;
    bottom: 0;
}
.image-collection .image-2 {
    top: 0;
    right: 0;
}


.spacer-mobile {
    display: none;
}



.page-header {
    position: relative;
    padding: calc((var(--navbar-height) / 2) + 100px) 0 100px 0;
    background-size: cover;
    background-position: center;
}
.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.65);
}
.page-header-title {
    position: relative;
    text-align: center;
}
.page-header-title h1 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    color: var(--accent-text-color);
}
.page-header-stripe {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--primary);
}


.splide ul li::before {
    display: none !important;
}
.splide__slide {
    position: relative;
}
.splide__slide__overlay {
    opacity: 0;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(49, 137, 193, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    transition: opacity 0.2s ease;
}
.splide__slide:hover .splide__slide__overlay {
    opacity: 1;
}
.splide__slide__overlay__title {
    font-size: 2rem;
    font-weight: 300;
}
.splide__slide__overlay__subtitle {
    font-size: 1.2rem;
    font-weight: 200;
}
.splide__slide img {
    width: 100%;
}


.video-banner {
    position: relative;
    background-color: #cccccc;
    height: 80vh;
    overflow: hidden;
    color: #ffffff;
}
.video-banner h1 {
    font-size: 4rem;
    font-weight: 300;
}
.video-banner .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%, -50%);
}
.video-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}


.big-text {
    font-size: 25px;
    font-weight: 300;
}


.social-icons {

}
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    color: var(--accent-text-color) !important;
    height: 40px;
    width: 40px;
    transition: all 0.2s ease;
    margin-right: 5px;
}
.social-icon:hover {
    opacity: 0.8;
}

.social-icons.small .social-icon {
    height: 30px;
    width: 30px;
}


.logos-row {
    text-align: center;
}
.logos-row img {
    height: 40px;
}



@media only screen and (max-width: 991px) {
    .mt-mobile {
        margin-top: 50px;
    }
    .mb-mobile {
        margin-bottom: 50px;
    }

    .spacer-mobile {
        display: block;
    }

    .grid.invert-mobile .row {
        flex-direction: column-reverse !important;
    }
    .card {
        height: unset;
    }

    h1, .h1 {
        font-size: 2rem;
    }
    .video-banner h1 {
        font-size: 2.5rem;
    }
}











.auth-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #ECF0FE;
    padding: 50px 0;
}
.auth-block {
    padding: 30px;
    width: 450px;
    max-width: 90%;
    border-top: 2px solid #000000;
    background-color: #ffffff;
    box-shadow: 0px 10px 25px #eaeaea
}
.auth-block h1 {
    font-size: 1.5rem;
}


.app-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}
.app-content .header {
    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 100;
    position: fixed;
    top: 0;
    right: 0;
    padding: 0 25px;
    background-color: #ffffff;
    width: calc(100% - 250px);
    height: 65px;
}
.app-content .header .header-logo {
    width: 100%;
    text-align: center;
    height: 75%;
}
.app-content .header .header-logo .logo-x {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    font-size: 30px;
    height: 100%;
    vertical-align: top;
}
.app-content .header .header-logo img {
    vertical-align: top;
    height: 100%;
}
.app-content .header .profile-icon {
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--app-primary);
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none !important;
}


.app-content .sidebar {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    background-color: #ffffff;
    height: 100vh;
}
.app-content .sidebar .sidebar-header {
    width: 100%;
    height: 65px;
    padding: 10px 15px;
    background-color: #ffffff;
}
.app-content .sidebar .sidebar-header .logos {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-content .sidebar .sidebar-header .logos div {
    width: 50%;
    padding: 0 10px;
}
.app-content .sidebar .sidebar-header img {
    width: 100%;
    height: auto;
}
.app-content .sidebar .sidebar-header img.main {

}
.app-content .sidebar .sidebar-links {
    padding: 20px 25px;
}
.app-content .sidebar .sidebar-links a {
    position: relative;
    display: block;
    width: 100%;
    color: var(--app-primary);
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 300;
    padding: 8px 5px 10px 20px;
}
.app-content .sidebar .sidebar-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: var(--app-primary);
    border-radius: 5px;
    opacity: 0;

    transition: opacity 0.25s ease;
}
.app-content .sidebar .sidebar-links a:hover::before,
.app-content .sidebar .sidebar-links a.active::before {
    opacity: 1;
}


.app-content .body {
    position: relative;
    top: 65px;
    left: 250px;
    width: calc(100% - 250px);
    min-height: calc(100vh - 65px);
    padding: 35px;
    background-color: #ECF0FE;
    color: #000000;
}
.app-content .body:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/pattern.png');
    background-repeat: repeat;
    background-size: 180px 180px;
    opacity: 0.075;
}
.app-content .body h1 {
    font-size: 2rem;
}
.app-content .body h2 {
    font-size: 1.4rem;
}

.app-content .content-box {
    display: block;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 2px;
    margin-bottom: 40px;
}

.app-content .content-box.link {
    text-decoration: none;
    transition: transform 0.2s ease;
}
.app-content .content-box.link:hover {
    transform: translateY(-5px);
}
.app-content .content-box .link-box-icon {
    font-size: 40px;
}
.app-content .content-box .link-box-title {
    font-size: 1.3rem;
    font-weight: 500;
}

.app-content .body .btn-primary {
    background-color: var(--app-primary) !important;
    border: 1px solid var(--app-primary) !important;
    color: #ffffff !important;
}
.app-content .body .btn-primary:hover {
    border: 1px solid var(--app-primary-light) !important;
    background-color: var(--app-primary-light) !important;
}


.app-content .modal-content {
    border-radius: 0 !important;
    border: none !important;
}



.app-content .search-result {
    display: flex;
    align-items: center;
}
.app-content .search-result .time {
    margin-right: 30px;
    font-weight: 500;
    font-size: 22px;
}
.app-content .search-result .time .date {
    font-size: 14px;
}
.app-content .search-result .user-info {
    margin-right: 25px;
}
.app-content .search-result .action {
    margin-left: auto;
}


.app-content a {
    color: #212529;
}

.app-content .breadcrumb-item {
    font-size: 14px;
    color: #000000;
}
.app-content .breadcrumb-item a {
    color: #000000;
}

.app-content .badge-sm {
    padding: 0.2em 0.4em;
}
.app-content .badge.bg-white {
    background-color: #ffffff !important;
    color: #000000 !important;
}


.app-content .pagination li::before {
    display: none !important;
}
.app-content .pagination .page-link {
    box-shadow: none !important;
    outline: none !important;
    color: #212529 !important;
}
.app-content .pagination .page-item.active .page-link {
    background-color: var(--app-primary) !important;
    color: var(--app-primary-text-color) !important;
    border-color: var(--app-primary) !important;
}


.app-content .sidebar-toggler {
    z-index: 1000;
    position: fixed;
    top: 5px;
    left: 8px;
    display: none;
    padding: 0;
    color: var(--app-primary);
    font-size: 40px;
}
.app-content .sidebar-toggler i {
    display: flex;
}
.app-content .sidebar-toggler.active {
    color: var(--app-primary);
}

.app-content .table {
    margin-bottom: 0;
}
.app-content .table .th {
    display: none;
}

.app-content .logo-preview {
    max-height: 20px;
    margin: 10px 0;
}

@media only screen and (max-width: 1050px) {
    .app-content .header {
        height: 50px;
        padding: 0 15px;
        width: 100%;
    }

    .app-content .sidebar-toggler {
        display: block;
    }

    .app-content .header .profile-icon {
        height: 35px;
        width: 35px;
    }

    .app-content .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        transition: left 0.2s ease;
    }
    .app-content .sidebar.open {
        left: 0;
    }
    .app-content .sidebar .sidebar-header {
        height: 50px;
        text-align: right;
    }
    .app-content .sidebar .sidebar-links {
        padding: 20px 15px;
    }

    .app-content .body {
        top: 50px;
        left: 0;
        width: 100%;
        min-height: calc(100vh - 50px);
        padding: 35px 15px;
    }


    .app-content .body h1 {
        font-size: 1.5rem;
    }
    .app-content .body h2 {
        font-size: 1.2rem;
    }


    .app-content .table:not(.show-th) tr:has(th) {
        display: none;
    }
    .app-content .table tr {
        display: flex;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
        border: none;
        border-bottom: 1px solid #dee2e6;
    }
    .app-content .table tr:nth-child(2) {
    }
    .app-content .table tr:last-child {
        border-bottom: none;
    }

    .app-content .table tr:has(th) {
        padding-top: 0;
        padding-bottom: 0;
    }
    .app-content .table tr:has(th) th {
        padding-top: 15px;
        padding-bottom: 15px;
        border: none;
    }

    .app-content .table td {
        border: none;
        font-size: 14px;
    }
    .app-content .table.flex-mobile td {
        display: flex;
    }
    .app-content .table .th,
    .app-content .table .text {
        display: block;
        flex: 1;
    }
    .app-content .table .th {
        display: block;
        font-weight: bold;
    }
    .app-content .table > :not(caption) > * > * {
        padding: 0.2rem 0.5rem;
    }

    .app-content .table tr td:last-child:has(.btn) {
        margin-top: 5px !important;
    }

    .app-content .table.vertical td:first-child {
        font-weight: bold;
    }



    .app-content .search-result {
        flex-direction: column;
        align-items: start;
        text-align: left;
    }
    .app-content .search-result .time {
        margin-bottom: 10px;
    }
    .app-content .search-result .user-info {
        margin-bottom: 20px;
    }
    .app-content .search-result .action {
        margin-left: 0;
        width: 100%;
    }
    .app-content .search-result .action .btn {
        width: 100%;
    }

    .app-content .content-box {
        padding: 25px 15px;
    }


    .app-content .sidebar .sidebar-header .logos {
        justify-content: end;
    }
    .app-content .sidebar .sidebar-header .logos div {
        width: 40%;
    }

    .app-content .header .header-logo .logo-x {
        font-size: 20px;
    }
}



.navigation-open-toggle {
    position: absolute;
    top: 0;
    right: 50px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 3rem;
    color: #000000;
    cursor: pointer;
}
.transparent .navigation-open-toggle {
    color: #ffffff;
}
.transparent.solid .navigation-open-toggle {
    color: #000000;
}

.navigation {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.navigation-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}
.navigation-body {
    position: absolute;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 50px;

    transition: right 0.2s ease;
}
.navigation-body__toggler {
    float: right;
    display: inline-block;
    font-size: 2.5rem;
    line-height: 2.5rem;
    cursor: pointer;
}
.navigation-body__links {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
}
.navigation-body__links a {
    font-size: 1.6rem;
    font-weight: 200;
    color: #000000 !important;
    text-decoration: none !important;
    margin-bottom: 25px;
}
.navigation-body__links a:hover {
    text-decoration: underline !important;
}

.navigation.open .navigation-overlay {
    display: block;
}
.navigation.open .navigation-body {
    right: 0;
}


.big-footer-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}
.big-footer-link {
    white-space: nowrap;
    font-size: 1.3rem;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
    text-decoration: none !important;
    color: var(--primary) !important;
    font-weight: 300;
}
.big-footer-link:hover {
    text-decoration: underline !important;
}

@media only screen and (max-width: 767px) {
    footer {
        padding: 30px 0;
    }

    .big-footer-menu {
        justify-content: center;
    }

    .navbar-logo {
        height: 60px;
    }
    .navigation-open-toggle {
        right: 20px;
        font-size: 2.5rem;
    }

    h1, .h1 {
        font-size: 3rem;
    }
    h2, .h2 {
        font-size: 1.8rem;
    }
    h3, .h3 {
        font-size: 1.5rem;
    }

    .footer-credits-row {
        margin-top: 45px;
    }

    .navbar-spacer {
        height: var(--navbar-height-mobile);
    }

    .page-header {
        padding: calc((var(--navbar-height-mobile) / 2) + 75px) 0 75px 0;
    }

    .page-header-title h1 {
        font-size: 2rem;
    }
}



.user-review {
    background-color: var(--secondary);
    padding: 30px;
    text-align: left;
    height: 100%;
    border-top: 3px solid var(--accent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 10px;
}
.user-review__text {

}
.user-review__author {
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}
