﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --gradient: linear-gradient(45deg, rgba(28, 42, 71, 1) 0%, rgba(54, 78, 123, 1) 100%);
    --blue: #2A4577;
    --white: #ffffff;
    --dark: #191919;
    --grey: #e1e1e1;
    --dark-grey: #828282;
    --light-grey: #f5f5f5;
    --tur: #17B4CC;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
    overflow-x: hidden;
}

body {
    color: var(--dark);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}

/* 01 ############################### Default Styles ############################### */

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--blue);
}

ol li {
    list-style: decimal;
}


/*  ----------------- Images  ----------------- */

figure {
    position: relative;
    margin: 0;
}

    figure img {
        border-radius: 15px;
        box-shadow: 5px 16px 24px rgb(0 0 0 / 16%);
    }

img {
    max-width: 100%;
    max-height: 100%;
}

.image-dot-left img,
.image-dot-right img {
    z-index: 1;
    position: relative;
}

.image-dot-left:before {
    content: " ";
    position: absolute;
    background: url(../img/greydot.gif) repeat;
    display: block;
    height: 300px;
    width: 460px;
    left: -45px;
    top: -50px;
    z-index: 0;
    border-radius: 15px;
}

.image-dot-right:before {
    content: " ";
    position: absolute;
    background: url(../img/greydot.gif) repeat;
    display: block;
    height: 300px;
    width: 460px;
    right: -50px;
    top: -50px;
    z-index: 0;
    border-radius: 15px;
}

.image-dot-right.two-images-box .image-two {
    position: absolute;
    left: -50px;
    top: 150px;
    z-index: 1;
}

.image-dot-right.two-images-box .image-two-a {
    position: absolute;
    left: -20px;
    top: 150px;
    z-index: 1;
}

.image-dot-left.two-images-box .image-two {
    position: absolute;
    right: -50px;
    top: 150px;
    z-index: 1;
}

.image-dot-left.two-images-box .image-two-a {
    position: absolute;
    right: -20px;
    top: 150px;
    z-index: 1;
}

/*  ----------------- Icons  ----------------- */

.icon-shadow {
    height: 75px;
    width: 75px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
}

/* --------------------- Buttons -------------------*/

.button {
    background: var(--tur);
    display: inline-block;
    border-radius: 35px;
    padding: 12px 36px;
    color: var(--white);
    transition: .2s all ease;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

#main-banner .button,
.cta-box .button,
#section-banner .button {
    background: var(--tur);
}

#section-banner .button {
    max-width: 375px;
    margin: 1rem auto;
}

.button:hover {
    box-shadow: 0 12px 16px hsl(0deg 0% 0% / 20%);
}

.button.transparent,
.button.transparent:hover {
    background: none !important;
    box-shadow: none;
}

.button.transparent-border {
    background: rgba(250, 250, 250, 0.1);
    box-shadow: none;
    border: 1px solid var(--white);
}

#main-header .button {
    padding: 8px 25px 5px 25px;
}

    #main-header .button.transparent {
        padding-left: 5px;
        padding-right: 5px;
    }

.link-icon {
    position: relative;
    transition: all 0.2s;
    right: -4px;
    top: 1px;
}

a:hover .link-icon,
.download-report:hover {
    right: -8px;
}

/* -------------------Responsive Navigation---------------- */

.navbar {
    color: var(--white);
    position: fixed;
    top: 30px;
    right: 10px;
    display: none;
    z-index: 99;
}

    .navbar li.navbar-header {
        border-bottom: 1px solid #e1e1e1;
        margin-bottom: 15px;
    }


.navbar-toggle {
    border: none;
    background-color: transparent;
    cursor: pointer;
    right: 20px;
    position: relative;
}

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        margin: 4px 0;
        background-color: var(--dark);
        transition: all 0.3s ease-in-out;
    }

.home .navbar-toggle .icon-bar {
    background-color: var(--white);
}

.home.sticky .navbar-toggle .icon-bar,
.sticky .navbar-toggle .icon-bar {
    background-color: var(--dark);
}

.open-menu .navbar-toggle .icon-bar:nth-of-type(2) {
    opacity: 0;
}

.open-menu .navbar-toggle .icon-bar:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
}

.open-menu .navbar-toggle .icon-bar:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.navbar-collapse {
    position: fixed;
    top: 0;
    right: -330px;
    width: 330px;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.5s ease;
    overflow-y: auto
}

    .navbar-collapse.open {
        right: 0;
    }

.navbar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}


#main-header .navbar-nav li {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2rem;
    display: block;
}

    #main-header .navbar-nav li a {
        display: block;
        padding: 0.6rem 1rem;
        position: relative;
    }

        #main-header .navbar-nav li a.button {
            color: var(--white);
        }

            #main-header .navbar-nav li a.button.button.transparent {
                color: var(--dark);
            }

.navbar-nav li.navbar-header img {
    max-width: 150px;
    margin: 10px 0 10px 10px;
}

.navbar-nav li.navbar-header {
    margin-bottom: 0.5rem;
}

.navbar-nav li a {
    display: block;
    padding: 10px;
    color: var(--dark);
    text-decoration: none;
}

.dropdown-menu {
    display: none;
    position: static;
    margin: 0;
    padding: 1rem;
    width: auto;
    background: #f5f5f5;
    border: none;
    box-shadow: none;
    margin-left: -1rem;
}

    .dropdown-menu li a {
        display: block;
        padding: 10px 10px 10px 25px !important;
        color: var(--dark);
        text-decoration: none;
        font-weight: normal;
    }

