﻿.hidden-xs-up {
    display: none !important
}

@media (max-width:575px) {
    .hidden-xs-down {
        display: none !important
    }
}

@media (min-width:576px) {
    .hidden-sm-up {
        display: none !important
    }
}

@media (max-width:767px) {
    .hidden-sm-down {
        display: none !important
    }

    .aside-expand-md.aside.products-filters {
        left: unset;
    }

    .aside-expand-md.aside.products-filters .aside-toggler {
        display: none;
    }
}

@media (min-width:768px) {
    .hidden-md-up {
        display: none !important
    }
}

@media (max-width:991px) {
    .hidden-md-down {
        display: none !important
    }
}

@media (min-width:992px) {
    .hidden-lg-up {
        display: none !important
    }
}

@media (max-width:1199px) {
    .hidden-lg-down {
        display: none !important
    }
}

@media (min-width:1200px) {
    .hidden-xl-up {
        display: none !important
    }
}

.hidden-xl-down {
    display: none !important
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}


#fronthtml {
    min-height: 100%
}

#frontbody {
    background: #3a7795; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left bottom,#7ab1cb, #3a7795); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(top left, #7ab1cb, #3a7795); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(top left, #7ab1cb, #3a7795); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to top left, #7ab1cb, #3a7795); /* Standard syntax (must be last) */
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.w-500px {
    width: auto !important;
    max-width: 500px !important;
}

.w-600px {
    width: auto !important;
    max-width: 600px !important;
}

.w-max-100 {
    max-width: 100%
}

/* Overlay with circle */
.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: #4285F4;
    }

    25% {
        stroke: #DE3E35;
    }

    50% {
        stroke: #F7C223;
    }

    75% {
        stroke: #1B9A59;
    }

    100% {
        stroke: #4285F4;
    }
}

@keyframes colors {
    0% {
        stroke: #4285F4;
    }

    25% {
        stroke: #DE3E35;
    }

    50% {
        stroke: #F7C223;
    }

    75% {
        stroke: #1B9A59;
    }

    100% {
        stroke: #4285F4;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8); /* Black background with opacity */
    z-index: 5000; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    display: none;
}

#feedload {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    z-index: 10000;
    color: #000;
    display: none;
}

#feedcircle {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    z-index: 10000;
    display: none
}


/* PUSH ELEMENTS */

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}


@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }
}


/* Maximum width */
@media (max-width: 400px) {
    .w-800px {
        width: auto !important;
        max-width: 300px !important;
        width: 300px !important;
    }
}

@media (max-width: 768px) and (min-width: 400px) {
    .w-800px {
        width: auto !important;
        max-width: 500px !important;
        width: 500px !important;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .w-800px {
        width: auto !important;
        max-width: 700px !important;
        width: 700px !important;
    }
}

@media (min-width: 1024px) {
    .w-800px {
        width: auto !important;
        max-width: 900px !important;
        width: 900px !important;
    }
}


#features {
    background-image: -webkit-linear-gradient(top, rgb(139, 128, 206) 0%, rgb(224, 67, 145));
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    color: rgb(255, 255, 255);
    background-position: center center !important;
    left: 0;
    width: 100%;
    z-index: 20;
    padding-top: 50px;
    margin-top:20px
}

    #features h4 {
        margin-top: 20px;
        font-weight: 200;
        font-style: normal;
        font-size: 30px;
        opacity: 1;
        visibility: visible;
    }

        #features .box {
            box-shadow: inset 0 0 0 1px;
            height:2px;
            width:5%;
            margin:auto;
            margin-bottom: 15px
            
        }

    #features .card-body {
        padding:0
    }
    #features .nav-link.active{
        background-attachment: scroll;
        background-clip: border-box;
        background-color: rgb(255, 255, 255);
        background-image: none;
        border-bottom-color: rgb(247, 247, 247);
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
        border-bottom-style: none;
        border-bottom-width: 0px;
        border-image-outset: 0px;
        border-image-repeat: stretch;
        border-image-slice: 100%;
        border-image-source: none;
        border-image-width: 1;
        border-left-color: rgb(247, 247, 247);
        border-left-style: none;
        border-left-width: 0px;
        border-right-color: rgb(247, 247, 247);
        border-right-style: none;
        border-right-width: 0px;
        border-top-color: rgb(247, 247, 247);
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        border-top-style: none;
        border-top-width: 0px;
        box-shadow: rgba(0, 0, 0, 0.1) -5px 6px 6.86px 0.14px;
        box-sizing: border-box;
        color: rgb(102, 102, 102);
        cursor: default;
        display: block;
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        height: 35px;
        line-height: 21px;
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
        padding: 7px, 25px;
        position: relative;
        text-align: center;
        text-decoration-color: rgb(102, 102, 102);
        text-decoration-line: none;
        text-decoration-style: solid;
        text-size-adjust: 100%;
        transition-delay: 0s, 0s;
        transition-duration: 0.2s, 0.2s;
        transition-property: background, color;
        transition-timing-function: ease-in-out, ease-in-out;
        visibility: visible;
    }

    #features .nav {
        
        color: rgb(0, 0, 0);
        font-family: Calibri, sans-serif;
        display:inline-flex;
        height: 39px;
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
        
        padding-inline-start: 0px;
        padding-left: 0px;
        padding: 0px;
        text-align: center;

    }

    #features .nav-item {
        text-align: center
    }

    #features .nav-link:not(.active):hover {
        background-attachment: scroll;
        background-clip: border-box;
        background-color: rgb(255, 255, 255);
        background-image: none;
        border-bottom-color: rgb(247, 247, 247);
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
        opacity: .7;
        border-bottom-style: none;
        border-bottom-width: 0px;
        border-image-outset: 0px;
        border-image-repeat: stretch;
        border-image-slice: 100%;
        border-image-source: none;
        border-image-width: 1;
        border-left-color: rgb(247, 247, 247);
        border-left-style: none;
        border-left-width: 0px;
        border-right-color: rgb(247, 247, 247);
        border-right-style: none;
        border-right-width: 0px;
        border-top-color: rgb(247, 247, 247);
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        border-top-style: none;
        border-top-width: 0px;
        box-shadow: rgba(0, 0, 0, 0.1) -5px 6px 6.86px 0.14px;
        box-sizing: border-box;
        color: #000;
        cursor: pointer;
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        height: 35px;
        line-height: 21px;
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
        padding: 7px, 25px;
        position: relative;
        text-align: center;
        text-decoration-color: rgb(102, 102, 102);
        text-decoration-line: none;
        text-decoration-style: solid;
        text-size-adjust: 100%;
        transition-delay: 0s, 0s;
        transition-duration: 0.2s, 0.2s;
        transition-property: background, color;
        transition-timing-function: ease-in-out, ease-in-out;
        visibility: visible;
    }

    #features .nav-link {
        background-attachment: scroll;
        background-clip: border-box;
        background-color: rgba(0, 0, 0, 0);
        background-size: auto;
        border-bottom-color: rgb(255, 255, 255);
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
        border-bottom-style: none;
        border-bottom-width: 0px;
        border-image-outset: 0px;
        border-image-repeat: stretch;
        border-image-slice: 100%;
        border-image-source: none;
        border-image-width: 1;
        border-left-color: rgb(255, 255, 255);
        border-left-style: none;
        border-left-width: 0px;
        border-right-color: rgb(255, 255, 255);
        border-right-style: none;
        border-right-width: 0px;
        border-top-color: rgb(255, 255, 255);
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        border-top-style: none;
        border-top-width: 0px;
        box-shadow: none;
        box-sizing: border-box;
        color: rgb(255, 255, 255);
        cursor: pointer;
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        height: 35px;
        line-height: 21px;
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
        padding: 7px, 25px;
        position: relative;
        text-align: center;
        text-decoration-color: rgb(255, 255, 255);
        text-decoration-line: none;
        text-decoration-style: solid;
        text-size-adjust: 100%;
        transition-delay: 0s, 0s, 0s;
        transition-duration: 0.2s, 0.2s, 0.2s;
        transition-property: background, color, border;
        transition-timing-function: ease-in-out, ease-in-out, ease-in-out;
        visibility: visible;
    }


    #features .tab-content {
        font-family: 'Montserrat', sans-serif;
        margin-top:30px
    }


