/***************************************************************/
/*
    File: hotjar1.css
    Desc: Main CSS used throughout this site.
*/
/***************************************************************/

@import url(//web-archive.nli.org.il/National_Library/cs_///fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
@import url(//web-archive.nli.org.il/National_Library/cs_///fonts.googleapis.com/css?family=Titillium+Web:400,600,700);

* {
    font-family: 'Open Sans', sans-serif, Tahoma;
}

html {
    height: 100%;
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Open Sans', sans-serif, Arial;
    color: #3b3b3b;
    background: white;
    font-size: 15px;
    position: relative;
}

input,
button,
select,
textarea {
    outline: none !important;
}

h1,
h2,
h3,
h4 {
    color: black;
    margin: 0;
    padding: 0;
    line-height: normal;
    text-align: center;
}

h1.center,
h2.center,
h3.center,
h4.center {
    text-align: center;
    margin: 0 auto;
    max-width: 840px;
}

h1 {
    font-size: 40px;
    font-weight: 300;
}

h2 {
    font-size: 28px;
    font-weight: 300;
}

h3 {
    font-size: 18px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

h1.left,
h2.left {
    text-align: left;
    max-width: none;
}

a,
button {
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
}

a.border-underline {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid #efefef;
    border-color: rgba(0,0,0,.2);
}

a.border-underline:hover {
    color: black;
    border-bottom: 1px solid black;
}

a.border-underline-light {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid #efefef;
    border-color: rgba(255,255,255,.1);
}

a.border-underline-light:hover {
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.4);
}

/***********************************/
/* BUTTONS */
/***********************************/
.btn {
    background-color: #666666;
    border: 0;
    outline: none;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 11px 14px;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
       -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
            box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
    transition: all .2s ease-in-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .25);
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
    background: #525252;
    color: white;
}

.btn:active,
.btn.active {
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .3);
       -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .3);
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .3);
}

.btn-lg {
    font-size: 18px;
    padding: 13px 30px;
}

.btn-sm {
    font-size: 12px;
    padding: 4px 12px;
}

.btn-xs {
    font-size: 10px;
    padding: 2px 6px;
}

/*Buttons within labels - usually used as ? buttons for help */
.btn-label {
    vertical-align: bottom;
    padding: 1px 6px;
    margin-left: 8px;
}

/* PRIMARY - GREEN */
.btn-primary,
.btn-primary[disabled],
.btn-primary.disabled {
    background-color: #88c057;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);
       -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary[disabled]:hover,
.btn-primary.disabled:hover,
.open .dropdown-toggle.btn-primary {
    background-color: #7bae4f;
}

/* DANGER - RED */
.btn-danger,
.btn-danger[disabled],
.btn-danger.disabled {
    background-color: #ea4031;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger[disabled]:hover,
.btn-danger.disabled:hover,
.open .dropdown-toggle.btn-danger {
    background-color: #d52415;
}

/* BLUE */
.btn-blue,
.btn-blue[disabled],
.btn-blue.disabled {
    background-color: #009efd;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active,
.btn-blue[disabled]:hover,
.btn-blue.disabled:hover,
.open .dropdown-toggle.btn-blue {
    background-color: #0085d4;
}

/* HOTJAR - PINK...ish */
.btn-hotjar,
.btn-hotjar[disabled],
.btn-hotjar.disabled {
    background-color: #f4364c;
}

.btn-hotjar:hover,
.btn-hotjar:focus,
.btn-hotjar:active,
.btn-hotjar.active,
.btn-hotjar[disabled]:hover,
.btn-hotjar.disabled:hover,
.open .dropdown-toggle.btn-hotjar {
    background-color: #d5354b;
}

/* GOLD BUTTONS */
.btn-gold,
.btn-gold[disabled],
.btn-gold.disabled {
    background-color: #ceac41;
    border: 1px solid #ac8717;
}

.btn-gold:hover,
.btn-gold:focus,
.btn-gold:active,
.btn-gold.active,
.btn-gold[disabled]:hover,
.btn-gold.disabled:hover,
.open .dropdown-toggle.btn-gold {
    background-color: #c6a53e;
}

/* BLACK BUTTONS */
.btn-black,
.btn-black[disabled],
.btn-black.disabled {
    background: #25282a;
    border: 1px solid #434547;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black[disabled]:hover,
.btn-black.disabled:hover,
.btn-black.active {
    background: #1b1c1e;
}

/* WHITE BUTTONS */
.btn-white,
.btn-white[disabled],
.btn-white.disabled {
    background-color: white;
    color: #666666;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white[disabled]:hover,
.btn-white.disabled:hover,
.open .dropdown-toggle.btn-white {
    background-color: white;
    color: #666666;
}

/* SILVER BUTTONS (used in #topbar) */
.btn-silver {
    border: 1px solid #c1c1c1;
    padding: 10px 14px;
    background: #e6e6e6; /* Old browsers */
    background:    -moz-linear-gradient(top,  #ffffff 0%, #e6e6e6 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
    background:      -o-linear-gradient(top,  #ffffff 0%,#e6e6e6 100%); /* Opera 11.10+ */
    background:     -ms-linear-gradient(top,  #ffffff 0%,#e6e6e6 100%); /* IE10+ */
    background:         linear-gradient(to bottom,  #ffffff 0%,#e6e6e6 100%); /* W3C */
    color: #666666;
}

.btn-silver:hover,
.btn-silver:focus {
    background: #d1d1d1; /* Old browsers */
    background:    -moz-linear-gradient(top,  #ffffff 0%, #d1d1d1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d1d1d1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#d1d1d1 100%); /* Chrome10+,Safari5.1+ */
    background:      -o-linear-gradient(top,  #ffffff 0%,#d1d1d1 100%); /* Opera 11.10+ */
    background:     -ms-linear-gradient(top,  #ffffff 0%,#d1d1d1 100%); /* IE10+ */
    background:         linear-gradient(to bottom,  #ffffff 0%,#d1d1d1 100%); /* W3C */
    color: #333333;
}

.btn-silver:active,
.btn-silver.active {
    background: #d1d1d1; /* Old browsers */
    color: #333333;
}

/* LINE BUTTONS */
.btn-line,
.btn-line.disabled,
.btn-line[disabled],
.btn-line.disabled:hover,
.btn-line[disabled]:hover {
    text-align: center;
    border: 1px solid #999999;
    border-color: rgba(0,0,0,.3);
    color: #666666;
    background: transparent;
    border-radius: 4px;
    padding: 10px 14px;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    text-shadow: none;
}

.btn-line.btn-sm {
    padding: 3px 8px !important;
}

.btn-line.btn-xs {
    padding: 1px 6px !important;
}

.btn-line:hover {
    border: 1px solid transparent;
}

/* NO BACKGROUND BUTTONS */
.btn-clean {
    font-weight: normal;
    color: #666666;
    font-size: 14px;
    text-transform: none;
    background: none !important;
    -webkit-box-shadow: none !important;
       -moz-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
}

.btn-clean:hover {
    text-decoration: underline;
}

.btn-clean:hover,
.btn-clean:focus,
.btn-clean:active,
.btn-clean.active {
    color: #3b3b3b !important;
}

/***********************************/
/* HEADER */
/***********************************/
.header {
    z-index: 99;
    width: 100%;
    background: white;
    border-bottom: 1px solid #cdcdcd;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .04);
       -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .04);
            box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .04);
    border-radius: 0;
    margin: 0;
}

.header .navbar-header {
    height: 93px;
}

.header .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
}

.header .navbar-toggle {
    margin-top: 27px;
    background: white;
    -webkit-transition: all .25s;
       -moz-transition: all .25s;
         -o-transition: all .25s;
        -ms-transition: all .25s;
            transition: all .25s;
}

.header .navbar-toggle:hover {
    margin-top: 27px;
    background: #f4364c;
    border-color: transparent;
}

.header .navbar-toggle:hover .icon-bar {
    background: white;
}

.header .navbar-brand {
    width: 100px;
    height: 48px;
    padding: 0;
    margin-top: 18px;
    margin-left: 15px !important;
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/header-logo.png);
    background-repeat: no-repeat;
    background-size: 100px 48px;
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
    .header .navbar-brand {
        background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/header-logo-2x.png);
    }
}

.header .nav > li > a {
    padding: 0 14px;
    font-size: 14px;
    background: white;
    -webkit-transition: all .25s;
       -moz-transition: all .25s;
         -o-transition: all .25s;
        -ms-transition: all .25s;
            transition: all .25s;
    color: #666666;
    border-bottom: 2px solid transparent;
}

.header .nav > li:hover > a {
    color: #353535;
    border-bottom: 2px solid #cdcdcd;
    background: white !important;
}

.header .nav > li.active > a,
.header .nav > li.active > a:hover {
    color: #f4364c;
    border-bottom: 2px solid #f4364c;
    background: white !important;
}

.header .pull-right .btn {
    margin-left: 15px;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    font-weight: 600;
}

.header {
    height: 95px;
}

.header .nav > li > a {
    height: 93px;
    line-height: 93px;
}

.header .pull-right .btn {
    margin-top: 26px;
}

#sticky-header {
    background: white;
    position: fixed;
    top: -150px;
    width: 100%;
    z-index: 80;
    height: 80px;
    -webkit-transition: top .4s ease-in-out;
       -moz-transition: top .4s ease-in-out;
         -o-transition: top .4s ease-in-out;
        -ms-transition: top .4s ease-in-out;
            transition: top .4s ease-in-out;
}

#sticky-header .header {
    height: 80px;
}

#sticky-header .header .nav > li > a {
    height: 78px;
    line-height: 78px;
}

#sticky-header .header .pull-right .btn {
    margin-top: 19px;
}

#sticky-header .header .navbar-brand {
    width: 84px;
    height: 40px;
    background-size: 84px 40px;
}

#sticky-header.exposed {
    top: 0;
}

/* MOBILE HEADER */
@media (max-width: 768px) {
    .header .nav > li > a {
        height: 50px;
        line-height: 50px;
        border-bottom: 1px solid #cdcdcd;
    }

    .header .nav > li.visible-xs > a {
        border-bottom: none;
    }

    .header .nav > li:last-child {
        border-bottom: 0;
    }

    .header .dropdown .dropdown-menu {
        border-bottom: 1px solid #cdcdcd;
        border-radius: 0;
    }

    .header .dropdown .dropdown-menu > li {
        padding: 8px 30px;
    }
}

/***********************************/
/* FOOTER */
/***********************************/
#footer {
    padding: 40px 0;
    font-size: 13px;
    background: #454a54;
    color: #dadbdd;
    width: 100%;
}

#footer .logo {
    width: 100px;
    height: 46px;
    margin: 0 auto 20px auto;
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/footer-logo.png);
    background-repeat: no-repeat;
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
    #footer .logo {
        background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/footer-logo-2x.png);
        background-size: 100px 46px;
    }
}