.navbar .close {
    position: absolute;
    right: 22px;
    font-size: 19px;
    cursor: pointer;
    top: 20px;
    color: var(--dark);
}

.open-menu {
    overflow: hidden;
}

#main-header .navbar-nav .sub-menu-title {
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 15px 10px 5px 25px;
    position: relative;
}

.sub-menu-title:before {
    content: "";
    background: var(--blue);
    height: 18px;
    width: 3px;
    position: absolute;
    left: 15px;
    top: 15px;
}

#res-nav-contact {
    border-top: 1px solid var(--grey);
    padding: 1rem;
    margin-top: 0.5rem;
}

    #res-nav-contact .button {
        margin-bottom: 0.5rem;
    }

        #res-nav-contact .button.transparent {
            border: 1px solid var(--grey);
            background: none;
            color: var(--dark);
        }

    #res-nav-contact ul {
        display: block !important;
    }

.caret {
    position: absolute;
    right: 28px;
    top: 12px;
    opacity: 0.6;
    transform: rotate(90deg);
}




/* 02 ############################### Grid System ############################### */

.row {
    max-width: 1540px;
    margin: 0 auto;
    display: grid;
}

.full-width {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
}

.one-c {
    display: grid;
    grid-template-columns: 1fr;
}

.two-c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.two-uc {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.three-c {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

.three-uc {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
}

.four-c {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.five-c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.six-c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.seven-c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.eight-c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.twelve-c {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}

.two-one-c {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4.5rem;
}


/*  ----------------- Spacing  ----------------- */

.spacing-200 {
    padding: 2rem 0;
}

.spacing-300 {
    padding: 3rem 0;
}

.spacing-400 {
    padding: 4rem 0;
}

.spacing-500 {
    padding: 5rem 0;
}

.spacing-600 {
    padding: 6rem 0;
}

.spacing-700 {
    padding: 7rem 0;
}

.spacing-900 {
    padding: 9rem 0;
}

.spacing-negative {
    margin-top: -5rem;
}

/*  ----------------- Positioning Content  ----------------- */

.v-center-content {
    align-self: center;
}

.h-center-content {
    max-width: 580px;
    margin: 0 auto;
}

.h-v-center {
    place-items: center;
}



/*  ----------------- Backgrounds ----------------- */

.bg-light-grey {
    position: relative;
    background: var(--light-grey);
}

.bg-image-half {
    position: relative;
}

    .bg-image-half::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(../img/bg-news.jpg) no-repeat;
        z-index: -1;
        height: 600px;
        color: var(--white);
    }

    .bg-image-half .header-style-one h2,
    .bg-image-half .header-style-one p {
        color: var(--white);
    }


/* 03 ############################### Typography ############################### */


body,
h1,
h2,
h3,
h4,
h5,
h6,
textarea,
select,
button {
    font-family: 'Roboto', sans-serif;
}

body,
input,
textarea,
select,
button {
    font-size: 1.1rem;
    line-height: 2.1rem;
    color: var(--dark);
}

h1 {
    font-style: normal;
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: normal;
}


h2 {
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 3.6rem;
}

h3 {
    font-weight: 700;
}

h4 {
    line-height: 1.4;
}

h5 {
    font-weight: 500;
    font-size: 1.2rem;
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

h1 span,
h2 span,
h3 span {
    font-weight: 700;
}

/*  ----------------- Text Styles  ----------------- */

.text-center {
    text-align: center;
}

.text-big {
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.text-small {
    font-size: 1rem;
}

#banner p {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-top: 0;
}

.text-deco:before {
    content: "";
    width: 5px;
    background: var(--tur);
    height: 20px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: 3px;
}

/*  ----------------- Header Styles  ----------------- */

.header-style-one {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 5rem auto;
}

    .header-style-one p {
        font-size: 1.3rem;
        color: var(--dark-grey);
    }

    .header-style-one span,
    .header-style-two span {
        font-weight: 700;
    }

    .header-style-one .text-small,
    .header-style-two .text-small {
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--blue);
        padding-bottom: 0;
    }




/* 04 ############################### Global Site Sections ############################### */

/*  ----------------- Header  ----------------- */

.main-header-inner {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 99;
    padding: 0 1.5rem;
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    height: 95px;
}

.home .main-header-inner {
    background: none;
}

.sticky .main-header-inner {
    background: var(--white);
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    border-bottom: none;
    transition: all .2s;
}

.home.sticky .main-header-inner {
    background: var(--white);
}

#main-header .main-header-inner nav {
    text-align: center;
}

#main-header ul {
    margin: 0;
    padding: 0;
}

#main-header .main-header-inner li {
    padding: 0 17px;
    display: inline-block;
}

    #main-header .main-header-inner li a {
        display: inline-block;
        text-decoration: none;
        position: relative;
        font-weight: 500;
        color: var(--dark);
        transition: .2s all ease-in;
    }

.home #main-header .main-header-inner li a {
    color: var(--white);
}


#main-header .main-header-inner nav a {
    height: 95px;
    line-height: 95px;
}

.home #main-header nav a:hover,
.home #main-header aside#header-cta a:hover {
    opacity: 0.7;
}

.sticky #main-header .main-header-inner nav a:hover,
.sticky #main-header aside#header-cta a:hover {
    color: var(--blue);
    opacity: 1;
}

#header-cta {
    text-align: right;
}

    #header-cta li {
        padding-left: 0;
    }

.nav-title img {
    border: 1px solid var(--grey);
    padding: 10px;
    border-radius: 5px;
    height: 50px;
    width: 50px;
    float: left;
}