.alert .information {
    position: absolute;
    top: 0;
    right: 50px;
    padding: .75rem 1.25rem;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    font-weight: 300;
    outline: none !important;
    transition: 0.2s linear float: right;
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

    .alert .solution:hover, .alert .information:hover
    {
        font-weight: 500
    }

    .alert .solution {
        position: absolute;
        top: 0;
        right: 150px;
        padding: .75rem 1.25rem;
        background-color: transparent;
        border: 0;
        -webkit-appearance: none;
        font-weight: 300;
        outline: none !important;
        transition: 0.2s linear float: right;
        font-size: 1.5rem;
        line-height: 1;
        text-shadow: 0 1px 0 #fff;
        opacity: .5;
    }

.swal2-icon.swal2-info {
    width:40px;
    height:40px;
    font-size:40px;
    line-height: 40px;
}

.app-backdrop.backdrop-sidebar {
    display: none;
}

.products-filters, .channellist {
    padding: 0px;
    position: fixed;
    height: 100%;
    top: auto;
    bottom: auto;
    min-width: 200px;
}

body {
    background: #D7E1E6;
    padding-bottom: 0
}

.main-content {
    background: white;
    padding: 20px;
    overflow-y: scroll;
    /*height: 0px;*/
}

#teststatus {
    font-size: 14px;
    font-weight: 300;
}

.modal-open .topbar {
    padding-right: 0px;
}

.main-container {
    height: 100%;
    background: transparent;
    width: calc(100% - 60px);
    position: fixed;
    margin-top: 0px;
    padding: 65px 10px 35px 10px;
}

.badge {
    border-radius: 0px;
}

#nav-screen-blocker {
    min-height: 100%;
    width: 100%;
    background: #3B7695;
    z-index: 100;
    opacity: 0.4;
    position: absolute;
}

.quickview.backdrop-light + .backdrop-quickview {
    background: #3B7695;
    opacity: 0.7;
}

.quickview-body {
    display: flex;
    flex-direction: column;
}

#qv-global {
    z-index: 1001 !important;
}

#creationwizard .nav-link.active {
    border-radius: 0px;
    z-index: 4;
    transform: scale(0.7) rotate(45deg);
    background: #2fddc6;
}

#creationwizard .nav-link.active::after {
    background: #2fddc6;
}

#creationwizard .nav-link {
    background-color: #e2e2e2;
}

.nav-process .nav-title {
    font-size: 11px;
}

@media only screen and (max-width: 991px) {
    .main-container.signup-page {
        padding-top: 0px !important;
        margin-top: 0px;
    }

    .main-container {
        padding-top: 64px;
        width: calc(100%);
    }
}