/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 0;
    }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
    .container {
        width: 80%;
    }

    .column,
    .columns {
        margin-left: 4%;
    }

    .column:first-child,
    .columns:first-child {
        margin-left: 0;
    }

    .one.column,
    .one.columns {
        width: 4.66666666667%;
    }

    .two.columns {
        width: 13.3333333333%;
    }

    .three.columns {
        width: 22%;
    }

    .four.columns {
        width: 30.6666666667%;
    }

    .five.columns {
        width: 39.3333333333%;
    }

    .six.columns {
        width: 48%;
    }

    .seven.columns {
        width: 56.6666666667%;
    }

    .eight.columns {
        width: 65.3333333333%;
    }

    .nine.columns {
        width: 74.0%;
    }

    .ten.columns {
        width: 82.6666666667%;
    }

    .eleven.columns {
        width: 91.3333333333%;
    }

    .twelve.columns {
        width: 100%;
        margin-left: 0;
    }

    .one-third.column {
        width: 30.6666666667%;
    }

    .two-thirds.column {
        width: 65.3333333333%;
    }

    .one-half.column {
        width: 48%;
    }

    /* Offsets */
    .offset-by-one.column,
    .offset-by-one.columns {
        margin-left: 8.66666666667%;
    }

    .offset-by-two.column,
    .offset-by-two.columns {
        margin-left: 17.3333333333%;
    }

    .offset-by-three.column,
    .offset-by-three.columns {
        margin-left: 26%;
    }

    .offset-by-four.column,
    .offset-by-four.columns {
        margin-left: 34.6666666667%;
    }

    .offset-by-five.column,
    .offset-by-five.columns {
        margin-left: 43.3333333333%;
    }

    .offset-by-six.column,
    .offset-by-six.columns {
        margin-left: 52%;
    }

    .offset-by-seven.column,
    .offset-by-seven.columns {
        margin-left: 60.6666666667%;
    }

    .offset-by-eight.column,
    .offset-by-eight.columns {
        margin-left: 69.3333333333%;
    }

    .offset-by-nine.column,
    .offset-by-nine.columns {
        margin-left: 78.0%;
    }

    .offset-by-ten.column,
    .offset-by-ten.columns {
        margin-left: 86.6666666667%;
    }

    .offset-by-eleven.column,
    .offset-by-eleven.columns {
        margin-left: 95.3333333333%;
    }

    .offset-by-one-third.column,
    .offset-by-one-third.columns {
        margin-left: 34.6666666667%;
    }

    .offset-by-two-thirds.column,
    .offset-by-two-thirds.columns {
        margin-left: 69.3333333333%;
    }

    .offset-by-one-half.column,
    .offset-by-one-half.columns {
        margin-left: 52%;
    }

}


/* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
  html is set to 62.5% so that all the REM measurements throughout Skeleton
  are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
    font-size: 62.5%;
    min-height: 100%;
}

body {
    font-size: 1.5em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    background: #f7f7f7;
    color: #222;
}

[data-slug="login"] {
    background: url('../images/spotlight-usecase.jpg') center center no-repeat;
    background-size: cover;
}

[data-slug="login"] .block {
    background-color: rgba(255, 255, 255, .9);
}



/* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 400;
}

h1 {
    color: #222;
    font-size: 2.4rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.0rem;
    line-height: 1.25;
    margin-bottom: 6px;
    margin-top: 30px;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.3;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.8rem;
    line-height: 1.5;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Larger than phablet */
@media (min-width: 550px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2.0rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 3.0rem;
    }

    h5 {
        font-size: 2.4rem;
    }

    h6 {
        font-size: 1.5rem;
    }
}

p {
    margin-top: 0;
}


/* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    color: #1EAEDB;
}

a:hover {
    color: #0FA0CE;
}


/* Buttons
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: #555;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: #333;
    border-color: #888;
    outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #FFF;
    float: left;
    clear: both;
    margin-right: 5px;
    background-color: #33C3F0;
    border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #FFF;
    background-color: #1EAEDB;
    border-color: #1EAEDB;
}

.button.button-primary.u-full-width,
button.button-primary.u-full-width,
input[type="submit"].button-primary.u-full-width,
input[type="reset"].button-primary.u-full-width,
input[type="button"].button-primary.u-full-width {
    float: none;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    display: block;
    float: left;
    clear: both;
    cursor: pointer;
    margin-bottom: 10px !important;
}

.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    clear: both;
    opacity: 0;
    width: 100%;
    height: 40px;
    filter: alpha(opacity=0);
}

.fileUploadLabel {
    color: #62ae50;
    display: none;
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
}

.selectedFile {
    clear: both;
}

/* Forms
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #33C3F0;
    outline: 0;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
    color: #33C3F0;
    font-weight: 400;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label>.label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

:disabled {
    opacity: 0.5;
}

label.disabled {
    opacity: 0.5;
}

textarea.big {
    height: 200px;
}

.dropdown-menu {
    position: absolute;
    top: 42px;
    right: 10px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s ease-in-out;
    margin: .125rem 0 0;
    float: left;
    width: 180px;
    text-align: left;
    list-style: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: rgba(255, 255, 255, .9);
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(162, 162, 162, 0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(162, 162, 162, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(162, 162, 162, 0.5);
    padding: 0px;
}

.dropdown-menu a {
    background: transparent;
    width: 100%;
    display: block;
    float: left;
    color: #1EAEDB;
    line-height: 36px;
    height: 36px;
    padding: 0px 10px;
    margin-left: 0px !important;
}

.dropdown-menu a:hover {
    color: #383838;
}

li.here .dropdown-menu a {
    background: transparent;
}

li.here .dropdown-menu a:hover {
    background: transparent;
    color: #d2232a;
}

.open>.dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.dropdown-menu:before {
    position: absolute;
    top: -10px;
    right: 50%;
    margin-right: -10px;
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.95);
    z-index: 2;
}

.dropdown-menu:after {
    position: absolute;
    top: -12px;
    right: 50%;
    margin-right: -10px;
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

#filter {
    margin-bottom: 0px;
    float: right;
    font-weight: 300;
    width: 40px;
    opacity: 0;
    -webkit-transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#filter.on {
    width: 200px;
    opacity: 1;

}

#searchTrigger {
    display: block;
    position: absolute;
    right: 6px;
    margin-top: 5px;
    cursor: pointer;
    color: #999999;
    padding: 8px;
    background: white;
}

#searchTrigger:hover {
    color: #0FA0CE;
}

.blue {
    color: #33C3F0;
}

.radio_container {
    display: block;
    float: left;
    background-color: #EFEFEF;
    border-radius: 9999px;
}

.radio_container.radio_container_smaller {
    width: 100%;
}

.radio_container input[type="radio"] {
    appearance: none;
    display: none;
}

.radio_container label {
    display: inline-block;
    float: left;


    background-color: inherit;
    text-align: center;
    font-size: 33px;
    border-radius: 0px;
    overflow: hidden;
    transition: linear 0.3s;
    color: #33C3F0;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 3px 0px 3px 3px;
    border: 0px;
    padding: 0px 20px;
}

.radio_container.radio_container_smaller label {
    font-size: 16px;
    width: 26%;
}

.radio_container label:first-of-type {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}

.radio_container label:last-of-type {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
    margin-right: 3px;
}

.radio_container input[type="radio"]:checked+label {
    background-color: #33C3F0;
    color: #FFFFFF;
    transition: 0.6s;
}


.addPanel {
    display: block;
    float: left;
    border: 1px dashed #999999;
    border-radius: 5px;
    width: 100%;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
}

.addPanel:hover {
    border: 1px dashed #33C3F0;
}

.color_choice {
    color: #999999;
    margin-top: 14px;
}

.color_choice select {
    margin: 0px;
    height: 26px;
    margin-left: 10px;
    font-size: 12px;
    border: 1px solid #EEEEEE;
    background-color: #EEEEEE;
}

.colorset {
    display: inline-block;
    border: 1px solid #EEEEEE;
    border-bottom: 4px solid #EEEEEE;
    border-radius: 3px;
    margin: 0px;
    margin-left: 6px !important;
    width: 30px;
    text-align: center;
    cursor: default;
}

.colorset.color_active {
    border-color: #8ee28e;
}

.panelChoice {
    display: inline-block;
    float: left;
    width: 248px;
    height: 80px;
    margin-bottom: 20px;
    font-size: 13px;
    text-decoration: none;
    padding: 20px;
    border: 1px solid #D7F7FF;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.panelChoice:nth-child(2n+1) {
    margin-right: 20px;
}

.panelChoice:hover {
    border: 1px solid #33C3F0;
}

.panelChoice.small {
    width: 30px;
    height: 30px;
    padding: 10px;
    font-size: 24px;
    text-align: center;
    line-height: 100%;
    margin-right: 8px;
    margin-bottom: 8px;
}

.panelChoice.small:nth-child(10n+10) {
    /*    margin-right:0px;*/
}

/* Toggles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.toggleTarget {
    display: none;
    width: 100%;
}

.toggleTarget.show {
    display: inline-block !important;
    width: 100%;
}

/* Lists
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 1rem;
}


/* Code
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre>code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}


/* Tables
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
    width: 100%;
}

th,
td {
    padding: 6px 8px;
    font-size: 13px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {}

th:last-child,
td:last-child {}

thead th:last-child {
    padding-right: 0px;
}

table .options {
    text-align: right;
}

table .options a {
    text-decoration: none;
    color: #999999;
    cursor: pointer;
    margin-left: 10px;
}

table .options a:hover {
    color: #0FA0CE;
}

table .options .dropdown-toggle {

    display: inline-block;
    /* float: right; */
    text-align: right;
}

table .options .dropdown-menu {
    transition: all .2s ease-in-out;
    top: auto;
    margin-top: 10px;
}

table .options .dropdown-menu::before {
    right: 24%;
}

table .options .dropdown-menu::after {
    right: 24%;
}

table .options.open .dropdown-toggle {
    opacity: .5;
}

a.send {
    text-decoration: none;
    color: #999999;
    cursor: pointer;
}

a.send:hover {
    color: #0FA0CE;
}

table .options .order {
    cursor: move;
}

table .options .disable {
    pointer-events: none;
    opacity: 0.3;
}

tr:hover td {
    background: #fbfdff;
}

.ui-sortable-helper td {
    background: #fbfdff;
    opacity: .75;
}

table .placeholder {
    background: #f3fff3;
}

#photobookTable th:first-child,
#photobookTable td:first-child {
    width: 140px;
}

#faqTable th:first-child,
#faqTable td:first-child {
    width: 20px;
    text-align: center;
}