#footer .links {
    margin-bottom: 15px;
}

#footer .legal {
    font-size: 12px;
}

/*****************************/
/* AVATARS */
/*****************************/
.avatar {
    border-radius: 100px;
    border: 2px solid white;
    -webkit-box-shadow: 0 1px 7px 1px rgba(186, 186, 197, .75);
       -moz-box-shadow: 0 1px 7px 1px rgba(186, 186, 197, .75);
            box-shadow: 0 1px 7px 1px rgba(186, 186, 197, .75);
    background-repeat: no-repeat;
    display: inline-block;
    width: 80px;
    height: 80px;
}

.avatar.hubspot-sam {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/hubspot-sam.jpg);
}
.avatar.ge-peter {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/ge-peter.jpg);
}
.avatar.askmen-ved {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/askmen-ved.jpg);
}
.avatar.evanscycles-daniel {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/evanscycles-daniel.jpg);
}
.avatar.decolarcom-pablo {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/decolarcom-pablo.jpg);
}
.avatar.homescom-grant {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/homescom-grant.jpg);
}
.avatar.unbounce-michael {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/customers/unbounce-michael.jpg);
}

/*****************************/
/* SECTIONS */
/*****************************/
.section {
    padding: 50px 15px 60px 15px;
    width: 100%;
    border-bottom: 1px solid #e3e3e8;
}

.section.section-noborder {
    border-bottom: 0;
}

.section.section-grey {
    background: #f9f9fa;
}

.subsection {
    padding: 0 15px;
    width: 100%;
}

.section .section-inner {
    padding-top: 70px;
}



/*****************************/
/* LANDING PAGES */
/*****************************/
#lp-top {
    background: white;
    color: #3b3b3b;
    text-align: center;
}

#lp-top * {
    color: inherit;
}

#lp-top h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
}

#lp-logo {
    display: block;
    margin: 0 auto 40px auto;
    max-width: 600px;
}

.lp-instapage #lp-logo {
    max-width: 400px;
}

#lp-logo > img {
    max-width: 100%;
    height: auto;
}

/*****************************/
/* HOMEPAGE */
/*****************************/
.homepage h1,
.homepage h2 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
}

.homepage #top-section {
    padding: 50px 0 0 0;
    background: url('/National_Library/oe_/https://www.hotjar.com/static/img/top-back.jpg') #f3f7fa;
    position: relative;
}

h1 > span.all-in-one,
h2 > span.all-in-one,
h3 > span.all-in-one {
    background: url('/National_Library/oe_/https://www.hotjar.com/static/img/underline.png') no-repeat bottom left;
    background-size: 190px 7px;
    overflow: visible;
    padding-left: 15px;
    padding-right: 5px;
    padding-bottom: 4px;
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
    .homepage #top-section h1 > span.all-in-one {
        background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/underline-2x.png);
    }
}

@media (max-width: 450px) {
    .homepage #top-section {
        padding-top: 30px;
    }

    .homepage #top-section h1 {
        font-size: 32px;
    }
}

.homepage #top-section .feature-set {
    margin: 40px auto 20px auto;
    text-align: center;
}

.homepage #top-section .feature-set .feature-box {
    margin-right: 15px;
    margin-bottom: 15px;
    display: inline-block;
    cursor: pointer;
}

.homepage #top-section .feature-set .feature-box > div {
    width: 120px;
    height: 75px;
    border: 1px solid #999999;
    border-radius: 4px;
    margin-bottom: 5px;
    background-size: 120px;
    opacity: .7;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
            filter: gray;
            filter: url('data:image/svg+xml;utf8,<svg version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' height=\'0\'><filter id=\'greyscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\' /></filter></svg>#greyscale');
    -webkit-transition: all .2s linear;
       -moz-transition: all .2s linear;
         -o-transition: all .2s linear;
        -ms-transition: all .2s linear;
            transition: all .2s linear;
}

.homepage #top-section .feature-set .feature-box.heatmaps > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/heatmaps.jpg);
}
.homepage #top-section .feature-set .feature-box.recordings > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/recordings.jpg);
}
.homepage #top-section .feature-set .feature-box.funnels > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/funnels.jpg);
}
.homepage #top-section .feature-set .feature-box.forms > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/forms.jpg);
}
.homepage #top-section .feature-set .feature-box.polls > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/polls.jpg);
}
.homepage #top-section .feature-set .feature-box.surveys > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/surveys.jpg);
}
.homepage #top-section .feature-set .feature-box.recruiters > div {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/screenshots/thumbnails/recruiters.jpg);
}

