﻿body,html{
    padding:0;
    margin:0;
    font-family:Roboto;
    color:#212121;
    font-size:16px;
    background:#f9f9f9;
}
body{
    --scrollbar-width:calc(100vw - 100%);
}
*{
    box-sizing:border-box;
    -moz-osx-font-smoothing:grayscale;
    outline:none;
    -webkit-font-smoothing:antialiased
}
h1,h2,h3,h4,h5,h6{
    margin:0
}
h1,h2,.large_h1,.large_h2{
    font-size:62px;
    line-height:66px;
    margin:21px 0;
    font-weight:700
}
.left_area h2:first-child {
    margin-top: 0;
}
p.large_h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
}
h3,.large_h3{
    font-size:24px;
    line-height:27px;
    margin:6px 0;
    font-weight:400
}
h4,.large_h4{
    font-size:20px;
    line-height:22px;
    margin:4px 0;
    font-weight:400
}
h5,.large_h5{
    font-size:16px;
    line-height:18px;
    margin:3px 0;
    font-weight:600;
    margin-bottom:20px
}
.large_h5{
    font-weight:500;
}
h6{
    margin:0;
    font-size:1.2em;
    padding-bottom:4px;
    color:#212121;
    text-transform:uppercase
}
p,li,a,.link{
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
}
a,.link{
    -webkit-text-decoration:none;
    text-decoration:none;
    cursor:pointer;
    color: #476aca;
    font-weight: 400;
}
.blacklink{
    color:#212121;
}
a:hover,.link:hover,.force_link{
    color: #374491;
}
.blacklink:hover{
    color: #515151;
}
html img{
    margin-left:0;
    margin-right:0;
    vertical-align:middle;
    -webkit-touch-callout:none;
}
form{
    margin-block-end:0;
}
input[type=submit]{
    -webkit-appearance:none;
}
input[type="search"]::-webkit-search-decoration{
    -webkit-appearance:none;
}
.header {
    color: white;
    background-size: cover;
}
.favButtons{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center
}
.no_bk{
    background:none;
    padding:0;
    margin-top:-1px;
}
#navSideBar{
    width:320px;
    left:-320px;
    background-color:#fafafa;
    position:fixed;
    -webkit-transition:left .2s;
    -moz-transition:left .2s;
    -ms-transition:left .2s;
    -o-transition:left .2s
}
.navSideBarLink{
    width:90%;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    font-size:19px;
    color:#212121;
    margin:5px 5px 5px 20px;
    cursor:hand;
    cursor:pointer
}
.navSideBarLink,.navSideBarLinkTitle{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.navSideBarLink a,.navSideBarLinkTitle,.displaySideNavMenu a,.navSideBarSubMenu a{
    color:#212121;
}
.navSideBarLink img{
    width:16px;
    height:16px;
}
.navSideBarSubMenu a,.navSideBarLinkTitle span{
    font-size:19px;
}
.navSideBarLinkTitle span{
    display:inline-block;
    padding-left:10px;
}
.navSideBarLinkTitle img{
    opacity:0.7;
}
.navSideBarSubMenu{
    padding-left:28px;
}
.navSideBarSubMenu a{
    margin-top:10px;
    display:block;
}
.navSideBarLink:hover,.navSideBarSubMenu a:hover{
    -webkit-text-decoration:underline;
    text-decoration:underline
}
.navSideBarContent{
    position:relative;
    height:100%;
}
.sideBarMenu{
    position:absolute;
    top:0;
    z-index:9000;
    height:100%;
    width:320px;
    background-color:#fafafa;
    overflow:hidden;
    overflow-y:auto;
}
.navSideBarContent .sideBarMenu{
    padding:20px;
    overflow:auto;
    left:320px;
    -webkit-transition:left .2s;
    -moz-transition:left .2s;
    -ms-transition:left .2s;
    -o-transition:left .2s
}
.sideBarMenu h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:0
}
.displaySideNavMenu{
    left:0;
    width:100%;
    height:100vh;
    overflow:auto
}
button{
    border:0;
    background:none;
    cursor:pointer;
    cursor:hand
}
.subMenu{
    background-color:#fff;
    position:fixed;
    width:100vw;
    top:60px;
    left:0;
    right:0;
    box-shadow:5px 5px 5px rgba(68,68,68,.3);
    visibility:hidden;
    opacity:0;
    -webkit-transition:visibility .1s,opacity .1s linear;
    transition:visibility .1s,opacity .1s, linear;
    -webkit-transition-delay:.06s;
    -ms-transition-delay:.06s;
    transition-delay:.06s;
    z-index:100;
}
.subMenuContent{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    padding:40px;
    max-width:1100px;
    margin:0 auto;
}
.subMenuContent>p{
    margin:3px 0 20px;
    font-weight:600;
    font-size:16px;
    line-height:18px;
}
.subMenuContent a{
    margin-bottom:15px;
    color:#fff;
    cursor:hand;
    cursor:pointer;
    font-size:14px;
    -webkit-text-decoration:none;
    text-decoration:none
}
.subMenuContentColumns{
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row
}
.subMenuContentColumns,.subMenuContentColumns div{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex
}
.subMenuContentColumns div{
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    margin-right:20px;
    width:26%;
}
.subMenuContent a:hover{
    color:#212121;
}
.HoverSubMenu_visible{
    visibility:visible;
    opacity:1;
    -webkit-transition-delay:0s;
    -ms-transition-delay:0s;
    transition-delay:0s;
}
#navBar{
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    top:0;
    left:0;
    height:60px;
    width:100%;
    padding:19px 20px 21px;
    position:fixed;
    z-index:100;
}
#navBar,#menuSearch,.menuShadow{
    background-color:#fff;
    box-shadow:0 0 50px rgba(128,128,128,0.15)
}
.navItemsLeft{
    position:absolute;
    top:20px;
    left:10px;
}
.burgerMenu{
    width:21px;
    height:21px;
    cursor:pointer;
}
#navItemsContainer{
    position:relative;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