#faqTable th:nth-child(2),
#faqTable td:nth-child(2) {
    width: 30px;
    text-align: center;
}

#forms_infoTable th:nth-child(2),
#forms_infoTable td:nth-child(2) {
    width: 360px;
}

#forms_infoTable th:nth-child(3),
#forms_infoTable td:nth-child(3) {
    width: 80px;
}

#forms_infoTable th:nth-child(4),
#forms_infoTable td:nth-child(4) {
    width: 60px;
}

#phrasesTable th:nth-child(2),
#phrasesTable td:nth-child(2) {
    width: 120px;
}

#phrasesTable th:nth-child(3),
#phrasesTable td:nth-child(3) {
    width: 190px;
}

#faqTable th:last-child,
#faqTable td:last-child {
    width: 240px;
}

#adTable th:first-child,
#adTable td:first-child {
    width: 20px;
    text-align: center;
}

#adTable th:nth-child(2),
#adTable td:nth-child(2) {
    width: 30px;
    text-align: center;
}

#adTable th:last-child,
#adTable td:last-child {
    width: 240px;
}

#spotlightTable th:first-child,
#spotlightTable td:first-child {
    width: 20px;
    text-align: center;
}

#spotlightTable th:nth-child(2),
#spotlightTable td:nth-child(2) {
    width: 30px;
    text-align: center;
}

#spotlightTable th:last-child,
#spotlightTable td:last-child {
    width: 240px;
}

#categoriesTable th:first-child,
#categoriesTable td:first-child {
    width: 20px;
    text-align: center;
}

#categoriesTable th:nth-child(2),
#categoriesTable td:nth-child(2) {}

#categoriesTable th:last-child,
#categoriesTable td:last-child {
    width: 240px;
}

#categoriesTable table table td {
    padding: 6px 15px;
}

#categoriesTable table table {
    margin-bottom: 9px;
    font-size: 13px;
}

#Table table table:first-child td {
    color: #999999;
}

#pagesTable th:first-child,
#pagesTable td:first-child {
    width: 32px;
    text-align: center;
}

#pagesTable th:nth-child(2),
#pagesTable td:nth-child(2),
#pagesTable th:nth-child(3),
#pagesTable td:nth-child(3),
#pagesTable th:nth-child(4),
#pagesTable td:nth-child(4) {
    width: 26px;
    text-align: center;
}

#pagesTable td .fa-lock,
#pagesTable td .fa-times {
    color: #ee4949;
}

#pagesTable td .fa-unlock,
#pagesTable td .fa-check {
    color: #62ae50;
}

th,
td {
    padding: 10px 14px;
}

#panelsTable {
    border-collapse: separate;
}

#panelsTable .supersize {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 40px;
    float: left;
    width: 100%;
    text-decoration: none;
    color: #33C3F0;
    text-align: left;
}

#panelsTable tr .ai-add-panel {
    display: none;
    width: 44px;
    height: 44px;
    position: absolute;
    left: calc(50% - 22px);
    margin-top: 59px;
    background-color: #33c3f0;
    border-radius: 100%;
    color: white;
    text-align: center;
    line-height: 44px;
    font-size: 30px;
    cursor: pointer;
}

#panelsTable tr:hover .ai-add-panel {
    display: block;
    opacity: .7;
}

#panelsTable tr .ai-add-panel:hover {
    background-color: #1EAEDB;
    transform: scale(1.1);
    transition: opacity;
    opacity: 1;
}


.ai-link-icon .fa,
.ai-link-icon .far {
    padding-right: 6px;
}

.supersize .fa {
    font-size: 42px;
    width: 60px;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
    float: left;
}

.supersize h3 {
    font-size: 2.4rem;
    margin-bottom: 0px;
    display: inline;
    float: left;
    line-height: 26px;
}

.supersize .ai-dp-ti {
    color: #999999;
    float: left;
    font-size: 12px;
    display: inline-block;
    float: left;
    line-height: 0px;
}

.ai-db-banner {
    width: 100%;
    display: inline-block;
    background-image: url('https://www.all-instap.nl/images/spotlight-usecase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 40px;
    box-sizing: border-box;
    border-radius: 8px;
}

.ai-db-status {
    width: 100%;
    display: inline-block;
    background-color: #F9F9F9;
    border: 4px solid #EDEDED;
    box-sizing: border-box;
    border-radius: 8px;
    height: 91px;
    margin-bottom: 20px;
}

.ai-db-favicon {
    text-align: center;
    width: 50px;
    height: 50px;
    margin-left: 24px;
    margin-top: 16px;
    display: inline-block;
    float: left;
}

.ai-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #383838;
}

.ai-tooltip .ai-tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #383838;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    bottom: 100%;
    left: -150%;
    margin-top: -60px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
}

.ai-tooltip .ai-tooltip-text::after {
    content: " ";
    position: absolute;
    top: 100%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #383838 transparent transparent transparent;
}

.ai-tooltip:hover .ai-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.ai-db-working-in {
    margin-left: 20px;
    display: inline-block;
    line-height: 20px;
    margin-top: 20px;
    width: calc(80% - 82px);
}

.ai-db-working-in span {
    font-size: 23px;
    font-weight: 700;
    line-height: 23px;
    display: inline-block;
    max-width: calc(100% - 8px);
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
}