.homepage #top-section .feature-set .feature-box > a {
    text-transform: uppercase;
    color: #666666;
    border-bottom: 1px solid rgba(0,0,0,.2);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.homepage #top-section .feature-set .feature-box:hover > div {
    opacity: 1;
            filter: alpha(opacity=100);
    -webkit-filter: none;
            filter: none;
}

.homepage #top-section .feature-set .feature-box:hover > a {
    color: black;
    border-bottom: 1px solid rgba(0,0,0,.5) !important;
}

@media (max-width: 450px) {
    .homepage #top-section .feature-set .feature-box > div {
        width: 100px;
        height: 63px;
        background-size: 100px;
    }
}

.homepage #top-section .btn-hotjar {
    margin: 10px 0 10px 0;
    font-weight: 500;
    padding: 20px 40px;
}

.homepage #top-section .btn > span {
    text-transform: none;
}

#feature-viewer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}

body.feature-viewer-showing {
    overflow: hidden;
}

body.feature-viewer-showing #feature-viewer {
    display: block;
}

#feature-viewer .close {
    position: fixed;
    line-height: 36px;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 45px;
    font-weight: 300;
    text-align: center;
    filter: alpha(opacity=60);
    opacity: .6;
    z-index: 105;
}

#feature-viewer .close:hover {
    filter: alpha(opacity=100);
    opacity: 1;
        -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari */
            transform: rotate(180deg);
}

#feature-viewer .backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    filter: alpha(opacity=95);
    opacity: .95;
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/features-back.jpg) #595c63;
}

#feature-viewer .arrow-left,
#feature-viewer .arrow-right {
    position: fixed;
    left: 7%;
    top: 40%;
    border-radius: 100px;
    border: 1px solid #efefef;
    border-color: rgba(255,255,255,.2);
    background-color: transparent;
    width: 80px;
    height: 80px;
    z-index: 101;
    cursor: pointer;
    -webkit-transition: all .15s ease-in-out;
       -moz-transition: all .15s ease-in-out;
         -o-transition: all .15s ease-in-out;
        -ms-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
}

#feature-viewer .arrow-left {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/arrow-left.png) center center no-repeat;
    background-position: left top;
}

#feature-viewer .arrow-right {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/arrow-right.png) center center no-repeat;
    background-position: right top;
    left: auto;
    right: 7%;
}

#feature-viewer .arrow-left:hover {
    background-position: right top;
}

#feature-viewer .arrow-right:hover {
    background-position: left top;
}

#feature-viewer .arrow-left:hover,
#feature-viewer .arrow-right:hover {
    border-color: white;
    background-color: white;
}

#feature-viewer .features {
    width: 20000px;
    position: relative;
    z-index: 102;
}

#feature-viewer .features .feature-box {
    float: left;
    background: #454a54;
    border-radius: 6px;
    border: 2px solid #393f4c;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

#feature-viewer .features .feature-box.active {
    -webkit-box-shadow: 0 3px 10px rgba(50, 54, 61, .8);
       -moz-box-shadow: 0 3px 10px rgba(50, 54, 61, .8);
            box-shadow: 0 3px 10px rgba(50, 54, 61, .8);
}

#feature-viewer .features .feature-box.active,
#feature-viewer .features .feature-box:hover {
    filter: alpha(opacity=100);
    opacity: 1;
}

#feature-viewer .features .feature-box.spacer-box {
    background: transparent;
    border: 0;
}

#feature-viewer .features .feature-box .image-holder {
    width: 70%;
    float: left;
    border-right: 1px solid #888888;
    -webkit-box-shadow: 3px -2px 8px rgba(0,0,0,.3);
       -moz-box-shadow: 3px -2px 8px rgba(0,0,0,.3);
            box-shadow: 3px -2px 8px rgba(0,0,0,.3);
}

#feature-viewer .features .feature-box .image-holder > img {
    width: 100%;
    height: auto;
    border-radius: 6px 0 0 6px;
}

#feature-viewer .features .feature-box .content-holder {
    width: 30%;
    float: left;
    border-radius: 0 6px 6px 0;
    padding: 30px 50px 0 40px;
    color: #dddddd;
}

#feature-viewer .features .feature-box .content-holder h2 {
    color: white;
    font-weight: 400;
    font-size: 34px;
    text-align: left;
    margin: 0 0 20px 0;
}

#feature-viewer .features .feature-box .content-holder .btn {
    font-weight: 500;
}

@media (max-height: 720px) {
    #feature-viewer .features .feature-box {
        margin-top: 80px !important;
    }
}

@media (max-width: 1100px) {
    #feature-viewer .features .feature-box {
        margin-top: 80px !important;
    }

    #feature-viewer .arrow-left,
    #feature-viewer .arrow-right {
        display: none !important;
    }

    #feature-viewer .features .feature-box .image-holder {
        float: none;
        width: 100%;
        border-right: 0;
        border-bottom: 2px solid #888888;
        -webkit-box-shadow: none;
           -moz-box-shadow: none;
                box-shadow: none;
    }

    #feature-viewer .features .feature-box .image-holder > img {
        border-radius: 6px 6px 0 0;
    }

    #feature-viewer .features .feature-box .content-holder {
        float: none;
        width: 100%;
        padding: 20px;
    }

    #feature-viewer .features .feature-box .content-holder h2 {
        margin-bottom: 8px;
        font-size: 20px;
    }
}

#feature-viewer .position {
    position: fixed;
    z-index: 105;
    bottom: 30px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    text-align: center;
    height: 15px;
}

#feature-viewer .position > div {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 20px;
    border: 2px solid white;
    display: inline-block;
    cursor: pointer;
}

#feature-viewer .position > div:hover {
    background: white;
    background: rgba(255,255,255,.4);
    border-style: solid;
}

#feature-viewer .position > div.active,
#feature-viewer .position > div.active:hover {
    background: white;
    border-color: white;
    border-style: solid;
}

/* COMPANIES */
#companies {
    padding: 35px 0 25px 0;
}

#companies h3 {
    padding: 0 15px;
}

#companies > div {
    max-width: 1200px;
    margin: 0 auto;
}

#companies .logos {
    margin-top: 25px;
}
#companies .logos > div {
    margin: 20px 25px;
    display: inline-block;
    background-repeat: no-repeat;
}
#companies .logos > div.autodesk {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/logos/autodesk.png);
    width: 165px;
    height: 26px;
}
#companies .logos > div.avg {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/logos/avg.png);
    width: 70px;
    height: 30px;
}
#companies .logos > div.bwin {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/logos/bwin.png);
    width: 91px;
    height: 30px;
}
#companies .logos > div.hubspot {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/logos/hubspot.png);
    width: 103px;
    height: 30px;
}
#companies .logos > div.ikea {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/logos/ikea1.png);
    width: 87px;
    height: 30px;
}
#companies .logos > div.sephora {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/logos/sephora.png);
    width: 154px;
    height: 22px;
}
#companies .logos > div.adjust-logo {
    margin: 16px 25px 24px 25px;
}

#go-to-reviews {
    position: absolute;
    right: 80px;
    top: -50px;
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/home-arrow-reviews.png) 120px 26px no-repeat;
    width: 200px;
    overflow: visible;
    min-height: 120px;
    cursor: pointer;
    opacity: .8;
    filter: alpha(opacity=80);
}

#go-to-reviews:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

#go-to-reviews > div {
    width: 136px;
}