/* Logo */

#logo img {
    transition: .2s all ease;
    position: absolute;
    left: 1.5rem;
    top: 14px;
    max-width: 210px;
}

.sticky #logo-white,
#logo-black {
    opacity: 0;
}

.home #main-header #logo-black {
    opacity: 0;
}

#main-header #logo-black,
.sticky #main-header #logo-black {
    opacity: 1;
}

/* Sub Menu */

#main-header .main-header-inner .sub-menu {
    background: var(--white);
    width: 100%;
    position: absolute;
    top: 95px;
    left: 0;
    color: var(--dark);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
    border-top: 1px solid var(--grey);
    box-shadow: 0 5px 5px rgb(0 0 0 / 15%);
    text-align: left;
    padding: 25px;
}

    #main-header .main-header-inner .sub-menu .three-c {
        max-width: 900px;
        margin: 0 auto;
    }

    #main-header .main-header-inner .sub-menu a {
        color: var(--dark) !important;
    }

        #main-header .main-header-inner .sub-menu a:hover {
            color: var(--blue) !important;
            opacity: 1;
        }

    #main-header .main-header-inner .sub-menu h5 {
        margin-bottom: 0.3rem;
        position: relative;
        padding-left: 10px;
        font-size: 1rem;
    }

        #main-header .main-header-inner .sub-menu h5:before {
            content: "";
            height: 15px;
            width: 3px;
            background: var(--blue);
            display: block;
            position: absolute;
            left: 0;
            top: 8px;
        }

#main-header .main-header-inner nav .sub-menu ul li {
    display: block;
    padding-left: 10px;
}


#main-header .main-header-inner nav .sub-menu a {
    font-weight: normal;
    line-height: normal;
    padding: 0.5rem 0;
    text-transform: none;
    display: block;
    transition: .2s all ease-in;
    color: var(--dark);
    height: unset;
    font-size: 1.1rem;
}

.sub-menu span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.sub-menu p {
    font-size: 1rem;
    line-height: 1.4rem;
}

#main-header .main-header-inner nav .sub-menu a:hover {
    color: var(--blue);
}

#main-header .main-header-inner nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.home #main-header .main-header-inner .button,
.home #main-header .main-header-inner a.button.transparent,
.home #main-header .main-header-inner a {
    color: var(--white);
}

.home #main-header .main-header-inner .button {
    border-color: var(--white);
}

#main-header .main-header-inner a,
#main-header .main-header-inner a.button.transparent,
.sticky .main-header-inner a,
.sticky #main-header nav a,
.sticky #main-header .main-header-inner a.button.transparent,
.home.sticky #main-header .main-header-inner a {
    color: var(--dark);
}

#main-header .main-header-inner .button,
.sticky #main-header .main-header-inner .button {
    border-color: var(--dark);
    color: var(--dark);
}

.menu-item-has-children svg {
    transform: rotate(90deg);
    position: relative;
    top: 2px;
    left: 5px;
}


/*  ----------------- Footer ------------------ */

#main-footer {
    background: var(--gradient);
    color: var(--white);
}

    #main-footer h5 {
        text-transform: uppercase;
    }

    #main-footer a {
        color: var(--white);
    }

/* 06 ############################### Widgets ############################### */

/* ----------------- Logo Slider ------------------ */

.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
    text-align: center;
}

    .logo-slider .text-small {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        color: var(--grey);
        display: none;
    }

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}

    .logos-slide img {
        max-width: 137px;
        max-height: 30px;
        margin: 0 40px;
        opacity: 0.6;
        display: inline-block;
        vertical-align: middle;
    }

    .logos-slide::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logo-slider:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo-slider:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo-slider:before,
.logo-slider:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}


/* ----------------- Product Box ------------------ */

.product-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    transition: .2s all ease-in-out;
    border-bottom: 5px solid var(--white);
    z-index: 2;
}

    .product-box:hover {
        background: var(--white);
        box-shadow: 0 .5vw 4vw -.7vw rgba(0, 0, 0, .2);
        border-color: var(--blue);
    }

    .product-box h3 {
        text-transform: uppercase;
    }

/* ----------------- CTA Box ------------------ */

.cta-box {
    background: url(../img/bg-free-trial.jpg) left top no-repeat var(--blue);
    background-size: cover;
    border-radius: 25px;
    place-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: visible;
    height: 360px;
}

.cta-content {
    position: relative;
    max-width: 600px;
    top: 10%;
    margin: 0 auto;
    color: var(--white);
}


.cta-image {
    position: relative;
    left: 70px;
}

.freetrial-select select {
    width: 100%;
}

.freetrial-select select {
    background: var(--light-grey);
    border-radius: 5px;
    border: none;
    padding: 1rem;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
}

.other-source {
    display: none;
}
/* ----------------- Team Box ------------------ */
.team-box {
    border-radius: 15px;
    background: var(--white);
    transition: all .25s ease;
    text-align: center;
    box-shadow: 0 .5vw 4vw -.7vw rgba(0, 0, 0, .2);
}

    .team-box:hover {
        box-shadow: 0 .5vw 2vw -.2vw rgba(0, 0, 0, .2);
    }

    .team-box img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        margin-bottom: 0.7rem;
    }

    .team-box h5 {
        margin: 0 1.2rem 1.2rem 1.2rem;
        padding: 0;
        line-height: normal;
    }

        .team-box h5 span {
            font-size: 1rem;
            display: block;
            font-weight: normal;
            color: var(--dark-grey);
        }