.ai-db-status-live {
    display: inline-block;
    float: right;
    width: 30px;
    height: 30px;
    background-image: linear-gradient(180deg, #83BE74 0%, #7CE661 100%);
    border: 3px solid #EDEDED;
    margin-left: 24px;
    margin-top: 24px;
    border-radius: 100%;
    margin-right: 20px;
}

.ai-db-status-live.not-live {
    background-image: linear-gradient(180deg, #FF4848 0%, #E66161 100%);
}

.ai-img-greyscale {
    filter: grayscale(1);
}

.ai-db-frontend {
    text-decoration: none;
    width: 100%;
    display: inline-block;
    background-image: linear-gradient(104deg, #1EAEDA 20%, #00D0F7 100%);
    border: 3px solid #6EE1FF;
    box-sizing: border-box;
    border-radius: 8px;
    color: white;
    height: 91px;
    font-size: 15px;
    transition: background-image 0.5s linear;
}

.ai-db-frontend:hover {
    color: white;
    background-image: linear-gradient(93deg, #1EAEDA 0%, #00D0F7 39%);
}

.ai-frontend-copy {
    margin-left: 20px;
    display: inline-block;
    line-height: 20px;
    margin-top: 20px;
}

.ai-frontend-copy span {
    font-size: 23px;
    font-weight: 700;
    line-height: 23px;
}

.ai-db-frontend i {
    display: inline-block;
    float: left;
    font-size: 32px;
    width: 49px;
    height: 49px;
    text-align: center;
    line-height: 49px;
    margin-left: 24px;
    margin-top: 16px;
}

.ai-db-frontend i.fa-chevron-right {
    float: right;
    display: inline-block;
    margin-right: 15px;
}

#panelsTable tr {
    display: block;
    box-sizing: border-box;
    margin-bottom: 20px;
    width: 100%;
    float: left;
}

#panelsTable td {
    border: 1px solid #D7F7FF;
    padding: 20px;
    display: block;
    float: left;
    height: 90px;
    box-sizing: border-box;
}

#panelsTable tr:hover td {
    border: 1px solid #33C3F0;
}

#panelsTable tr td:first-child {
    width: 60%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0px;
}

#panelsTable tr td:last-child {
    width: 40%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0px;
}

.change_event_rows {
    padding-top: 0px;
    font-size: 18px;
    line-height: 35px;
}

.data_array .row:first-child .change_event_rows {
    padding-top: 22px;
    line-height: 1.6;
}

.change_event_rows .fa {
    margin-right: 4px;
    cursor: pointer;
}

.change_event_rows:first .fa-minus-circle {
    display: none;
}

.data_array .change_event_rows .fa-minus-circle {
    display: inline-block;
}

.data_array .fa-plus-circle {
    display: none;
}

.data_array .four.columns:last-child .fa-plus-circle {
    display: inline-block;
}

.data_array .four.columns:nth-child(3n+1) {
    margin-left: 0px;
}



.not-working {
    pointer-events: none;
    cursor: default;
    opacity: .5;
}

/* FOOTER LINKS CHANGE EVENT ROWS*/

.fl_change_event_rows {
    padding-top: 0px;
    font-size: 32px;
    line-height: 35px;
}

.fl_data_array .row:first-child .fl_change_event_rows {
    padding-top: 22px;
    line-height: 1.6;
}

.fl_change_event_rows .fa {
    margin-right: 4px;
    cursor: pointer;
}

.fl_change_event_rows:first .fa-minus-circle {
    display: none;
}

.fl_data_array label {
    display: none;
}

.fl_data_array .fl_change_event_rows .fa-minus-circle {
    display: inline-block;
}

.fl_data_array .row:first-child label {
    display: inline-block;
}

.fl_data_array .fa-plus-circle {
    display: none;
}

.fl_data_array .row:last-child .fa-plus-circle {
    display: inline-block;
}


.copper {
    color: #CB6D51;
}

.bronze {
    color: #FE9B62;
}

#pagesTable th:last-child,
#pagesTable td:last-child {
    /*width:280px;*/
}

#pagesTable table table {
    margin-bottom: 9px;
    font-size: 13px;
}

#pagesTable table table:first-child td {
    color: #999999;
}

.hidden {
    opacity: .7;
}