#go-to-reviews .avatar {
    margin: 0 0 10px 25px;
    display: block;
    text-align: center;
    width: 60px;
    height: 60px;
    background-size: 60px;
}

@media (max-width: 1200px) {
    #go-to-reviews {
        display: none;
    }
}

/* NEW-WAY / OLD-WAY*/
#comparison-container {
    width: 100%;
}

#comparison-container .comparison img {
    max-width: 100%;
}

/* FEATURES */
#features-container {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1200px), (min-width: 992px), (min-width: 768px) {
    #features-container .container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

#reviews-container .quote {
    border-radius: 6px;
    border: 1px solid #e3e3e8;
    padding: 20px;
    color: #454a52;
    margin-top: 30px;
    position: relative;
}

#reviews-container .quote .person {
    float: left;
    width: 20%;
}

#reviews-container .quote .person > img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 1px solid white;
    -webkit-box-shadow: 0 1px 7px 1px rgba(186, 186, 197, .75);
       -moz-box-shadow: 0 1px 7px 1px rgba(186, 186, 197, .75);
            box-shadow: 0 1px 7px 1px rgba(186, 186, 197, .75);
}

#reviews-container .quote .content {
    float: left;
    width: 80%;
}

#reviews-container .quote .content > p {
    margin-bottom: 10px;
}

#reviews-container .quote .content > img {
    max-width: 70px;
    max-height: 30px;
    position: absolute;
    right: 25px;
    bottom: 25px;
}

#reviews-container .expert-quote > .logo {
    height: 55px;
    margin: 30px 0 20px 0;
}

@media (min-width: 992px) and (max-width: 1200px) {
    #reviews-container .quote .person {
        width: 25%;
    }

    #reviews-container .quote .content {
        width: 75%;
    }
}

@media (min-width: 768px) and (max-width: 991px), (max-width: 525px) {
    #reviews-container .quote .person {
        float: none;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    #reviews-container .quote .content {
        float: none;
        width: 100%;
    }

    #reviews-container .quote .content > p {
        text-align: center;
        margin-bottom: 25px;
    }
}

@media (max-width: 450px) {
    #reviews-container .expert-quote {
        margin-bottom: 30px;
    }
}

#features-container .section-inner {
    overflow-x: hidden;
}

#features-container .section-inner h2 {
    text-align: inherit;
    margin: 50px 0 18px 0;
    font-weight: 400;
}

#features-container .section-inner p {
    font-size: 18px;
    color: #666666;
}

#features-container .section-inner > .row {
    padding: 40px 0;
}
#features-container .section-inner > .row.heatmaps {
    padding-top: 0;
}
#features-container .section-inner > .row.chats {
    padding-bottom: 0;
}

#features-container .section-inner > .row > .left {
    padding-left: 40px;
}

#features-container .section-inner > .row > .left > p {
    margin: 0 30px 0 0;
}

#features-container .section-inner > .row > .right {
    padding-right: 40px;
}

#features-container .section-inner > .row > .right > p {
    margin: 0 0 0 30px;
    float: right;
}

p.feature-info {
    max-width: 500px;
}

#features-container .section-inner > .row .align-left {
    position: static;
    z-index: 0;
    float: left;
    margin-left: 10px;
}

#features-container .section-inner > .row .align-right {
    position: static;
    z-index: 0;
    float: right;
    margin-right: 10px;
}

#features-container .section-inner > .row .visible-xs > img {
    width: 100%;
}

/* IDEAL FOR */
#ideal-for-container .section-inner {
    padding-top: 30px;
}

#ideal-for-container ul.professions {
    list-style-type: none;
}

#ideal-for-container ul.professions li {
    background: url('/National_Library/oe_/https://www.hotjar.com/static/img/list-icon-good.png') left center no-repeat;
    font-size: 18px;
    color: #353535;
    font-weight: bold;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 50px;
}

#ideal-for-container ul.examples {
    list-style-image: url('/National_Library/oe_/https://www.hotjar.com/static/img/list-icon.png');
}

#ideal-for-container ul.examples li {
    padding-bottom: 6px;
}

@media (max-width: 768px) {
    #features-container .section-inner > .row {
        border-bottom: 1px solid #cccccc;
    }
    #features-container .section-inner > .row.chats {
        border-bottom: 0;
    }
    #features-container .section-inner > .row > .left {
        padding-left: 15px;
    }
    #features-container .section-inner > .row > .right {
        padding-right: 15px;
    }

    #features-container .section-inner h2,
    #features-container .section-inner p.feature-info {
        text-align: center;
    }

    #features-container .section-inner p.feature-info {
        margin: 0 0 10px 0 !important;
        float: none !important;
        max-width: none !important;
    }

    #features-container .section-inner h2 {
        margin-top: 25px;
    }
}

@media (max-width: 360px) {
    #features-container .section-inner h2 {
        font-size: 25px;
    }

    #features-container .section-inner > .row > .left {
        padding-left: 20px;
    }

    #features-container .section-inner > .row > .left > p {
        margin: 0 0 0 0;
    }

    #features-container .section-inner > .row > .right {
        padding-right: 20px;
    }

    #features-container .section-inner > .row > .right > p {
        margin: 0 0 0 0;
    }
}

/*****************************/
/* QUEUE MANAGER PAGE */
/*****************************/
.queue-manager-page .progress-bar-container {
    position: relative;
    margin-left: 25%;
    width: 50%;
    height: 25px;
    border-radius: 10px;
    border: 1px solid #cccccc;
}

.queue-manager-page .progress-bar-progress {
    position: absolute;
    top: 0;
    left: 0;
    background: #d5354b;
    height: 100%;
    border-radius: 10px;
}

.queue-manager-page .btn.center {
    text-align: center;
    margin: 0 auto;
}

/*****************************/
/* BADGE PAGE */
/*****************************/
.badge-page .badge-holder {
    padding: 20px;
    max-width: 700px;
    margin: 0 auto 10px auto;
    background: white;
    border-radius: 4px;
}


/*****************************/
/* CONTACT US PAGE */
/*****************************/
body.contact-us .section {
    padding-top: 50px;
}

body.contact-us p {
    margin-bottom: 25px;
}

#cform {
    max-width: 500px;
    margin: 0 auto;
}

#cform input,
#cform textarea {
    background: white;
    border: 0;
    font-size: 15px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #cccccc;
    color: #666666;
    padding: 22px;
}

#cform textarea {
    border: 0;
    height: 150px;
    resize: vertical;
}

#cform input:focus,
#cform textarea:focus {
    background: #f1f1f1;
    color: black;
}

#cform .disabled {
    background: 999 !important;
}

#cform .floatl {
    padding: 20px 5px;
}

#cform #cform-message {
    display: none;
}

#cform .error-message {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/icon-warning.png) 15px center #d03240 no-repeat;
    color: white;
    padding: 8px 22px 8px 50px;
    margin: 0 0 8px 0;
}

#cform .success-message {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/icon-success.png) 15px center #7dbe37 no-repeat;
    color: white;
    padding: 8px 22px 8px 50px;
    margin: 0 0 8px 0;
}

#cform .btn {
    padding: 10px 22px;
    font-size: 15px;
}

/*****************************/
/* LEGAL DOCUMENT PAGES */
/*****************************/
.legal-doc #content h3 {
    text-align: left;
    margin-bottom: 6px;
    margin-top: 25px;
}

.legal-doc #content p {
    text-align: justify;
    margin-bottom: 12px;
}

.legal-doc #content ul,
.legal-doc #content ol {
    padding-left: 35px;
}

.legal-doc #content  ul > li > p,
.legal-doc #content  ol > li > p {
    font-size: 15px;
    font-weight: normal;
}