.profile-text h2 {
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
}

    .profile-text h2 span {
        display: block;
        font-size: 1.4rem;
        font-weight: normal;
        color: var(--dark-grey);
    }


.featherlight-inner::after {
    background: url(../img/bg-news.jpg) no-repeat;
    background-size: cover;
    width: 690px;
    height: 100%;
    display: block;
    content: " ";
    position: absolute;
    left: -160px;
    top: 0;
    bottom: 0;
}


/* 07 ############################### Pages ############################### */


/*  ----------------- Home ------------------ */

/* Banner */

#main-banner {
    background: var(--gradient);
    color: var(--white);
    place-items: center;
    display: grid;
    position: relative;
    overflow: hidden;
    padding: 12rem 0;
}

    #main-banner::before {
        background: var(--gradient);
        opacity: 0.3;
        content: " ";
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    #main-banner .vertical-lines {
        z-index: 1;
        opacity: 0.1;
        position: absolute;
        height: 90vh;
    }

.vertical-lines {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    display: flex;
}

.vertical-line {
    flex: 1;
    height: 100%;
    border-left: 1px solid #eaeaea;
}

#main-banner #bannervideo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transition: .5s all;
    opacity: 0.8;
}

#main-banner-content {
    grid-column: 2 / span 7;
    position: relative;
    z-index: 3;
}

#main-banner .cta-double {
    margin-top: 4rem;
}

#main-banner h1 {
    margin-top: 1rem;
}

#main-banner .text-small,
#section-banner .text-small {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tur);
    text-transform: uppercase;
    padding-bottom: 0;
}

/* Intro */

#intro::after {
    background: url(../img/bg-globe.png) no-repeat center -75px;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    height: 780px;
    display: block;
    content: "";
    margin-top: -187px;
}

#intro {
    position: relative;
}

/* Companies */

#companies {
    background: url(../img/bg-globe.png) -1400px 490px no-repeat;
    justify-items: center;
}

    #companies img {
        margin: 3rem;
        opacity: 0.5;
        max-width: 160px;
        max-height: 40px;
    }


/* --------------------------News-------------------------------- */

.home #news {
    background: url(../img/bg-news.jpg) no-repeat;
    background-size: cover;
}

    .home #news .four-c {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .home #news,
    .home #news a {
        color: var(--white);
    }

.news-box a {
    padding: 2rem;
    border-radius: 15px;
    transition: .2s all ease-in-out;
    color: var(--dark);
    display: block;
}

    .news-box a:hover {
        background: var(--white);
        box-shadow: 0 .5vw 6vw -.7vw rgba(0, 0, 0, .3);
    }

.home #news .news-box:hover a {
    color: var(--dark);
}

.post-meta {
    color: var(--dark-grey);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.home .post-meta,
.home .news-box {
    color: var(--white);
}

.news-box:hover .post-meta {
    color: var(--dark-grey);
}

.news-box h4 {
    margin-bottom: 0;
}

.view-all-news {
    text-align: right;
    align-self: center;
}

/* Featured Story */

#featured-story .row {
    border-bottom: 1px solid var(--grey);
}

#featured-story h2 {
    font-weight: 600;
    margin-bottom: 0;
}

#featured-story a,
.recent-news-widget li a {
    color: var(--dark);
}

/* News Listing */

#news-listing h3 {
    margin-top: 0;
}

/* News Article Single Page */

.news-article figure,
.report-article figure {
    margin: 0 0 3rem 0;
    max-height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.news-article h1,
.report-article h1 {
    font-size: 3rem;
    margin-top: 2rem;
}

.news-article .post-meta > span:last-child:before,
.report-article .post-meta > span:last-child:before {
    content: "|";
    color: var(--dark-grey);
    margin: 0 0.5rem;
}

.news-article ul {
    margin-left: 2.5rem;
}

    .news-article ul li {
        list-style: circle;
    }

    .news-article ul li,
    .news-article ol li {
        margin-left: 0;
        padding-left: 0;
    }

/* Sidebar */

.recent-news-widget li {
    border-bottom: 1px solid var(--grey);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

    .recent-news-widget li a {
        display: grid;
        grid-template-columns: 0.7fr 2fr;
    }

.recent-news-widget img {
    border-radius: 15px;
    max-width: 100px;
}

.recent-news-widget h4 {
    margin: 0;
    line-height: normal;
    transition: .2s all ease-in;
}

.recent-news-widget li a:hover h4 {
    color: var(--tur)
}

/* Sidebar CTA */

.cta-widget {
    background: url(../img/bg-widget.jpg) no-repeat;
    background-size: cover;
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 15px;
}

    .cta-widget .button {
        background: var(--tur);
    }

    .cta-widget h3 {
        font-size: 2rem;
        margin: 0;
    }

    .cta-widget img {
        margin-bottom: 1rem;
    }

/*-------------------Contact--------------------------*/

#section-style-boxed .row {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 .5vw 4vw -.7vw rgba(0, 0, 0, .2);
    max-width: 1360px;
    margin: -150px auto 0 auto;
}


    #section-style-boxed .row img {
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

#contact-form {
    padding: 2rem;
}

#contact-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

#contact-info {
    max-width: 1160px;
    margin: 0 auto;
}

#contact-select,
#contact-text,
#contact-send {
    grid-column: span 2;
}

    #contact-us input,
    #contact-select select,
    #contact-text textarea,
    #contact-send button {
        width: 100%;
    }


    #contact-us input,
    #contact-select select,
    #contact-text textarea {
        background: var(--light-grey);
        border-radius: 5px;
        border: none;
        padding: 1rem;
    }

    #contact-send button {
        cursor: pointer;
        border: none;
        padding: 1rem;
    }