/* Checkbox
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.onoffswitch-group {
    display: inline-block;
    width: 100%;
}

.onoffswitch {
    position: relative;
    width: 26px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-settings {
    position: relative;
    width: 26px;
    top: 2px;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-settings+label {
    display: inline-block;
    margin-left: 6px;
    color: #222222;
    width: auto;
    cursor: pointer;
}

.onoffswitch-checkbox {
    display: none !important;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 14px;
    padding: 0;
    line-height: 14px;
    border-radius: 14px;
    background-color: #fbfbfb;
    transition: background-color 0.3s ease-in;
    margin-bottom: 0px;
}

.onoffswitch-label:before {
    content: "";
    display: block;
    width: 15px;
    margin: 0px;
    background: #e7e7e7;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    border-radius: 14px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label {
    background-color: #8ee28e;
}

.onoffswitch-checkbox:checked+.onoffswitch-label:before {
    background: #fbfbfb;
}

.onoffswitch-checkbox:checked+.onoffswitch-label:before {
    right: -1px;
}

.colorpicker {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    width: calc(100% - 38px) !important;
    float: left !important;
}

.evo-colorind {
    display: inline-block;
    width: 38px !important;
    height: 38px !important;
    border-radius: 4px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border: 1px solid #aaa !important;
    box-sizing: border-box !important;
    float: left !important;
    margin-bottom: 1.5rem !important;
    border-left: 0px !important;
}

.evo-pop {
    background: white !important;
    border-radius: 5px !important;
    border: 1px solid #AAA !important;
    margin-top: 40px !important;
}

.label-media {
    display: inline-block;
    width: 180px;
    background: #f7f7f7;
    color: #999999;
    border: 1px solid #aaa;
    border-radius: 4px 0px 0px 4px;
    padding: 6px 10px;
    height: 38px;
    float: left;
    border-right: 0px;
    box-sizing: border-box;
    margin-bottom: 4px;
}

.onoffswitch-group .fa {
    width: 24px;
    text-align: center;
}

.label-media+input[type=text] {
    border-radius: 0px 4px 4px 0px;
    margin-bottom: 0px;
    width: 320px;
    max-width: calc(100% - 180px);
    margin-bottom: 4px;
}

.photo {
    display: block;
    float: left;
    width: 200px;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.photo label {
    height: 200px;
}

.photo.main {
    clear: both;
}

.photo.main.user {
    overflow: hidden;
}

.photo.logo .image {
    background-color: white;
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
}

iframe.photobook {
    border-radius: 5px;
    border: 1px solid #b6b6b6;
    box-sizing: border-box;
}

div.photobook {
    padding: 0px;
    font-size: 13px;
}

.draggable {
    display: inline-block;
    margin: 0px 5px 5px 0px;
    width: 90px;
    height: 90px;
    overflow: hidden;
    text-align: center;
    background: white;
    border-radius: 5px;
}

.draggable img {
    max-width: 100%;
    width: auto;
    height: 100%;
    margin: 0px auto;
    border-radius: 5px;
}

.clickable {
    cursor: pointer;
}

.panel_image_preview,
.panel_person_preview {
    display: inline-block;
    float: left;
    width: 100%;
    height: 0px;
    background-color: #EEEEEE;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.panel_image_preview.itsthere,
.panel_person_preview.itsthere {
    height: 300px;
}

.panel_person_preview.small {
    cursor: pointer;
    margin-top: 33px;
    height: 120px;
}

.remove_picture {
    margin-bottom: 40px;
    display: none;
}

.panel_image_preview.itsthere+.remove_picture,
.panel_person_preview.itsthere+.remove_picture {
    display: inline-block;
}

div.photobookinside {
    padding: 10px;
    font-size: 13px;
}

div.photobookinside h1 {
    font-size: 15px;
    margin-bottom: 0px;
}

.selectMultiple {
    height: 120px;
}

div.photobook a,
div.photobookinside a {
    text-decoration: none;
    display: inline-block;
    float: left;
    width: 100%;
}

.spinner {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: transparent\9;
    background: rgba(255, 255, 255, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2ffffff, endColorstr=#b2ffffff);
    zoom: 1;
    position: relative;
    top: 0px;
    z-index: 2;
}

.spinner:nth-child(n) {
    filter: none;
}

.ai-choices {
    display: none;
}

.prev .spinner {
    top: -100px;
}

.sk-fading-circle {
    display: block;
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #5e88ce;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}


.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    width: 100%;
    height: 100px;
    text-align: center;
    color: #1EAEDB;
    box-sizing: border-box;
    display: inline-block;
    transition: all .3s ease-in-out;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 16px;
    border: 1px solid white;
    border-radius: 5px;
    margin: 0px;
}

.inputfile:focus+label,
.inputfile+label:hover {
    background-color: #ffffff;
    border-color: #1EAEDB;
}

.inputfile+label .fa {
    font-size: 2.4rem;
    margin-top: 20px;
}

.inputfile+label span {
    display: block;
    text-align: center;
    width: 100%;
    float: left;
    clear: both;
}

.upload {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
}

.image {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 4px;
}

label .image span {
    display: none;
    text-align: left;
    color: white;
    padding: 6px;
    border-radius: 4px;
    /* height: 40px; */
    margin-top: 60px;
    box-sizing: border-box;
    font-size: 1.2rem;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.3);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c000000, endColorstr=#4c000000);
    zoom: 1;
}

label .image span:nth-child(n) {
    filter: none;
}

.photo.main.user label .image span {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    height: 30px;
    margin-top: 69px;
}

.photo.main.user .inputfile+label,
.photo.main.user .image {
    border-radius: 100%;
    overflow: hidden;
}

.profile_pic {
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 4px;
}

.profile_picture {
    width: 40px;
}

.profile_picture .fa {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: #e7e7e7;
    color: white;
    border-radius: 100%;
    text-align: center;
}

.profile_picture img {
    border-radius: 100%;
    vertical-align: middle;
}

label .image span .delete {
    font-size: 12px;
    margin: 0px;
    cursor: pointer;
    color: white;
}

label .image span .delete .fa {
    font-size: 1.3rem;
    margin: 0px;
}

label .image:hover span {
    /* display: block; */
}

.label {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
    top: -16px;
}