.legal-doc #content ul,
.legal-doc #content ol {
    margin-bottom: 15px !important;
}

.legal-doc #content ol ol {
    list-style-type: lower-alpha;
}

.legal-doc #content ul {
    list-style-type: disc;
}

.legal-doc #content ul ul {
    list-style-type: square;
}

.legal-doc #content ul ul ul {
    list-style-type: circle;
}

/*****************************/
/* CAREERS PAGE */
/*****************************/
.careers h2.left {
    margin: 50px 0 15px 0;
}

.careers .header-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 50px 30px;
    border-bottom: 1px solid #d6d6d6;
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/careers.png) center bottom no-repeat #e3e7ea;
    height: 400px;
}

.careers .header-box .row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.85);
}

.careers .header-box h1 {
    color: white;
    margin: 0;
    font-size: 45px;
    font-weight: 300;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .85);
    padding: 10px 25px;
}

@media (max-width: 890px) {
    .careers .header-box h1 {
        font-size: 35px;
    }
}

#section-positions .position {
    margin-bottom: 10px;
}

#section-positions .position .handle {
    font-size: 20px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    font-weight: bold;
    position: relative;
    padding: 20px 12px 20px 65px;
    cursor: pointer;
}

#section-positions .position .handle:hover {
    background: rgba(0,0,0,.06);
}

#section-positions .position .handle:before {
    content: '';
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/icon-down.png) no-repeat top left;
    position: absolute;
    top: 32px;
    left: 30px;
    color: #999999;
    font-size: 20px;
    font-weight: bold;
    width: 9px;
    height: 10px;
}

#section-positions .position.open .handle:before {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/icon-up.png) no-repeat top left;
}

#section-positions .position .content {
    display: none;
    border: 1px solid #e5e5e5;
    border-top: none;
    padding: 30px;
}

#section-positions .position.open .content {
    display: block;
}

#section-positions .position .content ul {
    margin-top: 8px;
    margin-bottom: 30px !important;
}

/*****************************/
/* ERROR PAGES */
/*****************************/
.error-page #content img {
    margin: 20px 0 40px 0;
}

.error-page #content h1 {
    margin-bottom: 15px;
}

.error-page #content a {
    margin: 60px 0 0 0;
}

/*****************************/
/* PLANS PAGE - NEW */
/*****************************/
#plans-overview {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
}
#plans-overview .underline-dashed {
    padding-bottom: 0;
}
#plans-overview > .plans-col {
    width: 24%;
       -moz-box-sizing: padding-box;
    -webkit-box-sizing: padding-box;
            box-sizing: padding-box;
    float: left;
    border-left: 1px solid #e4e4e4;
    padding: 10px 30px 5px 30px;
    font-size: 13px;
    height: 585px;
    position: relative;
}
#plans-overview > .plans-col:last-child {
    width: 27%;
}
#plans-overview .plan-features {
    padding-top: 10px;
}
#plans-overview > .plans-col .plans-footer {
    position: absolute;
    bottom: 0;
}
#plans-overview > .plans-col .plans-footer .btn {
    padding: 12px 20px;
    font-size: 16px;
    margin: 0 0 10px 0;
}
#plans-overview h3 {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
    color: white;
    padding: 7px 18px 6px 12px;
    position: relative;
    -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, .2);
       -moz-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, .2);
            box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, .2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .35);
    margin: 0 0 20px 0;
    margin-left: 15px;
    border-radius: 0 3px 3px 0;
    width: 130px;
}

#plans-overview h3:before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    display: inline-block;
    border-right: 15px solid #dbdbdb;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
}
#plans-overview > .plan-basic h3 {
    background: #8899b3;
}
#plans-overview > .plan-basic h3:before {
    border-right-color: #8899b3;
}

#plans-overview > .plan-pro h3 {
    background: #f03348;
}
#plans-overview > .plan-pro h3:before {
    border-right-color: #f03348;
}

#plans-overview > .plan-business h3 {
    background: #e1b125;
}
#plans-overview > .plan-business h3:before {
    border-right-color: #e1b125;
}

#plans-overview h4 {
    font-size: 18px;
    font-weight: 300;
    text-align: left;
}
#plans-overview > .plan-basic h4 {
    color: #8899b3;
}
#plans-overview > .plan-pro h4 {
    color: #f03348;
}
#plans-overview > .plan-business h4 {
    color: #c39e33;
}

#plans-overview > .plan-basic .btn {
    background: #8899b3;
}
#plans-overview > .plan-basic .btn:hover {
    background: #7d8ca4;
}

#plans-overview .plan-features p:first-child {
    height: 22px;
}
#plans-overview .plan-features p:nth-child(5) {
    height: 25px;
}
#plans-overview .plan-features p {
    height: 55px;
}
#plans-overview > .plan-agency {
    border-left: 0;
}
#plans-overview .plan-agency > div {
    padding: 17px 0 20px 20px;
    border-left: 2px dashed #dbdbdb;
}
#plans-overview .plan-agency .btn {
    margin: 20px 0 10px 0;
}
#plans-overview .plan-agency ul {
    margin: 10px 0;
    padding: 0;
}

#plans-overview .plan-agency ul > li {
    padding: 0 0 0 25px;
    margin: 0 0 5px 0;
    list-style-type: none;
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/plans-good.png) 0 4px no-repeat;
    background-size: 16px;
}
#plans-overview .plan-agency ul > li.agency-signup {
    padding-top: 12px;
    background: none !important;
}

.money-back {
    margin: 20px auto 40px auto;
    width: auto;
    padding: 15px;
    text-align: center;
    display: none;
    font-size: 18px;
}

.money-back-mobile {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/money-back.png) center left no-repeat;
    background-size: 60px;
    width: 400px;
    text-align: left;
    padding-left: 75px;
}

@media (min-width: 891px) {
    .money-back {
        display: block;
    }
    .money-back-mobile {
        display: none;
    }
}

@media (max-width: 890px) {
    .money-back-mobile {
        display: block;
    }
}

@media (max-width: 450px) {
    .money-back-mobile {
        background-size: 40px;
        width: 320px;
        font-size: 14px;
        padding-left: 55px;
    }
}

#faq-info {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 45px;
    clear: both;
}
#faq-info h3 {
    text-align: left;
}
#faq-info p {
    font-size: 14px;
}
ul#faq-list-left,
ul#faq-list-right {
    list-style-type: none;
    padding: 0;
}

ul#faq-list-left {
    width: 50%;
    float: left;
}

ul#faq-list-right {
    width: 50%;
    float: right;
}

#faq-info ul li {
    padding: 20px;
}