.hint {
    color: var(--dark-grey);
    font-size: 1rem;
}


/*------------------------------Reports--------------------------- */

#reports {
    position: relative;
    background: url(../img/bg-news.jpg) no-repeat;
    background-size: cover;
}

    #reports .header-style-one, #reports .header-style-one .text-small, #reports .header-style-one a {
        color: #fff;
    }

    #reports .report-box {
        box-shadow: 0 .5vw 4vw -.7vw rgba(0, 0, 0, .2);
    }

.report-box {
    background: var(--white);
    border-radius: 15px;
    transition: .2s all ease-in-out;
}

    .report-box:hover {
        box-shadow: 0 .5vw 6vw -.7vw rgba(0, 0, 0, .3);
    }

        .report-box:hover img {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

#reports-listing img {
    border-radius: 15px;
}

.report-content {
    padding: 1.5rem 2rem 2rem 2rem;
}

.report-box a {
    display: block;
    color: var(--dark);
}

.report-image {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

    .report-image img {
        transition: all .3s ease-in-out;
        vertical-align: middle;
    }

.report-box:hover .report-image img {
    transform: scale(1.1);
}

.report-type {
    color: var(--dark-grey);
    border: 1px solid var(--dark-grey);
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    max-width: 120px;
    text-align: center;
    line-height: normal;
    padding: 4px;
}

.download-report {
    color: var(--blue);
}

.report-article {
    max-width: 1260px;
    margin: 0 auto;
}

.report-article-content {
    max-width: 960px;
    margin: 0 auto;
}

.report-article .cta-form {
    position: relative;
    z-index: 2;
}


/* CTA Content */

.cta-form {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 .5vw 6vw -.7vw rgba(0, 0, 0, .3);
}

    .cta-form h3 {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .cta-form header p {
        margin-top: 0;
        color: var(--dark-grey);
    }


/* CTA Bottom */

#cta-bottom {
    max-width: 800px;
    margin: 0 auto;
}

    #cta-bottom .button {
        margin-top: 2rem;
    }

#member-of {
    border-top: 1px solid var(--grey);
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-grey);
    font-size: 0.9rem;
}

    #member-of ul {
        display: inline-block;
    }

    #member-of li {
        display: inline-block;
        padding: 0 3.5rem;
    }

    #member-of img {
        vertical-align: middle;
        height: 100%;
        display: inline-block;
    }

/* 08 ############################### Sub Pages ############################### */

#section-banner {
    background: url(../img/bg-section-header.jpg) no-repeat;
    background-size: cover;
    margin-top: 90px;
}

    #section-banner h1 {
        font-size: 2.2rem;
        color: var(--white);
        margin: 0;
    }

        #section-banner h1:before {
            content: "";
            width: 5px;
            background: var(--tur);
            height: 30px;
            display: inline-block;
            margin-right: 12px;
            position: relative;
            top: 3px;
        }

    #section-banner.section-banner-v2 h1 {
        font-size: 3.2rem;
        margin: 0;
    }

    #section-banner.section-banner-v2 .row {
        color: var(--white);
        max-width: 960px;
        margin: 0 auto;
    }

    #section-banner.section-banner-v2 {
        text-align: center;
    }

        #section-banner.section-banner-v2 h1:before {
            display: none;
        }

        #section-banner.section-banner-v2 p {
            text-align: center;
        }

/* ----------------------- Coverage -----------------------*/

.coverage-list li.list-title {
    font-weight: 500;
    margin: 1rem 0 0 0;
    padding-left: 6px;
}

.coverage-list li {
    padding-left: 12px;
}

    .coverage-list li::before {
        content: "";
        width: 5px;
        height: 5px;
        background: var(--grey);
        border-radius: 5px;
        display: block;
        left: -17px;
        top: 19px;
        position: relative;
    }

    .coverage-list li.list-title::before {
        content: "";
        width: 5px;
        background: var(--tur);
        height: 20px;
        display: inline-block;
        position: relative;
        top: 3px;
        margin-right: 0;
        border-radius: 0;
        left: -10px;
    }

.coverage-list-wrapper h3 {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 2rem;
    font-weight: 500;
    font-size: 2rem;
}


/* Tabs */

.tab-container {
}

.tabs {
    display: flex;
    background-color: #fff;
    border-radius: 35px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    justify-content: space-evenly;
    padding: 5px;
    margin-top: -30px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tab {
    padding: 10px 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 25px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
}

    .tab:hover {
        background-color: var(--tur);
        color: var(--white);
    }

    .tab.active {
        background-color: var(--tur);
        color: var(--white);
    }

.content {
    display: none;
}

    .content.active {
        display: block;
    }

/* ----------------------- Credit Analysis -----------------------*/

.table-grid li {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.table-grid div {
    display: grid;
}

    .table-grid div p {
        align-self: center;
    }

.table-grid div {
    background: var(--white);
    border-radius: 5px;
    padding: 0.2rem 2rem 0.2rem 2rem;
}

.table-grid p {
    margin: 0;
}

.table-grid {
    max-width: 1260px;
    margin: 0 auto;
}

    .table-grid li div:first-of-type {
        text-transform: uppercase;
        border-left: 5px solid var(--tur);
    }

/* --------------------------Free Trial-------------------------------- */

#trial-form {
    padding: 2rem;
}

.checklist li img {
    position: relative;
    top: 5px;
    margin-right: 0.2rem;
}

/* --------------------------Login---------------------------- */


#login-box {
    padding: 2rem;
}

    #login-box img {
        max-height: 44px;
    }

    #login-box img {
        border-radius: 0 !important;
    }

    #login-box a {
        border-right: 1px solid var(--grey);
        padding: 0 1.5rem;
    }

        #login-box a:last-of-type {
            border: none;
        }

        #login-box a h3 {
            margin-bottom: 0;
            text-transform: uppercase;
            color: var(--dark);
        }

        #login-box a p {
            color: var(--dark);
            margin-top: 0;
        }

    #login-box.three-c {
        gap: 0;
    }