#navItems{
    width:333px;
    position:fixed;
    left:calc(50vw - 172px);
    letter-spacing:0px;
    white-space:nowrap;
    font-size:0;
}
#navItems a,#navItems > span{
    color:#212121;
}
#navItems > span{
    cursor:pointer;
}
.navItem{
    font-size:17px;
    padding-left:20px;
    padding-right:20px;
}
.navItem{
    margin-top:-20px;
}
.navItem,.navItem span{
    line-height:57px;
    display:inline-block;
}
.navItem span{
    border-top:3px solid transparent;
}
.navItem:hover span{
    border-top-color:#212121;
}
.subMenuContentColumns a span{
    line-height:30px;
    display:inline-block;
}
.subMenuContentColumns a span{
    border-bottom:3px solid transparent;
}
.subMenuContentColumns a:hover span{
    border-bottom-color:#212121;
}
.resourcesSubMenu a{
    margin-bottom:12px;
}
.subMenuCondensed a{
    margin-bottom:4px;
}
.subMenuCondensed a span{
    line-height:20px;
}
#subNav{
    position:fixed;
    width:100%;
    top:60px;
    height:200px;
    padding:20px 20px 20px 80px;
    background-color:#000;
}
#sidebar{
    width:370px
}
@media (max-width:400px){
    #sidebar{
        width:100vw;
        max-width:100vw;
    }
}
.sideBarNavHead{
    position:relative
}
.navHead,.sideBarNavHead{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row
}
.navHead{
    -webkit-box-pack:left;
    -webkit-justify-content:left;
    -ms-flex-pack:left;
    justify-content:left;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    height:50px;
    width:50px;
    padding:13px;
    cursor:pointer;
    cursor:hand;
    -webkit-transition:all .2s ease-out;
    -moz-transition:all .2s ease-out;
    -ms-transition:all .2s ease-out;
    -o-transition:all .2s ease-out
}
.navHeadFavBlur,.navHeadFavFocus{
    background-color:#eaeaea
}
.navHeadClose{
    position:absolute;
    right:0;
    background-color:#fff
}
.navHeadClose img{
    width:24px;
    height:24px;
}
.navHead span{
    margin-left:5px
}
.mobileNavBackContainer{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.mobileNavBack{
    font-weight:700;
    font-size:18px;
    margin-left:10px;
    cursor:hand;
    cursor:pointer
}
.mobileNavBack:hover{
    -webkit-text-decoration:underline;
    text-decoration:underline
}
.mobileSubLinkList{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    margin-left:25px
}
.mobileSubLinkList a{
    line-height:20px;
    -webkit-text-decoration:none;
    text-decoration:none;
    color:#000;
    font-size:18px
}
.sideBarNavContentFav{
    background-color:#eaeaea
}
.sideBarTextHeader{
    width:100%;
    text-align:center;
    font-size:16px;
    color:#000
}
.sideBarDomList{
    margin-top:30px;
    height:calc(100vh - 120px);
    overflow:auto;
}
.grey-sidebar{
    background-color:#eaeaea
}
.light-sidebar{
    background-color:#fafafa
}
.sideBarDomList p{
    margin:0 15px 25px;
    font-size:12px
}
.sideBarDomList span{
    font-size:14px;
    line-height:22px;
    margin:15px 15px 15px 5px
}
.sideBarDomList span a{
    color:#000;
}
.sideBarDomListDom{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    width:100%;
    height:55px;
    background-color:#fff;
    margin-top:1px;
    padding-left:10px;
    padding-right:10px;
    font-size:14px
}
.sideBarDomListItem{
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}
.sideBarDomListItem:hover span.mouseOut,.sideBarDomListItem span.mouseOver{
    display:none;
}
.sideBarDomListItem:hover span.mouseOver{
    display:block;
}
.sideBarButtonBlue{
    background-color:#006cea;
    color:#fff;
    border-radius:5px;
    font-size:14px;
    text-align:center;
    padding:15px 25px;
    width:140px;
    margin:0 auto;
    font-weight:500;
    cursor:pointer;
    display:block;
}
.sideBarButtonBlue:hover{
    background-color:#0b7ad1;
    color:#FFF;
}
.sideBarDomListItem .sideBarButtonBlue{
    width:auto;
    padding:5px 10px;
    margin:-2px 0;
}
.burgerButton{
    position:absolute;
    left:10px;
    cursor:pointer;
    cursor:hand
}
.delete-button{
    height:24px;
    width:24px;
    border-radius:12px;
    border:1px solid #4a90e2;
    color:#4a90e2;
    opacity:1;
    padding:0 6px;
    cursor:hand;
    cursor:pointer
}
.delete-button:hover{
    opacity:1
}
.hidden{
    display:none
}
.menuSearchOver{
    position:absolute;
    top:60px;
    left:0;
    right:0;
    height:80px;
    overflow:hidden;
}
#menuSearch{
    position:absolute;
    width:640px;
    border-radius:0 0 16px 16px;
    top:0;
    left:calc(50vw - 320px);
}
#menuSearch{
    height:50px;
}
.menuUnderspacer{
    width:100%;
    height:55px;
}
.menuUnderspacer.homepage{
    height:40px;
}
.inner-header .menuUnderspacer{
    height:65px;
}
#pageContainer{
    position:relative;
}
.footerSocialIcons{
    width:185px;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row
}
.socialIcon{
    position:relative;
    height:34px;
    width:34px;
    overflow:hidden;
    border-radius:16px;
    cursor:hand;
    cursor:pointer;
    margin-left:3px;
    border:2px solid transparent;
}
.socialIcon:hover{
    border-color:#fff
}
.twitterIcon{
    position:absolute;
    top:-33px;
    left:-97px
}
.facebookIcon{
    position:absolute;
    top:-1px;
    left:-1px;
}
.instagramIcon{
    position:absolute;
    top:-65px;
    left:-65px;
}
.linkdinIcon{
    position:absolute;
    left:-65px;
    top:-1px;
}
.youtubeIcon{
    position:absolute;
    top:-65px;
    left:-33px
}
.hiddenLabel{
    display:none;
    height:0;
    width:0
}
#footerContent h6{
    font-size:18px;
    font-weight:400
}
#footerEmailInput,#mobileFooterEmailInput{
    width:calc(100% - 97px);
    font-size:18px;
    line-height:24px;
    font-weight:200;
    padding:8px 5px 8px 15px;
    border-radius:30px 0 0 30px;
    border:0;
}
.footerEmailSubmit{
    width:96px;
    text-align:center;
    vertical-align:top;
    background:#000;
    color:#FFF;
    font-size:18px;
    line-height:23px;
    border:0 none;
    padding:9px 20px 8px 15px;
    font-weight:bold;
    border-radius:0 30px 30px 0 !important;
    cursor:pointer;
}
.footerEmailSubmit:hover{
    background:#f95643;
}
.footCol{
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column
}
.footCol span{
    color:#d3d3d3;
}
.footCol .bigger{
    color:#ebebeb;
    display:inline-block;
    font-size:18px;
    line-height:1em;
    font-weight:400;
    padding-bottom:4px;
}
.largerText{
    font-size:20px;
    margin-bottom:5px
}
#footerContainer{
    background:#4d5b71;
    padding:20px
}
#footerColumns,#footerNext{
    margin:0 auto;
    max-width:1250px;
    padding-top:20px;
}
#footerNext{
    color:#d3d3d3;
    height:30px;
    margin-top:20px;
    padding-top:0;
    border-top:1px solid #FFF;
    font-size:11px;
    font-weight:500;
    line-height:30px;
}
@media (min-width:850px){
    #footerColumns{
        -webkit-box-pack:justify;
        -webkit-justify-content:space-between;
        -ms-flex-pack:justify;
        justify-content:space-between;
        -webkit-flex-direction:row;
        -ms-flex-direction:row;
        flex-direction:row
    }
    #footerColumns,.footCol{
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display:flex;
    }
    .footCol:not(.right){
        padding-right:20px;
    }
    .footCol.right{
        text-align:right;
    }
    .footCol span{
        line-height:1.9em;
        font-size:14px;
        font-weight:500
    }
}
@media (max-width:849px){
    .footCol{
        text-align:center;
        line-height:30px;
    }
    .footCol .bigger{
        width:calc(100% - 40px);
        font-size:16px;
        font-weight:500;
    }
    .footCol span{
        margin-left:10px;
        margin-right:10px;
        margin-bottom:5px;
        font-weight:500;
    }
    #footerColumns .links a{
        margin:4px;
    }
    .footerSocialIcons{
        margin:0 auto;
    }
}
.pageFold{
    padding:20px;
}
.pageFold_nomargin{
    margin-left:-20px;
    margin-right:-20px;
    width:100vw !important;
    max-width:100vw !important;
}
.pageFold_nomargin_bottom{
    margin-bottom:-20px;
}
.pageFold h1,.pageFold h2{
    text-align:center;
    max-width:880px;
    margin:0 auto
}
.pageFold .large_h1{
    margin-left:auto;
    margin-right:auto;
}
.defa_width{
    width:100%;
    max-width:1235px;
    margin:0 auto;
    padding:0 100px;
}
.h_5{
    height:5px;
    width:100%;
}
.h_10{
    height:10px;
    width:100%;
}
.h_15{
    height:15px;
    width:100%;
}
.h_20{
    height:20px;
    width:100%;
}
.h_30{
    height:30px;
    width:100%;
}
.h_40{
    height:40px;
    width:100%;
}
.h_50{
    height:50px;
    width:100%;
}
.h_60{
    height:60px;
    width:100%;
}
.h_70{
    height:70px;
    width:100%;
}
.h_80{
    height:80px;
    width:100%;
}
.h_90{
    height:90px;
    width:100%;
}
.h_110{
    height:110px;
    width:100%;
}
.h_heading{
    height:90px;
    width:100%;
}
.h_heading_after{
    height:40px;
    width:100%;
}
.h_heading_nohero{
    height:65px;
}
.pad_20_0{
    padding:20px 0;
}
.clear{
    clear:both;
}
.dnone,.d_none{
    display:none !important;
}
.center{
    text-align:center;
}
.font_13{
    font-size:13px;
}
.font_14{
    font-size:14px;
}
.font_15{
    font-size:15px;
}
.font_16{
    font-size:16px;
}
.font_18{
    font-size:16px;
}
.large_h1,.large_h2{
    margin:0.75em 0;
}
.pageFold{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.foldHeading{
    max-width:880px;
    text-align:center;
    color:#232323;
    margin:0 auto;
}
.foldHeading h2,.foldHeading .large_h2{
    max-width:800px;
    margin:0 auto;
    text-align:center;
    font-size:16px;
    line-height:1.4em;
    padding:10px 0 10px;
}
.catBoxCloud{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    max-width:1235px;
    margin:0 auto;
}
.catBoxCloud div{
    width:230px
}
.tresCols{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex
}
.tresCols{
    -webkit-box-pack:space-beetween;
    -webkit-justify-content:space-beetween;
    -ms-flex-pack:space-beetween;
    justify-content:space-beetween;
    max-width:990px
}
.tresCols div{
    margin:18px
}
.tresCols h4,.tresCols h5{
    text-align:center;
    margin-top:10px
}
.tresCols img{
    width:295px;
    height:168px;
}
.tresCols p{
    width:295px
}
.termBox{
    display:inline-block;
    background:#F4F4F4;
    color:#6f6f6f;
    padding:3px 10px 3px;
    margin:12px 5px 0 0;
    border-radius:6px;
    cursor:pointer;
    cursor:hand
}
.termBox,.termBox.a{
    font-size:16px;
}
.termBox:hover,.termBoxSelected{
    background-color:#000;
    color:#FFF;
}
.categoryBoxLink{
    -webkit-text-decoration:none;
    text-decoration:none;
    color:#000;
    cursor:hand;
    cursor:pointer;
    display:inline-block;
    margin:8px;
    background-color:#fff;
    width:230px;
    line-height:40px;
    text-align:center;
    border-radius:30px;
}
.categoryBoxLink:hover{
    background:#000;
    color:#FFF;
}
@media (max-width:849px){
    #navBar{
        -webkit-box-pack:center;
        -webkit-justify-content:center;
        -ms-flex-pack:center;
        justify-content:center
    }
    #menuSearch{
        width:100vw;
        border-radius:0;
        left:0;
    }
    .min850{
        display:none
    }
    .max850_font13{
        font-size:13px;
        font-weight:500;
    }
}
@media (min-width:400px){
    .max400{
        display:none
    }
}
@media (min-width:850px){
    .max850{
        display:none
    }
}
@media (max-width:1080px){
    .min1080{
        display:none;
    }
}
@media (max-width:1000px){
    .defa_width{
        padding:0 80px;
    }
}
@media (max-width:800px){
    .defa_width{
        padding:0 60px;
    }
}
@media (max-width:700px){
    .defa_width{
        padding:0 40px;
    }
}
@media (max-width:600px){
    .defa_width{
        padding:0 20px;
    }
}
@media (max-width:849px){
    .foldHeading{
        max-width:80%;
        min-width:300px;
    }
    .infoSquareBox{
        max-width:100%;
        padding-left:0;
        padding-right:0;
    }
    h2{
        text-align:center
    }
    .infoSquare{
        max-width:80%
    }
    .infoSquare,.tresCols{
        -webkit-flex-direction:column;
        -ms-flex-direction:column;
        flex-direction:column
    }
}
@media (max-width:419px){
    .foldHeading{
        max-width:100%;
        min-width:auto;
        text-align:left;
    }
    h2{
        text-align:center;
        font-size:25px
    }
    .foldHeading p{
        text-align:center;
    }
    #browseButton{
        max-width:80%
    }
    .inner-header p{
        max-width:70%
    }
}
.blue{
    background-color:#2196F3
}
.blue:hover{
    background-color:#0a70c2
}
.green{
    background-color:#7ed321
}
.green:hover{
    background-color:#78c230
}
.black{
    background-color:#555
}
.black:hover{
    background-color:#000000
}
.transp{
    background:none;
    border-radius:none;
}
.transp:hover{
    opacity:1
}
;
.blue,.green,.black{
    cursor:pointer;
}
.advancedSearch{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    width:100%;
    height:38px;
    background-color:#FFF;
    box-shadow:0 0 6px rgba(0,0,0,.07);
    border-radius:9px;
}
#advancedSearchForm{
    width:100%;
}
.advancedSearch input[type=search]{
    border:0;
    font-size:18px;
    width:calc(100% - 70px);
    background-color:#FFF;
}
.advancedSearch input[type=search]:not(:focus){
    text-align:center;
}
.searchSidebar .advancedSearch{
    border:1px solid #000;
}
.searchSidebar .advancedSearch input[type=search]{
    width:calc(100% - 36px);
    text-align:left;
}
#menuSearch .advancedSearch,#menuSearch .advancedSearch input[type=search]{
    background-color:#EDEDED;
}
.advancedSearch .blue{
    padding:8px 9px 4px 7px;
    border-radius:0 9px 9px 0;
}
.refineButton{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    width:30px;
    height:30px;
    border-radius:6px;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    color:#fff;
    font-weight:500;
    font-size:16px;
    cursor:hand;
    cursor:pointer;
    opacity:0.35
}
.refineIcon{
    margin-right:10px
}
.whiteheader,.bk_FF{
    background:#FFF;
}
.whiteheader,.blueheader{
    padding-top:0;
    padding-bottom:0;
}
.bk_inner{
    background:#637381;
}
.bk_F9,.secondary_list_area{
    background:#F9F9F9
}
.bk_EA{
    background:#EAEAEA;
}
.bk_F0{
    background:#F0F0F0;
}
.refineButtonClear{
    cursor:hand;
    cursor:pointer;
    color:#006cea;
}
.refineButtonApply,.refineButtonCancel{
    width:165px;
    max-width:48%;
    color:#fff;
    border-radius:5px;
    text-align:center;
    font-size:14px;
    padding:12px;
    font-weight:500;
    cursor:pointer;
}
.refineButtonCancel{
    background-color:#52647a
}
.refineButtonApply{
    background-color:#006cea
}
.optSlider{
    -webkit-appearance:none;
    width:100%;
    height:5px;
    background:#fff;
    outline:none;
    opacity:.7;
    -webkit-transition:.2s;
    -webkit-transition:opacity .2s;
    transition:opacity .2s
}
.optSlider:hover{
    opacity:1
}
.optSlider::-webkit-slider-thumb{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    width:26px;
    height:26px;
    border-radius:13px;
    background:#000;
    cursor:pointer
}
.optSlider::-moz-range-thumb{
    width:25px;
    height:25px;
    border-radius:13px;
    background:#000;
    cursor:pointer
}
.optionContent{
    width:100%;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    padding-left:15px;
    padding-right:15px
}
.optionContent select{
    border:1px solid #DDD;
    background:#FFF;
    line-height:50px;
    height:50px;
    border-radius:6px;
    padding-left:8px;
}
.refineOpt{
    text-align:center;
    background-color:#fff;
    color:#000;
    font-size:14px;
    font-weight:500;
    border:1px solid #000;
    border-radius:5px;
    width:165px;
    height:45px;
    line-height:45px;
    margin:3px;
    cursor:hand;
    cursor:pointer
}
.refineOptSelected{
    color:#fff;
    background-color:#000;
}
.refineOptSelected:hover,.refineOpt:hover{
    background-color:#000;
    color:#FFF;
    border-color:#c1c1c1;
}
.optionHeader{
    padding:15px 15px 5px;
    color:#000;
    font-weight:500;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.optionSplit{
    display:block;
    float:left;
    width:50%;
}
.optionSplit_first .optionHeader,.optionSplit_first .optionContent{
    padding-right:8px;
}
.optionSplit_last .optionHeader,.optionSplit_last .optionContent{
    padding-left:7px;
}
#searchSidebar{
    width:370px;
    background-color:#fafafa
}
@media (max-width:500px){
    #searchSidebar,#sidebar{
        width:100vw;
        max-width:100vw;
    }
}
.searchSideBarHeader,.searchSideBarHeaderText{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.searchSideBarHeader{
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    padding:15px 50px 15px 15px;
    font-size:16px;
    font-weight:500;
    color:#000;
}
.homevideo_play{
    display:block;
    background:rgba(64,64,64,0.6) url(/images/maintheme_screen_over.png) no-repeat center;
    width:295px;
    height:168px;
    position:relative;
}
.title-size-bold{
    font-weight: 700;
    margin-bottom: 1rem;
}
.round_bluebtn{
    background:#006cea;
    border-radius:30px;
    padding:15px 25px;
    display:inline-block;
    box-shadow:2px 2px 5px rgba(0,0,0,0.2);
}
.round_bluebtn,.round_bluebtn:hover{
    color:#FFF;
}
.round_blackbtn,.round_blackbtn_gray{
    display:inline-block;
    border-radius:30px;
    line-height:24px;
    background:#000;
    color:#FFF;
    padding:8px 20px;
    margin:10px;
}
.round_blackbtn:hover{
    background:#FFF;
    color:#000;
    box-shadow:0 0 5px rgba(0,0,0,0.4);
}
.round_blackbtn_gray:hover{
    background:#EEEEEE;
    color:#000;
    box-shadow:0 0 5px rgba(0,0,0,0.4);
}
.round_large{
    line-height:29px;
    padding:11px 28px
}
.help_scroll{
    display:inline-block;
    width:100%;
    height:1px;
    position:relative;
    top:-160px;
}
@media (max-width:570px){
    .pageFold{
        padding-left:10px;
        padding-right:10px;
    }
    .pageFold_nomargin{
        margin-left:-10px;
        margin-right:-10px;
    }
    .h_30{
        height:15px;
    }
    .h_40{
        height:25px;
    }
    .h_50{
        height:35px;
    }
    .title-size-bold{
        font-size:30px;
    }
    .round_bluebtn{
        padding:15px;
    }
    .idea_div{
        padding: 0;
    }
    .resources_body .left_area,
    .resources_body .right_area {
        padding-left: 10px;
        padding-right: 10px;
    }
    .faq_items .full_width {
        padding: 5px;
        border-radius: 5px;
    }
    .main_theme .inline-search input[type=text] {
        width: 240px;
        border-radius: 5px;
    }
    .inline-search {
        text-align: center;
    }
}
.currency_sel,.currency_drop{
    width:70px;
}
.currency_sel{
    display:inline-block;
    margin-right:5px;
    cursor:pointer;
}
.currency_drop{
    position:absolute;
    z-index:10000;
    display:none;
    top:15px;
    left:5px;
    background:#FFF;
    border-radius:5px;
    box-shadow:0px 0px 10px rgba(68,68,68,.3);
}
.currency_drop_bk{
    position:fixed;
    display:none;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(255,255,255,0.4);
}
.currency_drop a{
    display:block;
    padding:2px 10px;
    color:#000;
}
.currency_drop a:hover,.currency_drop a.selected{
    background:#000;
    color:#FFF;
}
@media (max-width:600px){
    .currency_sel{
        display:none;
    }
}
.white_input_box_div{
    border:1px solid #DDD;
    margin:5px;
    width:calc(100% - 10px);
    height:50px;
    position:relative;
    background:#FFF;
    display:inline-block;
    vertical-align:middle;
    cursor:text;
}
.white_input_box_div >span{
    font-size:10px;
    color:#000;
    position:relative;
    top:1px;
    left:5px;
}
.white_input_box_div input{
    background:none;
    border:none;
    box-shadow:none;
    position:fixed;
    line-height:22px;
    height:22px;
    padding:0;
    margin:0;
    position:absolute;
    top:22px;
    left:15px;
    width:calc(100% - 30px);
}
.white_input_box_div input:disabled,.page_menu_white select:disabled{
    color:#444;
    opacity:0.7;
}
.white_input_box_div >span{
    -webkit-transition:top 0.3s,left 0.3s,font-size 0.3s,color 0.3s;
    transition:top 0.3s,left 0.3s,font-size 0.3s,color 0.3s;
}
div[submit-success]{
    display:none;
}
.sidebar_bk{
    background-color:rgba(0,0,0,0.5);
    position:fixed;
    display:none;
    opacity:0;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:1000;
}
.grecaptcha-badge,.grecaptcha-logo{
    display:none !important;
}
option.separator{
    margin-top:8px;
    border-top:1px solid #666;
    padding:0;
}
img.reverse_img{
    filter:invert(1);
}
.blueheader{
    background:#006cea;
}
.blueheader,.blueheader .foldHeading,.blueheader p{
    color:#FFF;
}
.main_theme,.second_theme{
    font-size:16.8px;
    line-height:1.4em;
    color:#232323;
    width:100vw;
    overflow: unset !important;
}
.main_theme .large_h,.main_theme_gray .large_h,.second_theme .large_h{
    font-size:30px;
    line-height:1em;
    font-weight:100;
    text-transform:uppercase;
    margin-top:0.9em;
    margin-bottom:0.9em;
}
.main_theme > center,.second_theme > center{
    padding-bottom:25px;
}
.main_theme input[type=text],.main_theme input[type=email],.join_our_list input[type=text],.join_our_list input[type=email]{
    color:#000;
    background:transparent;
    width:210px;
    padding:8px 5px;
    font-weight:200;
    box-sizing:content-box;
    outline:none;
}
.maintheme_btn{
    font:700 .9em Arial;
    border:none;
    cursor:pointer;
    background:#006cea;
    color:#fff;
    padding:.7em 1.5em;
    line-height:1.3em;
    margin:0 10px;
    display:inline-block;
    text-transform:uppercase;
}
.maintheme_btn:hover{
    color:#FFF;
}
.idea_div{
    display:inline-block;
    width:100%;
    float:none;
    border:none;
    color:#232323;
    overflow:hidden;
    position:relative;
    padding:30px 0;
    max-width:1280px;
}
.idea_header{
    max-width:800px;
    margin:0 auto;
    padding:20px 40px;
}
.idea_header_wide{
    max-width:1000px;
    margin:0 auto;
}
.right_area amp-img{
    max-width:80vw;
}
.left_area amp-img{
    height:auto;
}
.right_area h2{
    font-size:24px;
    line-height:30px;
    text-align:left;
}
.idea_white{
    margin:15px 7px 0 8px;
    padding:2em 1.5em 1.5em;
    background:#FFF;
    box-shadow:0 0 6px rgba(0,0,0,0.07);
    border-bottom-color:#d2d2d2;
}
.half_div,.was_half_div,.onequarter_div,.half_div a{
    font-size:14px;
}
.half_div{
    width:42%;
    padding:0 4%;
    float:left;
    box-sizing:content-box;
}
.onequarter_div{
    width:220px;
    display:inline-block;
    margin:0 10px;
    text-align:left;
    box-sizing:content-box;
    vertical-align:top;
}
.half_div_clear{
    clear:both;
}
.half_div_left{
    text-align:left;
}
.half_div_right{
    text-align:right;
}
.onequarter_div .blob{
    width:5em;
    height:5em;
    font:bold 1.3em/5em Arial;
    border-radius:5em;
    border:2px solid #d7d7d7;
    color:#d7d7d7;
    text-align:center;
    margin:0 auto 20px;
}
.smart_bluebtn{
    background:#9B9B9B;
    display:inline-block;
    padding:0;
    margin:0 5px;
    font-size:22px;
    min-width:165px;
    padding:0 20px;
    box-sizing:border-box;
    line-height:65px;
    color:#FFF;
    text-align:center;
    border-radius:9px;
    letter-spacing:1px;
    white-space:nowrap;
}
.resources_body .smart_bluebtn{
    font-size:16px;
    line-height:50px;
}
.buy_blue,.resources_body .smart_bluebtn:hover{
    background:#4A90E2;
    color:#FFF;
}
.resources_body{
    max-width:1000px;
}
.resources_body .left_area{
    width:60%;
    float:left;
}
.resources_body .right_area{
    width:35%;
    float:right;
}
.right_area,.resources_links a{
    color:#000;
}
.resources_links a.selected{
    font-weight:bold;
    background:url(/images6/res_triangle.png) no-repeat 0 9px;
    background-size:16px auto;
    -webkit-filter:none;
    -moz-filter:none;
    filter:none;
}
.resources_links a{
    display:block;
    padding:7px 0 7px 25px;
    line-height:21px;
    background:url(/images6/res_triangle.png) no-repeat 2px 13px;
    background-size:8px auto;
    -webkit-filter:grayscale(1);
    -webkit-filter:grayscale(100%);
    -moz-filter:grayscale(100%);
    filter:gray;
    filter:grayscale(100%);
}
.maintheme_tip{
    text-align:center;
    background:#70b8dd;
    padding:1.5em 0;
    margin:1.5em -1.5em -1.5em;
}
.maintheme_tip,.maintheme_tip a{
    color:#FFF;
}
.main_theme_gray{
    background:#535760;
    color:#fff;
    text-align:center;
    padding:0;
}
.main_theme_white{
    background:#FFF;
    color:#000;
    padding:0 0 30px 0;
}
.main_theme_gray .large_h{
    margin:0;
}
.large_h a,a.large_h2,h3.large_h2,.get_in_touch_area a{
    color:#000;
}
a.large_h2,h3.large_h2{
    font-size:20px;
}
.second_check{
    padding:10px 30px 10px 100px;
    background:url(/images/secondtheme_check.png) no-repeat 30px 10px;
    min-height:50px;
}
#contentInput{
    width:calc(100% - 87px);
    padding-left:15px;
}
.main_theme .contentSubmit{
    background:#70b8de;
    color:#FFF;
    width:80px;
    float:right;
    cursor:pointer;
}
.defa_width_2cols{
    width:46%;
    min-width:290px;
    margin:0 2% 20px;
    display:inline-block;
}
.defa_width_3cols{
    width:29%;
    min-width:270px;
    margin:0 2% 20px;
    display:inline-block;
}
hr.splitter{
    max-width:80px;
    margin:30px auto;
}
@media (max-width:1000px){
    .half_div{
        width:96%;
        margin-top:20px;
        padding-left:0;
        padding-right:0;
    }
    .half_div_right,.half_div_left{
        text-align:center;
    }
    .half_div_left{
        margin-top:0;
    }
}
@media (max-width:780px){
    .resources_body .left_area{
        width:100%;
    }
    .resources_body .right_area{
        width:100%;
        margin-top:40px;
    }
    .resources_body .left_area,.resources_body .right_area{
        padding-left:20px;
        padding-right:20px;
    }
}
@media (max-width:700px){
    .defa_width_2cols,.defa_width_3cols{
        width:100%;
        margin-left:0;
        margin-right:0;
    }
    .second_check{
        background-size:40px;
        background-position:7px 18px;
        padding:10px 0;
    }
    .second_check h3{
        padding-left:60px;
        min-height:55px;
        display:flex;
        align-items:center;
    }
}
.maintheme_screen_button{
    width:328px;
    max-width:70%;
    height:135px;
    padding:33px 24px 101px 22px;
    background:url(/images/maintheme_screen.png) no-repeat 0 10px / contain;
    margin:10px auto;
    box-sizing:content-box;
}
.signup_domain_owner{
    max-width:480px;
    margin:0 auto;
}
.signup_domain_owner input[type=text],.signup_domain_owner input[type=email]{
    display:block;
    width:100%;
    box-sizing:border-box;
}
.video_location{
    display:flex;
    max-width:371px;
    min-height:210px;
    margin:0 auto;
}
.half_div .video_location,.half_div .video_location iframe{
    min-height:220px;
}
.searchBox input[type=text]{
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    color: #737373;
}
.searchBox .browseButton{
    border-radius: 0 5px 5px 0;
    margin-left: -4px;
    color: #fff;
    background-color: #000;
    line-height:22px;
    position: relative;
    z-index: 2;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    text-decoration: none;
}
.searchButton span,
.searchButton img{
    display:none;
}
@media (max-width:849px){
    .searchBox{
        display:block;
        max-width:70vw;
    }
    .searchBox input[type=text]{
        max-width: auto;
    }
}
@media (max-width:700px){
    a.site-logo img {
        width: 40px;
    }
}
.inner-header{
    min-height:20px;
    width:100%;
    margin:0 auto;
    padding:20px 0 60px 0;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.inner-header h1{
    margin:0 auto;
}
.inner-header p {
    padding: 0 20px;
    color: #fff;
    font-weight: 400;
    margin: 20px auto;
    font-size: 22px;
    line-height: 26px;
    max-width: 780px
}
.inner-header-body {
    text-align: center;
}
.hero-steps .step-item h2 {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    text-align: left;
    padding: 0;
}
.hero-steps .step-item p {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    text-align: left;
    padding: 0;
    font-weight: 400;
}
.orSpace{
    margin:25px;
    font-size:16px;
    font-weight:500;
    line-height:1.4em
}
.foldAbout{
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    padding:40px;
    min-height:600px
}
.foldGCompany{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    max-width:1000px
}
.foldGCompany div{
    padding:10px;
    width:220px
}
.foldAsSeen{
    font-size:12px;
    letter-spacing:2px;
}
.brandBox img{
    width:200px;
    height:95px
}
.searchBox{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    border-radius:9px 9px;
}
.searchBox{
    -moz-box-shadow:5px 5px 5px rgba(68,68,68,.3);
    -webkit-box-shadow:5px 5px 5px rgba(68,68,68,.3);
    box-shadow:5px 5px 5px rgba(68,68,68,.3)
}
.searchbox_parent {
    text-align: center;
    margin: 0 auto;
}
.searchButton,.searchButtonMobile{
    border-radius:0 9px 9px 0;
}
.searchButton,.searchButtonMobile{
    font-size:18px;
    font-weight:500;
    color:#fff;
    cursor:hand;
    cursor:pointer;
    display:inline-block;
    vertical-align:middle;
}
.searchButton{
    padding:16px 25px;
}
.searchButtonMobile{
    padding:10px 12px 7px;
    text-align:center;
}
.searchBox input{
    margin:0;
}
.searchBox input[type=text],.searchBox input[type=email]{
    padding:16px;
    color:#222;
    font-size:18px;
    border:0;
    border-radius:9px 0 0 9px;
    width:460px;
    vertical-align:middle;
}
.searchBox input[type=submit]{
    border:0 none;
}
.browseButton{
    display:inline-block;
    background-color:#000;
    color:#FFF;
    border-radius:30px;
    padding:15px 30px;
    margin:0 3px;
    line-height:22px;
}
.browseButton,.browseButton label{
    cursor:pointer
}
.browseButton:hover{
    background-color:#eaeaea;
    color:#000;
}
@media (max-width:849px){
    .inner-header h1{
        font-size:34px;
        line-height:40px;
    }
    .foldGCompany{
        max-height:475px;
        overflow:hidden
    }
}
@media (max-width:991px){
    .searchBox input[type=text] {
        width: 480px;
        max-width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .searchButton{
        border-radius: 5px !important;
    }
    .searchBox {
        box-shadow: none;
    }
}
@media (max-width:934px){
    .min935{
        display:none;
    }
}
@media (max-width:714px){
    .min715{
        display:none;
    }
}
@media (max-width:464px){
    .min465{
        display:none;
    }
}
@media (max-width:560px){
    .searchBox input[type=text]{
        width: 90vw;
        padding: 10px;
        max-width: 420px;
    }
    .searchBox .browseButton{
        padding: 12px 10px;
        width: 100%;
        max-width: 260px;
    }
    .searchButton img{
        display:inline-block !important;
    }
    .searchBox {
        margin: 35px auto;
    }
}
.infoSquare{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-direction:row;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:center;
    max-width:960px;
    flex-wrap:wrap;
}
.infoSquareBox{
    max-width:480px;
    padding:20px
}
.infoSquareBox h3,.tresCols h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:20px;
}
.tresCols h3 a{
    color:#444;
}
.tresCols h3 a:hover{
    color:#4A90E2;
}
.infoSquareBox p{
    font-size:16px;
    line-height:1.4em
}
@media (max-width:445px){
    p.sub-title{
        margin:10px auto;
        min-height:68px;
    }
}
@media (min-width:446px){
    p.sub-title{
        margin:10px auto;
        min-height:45px;
    }
}
p.sub-action{
    line-height:1.7em;
    min-height:52px;
}
.homepage_searchhero .menuSearchOver,.homepage_searchhero .inner-header .h_40,.homepage_searchhero .sub-action{
    display:none;
}
.homepage_searchhero .searchBox{
    margin-top:1em;
    margin-bottom:2em;
}
.homepage_searchhero .searchBox input[type=text]{
    border-radius:20px 0 0 20px;
}
.homepage_searchhero .searchButton{
    border-radius:0 20px 20px 0;
    background:#000;
    font-weight:100;
    font-size:16px;
    line-height:21px;
}
.homepage_searchhero .searchButton:hover{
    background:#EEE;
    color:#000;
}
.homepage_searchhero .menuSearchBk{
    background:#FFF;
    width:100%;
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:60px;
}
.hub_list_icon{
    display:inline-block;
    width:16px;
    height:16px;
    background:#d8d8d8;
    border-radius:2px;
    vertical-align:text-top;
    margin-right:8px;
}
.hub_short_parent,.hub_short_child{
    display:block;
    line-height:40px;
    padding:0 20px;
    margin:5px;
    border-radius:20px;
    background:#FFF;
    color:#000;
}
.hub_short_parent:hover,.hub_short_child:hover{
    background:#2196f3;
    color:#FFF;
}
.hub_short_parent{
    font-weight:500;
}
.hub_short_box{
    display:flex;
    flex-wrap:wrap;
}
.hub_spacer{
    width:100%;
    height:25px;
}
.page_short{
    background:#F2F2F2;
    text-align:left
}
.resources_next{
    text-align:left;
    padding:30px 0 0;
}
@media (max-width:850px){
    .page_short{
        text-align:center;
    }
}
.pageFold_animation{
    position:relative;
    text-align:center;
    background:linear-gradient(60deg,#cc00ac,#8500FF);
}
.pageFold_animation,.pageFold_animation .foldHeading{
    color:#fff;
}
.foldHeading,.pageFold h1,.pageFold_background p{
    width:990px;
    max-width:90vw;
    text-align:center;
}
.idea_white{
    margin-top:0;
}
.idea_div{
    max-width:1300px;
    margin:0;
    padding:0 25px 25px;
}
.related-articles{
    padding-left:20px;
}
.related-articles li{
    list-style:none;
    line-height:2em;
}
.related-articles a{
    display:inline-block;
}
.listHover li{
    list-style:none;
    cursor:default
}
.main_theme p,.main_theme h1,.main_theme h2,.main_theme h3,.main_theme h4,.main_theme .related-articles,
.main_theme .listHover_contain,.main_theme .simple-list,.main_theme ul,.main_theme ol{
    margin-left:auto;
    margin-right:auto;
    color:#000;
}
.large_h1{
    font-size:39px;
    font-weight:500;
}
.left_area h1{
    text-align:left;
}
.main_theme h2,.main_theme h2 b,.main_theme h2 strong{
    font-size:34px;
    line-height: 40px;
    font-weight:700;
    text-align:left;
    margin:0;
}
.main_theme h2 {
    margin: 30px 0px 15px 0;
}
.main_theme h3,.main_theme h3 b,.main_theme h3 strong,.large_h3{
    font-size:24px;
    font-weight:600;
    text-align:left;
    margin:35px auto 16px;
}
.main_theme h4,.main_theme h4 b,.main_theme h4 strong{
    font-size:19px;
    font-weight:500;
    text-align:left;
    margin:22px auto 16px;
}
.idea_left{
    width:60%;
    display:inline-block;
    vertical-align:top;
}
.idea_right{
    width:40%;
    padding-left:4%;
    display:inline-block;
    vertical-align:top;
}
.listHover{
    width:calc(90% - 240px);
    min-height:180px;
    display:inline-block;
    vertical-align:top;
    padding:15px 0 0 50px;
    margin:0;
}
.listHover li{
    line-height:30px;
}
.domainCard{
    display:inline-block;
    vertical-align:top;
    cursor:default;
}
.listHover_contain .domainCard,.domainCardContainer .domainCard{
    cursor:default;
}
.sliderContainer>.domainCard{
    display:none;
}
.sliderContainer,.rowContainer{
    position:relative;
    overflow:hidden;
}
.sliderContainer,.sliderContainer .page_pre,.sliderContainer .page,.sliderContainer .page_post,.rowContainer{
    height:410px;
}
.sliderContainer .page_pre{
    position:absolute;
    left:-100%;
    z-index:10;
}
.sliderContainer .page,.rowContainer .page{
    position:absolute;
    left:0;
    z-index:15;
}
.sliderContainer .page_post{
    position:absolute;
    left:100%;
    z-index:20;
}
.rowContainer{
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
@media (min-width:1081px){
    .rowContainer{
        height:230px;
    }
}
.collection-names .pages img{
    width:48px;
    height:48px;
    cursor:pointer;
    margin:40px 10px;
}
.fullHeader{
    min-height:calc(100vh - 55px);
}
.searchBox,.searchBoxMobile{
    margin: 45px auto;
    display: inline-block;
}
.browseButton{
    border-radius:0 5px 5px 0;
    margin:0;
    line-height:23px;
}
.searchBoxMobile .browseButton{
    padding:12px 20px 12px 12px;
    line-height:26px;
}
.searchButton span,.searchButton img{
    display:none;
}
.browseButton:hover{
    background-color:#000;
    color:#FFF;
}
.searchBox_fixed{
    position:fixed;
    z-index:102;
    box-shadow:none;
    word-wrap:none;
    line-break:strict;
}
.searchBox_fixed input[type=text]{
    background:#F0F0F0;
    padding:11px 16px;
}
.searchBox_fixed .browseButton{
    padding:10px 19px 10px 15px;
}
.navItemsLeft a{
    opacity:1;
    transition:opacity 1s;
}
@media (max-width:1200px){
    .hero-steps .step-item h2,
    .hero-steps .step-item p {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .step-item.step-item-2 {
        margin-top: 0 !important;
    }
    .step-item {
        position: relative !important;
        padding-left: 5px !important;
        width: 100% !important;
        padding-right: 5px !important;
    }
}
@media (max-width:849px){
    .searchBox{
        display:block;
        max-width:100%
    }
}
@media (max-width:580px){
    .main_theme .listHover_contain{
        margin-left:-25px;
        margin-right:-25px;
    }
    .collection-names{
        padding-left:30px;
        padding-right:30px;
    }
    .listHover_contain .domainCard{
        display:inline-block;
    }
    .listHover_contain .listHover{
        display:none;
    }
}
@media (min-width:581px){
    .listHover_contain .domainCard{
        margin-top:0;
        display:none;
    }
}
@media (min-width:831px){
    .collection-names{
        margin-left:-25px;
        margin-right:-25px;
    }
}
.foldHeading p{
    text-align:left;
}
.foldHeading a{
    color:#FFF;
    text-decoration:underline;
}
.right_area{
    position:relative;
}
.right_area .sticky-top .items{
    display:flex;
    flex-direction:column;
}
.right_area .sticky-top a{
    display: inline-block;
    padding: 10px 10px 10px 15px;
    color: #5b5b5b;
    border-radius: 5px;
    font-size: 16px;
    line-height: 20px;
    max-width: 98%;
}
.right_area .sticky-top a:hover,
.right_area .sticky-top a.over{
    color:#000000;
    background-color: #eee;
}
header.site-header {
    position: fixed;
    width: 100%;
    z-index: 9999;
}
main.container-main {
    margin-top: 0;
}
header.site-header {
    position: fixed;
    width: 100%;
    background: transparent;
    z-index: 9;
}
header.site-header a {
    color: #fff;
    text-decoration: underline;
}
header.site-header.scroll-effect,
header.site-header.active,
header.site-header:hover {
    background: #f7f7f7;
}
.resources_next{
    padding:0 0 0 35px;
}
@media (max-width:780px){
    .resources_body .right_area{
        width:100%;
        margin-top:30px;
        margin-bottom:20px;
    }
}
@media (min-width:781px){
    .resources_body{
        display:flex;
        flex-wrap:wrap;
    }
    .resources_body .left_area{
        float:none;
        width:68%;
        margin-right:2%;
        order:1;
    }
    .resources_body .right_area{
        float:none;
        width:30%;
        flex:0 0 auto;
        order:2;
    }
    .right_area .sticky-top{
        position:-webkit-sticky;
        position:sticky;
        top:120px;
        z-index:0;
        width:30vw;
        max-width:375px;
    }
    #tableOfContents.stuck{
        position:relative;
        top:0px;
    }
    #tableOfContents.fixed{
        position:fixed;
        top:90px;
    }
}
.small_boxes{
    text-align:center;
}
.small_boxes .box{
    min-width:250px;
    width:25%;
    display:inline-block;
    padding:30px;
}
.gen_art_image{
    max-width:30%;
    padding:0 50px 30px;
}
@media (max-width:849px){
    .gen_art_image{
        display:none;
    }
}
@media (max-width:1200px){
    .gen_art_image{
        max-width:40%;
        padding:0 30px 30px;
    }
}
.hub_list_icon{
    display:inline-block;
    width:16px;
    height:16px;
    background:#d8d8d8;
    border-radius:2px;
    vertical-align:middle;
    margin-left:-25px;
    margin-right:9px;
}
footer {
    font-size: .9rem;
    color: #e6e7eb;
    background-color: #12141a;
    text-align: left;
    padding-bottom: 5rem;
}
footer .menu-items {
    margin-top: 30px;
}
footer .menu-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
footer .menu li {
    line-height: 22px;
}
footer .menu li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
footer .menu li a:hover {
    text-decoration: underline;
}
footer ul {
    list-style-type: none;
    padding:0;
    margin-top: 10px;
}
body.page-template-names-template header#navbar {
    background-color: #000;
}
body.page-template-names-template .site-header .search-container {
    width: calc(100% - 180px);
}
body.page-template-names-template .site-header .search-container .search-container-div {
    margin: 0;
    max-width: 100%;
}
body.page-template-names-template .site-header .search-container .search-container-div form:before {
    display: none;
}
body.page-template-names-template .site-header .search-container input.search-field {
    width: 100%;
    height: 42px;
    padding: 5px 120px 5px 10px;
    color: #737373;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    border-radius: 5px;
    border: none;
}
body.page-template-names-template .search-container-div form {
    position: relative;
    margin: 0;
}
body.page-template-names-template .search-container-div button {
    border: none;
    position: absolute!important;
    color: #fff;
    text-align: center;
    height: 100%;
    right: 0;
    top: 0;
    font-family: Roboto;
    background: #156ce0 !important;
    border-radius: 0 5px 5px 0;
    width: 100px;
    padding-top: 0;
    padding-bottom: 0;
}
@media (min-width: 992px) {
    body.page-template-names-template .site-header .search-container {
        padding: 0;
    }
}
@media (max-width: 700px) {
    body.page-template-names-template .site-header .search-container {
        width: calc(100% - 42px);
    }
    body.page-template-names-template .search-container-div button {
        background: url(../img/icon_bc_search_bigblk.png) center/22px no-repeat !important;
        width: 30px;
        height: 30px;
        top: 4px;
        right: 0px;
        font-size: 0;
    }
    body.page-template-names-template .site-header .search-container input.search-field {
        padding: 5px 10px 5px 10px;
    }
}
body.page-template-names-template header#navbar>.container-fluid {
    max-width: 1314px!important;
    padding: 0 2px!important;
}
@media (min-width: 1021px) and (max-width: 1350px) {
    body.page-template-names-template header#navbar>.container-fluid {
        max-width: 996px!important;
    }
}
@media (min-width: 701px) and (max-width: 1020px) {
    body.page-template-names-template header#navbar>.container-fluid {
        max-width: 676px!important;
    }
}
@media (max-width: 700px) {
    body.page-template-names-template header#navbar>.container-fluid {
        max-width: 324px!important;
    }
}
body.page-template-names-template header#navbar .navbar-brand {
    margin-right: 0;
}
body.page-template-names-template header#navbar {
    height: auto;
}
body.page-template-names-template .site-header .search-container input.search-field:focus{
    border: none;
    outline: none;
}
.main_theme .inline-search .searchButton {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}
.main_theme .inline-search input[type=text] {
    border: 1px solid #777;
    padding: 10px 15px 11px 15px;
    margin-right: -5px;
    width: calc(100% - 180px);
    max-width: 380px;
    margin-bottom: 15px;
    border-radius: 5px 0 0 5px;
}
.faq_items .full_width {
    padding: 30px;
    border-radius: 5px;
}
.faq_items .faqBlock {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 7px;
    cursor: pointer;
    width: 100%;
    max-width: 1240px;
    border: 0;
}
.faq_items .faqBlock h2 {
    text-align: left;
    font-size: 18px;
    line-height: 40px;
    margin: 0;
}
.faq_items .closeFaq,
.faq_items .expandFaq {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-right: 10px;
    padding-left: 30px;
    display: block;
}
.faq_items .expandFaq {
    background: url(../img/icon_plus.png) no-repeat 0 3px;
    background-size: 20px;
}
.faq_items .faqBlock .faqSectionContent {
    -moz-transition: max-height 0.7s ease-in-out;
    -ms-transition: max-height 0.7s ease-in-out;
    -o-transition: max-height 0.7s ease-in-out;
    -webkit-transition: max-height 0.7s ease-in-out;
    transition: max-height 0.7s ease-in-out;
    overflow: hidden;
    padding-left: 30px;
}
.faq_items .faqBlock.closed .faqSectionContent {
    max-height: 0;
}
.faq_items .faqBlock.open .faqSectionContent {
    height: auto;
    max-height: 600px;
}
.faq_items .faqBlock .faqSectionContent span.height10 {
    height: 10px;
    display: block;
}
.step-item.step-item-2 {
    margin-top: 35px;
}
.faq_items .faqBlock.open .expandFaq {
    background: url(../img/icon_minus.png) no-repeat 0 3px;
    background-size: 20px;
    background-position-y: center;
}