@media (max-width: 1050px) {
    #plans-overview > .plans-col {
        width: 25%;
        padding: 10px 15px 5px 15px;
    }
    #plans-overview > .plans-col:last-child {
        width: 24%;
    }
}
@media (max-width: 890px) {
    #plans-overview > .plans-col,
    #plans-overview > .plans-col:last-child {
        display: block;
        float: none;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #e4e4e4;
        height: auto;
        box-shadow: 0 0 3px #cccccc;
        background-color: #fcfcfc;
        margin: 10px 0;
        padding: 10px 15px 15px;
    }

    #plans-overview .plan-features p,
    #plans-overview .plan-features p:nth-child(5) {
        height: auto;
    }

    #plans-overview > .plans-col .plans-footer {
        position: relative;
    }
    #plans-overview .plans-header h4,
    #plans-overview .plan-features,
    #plans-overview .plans-footer {
        padding: 0 20px;
    }
    #plans-overview .plans-header h3 {
        display: block;
        width: 100%;
    }
    #plans-overview h3:before {
        display: none;
    }
    #plans-overview h3 {
        text-shadow: none;
        margin: 0 0 20px 15px;
        width: 130px;
        border-style: solid;
        border-left-width: 0;
        border-right-width: 0;
        border-top-width: 0;
        border-bottom-width: 1px;
        box-shadow: none;
    }

    #plans-overview > .plan-basic h3 {
        background: transparent;
        color: #8899b3;
        border-color: #8899b3;
    }

    #plans-overview > .plan-pro h3 {
        background: transparent;
        color: #f03348;
        border-color: #f03348;
    }

    #plans-overview > .plan-business h3 {
        background: transparent;
        color: #c39e33;
        border-color: #c39e33;
    }

    #plans-overview .plans-footer {
        margin: 20px auto 5px auto;
    }
    #plans-overview h3 {
        margin: 0 0 20px 0;
    }
    #plans-overview .plans-footer p:first-child a,
    .agency-signup .btn {
        display: block;
        width: 100%;
    }
    #plans-overview .plan-agency ul > li.agency-signup {
        padding: 0 0 0 0;
    }
    #plans-overview .plans-footer p {
        display: inline;
    }
    #plans-overview .plans-footer p:nth-child(1n+2) {
        font-size: 11px;
    }

    #plans-overview .plan-agency > div {
        padding: 0 20px;
        border-left: none;
    }

    ul#faq-list-left,
    ul#faq-list-right {
        float: none;
        width: 100%;
    }
    #faq-info h3,
    #faq-info p {
        text-align: center;
    }
}

/*****************************/
/* HOTJAR PRO */
/*****************************/
.pro-page .section {
    padding: 50px 15px;
}

.pro-page h1.page-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 10px;
}

.pro-page .description {
    max-width: 750px;
    margin: 20px auto 0 auto;
    text-align: center;
    font-size: 17px;
}

#pro-table-holder {
    margin: 10px auto 10px auto;
    min-width: 650px;
    max-width: 650px;
    text-align: center;
}

#pro-table thead .old-way {
    color: #666666;
    font-size: 16px;
    vertical-align: top;
    text-align: center;
    font-weight: normal;
}

#pro-table thead .new-way {
    color: black;
    font-size: 16px;
    vertical-align: top;
    text-align: center;
    font-weight: normal;
    background: #f7eaec;
    background:    -moz-linear-gradient(top,  rgba(253,240,242,0) 0%, rgba(253,240,242,1) 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(253,240,242,0)), color-stop(100%,rgba(253,240,242,1))) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(253,240,242,0) 0%,rgba(253,240,242,1) 100%) !important; /* Chrome10+,Safari5.1+ */
    background:      -o-linear-gradient(top,  rgba(253,240,242,0) 0%,rgba(253,240,242,1) 100%) !important; /* Opera 11.10+ */
    background:     -ms-linear-gradient(top,  rgba(253,240,242,0) 0%,rgba(253,240,242,1) 100%) !important; /* IE10+ */
    background:         linear-gradient(to bottom,  rgba(253,240,242,0) 0%,rgba(253,240,242,1) 100%) !important; /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f7eaec', endColorstr='#f7eaec',GradientType=0 ) !important; /* IE6-9 */
}

#pro-table thead .new-way img {
    margin: 20px 0;
}

#pro-table tbody tr td {
    border-bottom: 1px solid #dfdfdf;
}

#pro-table tbody .feature {
    width: 150px;
    color: #f4364c;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
    height: 70px;
    padding: 0 15px;
}

#pro-table tbody .old-way {
    width: 240px;
    color: #666666;
    font-weight: normal;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}

#pro-table tbody .new-way {
    width: 240px;
    text-align: center;
    background: #fdf0f2;
}

#pro-table tbody tr.last td {
    border-bottom: 1px solid #666666;
}

#pro-table tbody tr.prices td {
    border-bottom: 0;
}

#pro-table tbody tr.prices .old-way {
    vertical-align: top;
    padding: 15px 0;
}

#pro-table tbody tr.prices .old-way strong {
    font-size: 20px;
}

#pro-table tbody tr.prices .new-way {
    vertical-align: top;
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
    background: #f7eaec;
    background:    -moz-linear-gradient(top,  rgba(253,240,242,1) 0%, rgba(253,240,242,0) 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(253,240,242,1)), color-stop(100%,rgba(253,240,242,0))) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(253,240,242,1) 0%,rgba(253,240,242,0) 100%) !important; /* Chrome10+,Safari5.1+ */
    background:      -o-linear-gradient(top,  rgba(253,240,242,1) 0%,rgba(253,240,242,0) 100%) !important; /* Opera 11.10+ */
    background:     -ms-linear-gradient(top,  rgba(253,240,242,1) 0%,rgba(253,240,242,0) 100%) !important; /* IE10+ */
    background:         linear-gradient(to bottom,  rgba(253,240,242,1) 0%,rgba(253,240,242,0) 100%) !important; /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdf0f2', endColorstr='#00fdf0f2',GradientType=0 ) !important; /* IE6-9 */
}

#pro-table tbody tr.prices .new-way strong {
    font-size: 20px;
}

#pro-table tbody tr.prices .new-way .btn {
    padding: 14px 20px;
    font-size: 20px;
    margin: 15px 0;
}

.pro-page .extra-info {
    padding: 0 20px;
    font-size: 14px;
    text-align: left;
    color: #666666;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7em;
}

.pro-page .extra-info h2 {
    margin: 40px auto 10px auto;
    font-weight: 600;
    font-size: 28px;
    text-align: left;
}

/*****************************/
/* FOUNDING MEMBERS */
/*****************************/
.members-page #members {
    max-width: 880px;
    padding: 50px;
    border: 1px solid #ceac41;
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
       -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
            box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
    background: #ffffff; /* Old browsers */
    background:    -moz-linear-gradient(top,  #ffffff 35%, #f7f2e1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(35%,#ffffff), color-stop(100%,#f7f2e1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 35%,#f7f2e1 100%); /* Chrome10+,Safari5.1+ */
    background:      -o-linear-gradient(top,  #ffffff 35%,#f7f2e1 100%); /* Opera 11.10+ */
    background:     -ms-linear-gradient(top,  #ffffff 35%,#f7f2e1 100%); /* IE10+ */
    background:         linear-gradient(to bottom,  #ffffff 35%,#f7f2e1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f2e1',GradientType=0 ); /* IE6-9 */
}

.members-page #members .badge-divider {
    height: 1px;
    background: rgba(0,0,0,.15);
    width: 60%;
    margin: 70px auto;
    overflow: visible;
    position: relative;
}

.members-page #members .badge-divider > div {
    height: 42px;
    width: 90px;
    position: absolute;
    margin-top: -21px;
    left: 50%;
    margin-left: -45px;
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/logo-founding-member.png) center center white no-repeat;
}

.members-page #members table,
.members-page #members ul {
    width: 100%;
    margin: 50px 15px 0 15px;
    font-size: 13px;
    font-weight: 600;
    color: #424242;
    padding: 0;
}

.members-page #members ul {
    margin: 50px 0 0 0 ;
    list-style-type: none;
}

.members-page #members ul li {
    font-size: 15px;
    margin-bottom: 12px;
}

.members-page #members table td {
    width: 33%;
    padding-bottom: 12px;
    text-align: center;
}

.members-page .section {
    padding: 50px 15px;
}

.members-page h1.page-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #b69830;
}

.members-page .description {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
}