/* -----------------------------------------External Plugins----------------------------------------- */
/* -------------------------------------------------------------------------------------------- */


/**
 * Featherlight � ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, No�l Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-inner .two-c {
    max-width: 1210px;
    margin: 150px auto 0 auto;
}

[class*='lightbox-content-'] {
    display: none;
}

html.with-featherlight {
    /* disable global scrolling when featherlights are visible */
    overflow: hidden;
}

.featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    /* z-index needs to be >= elements on the site. */
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: rgba(0, 0, 0, 0);
}

    /* support for nested featherlights. Does not work in IE8 (use JS to fix) */

    .featherlight:before {
        /* position: trick to center content vertically */
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    .featherlight .featherlight-content {
        /* make content container for positioned elements (close button) */
        position: relative;
        /* position: centering vertical and horizontal */
        text-align: left;
        vertical-align: middle;
        display: inline-block;
        /* dimensions: cut off images */
        overflow: auto;
        /* dimensions: handling large content */
        margin: 0;
        height: 100%;
        width: 100%;
        /* styling */
        background: #fff;
        cursor: auto;
        /* reset white-space wrapping */
        white-space: normal;
    }

    /* contains the content */
    .featherlight .featherlight-inner {
        /* make sure its visible */
        display: block;
    }

    /* don't show these though */
    .featherlight script.featherlight-inner,
    .featherlight link.featherlight-inner,
    .featherlight style.featherlight-inner {
        display: none;
    }

    .featherlight .featherlight-close-icon {
        /* position: centering vertical and horizontal */
        position: fixed;
        z-index: 9999;
        top: 25px;
        right: 25px;
        line-height: 25px;
        width: 50px;
        height: 50px;
        font-size: 25px;
        border-radius: 200em;
        cursor: pointer;
        text-align: center;
        font-family: Arial, sans-serif;
        background: var(--blue);
        color: var(--white);
        border: none;
        padding: 0;
    }

        .featherlight .featherlight-close-icon::-moz-focus-inner {
            border: 0;
            padding: 0;
        }

.featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
    /* styling */
    border: none;
}

.featherlight * {
    /* See https://github.com/noelboss/featherlight/issues/42 */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* -----------------------------------------Responsive----------------------------------------- */
/* -------------------------------------------------------------------------------------------- */


.hide-desktop {
    display: none;
}

@media (max-width:767px) {


    /* Defaults & Layout */

    #main-nav,
    #header-cta,
    .vertical-line,
    .hide-mobile,
    #section-style-boxed .row img,
    .featherlight-inner::after,
    .image-dot-left:before,
    .image-dot-right:before {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .one-c,
    .two-c,
    .two-uc,
    .three-c,
    .three-uc,
    .four-c,
    .five-c,
    .six-c,
    .seven-c,
    .eight-c,
    .twelve-c,
    .navbar,
    .two-one-c {
        display: block;
    }

    main,
    #main-banner-content,
    #news {
        padding: 0 1.5rem;
    }

    #section-style-boxed .row {
        margin: -75px auto 0 auto;
    }

    .image-dot-left.two-images-box, .image-dot-right.two-images-box {
        margin-bottom: 4rem;
    }

        .image-dot-right.two-images-box .image-two {
            position: absolute;
            left: 20px;
            top: 150px;
            z-index: 1;
            max-width: 110px;
        }

        .image-dot-left.two-images-box .image-two-a {
            position: absolute;
            right: -20px;
            top: 93px;
            z-index: 1;
            max-width: 110px;
        }



    /* Spacing */

    .spacing-900,
    .spacing-700,
    .spacing-600 {
        padding: 3rem 0;
    }

    .header-style-one {
        margin-bottom: 1rem;
    }

    #main-footer,
    #section-banner {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0 1.5rem;
    }

    /* Header */

    .main-header-inner {
        height: 75px;
    }

    #logo img {
        position: absolute;
        left: 1.5rem;
        top: 14px;
        max-width: 160px;
    }

    /* Typography */

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.2rem;
        line-height: 2.3rem;
    }

    h4 {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .text-big {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .team-box h5 {
        font-size: 1rem;
    }

    #section-banner.section-banner-v2 h1 {
        font-size: 2.2rem;
        margin: 0;
    }

    /* Buttons */

    .button {
        padding: 12px 20px;
    }


    /*--------------Sections------------*/

    /* Home Banner */

    #main-banner {
        padding: 90px 0 50px 0;
    }


        #main-banner #bannervideo {
            width: 400%;
        }

    #reports {
        padding: 1rem;
        border-radius: 25px;
    }

    /* Product Box */

    .product-box {
        box-shadow: 0 .5vw 4vw -.7vw rgba(0, 0, 0, .2);
        border-color: var(--blue);
        margin-bottom: 1rem;
    }

    /* CTA Box */

    .cta-box {
        height: unset;
    }

    .cta-content {
        margin: -35px 1rem 2.5rem 1rem;
    }

    .cta-image {
        position: relative;
        left: 0;
        top: -25px;
        max-width: 310px;
        margin: 0 auto;
    }

    .cta-box h3 {
        font-size: 2.2rem;
    }

    /* Login Box */

    .login-page #section-banner.section-banner-v2 h1 {
        font-size: 2.2rem;
    }

    #login-box a {
        border-right: none;
        border-bottom: 1px solid var(--grey);
        display: grid;
        grid-template-columns: 100px 2fr;
        text-align: left;
        gap: 1.5rem;
        line-height: normal;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    #login-box h3 {
        font-size: 1.2rem;
        font-weight: 500;
        margin: 0;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    #section-style-boxed #login-box img {
        max-width: 110px;
        display: block;
    }

    #section-style-boxed #login-box p {
        display: none;
    }



    /* Why Lucror */

    #why-lucror .spacing-900,
    #why-lucror .spacing-400 {
        padding-bottom: 0;
    }

    /* Reports */

    #reports .row::after {
        display: none;
    }

    .report-slider {
        margin: 0;
    }

    .report-box {
        margin: 1rem 0;
    }

    /* Companies */

    #companies .four-c {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #companies img {
        margin: 1rem 0;
    }

    /* News */

    #news {
        background-size: cover;
    }

    /* Member of */

    #member-of ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #member-of img {
        height: unset;
        margin: 1rem 0;
    }

    #member-of li {
        padding: 0 1.5rem;
    }

    /* Contact Us & Forms */

    #contact-us {
        display: block;
    }

        #contact-us div {
            margin-bottom: 0.5rem;
        }

    /* Company */

    #team {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }

        #team .spacing-500 {
            padding-top: 0;
        }

        #team .four-c {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

    [class*='profile-'].featherlight-inner {
        padding: 1rem;
    }

        [class*='profile-'].featherlight-inner .two-c {
            display: block;
            margin-top: 2rem;
        }

        [class*='profile-'].featherlight-inner img {
            max-width: 150px;
            margin-bottom: 1rem;
        }
}