/* Spacing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
    margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 2.5rem;
}

.cke_reset {
    margin-bottom: 20px !important;
    box-shadow: none;
    border-radius: 5px;
}

.cke_top {
    border-radius: 5px;
    background: #f7f7f7 !important;
    background-image: none !important;
}

.cke_wysiwyg_frame {
    border-radius: 5px !important;
}

.cke_inner {
    background: none !important;
}

.select2-container {

    margin-bottom: 1.5rem !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    z-index: 1;
}

.select2-selection--single {
    height: 38px !important;
}

.select2-results__option {
    margin-bottom: 0px !important;
    font-size: 13px !important;
    color: #383838 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #e7f9ff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 30px !important;
    height: 38px !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e7f9ff !important;
    color: #33C3F0 !important;
}

header .select2-container--default .select2-selection--single {
    background: #383838;
    border: 0px;
    border-radius: 0px;
    color: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 0px !important;
    border-color: white !important;
    height: 28px !important;
    font-size: 13px !important;
}

span.select2-selection.select2-selection--single {
    outline: none;
}

.checklist {
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #e8e8e8;
    border-bottom: 0px;
    display: inline-block;

}

.checklist:first-of-type {
    border-radius: 5px 5px 0px 0px;
}

.checklist:last-of-type {
    border-radius: 0px 0px 5px 5px;
    border-bottom: 1px solid #e8e8e8;
}

.checklist.checked {
    color: #62ae50;
    opacity: .8;
}

.checklist.checked span {
    text-decoration: line-through;
}

.checklist.blog {
    color: #222;
    padding: 20px;
    float: left;
}

.checklist.blog strong {
    color: #1EAEDB;
    display: block;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
}

.checklist.blog:hover strong {
    color: #0FA0CE;
}

.checklist.blog .textblock {
    float: left;
    display: inline-block;
    width: calc(100% - 64px);
}

.checklist.blog .profile_pic {
    margin-right: 0px;
    float: right;
}

.blog_date {
    display: inline-block;
    float: right;
    width: 40px;
    margin: 10px 4px 4px 4px;
    border-radius: 4px;
    background-color: #D8D8D8;
    color: #999999;
    font-size: 24px;
    height: 40px;
    line-height: 29px;
    font-weight: bold;
    text-align: center;
}

.blog_date small {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    text-transform: lowercase;
    line-height: 3px;
}


.ui-state-default,
.ui-widget-content .ui-state-default {
    outline: none;
}

/* Utilities
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right !important;
}

.u-text-right {
    text-align: right;
}

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

.u-pull-left {
    float: left;
}

.u-nopadding {
    padding: 0px !important;
}

.u-nomargin {
    margin: 0px;
}

.u-noborder {
    border: 0px;
}

.u-noborder td {
    border: 0px;
}

.u-margin-bottom-20 {
    margin-bottom: 20px;
}

input[type="submit"],
form {
    margin-bottom: 0px;
}

.u-rounded {
    border-radius: 5px;
}

.u-no-spinners {
    -moz-appearance: textfield;
}

.u-no-spinners::-webkit-outer-spin-button,
.u-no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Misc
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}


/* Clearing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}


/* AdriaanSnoeren.com
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.lang_label {
    display: inline-block;
    margin-right: 2px;
    border: 1px solid #E1E1E1;
    color: #999999;
    padding: 0px 4px;
    line-height: 20px;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
}

.lang_label .fa {
    width: 15px;
    text-align: center;
}

.lang_label:nth-child(1) {
    border-radius: 4px 0px 0px 4px;
}

.lang_label:nth-last-child(1) {
    border-radius: 0px 4px 4px 0px;
}

.lang_label.available {
    background-color: white;
    color: #62ae50;
    border-color: #;
}

.lang_label.unavailable {
    color: #999999;
    background-color: #F3F3F3;
}


.submessage {
    display: block;
    float: left;
    box-sizing: border-box;
    width: 100%;
    padding: 6px 6px 6px 30px;
    border-radius: 6px;
    z-index: 1;
    background: #f2fdff;
    color: #33C3F0;
}

.submessage .fa {
    display: block;
    float: left;
    margin-top: 4px;
    margin-right: 0px;
    margin-left: -20px;
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    top: 0px;
    left: 0px;
    z-index: 2;
}


.message {
    display: block;
    float: left;
    box-sizing: border-box;
    width: 100%;
    padding: 6px 6px 6px 30px;
    border-radius: 6px;
    z-index: 1;
}

.message .fa {
    display: block;
    float: left;
    margin-top: 4px;
    margin-right: 0px;
    margin-left: -20px;
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.message.info {
    background: #e7f9ff;
    color: #33C3F0;
}

.message.error {
    background: #fff3f3;
    color: #ee4949;
}

.message.success {
    background: #f3fff3;
    color: #62ae50;
}

.icon_green {
    color: #62ae50 !important;
}

.icon_red {
    color: #ee4949;
}


.dialog {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

.dialog:nth-child(n) {
    filter: none;
}

.dialog .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    float: left;
    width: 364px;
    left: -182px;
    margin-left: 50%;
    top: 20%;
    padding: 20px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

.dialog .inner span {
    color: #33C3F0;
    font-weight: bold;
}

#dialogButtons {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

#dialogButtons:nth-child(n) {
    filter: none;
}

#dialogButtons .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    float: left;
    width: 364px;
    left: -182px;
    margin-left: 50%;
    top: 20%;
    padding: 20px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

#dialogButtons .inner span {
    color: #33C3F0;
    font-weight: bold;
}


.dialogLarge {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

.dialogLarge:nth-child(n) {
    filter: none;
}

.dialogLarge .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 640px;
    height: 100%;
    right: 0px;
    /* margin-left: -320px; */
    top: 0px;
    padding: 20px;
    background: white;
    /* border-radius: 6px; */
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