/*****************************/
/* OPT-OUT PAGE */
/*****************************/
#optout-content h3,
#optout-content ol {
    max-width: 550px;
}
#optout-content ol {
    background-color: #fcfcfc;
    -webkit-box-shadow: 0 0 3px #cccccc;
       -moz-box-shadow: 0 0 3px #cccccc;
            box-shadow: 0 0 3px #cccccc;
    padding: 20px;
    list-style-type: none;
    counter-reset: li;
    display: none;
}
#optout-content ol li:before {
    width: 20px;
    height: 20px;
    background: #f4364c;
    text-align: center;
    content: counter(li); /* Use the counter as content */
    counter-increment: li; /* Increment the counter by 1 */
    display: inline-block;
    border-radius: 50%;
    font-weight: bold;
    color: white;
    margin: 0 10px;
    font-size: 14px;
}
#optout-content ol li {
    margin: 5px;
}
#optout-content h1,
#optout-content h2 {
    text-align: left;
}
#optout-content h3 {
    margin: 30px 0 10px 0;
    border-bottom: 1px solid #8899b3;
    color: #8899b3;
    text-align: left;
    cursor: pointer;
}
#optout-content h3:before {
    content: '+';
    text-align: left;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    float: right;
}
#optout-content h3.open:before {
    content: '-';
}

/*****************************/
/* GUIDES PAGES */
/*****************************/
.guide-page .icon-click,
.guide-page .icon-move,
.guide-page .icon-scroll,
.guide-page .icon-tap {
    display: inline-block;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    width: 45px;
    height: 45px;
}

.guide-page .icon-click {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/guides/heatmaps/icon_click.png);
}
.guide-page .icon-move {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/guides/heatmaps/icon_move.png);
}
.guide-page .icon-scroll {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/guides/heatmaps/icon_scroll.png);
}
.guide-page .icon-tap {
    background-image: url(/National_Library/oe_/https://www.hotjar.com/static/img/guides/heatmaps/icon_tap.png);
}

.guide-page #article {
    background: url(/National_Library/oe_/https://www.hotjar.com/static/img/guides/back.png) center center repeat white;
    font-size: 16px;
}

.guide-page #article img {
    max-width: 100%;
}

.guide-page #article .container {
    background: white;
    max-width: 880px;
    padding: 80px;
    border: 1px solid #cccccc;
    border-color: rgba(0,0,0,.2);
    -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
       -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
            box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
}

.guide-page #article .container * {
    text-align: left;
}

.guide-page #article hr {
    border-top: 2px solid transparent;
    margin: 40px 0;
}

.guide-page #article hr.small {
    border-top: 1px solid transparent;
    margin: 30px 0;
}

.guide-page #article .contents a {
    font-family: inherit;
    border-bottom: 1px dashed #efefef;
    border-color: rgba(0,0,0,.2);
    -webkit-transition: all .1s ease-in-out;
       -moz-transition: all .1s ease-in-out;
         -o-transition: all .1s ease-in-out;
        -ms-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out;
}

.guide-page #article .contents a:hover {
    text-decoration: none;
    border-bottom: 1px solid #428bca;
    color: #428bca;
}

.guide-page #article .label {
    font-family: 'Titillium Web', sans-serif, Tahoma;
    font-weight: 700;
    font-size: 16px;
    color: white;
    display: inline-block;
    background: #428bca;
    padding: 10px 15px;
    border-radius: 0 0 5px 5px;
    position: absolute;
    top: -1px;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
       -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
            box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
}

.guide-page #article h1 {
    font-family: 'Titillium Web', sans-serif, Tahoma;
    font-weight: 700;
    font-size: 70px;
    margin: 0 0 10px 0;
    color: #444444;
}

.guide-page #article h2 {
    font-family: 'Titillium Web', sans-serif, Tahoma;
    font-weight: 700;
    font-size: 32px;
    color: #444444;
    margin-bottom: 5px;
}

.guide-page #article h2 > * {
    font-family: 'Titillium Web', sans-serif, Tahoma;
}

.guide-page #article h5 {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
}

.guide-page #article .contents {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 20px;
    list-style-type: none;
    font-size: 18px;
    font-weight: 600;
}

.guide-page #article .contents li {
    padding-bottom: 16px;
}

.guide-page #article .contents li:last-child {
    padding-bottom: 0;
}

.guide-page #article .contents li a {
    cursor: pointer;
}

.guide-page #article .intro {
    font-family: 'Titillium Web', sans-serif, Tahoma;
    font-size: 28px;
    font-weight: 600;
    color: #666666;
    margin: 20px 0 0 0;
}

.guide-page #article .intro_2 {
    position: relative;
}

.guide-page #article .intro_2 p {
    margin-bottom: 30px;
}

.guide-page #article .intro_2 h2 {
    margin-bottom: 50px;
}

.guide-page #article .intro_2 .box > div {
    padding-left: 0;
    padding-right: 0;
}

.guide-page #article .intro_2 .box > div.col-sm-7 {
    padding: 0 20px;
}

.guide-page #article .intro_2 .box > div.col-sm-4 {
    text-align: center;
}

.guide-page #article .chapter {
    position: relative;
    line-height: 26px;
}

.guide-page #article .chapter a.anchor {
    position: absolute;
    left: 0;
    top: -20px;
}

.guide-page #article .bookmark {
    font-family: 'Titillium Web', sans-serif, Tahoma;
    font-weight: 700;
    font-size: 20px;
    color: white;
    height: 66px;
    border-top: 10px solid #428bca;
    border-left: 20px solid #428bca;
    border-right: 20px solid #428bca;
    border-bottom: 20px solid transparent;
    border-radius: 6px 6px 3px 3px;
    position: absolute;
    top: 0;
    left: -60px;
}

.guide-page #article .bookmark > span {
    position: absolute;
    top: -5px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    text-align: center;
}

.guide-page #article .chapter .legend {
    margin: 0 0 15px 0;
}

.guide-page #article .chapter .legend > div {
    margin-right: 5px;
}

.guide-page #article .chapter .orange {
    color: #b45f06;
}

.guide-page #article .chapter .green {
    color: #6aa84f;
}

.guide-page #article .chapter .image {
    text-align: center;
    margin: 40px 0;
}

.guide-page #article .promotion {
    margin: 60px -80px -80px -80px;
    background: #428bca;
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 40px;
}

.guide-page #article .promotion > h2 {
    text-align: center;
    font-size: 20px;
    max-width: none;
    color: white;
}

.guide-page #article .promotion > a {
    background: #27496e;
    margin: 20px 0 0 0;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .25);
       -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .25);
            box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .25);
}

.guide-page #article .promotion > a:hover {
    background: #15273b;
}

.guide-page #article .promotion > a:active {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    background: black;
}

/* HOTJAR WAY GUIDE */
.guide-hotjar #article h1 {
    font-size: 65px;
}

.guide-hotjar #article img {
    max-width: 100%;
    padding: 5px;
    border-radius: 6px;
    background: #efefef;
}

.guide-hotjar #article img.no-border {
    background: #ffffff;
}

.guide-hotjar hr.divider {
    border-top-color: #efefef !important;
    margin-left: -30px !important;
    margin-right: -30px !important;
}


.guide-hotjar #article .container .caption {
    display: block;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
    font-size: 14px;
}

.guide-hotjar #article .chapter h2 {
    margin-bottom: 20px;
}

.guide-hotjar #article .chapter .sub-chapter .bookmark {
    height: 45px;
    border-top: 8px solid #666666;
    border-left: 10px solid #666666;
    border-right: 10px solid #666666;
    border-bottom: 11px solid transparent;
    border-radius: 3px 3px 3px 3px;
    left: -30px;
    font-size: 18px;
}

.guide-hotjar #article .chapter .sub-chapter h2 {
    font-size: 24px;
}

.guide-hotjar #article .chapter ul {
    margin: 0 0 25px 0;
    list-style-type: square;
}