@media (min-width:768px) and (max-width:991px) {

    /* Defaults & Layout */

    #main-nav,
    #header-cta,
    .vertical-line,
    .featherlight-inner::after,
    .image-dot-left:before,
    .image-dot-right:before {
        display: none;
    }

    .navbar,
    .two-one-c {
        display: block;
    }

    main,
    #main-banner-content,
    #news {
        padding: 0 1.5rem;
    }

    /* Typography */

    h1 {
        font-size: 4.2rem;
    }

    h2 {
        font-size: 2.6rem;
        line-height: 3rem;
    }

    h4 {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .text-big {
        font-size: 1.2rem;
        line-height: 2rem;
    }


    /* Spacing */

    .spacing-900,
    .spacing-700 {
        padding: 4rem 0;
    }

    .spacing-500 {
        padding: 3rem 0;
    }

    .header-style-one {
        margin-bottom: 1rem;
    }

    #main-footer,
    #section-banner {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0 1.5rem;
    }

    /* Header */

    #logo img {
        position: absolute;
        left: 1.5rem;
        top: 14px;
        max-width: 190px;
    }

    /*--------------Sections------------*/

    /* Home Banner */

    #main-banner {
        padding: 9rem 0;
    }

        #main-banner #bannervideo {
            width: 240%;
        }

    #main-banner-content {
        grid-column: 1 / span 12;
    }

    /* Home Intro */

    #intro .three-c {
        grid-template-columns: 1fr 1fr;
    }

    /* CTA Box */

    .cta-box {
        height: unset;
    }

    .cta-content {
        margin: 0 1rem 1.2rem 1rem;
        top: unset;
    }

    .cta-image {
        position: relative;
        left: 30px;
        top: 0;
    }

    .cta-box h3 {
        font-size: 1.7rem;
    }

    /* Login Box */

    #login-box {
        line-height: 1.4rem;
    }

        #login-box img {
            max-width: 120px;
        }

        #login-box a {
            padding: 0 1rem;
        }


    /* Reports */

    #reports .row::after {
        display: none;
    }

    .report-slider {
        margin: 0;
    }

        .report-slider .two-c {
            display: block;
        }

    .report-box {
        margin-bottom: 1rem;
    }

    /* Companies */

    #companies .four-c {
        grid-template-columns: 1fr 1fr 1fr;
    }

    #companies img {
        margin: 2rem;
    }

    /* News & Reports */

    #news .four-c,
    #news-listing .four-c,
    #reports-listing .four-c {
        grid-template-columns: 1fr 1fr;
    }

    /* News Single Article */

    #sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2.5rem;
    }

    .cta-widget {
        height: 570px;
    }


    /* Member of */

    #member-of img {
        height: unset;
        margin: 1rem 0;
    }

    /* Company */

    #team {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }

        #team .spacing-500 {
            padding-top: 0;
        }

        #team .four-c {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

    [class*='profile-'].featherlight-inner {
        padding: 1rem;
    }

        [class*='profile-'].featherlight-inner .two-c {
            display: block;
            margin-top: 2rem;
        }

        [class*='profile-'].featherlight-inner img {
            max-width: 280px;
            margin-bottom: 1rem;
        }
}