@media (max-width:780px){
    .right_area .sticky-top a {
        padding: 5px 5px 5px 10px;
    }
    .resources_body .right_area {
        margin-bottom: 40px;
    }
    .h_heading_after {
        height: 0;
    }
    .inner-header .menuUnderspacer {
        height: 70px;
    }
}
@media (max-width:1200px){
    .hero-steps .step-item {
        margin-bottom: 20px;
        padding: 0 20px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-steps .step-item h2,
    .hero-steps .step-item p {
        text-align: center;
    }
}
.nav-link:focus,
.nav-link:hover {
    color: #fff;
}
.step-item {
    position: relative;
    padding-left: 65px;
    width: 92%;
}
.step-item:before {
    position: absolute;
    left: 0;
    font-size: 98px;
    font-weight: 600;
    opacity: 0.6;
    line-height: 78px;
}
.step-item.step-item-1:before {
    content: "1";
    left: 15px;
    top: 8px;
}
.step-item.step-item-2:before {
    content: "2";
}
.step-item.step-item-3:before {
    content: "3";
}
.bootstrap-dropdown,
#siteNavItems,
nav.site-nav {
    position: static;
}
header.site-header span.icon-bar {
    width: 28px;
    height: 3px;
    background: #fff;
    display: block;
    line-height: 2px;
    margin: 5px 0;
    padding: 0;
}
.dropdown-menu {
    width: 100%;
    left: 0;
    background: #222;
}

/* Begin Header */
header.site-header {
	display: flex;
	align-items: center;
	height: 5rem;
}
header.site-header img {
	height: 4.6rem;
  width: auto;
}
header.site-header li a {
	padding: 5px 0;
	line-height: inherit;
	text-decoration: none;
}
header.site-header .site-nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header.site-header .main-level-nav li a {
	font-size: .9rem;
	font-weight: 900;
}
header.site-header .main-level-nav li a {
	margin-right: 1.3rem;
}
header.site-header .main-level-nav li.blog-url a {
	color: #000;
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: .6rem 1.2rem;
}
header.site-header .navbar-expand-lg .navbar-nav {
	display: flex;
	align-items: center;
}
header.site-header .main-level-nav li.nav-item:hover a {
	text-decoration: underline;
}
.nav-link:focus,
.nav-link:hover {
	color: #fff;
}
header.site-header header.site-header {
	width: 100%;
    background-color: #f7f7f7;
    color: #F4F5F7;
}
header.site-header ul.submenu a {
    text-decoration: none !important;
}
header.site-header .dropdown-menu {
	padding-bottom: 0;
    margin: 0;
}
header.site-header .dropdown-menu .py-xl-4  {
	padding-bottom: 20px !important;
}
header.site-header ul.submenu {
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
	align-content: flex-start;
	list-style: none;
	padding-left: 0;
	max-height: 240px;
}
header.site-header ul.submenu li {
	display: block;
  width: auto;
	padding: 0 0 0.5rem 0;
	margin-right: 5rem;
}
header.site-header ul.submenu li a {
	font-size: 1rem;
}
header.site-header .sub-submenu {
	display: flex;
    align-items: center;
	height: 50px;
    background-color: #333;
}
header.site-header .dropdown-toggle.show::after {
    transform: rotate(180deg);
}
@media (max-width:991px){
    header.site-header {
        height: 5rem;
    }
    header.site-header div#siteNavItems {
        position: absolute;
        width: 100%;
        left: 0;
        top: 5rem;
        background: #222;
        padding: 20px 15px;
    }
    header.site-header li.blog-url {
        margin-top: 20px;
    }
    header.site-header .navbar-expand-lg .navbar-nav {
        align-items: start;
    }
    .searchBox .browseButton {
        min-width: 245px;
    }
}
/* End Header */
.container.items-list {
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
}
.container.items-list .item {
    width: 29%;
    display: inline-block;
    margin: 0 2%;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    margin-bottom: 20px !important;
    box-shadow: 0 0 10px #bbb;
    flex-direction: column;
}
.container.items-list .item > a {
    height: 100%;
    background: #222;
    display: block;
}
.container.items-list .item .copy-container {
    position: absolute;
    bottom: 0;
    background: #222;
    width: 100%;
    text-align: center;
    flex: 1 1 auto!important;
}
.container.items-list .item .copy-container h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}
.container.items-list .item .image-container img {
    object-fit: cover;
    object-position: bottom;
    width: 100%;
}
.container.items-list.blog-list {
    padding: 0;
}
.container.items-list.blog-list .item {
    width: 23%;
    margin: 0 1%;
}
.container.items-list.blog-list .item.item-big {
    width: 48%;
}
.container.items-list.blog-list .item .copy-container {
    color: #fff;
    position: relative;
    text-align: left;
    padding: 18px 22px 22px 22px;
}
.container.items-list.blog-list .item .copy-container h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
}
.container.items-list.blog-list .item .copy-container .item-date,
.container.items-list.blog-list .item .copy-container .item-copy {
    font-weight: 400;
    color: #9ba6b5;
    font-size: 16px;
    line-height: 18px;
}
.container.items-list.blog-list .item .copy-container .item-date {
    margin-bottom: 10px;
}
.container.items-list .item .image-container img {
    height: 200px;
    min-width: 100%;
    object-fit: cover;
    min-height: 100%;
    max-width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    object-position: center;
}
.article-status {
    margin-top: 10px;
}
.article-status a {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
}
.main_theme .left_area.full-width {
    margin: 0 auto;
    width: 80%;
}
.main_theme .author-container {
    border: 3px solid #000;
    padding: 20px;
}
.main_theme .author-container #author {
    border-bottom: 1px solid #ddd;
}
.main_theme .author-container .author-details a.author-link {
    color: #4787a8;
    margin-top: 10px;
    display: block;
}
.main_theme .author-container .author-details p.author-bio {
    width: 78%;
    display: inline-block;
    vertical-align: top;
    padding-left: 25px;
}
.main_theme .author-container .author-details img {
    width: 20%;
    max-width: 140px;
    height: auto;
}
@media (max-width:1399px){
    .container.items-list.blog-list .item {
        width: 31%;
        margin: 0 1%;
    }
    .container.items-list.blog-list .item.item-big {
        width: 64%;
    }
}
@media (max-width:991px){
    .container.items-list .item {
        width: 46%;
        margin: 0 1%;
    }
    .container.items-list.blog-list .item {
        width: 48%;
        margin: 0 1%;
    }
    .container.items-list.blog-list .item.item-big {
        width: 98%;
    }
}
@media (max-width:767px){
    .container.items-list.blog-list .item,
    .container.items-list.blog-list .item.item-big {
        width: 98%;
    }
    .faq_items .faqBlock {
        padding: 10px 5px;
    }
    .faq_items .full_width {
        padding: 15px;
    }
}
@media (max-width:480px){
    .container.items-list .item {
        width: 100%;
        margin: 0;
    }
    .faq_items .faqBlock .faqSectionContent {
        padding-left: 10px;
    }
}
@media (max-width:780px){
    .main_theme .left_area.full-width {
        margin: 0 auto;
        width: 100%;
        padding: 15px 0px;
    }
    .idea_div {
        padding: 0;
    }
}
@media (max-width:640px){
    .main_theme .author-container .author-details img {
        width: 120px;
    }
    .main_theme .author-container .author-details p.author-bio {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }
    .main_theme .author-container .author-details .author-desc {
        text-align: center;
    }
    ol.inline-ol,
    ul.inline-ul {
        columns: 1 !important;
    }
    .inline-search input {
        width: 85% !important;
        border-radius: 5px !important;
    }
}
p:empty {
    display: none;
}
.page-template-name-generator header.site-header {
    background: #000 !important;
}
.page-template-name-generator section#main-content {
    padding-top:80px;
}
@media (max-width:991px){
    .page-template-name-generator section#main-content {
        padding-top:48px;
    }
}
@media (max-width:1200px){
    .step-item:before {
        display: block;
        position: relative;
        text-align: center;
        left: 0 !important;
        top: 0 !important;
        margin-top: 10px;
        font-size: 64px;
        line-height: 68px;
    }
}
:target::before {
    content: '';
    display: block;
    height:      110px;
    margin-top: -110px;
}
@media (max-width:991px){
    #siteNavItems .dropdown-menu {
        display: block;
        padding: 0;
        border: 0;
    }
    #siteNavItems a#navbarDropdown {
        display: none;
    }
    #siteNavItems ul.submenu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    #siteNavItems ul.submenu {
        display: block;
        max-height: unset;
    }
    #siteNavItems .dropdown-menu .py-xl-4 {
        padding: 0 !important;
        margin-bottom: 10px;
    }
    #siteNavItems .sub-submenu {
        background: no-repeat;
        height: auto;
        display: block;
    }
    #siteNavItems .main-level-nav li a {
        margin: 0;
    }
    #siteNavItems ul.submenu li a {
        font-size: 0.9rem;
    }
    header.site-header div#siteNavItems {
        padding-top: 10px;
    }
    header.site-header .main-level-nav li.nav-item:hover a {
        text-decoration: none;
    }
    #siteNavItems .sub-submenu .container {
        padding: 0;
        margin: 0;
    }
}