.guide-hotjar #article .chapter ul > li {
    margin-top: 15px;
}

.guide-hotjar #article .chapter .examples > ul {
    margin: 15px 0 35px 0;
    font-size: 15px;
    color: #666666;
}

.guide-hotjar ol.contents {
    font-size: 16px;
    margin-top: 25px !important;
}

.guide-hotjar ol.contents-black li > a {
    color: #353535;
}

.guide-hotjar #article .chapter ul > li > ol {
    list-style-type: lower-roman;
    margin: 15px 0 35px 15px;
    font-size: 15px;
    color: #666666;
}

.guide-hotjar #article .chapter ul > li > ol > li {
    margin: 5px 0 0 0;
}

@media (max-width: 800px) {
    .guide-page #article {
        padding: 15px;
    }

    .guide-page #article .container {
        padding: 80px 20px 20px 20px;
        -webkit-box-shadow: none;
           -moz-box-shadow: none;
                box-shadow: none;
    }

    .guide-page #article .promotion {
        margin: 60px -20px -20px -20px;
    }

    .guide-page #article h1 {
        font-size: 45px;
    }

    .guide-page #article .chapter .bookmark {
        display: none;
    }

    .guide-page #article .intro_2 .box > div.col-sm-7 {
        padding: 10px 0 20px 0;
    }
    .guide-page #article .intro_2 .box > div.col-sm-4 {
        text-align: left;
    }
}

/* GENERIC CLASSES */
[data-show-if-currency] {
    display: none;
}

.clear {
    clear: both;
}
.inline {
    display: inline-block;
}

.light {
    font-weight: 300 !important;
}
.normal {
    font-weight: 400 !important;
}
.bold,
strong {
    font-weight: 700 !important;
}
.semibold,
strong.semibold {
    font-weight: 600 !important;;
}
.underline {
    text-decoration: underline;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}
.italic {
    font-style: italic;
}
.invisible {
    visibility: hidden;
}

.underline-dashed {
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px dashed #cccccc;
}
.underline-dashed:hover {
    border-bottom-color: #bbbbbb;
}

.pink,
a.pink:hover {
    color: #f4364c;
}
.red {
    color: red;
}
.black {
    color: black;
}
.grey6 {
    color: #666666;
}
.grey7 {
    color: #777777;
}
.grey9 {
    color: #999999;
}
.inherit-color,
.inherit-color:hover,
.inherit-color:active,
.inherit-color:focus {
    color: inherit;
}

.font20 {
    font-size: 20px;
}
.font18 {
    font-size: 18px;
}
.font17 {
    font-size: 17px;
}
.font16 {
    font-size: 16px;
}
.font15 {
    font-size: 15px;
}
.font14 {
    font-size: 14px;
}
.font12 {
    font-size: 12px;
}

.floatl {
    float: left;
}
.floatr {
    float: right;
}

.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.justify {
    text-align: justify;
}
.middle {
    display: table-cell;
    vertical-align: middle;
}

.pointer {
    cursor: pointer;
}
.line-through {
    text-decoration: line-through;
}

.noscroll {
    overflow: hidden;
}
.relative {
    position: relative;
}

.clearfix:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.textshadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .25);
}
.boxshadow {
    -webkit-box-shadow: 0 2px 14px 3px rgba(0, 0, 0, .1), 0 2px 6px rgba(0,0,0,.15);
       -moz-box-shadow: 0 2px 14px 3px rgba(0, 0, 0, .1), 0 2px 6px rgba(0,0,0,.15);
            box-shadow: 0 2px 14px 3px rgba(0, 0, 0, .1), 0 2px 6px rgba(0,0,0,.15);
}

.transition25 {
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}

.borderbox {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.roundedcorners {
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}

/* Margin all sides */
.man {
    margin: 0 !important;
}
.mat {
    margin: 2px !important;
}
.mas {
    margin: 5px !important;
}
.mam {
    margin: 10px !important;
}
.mab {
    margin: 20px !important;
}
.mah {
    margin: 30px !important;
}

/* Margin top side */
.mtn {
    margin-top: 0 !important;
}
.mtt {
    margin-top: 2px !important;
}
.mts {
    margin-top: 5px !important;
}
.mtm {
    margin-top: 10px !important;
}
.mtb {
    margin-top: 20px !important;
}
.mth {
    margin-top: 30px !important;
}

/* Margin right side */
.mrn {
    margin-right: 0 !important;
}
.mrt {
    margin-right: 2px !important;
}
.mrs {
    margin-right: 5px !important;
}
.mrm {
    margin-right: 10px !important;
}
.mrb {
    margin-right: 20px !important;
}
.mrh {
    margin-right: 30px !important;
}

/* Margin bottom side */
.mbn {
    margin-bottom: 0 !important;
}
.mbt {
    margin-bottom: 2px !important;
}
.mbs {
    margin-bottom: 5px !important;
}
.mbm {
    margin-bottom: 10px !important;
}
.mbb {
    margin-bottom: 20px !important;
}
.mbh {
    margin-bottom: 30px !important;
}

/* Margin left side */
.mln {
    margin-left: 0 !important;
}
.mlt {
    margin-left: 2px !important;
}
.mls {
    margin-left: 5px !important;
}
.mlm {
    margin-left: 10px !important;
}
.mlb {
    margin-left: 20px !important;
}
.mlh {
    margin-left: 30px !important;
}

/* Padding all sides */
.pan {
    padding: 0 !important;
}
.pat {
    padding: 2px !important;
}
.pas {
    padding: 5px !important;
}
.pam {
    padding: 10px !important;
}
.pab {
    padding: 20px !important;
}
.pah {
    padding: 30px !important;
}

/* Padding top side */
.ptn {
    padding-top: 0 !important;
}
.ptt {
    padding-top: 2px !important;
}
.pts {
    padding-top: 5px !important;
}
.ptm {
    padding-top: 10px !important;
}
.ptb {
    padding-top: 20px !important;
}
.pth {
    padding-top: 30px !important;
}

/* Padding right side */
.prn {
    padding-right: 0 !important;
}
.prt {
    padding-right: 2px !important;
}
.prs {
    padding-right: 5px !important;
}
.prm {
    padding-right: 10px !important;
}
.prb {
    padding-right: 20px !important;
}
.prh {
    padding-right: 30px !important;
}

/* Padding bottom side */
.pbn {
    padding-bottom: 0 !important;
}
.pbt {
    padding-bottom: 2px !important;
}
.pbs {
    padding-bottom: 5px !important;
}
.pbm {
    padding-bottom: 10px !important;
}
.pbb {
    padding-bottom: 20px !important;
}
.pbh {
    padding-bottom: 30px !important;
}

/* Padding left side */
.pln {
    padding-left: 0 !important;
}
.plt {
    padding-left: 2px !important;
}
.pls {
    padding-left: 5px !important;
}
.plm {
    padding-left: 10px !important;
}
.plb {
    padding-left: 20px !important;
}
.plh {
    padding-left: 30px !important;
}

.tooltip > .tooltip-inner {
    text-transform: none;
    color: #f3f3f3;
    border: 0;
    padding: 8px 10px;
    font-size: 12px;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: normal;
    background: #222a33;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.25);
       -moz-box-shadow: 0 3px 8px rgba(0,0,0,.25);
            box-shadow: 0 3px 8px rgba(0,0,0,.25);
}

.tooltip.in {
    opacity: 1;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #222a33;
}
.tooltip.left .tooltip-arrow {
    border-left-color: #222a33;
}
.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #222a33;
}
.tooltip.right .tooltip-arrow {
    border-right-color: #222a33;
}