@media (min-width:992px) and (max-width:1279px) {

    main,
    #main-banner-content,
    #news {
        padding: 0 1.5rem;
    }

    /* Spacing */

    .spacing-700 {
        padding: 4rem 0;
    }

    .spacing-900 {
        padding: 7rem 0;
    }

    .header-style-one {
        margin: 0 auto 3rem auto;
    }

    #main-footer,
    #section-banner {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0 1.5rem;
    }

    /* Header */

    #logo img {
        position: absolute;
        left: 1.5rem;
        top: 14px;
        max-width: 190px;
    }

    .main-header-inner {
        grid-template-columns: 1.3fr 3fr 1.3fr;
    }

    #main-header .main-header-inner li {
        padding: 0 10px;
    }

    #main-header .button {
        padding: 8px 10px 5px 10px;
    }

    /* Home Banner */

    #main-banner #bannervideo {
        width: 150%;
    }

    #main-banner-content {
        grid-column: 2 / span 10;
    }

    #main-banner {
        padding: 9rem 0 9rem 0;
    }

    /*----------Sections--------*/

    /* CTA Box */

    .cta-box {
        padding: 0 1rem;
    }

    .cta-image {
        left: 20px;
        top: 0;
    }

    .cta-box h3 {
        margin-top: 1rem;
    }

    /* Product Box */

    .product-box {
        padding: 1.2rem;
    }

    /* Reports */

    #reports .row::after {
        top: 100px;
        border-radius: 25px;
    }

    .report-slider {
        margin-left: 0;
    }

        .report-slider .two-c {
            display: block;
        }

    .report-box {
        max-width: 390px;
        margin: 0 auto 1rem auto;
    }


    /* Companies*/

    #companies img {
        margin: 1rem;
    }


    /* Member of */

    #member-of li {
        display: inline-block;
        padding: 0 1.5rem;
    }

    #member-of img {
        height: unset;
        margin: 1rem 0;
    }
}


@media (min-width:1280px) and (max-width:1780px) {

    main,
    #main-banner-content,
    #news {
        padding: 0 1.5rem;
    }

    #main-footer,
    #section-banner {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0 1.5rem;
    }

    /* Home Banner */

    #main-banner #bannervideo {
        width: 150%;
    }

    #main-banner-content {
        grid-column: 2 / span 9;
    }

    /* Header */

    #logo img {
        position: absolute;
        left: 1.5rem;
        top: 14px;
        max-width: 190px;
    }

    .main-header-inner {
        grid-template-columns: 1.3fr 3fr 1.3fr;
    }

    #main-header .main-header-inner li {
        padding: 0 15px;
    }

    #main-header .button {
        padding: 8px 13px 5px 13px;
    }


    /*---------Sections---------*/


    /* CTA Box */

    .cta-image {
        position: relative;
        left: 70px;
        top: -19px;
    }

    /* Reports*/

    #reports .row::after {
        right: -50px;
    }
}


/* Content placeholder */

.placeholder-content {
    height: 205px;
    overflow: hidden;
    background: #000;
    position: relative;
    -webkit-animation-duration: 1.7s;
    animation-duration: 1.7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: placeholderAnimate;
    animation-name: placeholderAnimate;
    background: #f6f7f8;
    background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);
    background-size: 1300px;
}

.placeholder-content_item {
    width: 100%;
    height: 20px;
    position: absolute;
    background: #fff;
    z-index: 2;
}

    .placeholder-content_item:after, .placeholder-content_item:before {
        width: inherit;
        height: inherit;
        content: "";
        position: absolute;
    }

    .placeholder-content_item:nth-child(1) {
        top: 0;
        left: 0;
    }

    .placeholder-content_item:nth-child(2) {
        top: 20px;
        left: 0;
        width: 10%;
        height: 90px;
    }

    .placeholder-content_item:nth-child(3) {
        top: 0px;
        left: 0;
        width: 10%;
        height: 100%;
    }

    .placeholder-content_item:nth-child(4) {
        top: 20px;
        width: 20px;
        left: 170px;
        height: 90px;
    }

    .placeholder-content_item:nth-child(5) {
        top: 40px;
        left: 190px;
        height: 12px;
    }

    .placeholder-content_item:nth-child(6) {
        top: 75px;
        left: 190px;
        height: 12px;
    }

    .placeholder-content_item:nth-child(7) {
        top: 20px;
        right: 0;
        width: 23%;
        height: 20px;
    }

    .placeholder-content_item:nth-child(8) {
        top: 0;
        right: 0;
        width: 10%;
        height: 100%;
    }

    .placeholder-content_item:nth-child(9) {
        top: 110px;
        height: 17px;
        left: 0;
    }

    .placeholder-content_item:nth-child(10) {
        top: 149px;
        height: 12px;
        left: 0;
    }

    .placeholder-content_item:nth-child(11) {
        top: 183px;
        left: 0;
        height: 100%;
    }

@-webkit-keyframes placeholderAnimate {
    0% {
        background-position: -650px 0;
    }

    100% {
        background-position: 650px 0;
    }
}

@keyframes placeholderAnimate {
    0% {
        background-position: -650px 0;
    }

    100% {
        background-position: 650px 0;
    }
}

[v-cloak] {
    display: none;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.multiselect {
    position: relative;
}

    .multiselect ul {
        border: 1px solid #ddd;
        border-top: 0;
        border-radius: 0 0 3px 3px;
        left: 0px;
        padding: 8px 8px;
        position: absolute;
        width: 100%;
        list-style: none;
        max-height: 360px;
        overflow: auto;
        background: #ffffff;
    }

        .multiselect ul li input {
            width: auto !important;
        }

.overselect {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.show-more::before {
    content: '...';
}

sup.small-blue {
    font-size: 0.6em;
    color: var(--blue);
}

.top-space-40 {
    margin-top: -40px;
}

.left-space-40 {
    margin-left: 40px;
}