.footer-top-holder {
    padding-bottom: 25px;
}
.footer-bottom-holder {
    margin-top: 10px;
}
.site-footer {
    background-color: #000;
    padding-bottom: 1rem;
}
.site-footer .social-media-links {
    text-align: center;
    margin-bottom: 0;
}
.site-footer .social-media-links a.social-icon {
    display: inline-block;
    width: 26px;
    margin: 0 10px;
}
.site-footer .typography-copy {
    margin-bottom: 0;
    font-size: 12px;
    color: #fff;
}
.site-footer .products-list .product-logo {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 3px 6px;
}
@media only screen and (max-width: 480px) {
    .site-footer .products-list{
        margin-top: 15px;
    }
    .site-footer .products-list .product-logo {
        width: 100%;
    }
    .site-footer .products-list a.product-logo img {
        width: auto;
        margin: 3px auto;
    }
}
.site-footer .footer-bottom-holder p.production-title {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 5px;
}
.site-footer .products-list {
    margin: 0 0 20px 0;
}
.site-footer .products-list a.product-logo img {
    height: 28px;
    width: auto;
}
.site-footer .products-list a.product-logo.product-logo--boxador img {
    height: 15px;
    margin-top: -3px;
}
.site-footer .products-list a.product-logo.product-logo--hatchly img {
    height: 30px;
}
.site-footer .products-list a.product-logo.product-logo--nameoyster img {
    height: 24px;
}
.searchButton span {
    display: block;
}
body.new--design .header {
    background-image: none !important;
    color: #000;
    height: 100vh;
    overflow-y: hidden;
}
body.new--design .inner-header p {
    color: #000;
}
header.site-header {
    background: #f7f7f7;
    border-bottom: 1px solid #000;

}
.hero-image-container {
    padding-top: 5rem;
}
.hero-image-container .hero-image {
    max-width: 100%;
    width: 100%;
}
body.new--design .inner-header .common-terms {
    max-width: 620px;
    margin-top: 20px;
}
body.new--design .inner-header .common-terms .round_blackbtn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 8px 20px;
    text-transform: lowercase;
}
body.new--design .header .searchBox,
body.new--design .pageFold .inline-search {
    border-radius: 50px;
    border: 1px solid #000;
    box-shadow: #c6c6c6 0 0 15px;
    display: inline-block;
    width: 95%;
    max-width: 640px;
}
body.new--design .pageFold .inline-search {
    box-shadow: #c3c3c3 0 0 18px;
    width: 100%;
    max-width: 820px;
    margin: 20px 0;
}
body.new--design .header .searchBox input[type=text],
body.new--design .pageFold .inline-search input[type=text] {
    border-radius: 50px;
    background-color: transparent;
    margin-bottom: 0px;
    max-width: calc(100% - 170px);
    width: calc(100% - 170px);
    padding: 16px;
}
body.new--design .pageFold .inline-search input[type=text] {
    border: unset;
    margin-right: auto;
    max-width: calc(100% - 185px);
    width: calc(100% - 185px);
    font-size: 18px;
}
body.new--design .header .searchButton.browseButton,
body.new--design .pageFold .inline-search .searchButton {
    border-radius: 50px !important;
    margin: 7px;
    padding: 10px 15px 10px 30px;
    min-width: auto !important;
    width: auto !important;
}
body.new--design .pageFold .inline-search .searchButton {
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    line-height: 24px;
}
body.new--design .inner-header {
    z-index: 2;
    position: relative;
}
body.new--design .step-item:before {
    opacity: 1;
}
body.new--design .header .hero-image {
    margin-top: -50px;
}
body.new--design .inner-header {
    padding-bottom: 0px;
}
body.new--design .searchButton img {
    display: inline-block;
}
body.new--design .searchButton span {
    display: inline-block;
    font-weight: 400;
}
body.new--design .step-item.step-item-2 {
    margin-top: 0;
}
body.new--design .pageFold .inline-search .searchButton img {
    display: none !important;
}
.pageFold .in-page-header h1 {
    max-width: 100%;
}
.pageFold .in-page-header h1 {
    max-width: 100%;
    width: 100%;
    font-size: 52px;
    line-height: 58px;
}
.pageFold .in-page-header p {
    font-weight: 400;
}
.pageFold .in-page-header .article-status a {
    color: #000;
}
@media only screen and (max-width: 1199px) {
    body.new--design .header .hero-image {
        margin-top: -30px;
    }
}
@media only screen and (max-width: 980px) {
    body.new--design .header .hero-image {
        margin-top: -15px;
    }
}
@media only screen and (max-width: 849px) {
    body.new--design .header {
        position: relative;
        min-height: 650px;
    }
    body.new--design .header .hero-image {
        margin-top: 0px;
        position: absolute;
        bottom: -50px;
    }
    body.new--design .inner-header {
        height: 78vh;
        min-height: 550px;
    }
    .inner-header .menuUnderspacer {
        height: 70px;
    }
    body.new--design .header .h_80 {
        height: 40px;
    }
}
@media only screen and (max-width: 780px) {
    body.new--design .header .searchBox {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .pageFold .in-page-header h1 {
        font-size: 46px;
        line-height: 52px;
    }
}
@media only screen and (max-width: 750px) {
    body.new--design .inner-header h1 {
        font-size: 24px;
        line-height: 28px;
        padding: 0 10px;
    }
    body.new--design .inner-header p {
        font-size: 18px;
        line-height: 22px;
    }
    body.new--design .inner-header .common-terms .round_blackbtn {
        padding: 6px 12px;
        font-size: 16px;
        line-height: 18px;
        margin: 5px;
    }
}
@media only screen and (max-width: 640px) {
    .pageFold .in-page-header h1 {
        font-size: 32px;
        line-height: 38px;
    }
    .pageFold .main_theme h2, 
    .pageFold .main_theme h2 b, 
    .pageFold .main_theme h2 strong {
        font-size: 24px;
        line-height: 28px;
    }
    .pageFold .main_theme h3, 
    .pageFold .main_theme h3 b, 
    .pageFold .main_theme h3 strong, 
    .pageFold .large_h3 {
        font-size: 22px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 480px) {
    body.new--design .header .hero-image {
        bottom: -30px;
    }
    body.new--design .searchButton span {
        display: none;
    }
    body.new--design .header .searchButton.browseButton,
    body.new--design .pageFold .inline-search .searchButton {
        padding: 5px;
    }
    body.new--design .header .searchBox input[type=text] {
        max-width: calc(100% - 70px);
        width: calc(100% - 70px);
        padding: 12px;
        font-size: 16px;
    }
    body.new--design .pageFold .inline-search input[type=text] {
        max-width: calc(100% - 85px);
        width: calc(100% - 85px);
        padding: 12px;
        font-size: 16px;
    }
    body.new--design .header .searchBox {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    body.new--design .pageFold .inline-search .searchButton span {
        display: none;
    }
    body.new--design .pageFold .inline-search .searchButton img {
        display: inline-block !important;
    }
}
@media (min-width: 1300px) and (max-width: 1380px) and (min-height: 760px) and (max-height: 780px) {
    body.new--design .header {
        height: 116vh;
    }
}
aside#tableOfContents {
    z-index: 1;
}
@media (max-width:750px){
    :target::before {
        height:      150px;
        margin-top: -150px;
    }
    header.site-header {
        height: 7rem;
    }
    header.site-header div#siteNavItems {
        top: 7rem;
    }
    .hero-image-container {
        padding-top: 7rem;
    }
}
form#searchBoxForm {
    background: #f9f9f9;
    border-radius: 50px;
}
@media only screen and (max-width: 849px) and (min-width: 751px) and (max-height: 1050px) {
    body.new--design .header .hero-image {
        bottom: unset;
    }
}
@media only screen and (max-width: 750px) and (min-width: 441px) and (max-height: 850px) {
    body.new--design .header .hero-image {
        bottom: -100px;
    }
}
@media only screen and (max-width: 750px) and (min-width: 441px) and (max-height: 770px) {
    body.new--design .header .hero-image {
        bottom: unset;
    }
}
@media only screen and (max-width: 440px) and (max-height: 700px) {
    body.new--design .header .hero-image {
        bottom: unset;
    }
}
@media only screen and (max-height: 700px) {
    body.new--design .header {
        position: relative;
        min-height: 650px;
    }
}
@media only screen and (min-width: 850px) and (max-height: 750px) {
    body.new--design .header {
        position: relative;
        min-height: 750px;
    }
}