.dialogLarge .searchbar {
    display: none;
}

.dialogLarge .inner span {
    color: #33C3F0;
    font-weight: bold;
}


.dialogSelectPage {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

.dialogSelectPage:nth-child(n) {
    filter: none;
}

.dialogSelectPage .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 1100px;
    height: 680px;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 30px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

.dialogSelectPage .inner span {
    color: #33C3F0;
    font-weight: bold;
}

.dialog h2,
.dialogLarge h2,
.dialogSelectPage h2 {
    margin-top: 0px;
}

.dialogLarge h3,
.dialogSelectPage h3 {
    margin-bottom: 10px;
}

.dialogLarge button {
    position: absolute;
    border: 0px;
    right: 0px;
    top: 14px;
}

.dialogSelectPage button {
    position: absolute;
    border: 0px;
    right: 10px;
    top: 24px;
}

.dialogLarge p.dialogScroller {
    width: 100%;
    height: calc(100% - 120px);
    overflow-y: scroll;
}

.pageSelect {
    display: block;
    float: left;
    width: 100%;
    height: 320px;
    padding: 22px;
    border: 1px solid #D7F7FF;
    color: #222;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.pageSelect:hover,
.pageSelect.selected {
    border: 1px solid #34C3F0;
}

.pageSelect .fas {
    color: #E6E6E6;
    font-size: 88px;
    margin-bottom: 70px;
}

.pageSelect:hover .fas,
.pageSelect.selected .fas {
    color: #34C3F0;
}

.pageSelect .fa-check-circle {
    color: #62AE50;
    font-size: 24px;
    margin-bottom: 0px;
    float: right;
    display: none;
}

.pageSelect.selected .fa-check-circle,
.pageSelect:hover .fa-check-circle {
    display: inline;
    color: #62AE50;
}

.pageSelect h3 {
    color: #33C3F0;
    font-size: 20px;
}

.pageSelect p {
    color: #666666;
    font-size: 13px;
    line-height: 15px;
}

.paging {
    display: inline-block;
    width: 100%;
    height: 20px;
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 20px;
}

.paging a {
    text-decoration: none;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #1EAEDB;
    border-radius: 100%;
    margin: 0px 4px;
    opacity: .5;
    cursor: pointer;
}

.paging a.active,
.paging a:hover {
    opacity: 1;
}

.addIcon {
    font-size: 34px;
    line-height: 60px;
    height: 63px;
}

.addVideo {
    font-size: 18px;
    line-height: 60px;
    height: 63px;
    text-align: center;
}

#dialog {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

#dialog:nth-child(n) {
    filter: none;
}

#dialog .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    float: left;
    width: 364px;
    left: -182px;
    margin-left: 50%;
    top: 20%;
    padding: 20px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

#dialog .inner strong {
    color: #33C3F0;
}

#dialogButtons {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

#dialogButtons:nth-child(n) {
    filter: none;
}

#dialogButtons .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    float: left;
    width: 364px;
    left: -182px;
    margin-left: 50%;
    top: 20%;
    padding: 20px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

#dialogButtons .inner strong {
    color: #33C3F0;
}


#dialog_qr {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

#dialog_qr:nth-child(n) {
    filter: none;
}

#dialog_qr .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    float: left;
    width: 364px;
    left: -182px;
    margin-left: 50%;
    top: 20%;
    padding: 20px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

#dialog_qr .inner img {
    display: block;
    margin: 0px auto;
    margin-bottom: 20px;
}

#dialog_qr .inner strong {
    color: #33C3F0;
}

#dialog_send {
    display: none;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50;
    left: 0px;
    top: 0px;
    background: rgb(0, 0, 0);
    background: transparent\9;
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
    zoom: 1;
}

#dialog_send:nth-child(n) {
    filter: none;
}

#dialog_send .inner {
    position: absolute;
    display: block;
    box-sizing: border-box;
    float: left;
    width: 364px;
    left: -182px;
    margin-left: 50%;
    top: 20%;
    padding: 20px;
    background: white;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 50px 0 #000000;
    box-shadow: 0 0 50px 0 #000000;
}

#dialog_send .inner strong {
    color: #33C3F0;
}

.block {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin-top: 30%;
    padding: 20px;
    border-radius: 6px;
    background: white;
}

.bottombar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10;
    display: block;
    box-sizing: border-box;
    width: calc(100% - 201px);
    height: 38px;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    margin-left: 201px;
    transition: margin .2s ease-in-out;
}

.open_close .bottombar {
    margin-left: 41px;
    width: calc(100% - 41px);
    transition: margin .2s ease-in-out;
}

.bottombar .button,
.bottombar .button-primary,
.bottombar .button {
    display: inline-block;
    border-radius: 0px;
    margin-right: 0px;
    clear: none;
    border-color: transparent;
}

.button-primary.button-green {
    background-color: #62ae50;
    border-color: #62ae50;
}

.button-primary.button-green:hover {
    background-color: #6fbe5c;
    border-color: #6fbe5c;
}

.tab {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    opacity: .7;
}

.tab.active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: 0px;
    opacity: 1;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 38px;
    background: #383838;
    /*border-bottom:1px solid #FFFFFF;*/
}

header a {
    display: block;
    float: left;
    height: 38px;
    line-height: 38px;
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.3rem;
    padding: 0px 10px;
    font-weight: 400;
}

header a:hover {
    color: white;
}

header ul {
    display: inline-block;
    height: 38px;
    list-style: none;
    float: right;
}

header ul li {
    height: 38px;
    display: inline-block;
}

header ul li a {
    font-weight: 300;
}

header ul li a:hover {
    color: #d9d9d9;
}

header a .fa,
.dropdown-menu a .fa {
    width: 20px;
    text-align: center;
}

header .select2 {
    margin-bottom: 0px !important;
    margin-top: 0px;
    display: inline-block;
    float: right;
}

header .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
    font-size: 13px;
}

header .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #FFF transparent transparent transparent;
}

header .select2-dropdown {
    border: 0px;
    border-radius: 3px;
    font-size: 13px;
}

.inline-list {
    display: flex;
    justify-content: flex-start;
}

.inline-list p {
    padding: 5px;
}

.inline-list .non-active-list-item a {
    color: #333333;
}

nav {
    position: fixed;
    top: 38px;
    display: block;
    float: left;
    left: 0px;
    width: 200px;
    border-right: 1px solid white;
    height: 100%;
    transition: width .2s ease-in-out;
    overflow: hidden;
    background: white;
}

nav ul {
    display: block;
    float: left;
    width: 200px;
    list-style: none;
}

nav ul li {
    display: block;
    float: left;
    height: 38px;
    width: 100%;
    margin-bottom: 0px;
}

nav ul li a {
    display: block;
    float: left;
    width: 100%;
    height: 38px;
    border-bottom: 1px solid #FFFFFF;
    box-sizing: border-box;
    padding: 0px 10px;
    font-size: 1.3rem;
    line-height: 38px;
    text-decoration: none;
    cursor: pointer;
}

nav ul li a .fa {
    width: 22px;
    text-align: center;
    margin-right: 6px;
}

nav ul li a:hover {
    background: #f9f9f9;
}


nav ul li#open_close_nav a {
    color: #999999;
}

nav ul li#open_close_nav a .fa {
    transition: transform .5s ease-in-out;
}

.open_close nav ul li#open_close_nav a .fa {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.open_close nav {
    width: 40px;
}

nav ul li.here a {
    background: #1EAEDB;
    color: white;
}


.tooltip {
    display: none;
    background-color: rgba(51, 51, 51, .9);
    border-radius: 3px;
    padding: 0px 4px;
    color: #fff;
    font-size: 13px;
    height: 24px;
    line-height: 24px;
    position: absolute;
    z-index: 9999;
}

.tooltip::after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(51, 51, 51);
    border-right-color: #333333;
    border-width: 4px;
    margin-top: -4px;
    opacity: 0.9;
}

#content {
    display: block;
    margin: 58px 20px 58px 220px;
    padding: 20px;
    border: 1px solid white;
    border-radius: 3px;
    background: white;
    box-sizing: border-box;
    transition: margin .2s ease-in-out;
}

#content.open_close {
    margin: 58px 20px 58px 60px;
}

#content.open_close.fixed,
#content.open_close.fixed nav,
#content.open_close.fixed nav ul li#open_close_nav a .fa {
    transition: none !important;
}

.pager {
    display: inline-block;
    float: left;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border-right: 1px solid white;
    cursor: pointer;
    color: #1EAEDB;
}

.pager:hover {
    background: #FFFFFF;
    color: #1EAEDB;
}

.pager.here {
    background: #1EAEDB;
    color: White;
}

#content.open_close+footer {
    margin-left: 41px;
}


.thumb {
    display: block;
    float: left;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.thumb.large {
    max-height: 120px;
    max-width: 212px;
    width: 212px;
    height: 120px;
}

.infolabel {
    color: #33C3F0;
    background: #e7f9ff;
    border-radius: 5px;
}

.levelToggle {
    display: none;
}

.price_type_toggle {
    display: none;
}

.carToggle {
    display: none;
}

.u-hide {
    display: none;
}

.u-show {
    display: block;
}

#redirectRow {
    display: none;
}

.noMargin {
    margin: 0;
}

/* block_google */
.googleBorder {
    border: rgb(170, 170, 170) solid 0.633333px;
    padding: 10px;
    margin-top: 29px;
    border-radius: 4px;
    overflow: hidden;
}

.google_block_preview {
    max-width: 632px;
}

#title_google_preview {
    color: #1a0dab;
    font-size: 18px;
    padding: 0px;
    margin: 0px;
    line-height: 21.6px;
    text-decoration: rgb(26, 13, 171);
    white-space: nowrap;
    font-family: arial, sans-serif;
}

#title_google_preview:hover {
    text-decoration: underline;
    cursor: pointer;
}

#link_google_preview {
    color: #006621;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    font-family: arial, sans-serif;
}

#description_google_preview {
    color: #545454;
    font-size: 13px;
    font-weight: 400px;
    line-height: 18.2px;
    font-family: arial, sans-serif;
    overflow-wrap: break-word;
}

.row-animations {
    display: flex;
    justify-content: flex-end;
}

.animations_choice {
    margin-right: 10px;
    align-items: flex-end;
}

.animations_choice p {
    margin: 5px;
    color: #999999;
}

.small-heigt {
    height: 30px;
    margin: 0;
}

/* Media Queries
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
  Note: The best way to structure the use of media queries is to create the queries
  near the relevant code. For example, if you wanted to change the styles for buttons
  on small devices, paste the mobile query code up in the buttons section and style it
  there.
  */


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}