/*

    Fonts
    * Headings/bold -- font-family: Overlock, Fira Sans, sans-serif;
    * Paragraph sans-serif -- font-family: Fira Sans, sans-serif;

    .Baby Colors:

    azure = #1ca4e8 / rgb(28,164,232)
    bright-lilac = #db6df2 / rgb()
    charcoal-grey = #464649 / rgb()
    dull-yellow = #f2ee57 / rgb()
    light-blue = #9adbef / rgb()
    light-violet = #e6aff9 / rgb()
    nice-blue = #0d7dbc / rgb()
    pale-blue = #d5f0f7 / rgb()
    pale-lavender = #f4e0fc / rgb()
    pinky-purple = #b142cc / rgb()
    warm-purple = #7f2b9e / rgb()
    white = #ffffff / rgb(255,255,255)

    Featured Websites background colors:
    Light Green = #b4fcdb / rgb(180,252,219)
    Lavender = #f4e0fc / rgb(244,224,252)
    Pale Blue = #d5f0f7 / rgb(213,240,247)
    Light Blue = #9adbef / rgb(154,219,239)
    Light Violet = #e6aff9 / rgb(230,175,249)

*/

/*  Reset
    Minified normalize.css - http://github.com/necolas/normalize.css */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:600;}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}


/* ------------------------------------
    Foundation
------------------------------------ */

/* Box-sizing */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    line-height: 23px;
    color: #444444;

    /* Prevent iOS Safari from adjusting small font sizes */
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

main {
    padding: 85px 0 65px 0;
    flex: 1 0 auto;
    position: relative;
}

a {
    color: #1ca4e8;
}

a:hover,
a:focus {
    color: #0d7dbc;
}

/* Hover transitions*/
button,
input,
a,
textarea,
button:hover,
button:focus,
input:hover,
input:focus,
a:hover,
a:focus,
textarea:hover,
textarea:focus {
    -webkit-transition: color .25s, background .25s, padding .25s;
    -moz-transition: color .25s, background .25s, padding .25s;
    -ms-transition: color .25s, background .25s, padding .25s;
    -o-transition: color .25s, background .25s, padding .25s;
    transition: color .25s, background .25s, padding .25s;
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    padding-top: 0;
    font-size: 100%;
}

p {
    margin-top: 0;
    padding-top: 0;
    color: #444444;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Sup (for Trademark/TM) */
sup {
    font-size: 1.4rem;
    margin-left: 3px;
    top: -0.75em;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

hr {
    color: #eee;
    border: 0;
    border-bottom: 1px solid #eee;
    height: 0;
}


/* ------------------------------------
    Layout
------------------------------------ */

.container,
.container-wide {
    position: relative;
    margin: 0 auto;
}

.container {
    max-width: 860px;
}

.container-wide {
    max-width: 1000px;
}

@media screen and (max-width: 1100px) {
    .container,
    .container-wide {
        max-width: none;
        width: 100%;
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media screen and (max-width: 960px) {
    .container {
        max-width: none;
        width: 100%;
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media screen and (max-width: 767px) {
    .container,
    .container-wide {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.row,
.grid {
    display: flex;
    flex-direction: row;
    position: relative;
}

.row {
    justify-content: space-between;
}

.row__justify-content__center {
    justify-content: center;
}

.grid {
    flex-wrap: wrap;
    justify-content: center;
}

.flex__justify-center {
    justify-content: center;
}

.flex__justify-space-between {
    justify-content: space-between;
}

.flex__justify-space-evenly {
    justify-content: space-evenly;
}

.flex__align-items__top {
    align-items: flex-start;
}

.flex__align-items__center {
    align-items: center;
}

.flex__1 {
    flex: 1;
}

.main-content {
    position: relative;
    padding: 60px 20px;
    min-height: 600px;
}

.upper-content {
    position: relative;
}

.col {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}

.col-1-2 {
    width: 50%;
}

.col-1-3 {
    width: 33.333333%;
}

.col-2-3 {
    width: 66.666666%;
}

.divider {
    height: 3px;
    border: 0;
    border-radius: 1.5px;
    background: -webkit-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: -moz-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: -ms-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: -o-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: linear-gradient(to right, #d5f0f7, #f4e0fc);
}

.divider-text-overlay {
    position: relative;
    text-align: center;
}

.divider-text-overlay span {
    font-weight: 300;
    font-size: 20px;
    line-height: 44px;
    display: inline-block;
    background-color: #fff;
    padding: 5px 25px;
    margin: 0 auto;
    z-index: 10;
}

.divider-text-overlay:after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    top: calc(50% - 1.5px);
    left: 0;
    right: 0;
    z-index: -1;
    height: 3px;
    border: 0;
    border-radius: 1.5px;
    background: -webkit-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: -moz-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: -ms-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: -o-linear-gradient(to right, #d5f0f7, #f4e0fc);
    background: linear-gradient(to right, #d5f0f7, #f4e0fc);
}

@media only screen and (max-width: 584px) {
    .divider-text-overlay:after {
        display: none;
    }
}


.logo {
    width: 86px;
}



/* ------------------------------------
    Lists
------------------------------------ */

/* Reset a <ul> or <ol> */
.list__reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list__bulleted,
.list__bulleted ul {
    list-style: none;
    margin: 10px 0 30px 0;
    padding: 0;
}

.list__bulleted li {
    margin-bottom: 1rem;
    padding-left: 20px;
    min-height: 20px;
    line-height: 24px;
    background-image: url('/assets/img/pink-heart-bullet.png');
    background-image: -webkit-linear-gradient( transparent,  transparent), url('/assets/img/pink-heart-bullet.svg');
    background-image:  linear-gradient( transparent,  transparent), url('/assets/img/pink-heart-bullet.svg');
    background-repeat: no-repeat;
    background-position: 0 .4em;
    background-size: 12px;
}

/* Lists in columns */
.list__2-col > li,
.list__3-col > li,
.list__4-col > li {
    vertical-align: top;
    display: inline-block;
    padding-right: 20px;

    width: 100%;
}

@media only screen and (min-width: 450px) {

    .list__3-col li,
    .list__4-col li {
        width: 48%;
        width: -webkit-calc(50% - 5px);
        width: calc(50% - 5px);
    }
}

@media only screen and (min-width: 600px) {
    .list__2-col > li {
        width: 48%;
        width: -webkit-calc(50% - 5px);
        width: calc(50% - 5px);
    }

    .list__3-col > li,
    .list__4-col > li {
        width: 31.33%;
        width: -webkit-calc(33.33% - 5px);
        width: calc(33.33% - 5px);
    }
}

@media only screen and (min-width: 800px) {
    .list__4-col > li {
        width: 23%;
        width: -webkit-calc(25% - 5px);
        width: calc(25% - 5px);
    }
}


/* ------------------------------------
    Table
------------------------------------ */

.table__responsive {
    position: relative;
    margin-bottom: 36px;
}

.table__responsive li {
    text-align: left;
    display: flex;
    justify-content: space-evenly;
    border-left: 1px solid #ccc;
}

.table__responsive li > div {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.table__responsive--header-row {
    font-weight: 600;
    background-color: #7f2b9e;
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.table__responsive li.table__responsive--header-row > div {
    border-right: 0;
}


/* ------------------------------------
    Buttons
------------------------------------ */

.button {
    display: inline-block;
    position: relative;
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 1px 4px 0 #c2c4c6;
    background-position: left center;
    background-size: 100%;
}

a.button {
    text-decoration: none;
}

.button:hover,
.button:focus {
    color: #fff;
}

.button-container {
    padding: 40px 0;
}

.button-primary {
    /*background-image: linear-gradient(to right, #1ca4e8, #db6df2);*/
    background-image: linear-gradient(to right, #1ca4e8, #db6df2, #db6df2, #1ca4e8);
    background-position: left center;
    background-size: 300% 200%;
    -webkit-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -moz-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -o-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    transition: background-position .75s ease-in-out, box-shadow .27s ease;
}

.button-primary:hover,
.button-primary:focus {
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.25);
    background-position: right center;
    -webkit-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -moz-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -o-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    transition: background-position .75s ease-in-out, box-shadow .27s ease;
}

.button-secondary {
    background-image: linear-gradient(to right, #db6df2, #1ca4e8, #0d7dbc);
}

.button-blue {
    background-color: #1ca4e8;
}

.button-blue:hover,
.button-blue:focus {
    background-color: #0d7dbc;
}


@media only screen and (max-width: 599px) {
    .button {
        width: auto;
        max-width: 90%;
    }
}

@media only screen and (max-width: 525px) {
    .button {
        font-size: 20px;
    }
}

@media only screen and (max-width: 370px) {
    .button {
        font-size: 18px;
    }
}


/* ------------------------------------
    Links
------------------------------------ */

.link__external:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    margin-left: 4px;
}

.cssmask .link__external:after {
    background-color: #fcf9e0;
    -webkit-mask-image: url('/assets/img/baseline-open_in_new-24px.svg');
    mask-image: url('/assets/img/baseline-open_in_new-24px.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right center;
    mask-position: right center;
    -webkit-mask-size: 16px 16px;
    mask-size: 16px 16px;
}

.cssmask .link__external:hover:after,
.cssmask .link__external:focus:after {
    background-color: #f2ee57;
}

.no-cssmask .link__external:after,
.no-cssmask .link__external:hover:after,
.no-cssmask .link__external:focus:after {
    background-color: transparent;
    background-image: url('/assets/img/baseline-open_in_new-24px.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px 16px;
}


/* ------------------------------------
    Utility
------------------------------------ */

.s__margin-bottom { margin-bottom: 20px; }
.s__margin-top { margin-top: 20px; }
.s__margin-left { margin-left: 20px; }
.s__margin-right { margin-right: 20px; }

.s__margin-top-neg { margin-top: -20px; }

.s__margin-bottom--half { margin-bottom:10px; }

.s__margin-bottom--large { margin-bottom: 30px; }
.s__margin-top--large { margin-top: 30px; }

.s__margin-bottom--xlarge { margin-bottom: 60px; }
.s__margin-top--xlarge { margin-top: 60px; }

.s__margin-none { margin: 0; }
.s__margin-bottom-none { margin-bottom: 0; }
.s__margin-top-none { margin-top: 0; }
.s__margin-left-none { margin-left: 0; }
.s__margin-right-none { margin-right: 0; }

.s__padding-bottom { padding-bottom: 20px; }
.s__padding-top { padding-top: 20px; }
.s__padding-left { padding-left: 20px; }
.s__padding-right { padding-right: 20px; }

.s__padding-none { padding: 0; }
.s__padding-bottom-none { padding-bottom: 0; }
.s__padding-top-none { padding-top: 0; }
.s__padding-left-none { padding-left: 0; }
.s__padding-right-none { padding-right: 0; }

.s__padding-top--large {
    padding-top: 30px;
}

.s__padding-bottom--large {
    padding-bottom: 30px;
}

.s__left { text-align: left; }
.s__center { text-align: center; }
.s__right { text-align: right; }

.s__flip-horizontal {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.l__width-medium {
    width: 400px;
    margin: 0 auto;
}

.l__width-medium-large {
    width: 500px;
    margin: 0 auto;
}

@media only screen and (max-width: 550px) {
    .l__width-medium-large {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .l__width-medium {
        width: 100%;
    }
}


/* ------------------------------------
    Typography
------------------------------------ */

.page-title,
.heading__1,
.heading__2,
.heading__3,
.heading__4,
.heading__6 {
    font-family: "Overlock", sans-serif;
    font-weight: 900;
}

.heading__5 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
}

.page-title {
    margin-top: 90px;
    text-align: center;
    font-size: 46px;
    text-shadow: 0px 2px 4px rgba(0,0,0,.2);
}

@media only screen and (max-width: 599px) {
    .page-title {
        margin-top: 30px;
        font-size: 24px;
    }
}

.heading__1 {
    font-size: 32px;
}

.heading__2 {
    font-size: 30px;
    line-height: 38px;
}

.heading__3 {
    font-size: 26px;
    line-height: 33px;
}

.heading__4 {
    font-size: 21px;
}

.heading__5 {
    font-size: 18px;
}

.heading__6 {
    font-size: 16px;
}

.heading--pinky-purple {
    font-family: "Fira Sans", sans-serif;
    color: #b142cc;
    font-weight: 300;
}

.t__normal {
    font-size: 16px;
    line-height: 21px;
}

.t__bold {
    font-weight: 400;
}

.t__small {
    font-size: 12px;
    line-height: 18px;
}

.t__large {
    font-size: 18px;
    line-height: 28px;
}

.t__larger {
    font-size: 21px;
    line-height: 28px;
}


@media only screen and (max-width: 900px) {
    .t__large {
        font-size: 18px;
    }
}


/* ------------------------------------
    Icons & Images
------------------------------------ */

.icon {
    height: 60px;
    width: 60px;
}

.icon__bg--circle {
    float: left;
    display: block;
    margin-right: 16px;
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    height: 54px;
    width: 54px;
    box-shadow: 0px 2px 4px rgba(0,0,0,.15);
}

.icon__bg--circle .icon {
    display: inline-block;
    height: 33px;
    width: 33px;
}

.image__email--abuse {
    width: 140px;
    height: 16px;
}


/* ------------------------------------
    Backgrounds
------------------------------------ */

.header-bg {
    background-image: -webkit-linear-gradient(113deg, #1ca4e8, #db6df2);
    background-image: -moz-linear-gradient(113deg, #1ca4e8, #db6df2);
    background-image: -ms-linear-gradient(113deg, #1ca4e8, #db6df2);
    background-image: -o-linear-gradient(113deg, #1ca4e8, #db6df2);
    background-image: linear-gradient(113deg, #1ca4e8, #db6df2);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


@media only screen and (max-width: 767px) {
    .header-bg {
        background-image: -webkit-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: -moz-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: -ms-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: -o-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: linear-gradient(113deg, #1ca4e8, #db6df2);
    }
}

@media only screen and (max-width: 450px) {
    .header-bg {
        background-image: -webkit-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: -moz-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: -ms-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: -o-linear-gradient(113deg, #1ca4e8, #db6df2);
        background-image: linear-gradient(113deg, #1ca4e8, #db6df2);
    }
}

.background__textured {
    background: url('../img/repeating-bg-cream-dust.png');
}

.opaque-bg {
    background-color: rgba(255,255,255,.3);
}


/* ------------------------------------
    Featured Websites
------------------------------------ */

.featSites:after {
    content: '';
    display: table;
    clear: both;
}

.featSites__nav {
    display: block;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.featSites__nav-heading:after {
    content: '|';
    font-size: 2rem;
    color: #DDDDDD;
    display: inline-block;
    margin-left: 5px;
    margin-right: 10px;
}

.featSites__nav-heading,
.featSites__nav-list,
.featSites__nav-list li {
    display: inline-block;
}

.featSites__nav button:hover,
.featSites__nav button:focus {
    text-decoration: underline;
    outline: none;
}


/* Square grid */

.grid__square-item {
    float: left;
    position: relative;
    overflow: hidden;
    width: 100%;

    background-color: #e6aff9; /* Light Violet */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    cursor: pointer;

    -webkit-transition: .75s ease-in-out;
    -ms-transition: .75s ease-in-out;
    -moz-transition: .75s ease-in-out;
    -o-transition: .75s ease-in-out;
    transition: .75s ease-in-out;
}

.grid__square-item:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.ie8 .grid__square-item {
    background-image: none !important;
}

/* Grid background-colors */
/* Category: Dealer */
.grid__square-item:nth-of-type(odd) {
    background-color: #b4fcdb; /* Light Green */
}

/* Category: Manufacturer */
.grid__square-item:nth-of-type(4n+3) {
    background-color: #f4e0fc; /* Lavender */
}

/* Category: Services */
.grid__square-item:nth-of-type(3n+2) {
    background-color: #d5f0f7; /* Pale Blue */
}

/* Category: News */
.grid__square-item:nth-of-type(5n),
.grid__square-item:nth-of-type(7n+1) {
    background-color: #9adbef; /* Light Blue */
}

.grid__square-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: -5;
    opacity: 0;

    -moz-transform: scale(.25);
    -webkit-transform: scale(.25);
    -o-transform: scale(.25);
    -ms-transform: scale(.25);
    transform: scale(.25);
}

.csstransition .grid__square-overlay {
    -webkit-transition: .17s ease-out;
    -ms-transition: .17s ease-out;
    -moz-transition: .17s ease-out;
    -o-transition: .17s ease-out;
    transition: .17s ease-out;
}

.no-touchevents .grid__square-item:hover .grid__square-overlay,
.touchevents .show-overlay .grid__square-overlay {
    background-color: rgb(25, 24, 24);
    background-color: rgba(25, 24, 24, 0.85);

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#191818+40,191818+100&0.9+40,0.4+100 */
    background: -moz-linear-gradient(125deg, rgba(25,24,24,0.9) 40%, rgba(25,24,24,0.6) 100%);
    background: -webkit-linear-gradient(125deg, rgba(25,24,24,0.9) 40%,rgba(25,24,24,0.6) 100%);
    background: linear-gradient(125deg, rgba(25,24,24,0.9) 40%,rgba(25,24,24,0.6) 100%);

    display: block;
    z-index: 5;
    opacity: 1;
    height: 100%;
    width: 100%;

    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);

    -webkit-transition: .17s ease-out;
    -ms-transition: .17s ease-out;
    -moz-transition: .17s ease-out;
    -o-transition: .17s ease-out;
    transition: .17s ease-out;
}

.grid__square-link {
    display: table-cell;
    vertical-align: middle;

    text-decoration: none !important;
}

.grid__square-link,
a.grid__square-link:hover,
a.grid__square-link:focus {
    color: #fff;
}

.ie8 .grid__square-link {
    color: #3B50EA;
}

.grid__square-content {
    text-align: center;
    display: table;
    width: 100%;
    height: 100%;
}

.grid__square-content h2,
.grid__square-content p {
    font-weight: 300;
    color: #fff;
}

.grid__square-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.grid__square-content p {
    font-size: 20px;
}

.featSites__item-category,
.featSites__item-location {
    font-size: 1.8rem;
    margin-bottom: 0;
}

@media only screen and (min-width: 450px) {
    .grid__square-item {
        width: 50%;
    }
}

@media only screen and (max-width: 799px) {
    .featSites__nav-heading,
    .featSites__nav-list,
    .featSites__nav-list li {
        display: block;
        border-right: none;
    }

    .featSites__nav-list li {
        text-align: center;
        margin: 5px auto;
    }

    .featSites__nav-list {
        display: none;
    }

    .featSites__nav-heading {
        cursor: pointer;
    }

    .featSites__nav-heading:after {
        display: none;
    }

    .featSites__nav-heading .dropdown__button {
        display: inline-block;
        vertical-align: text-bottom;
    }
}

/* Wider than 800px - Most of our tablet/desktop styles */
@media only screen and (min-width: 800px) {

    .featSites__nav-list {
        display: inline-block !important;
    }

    .featSites__nav-heading .dropdown__button {
        display: none;
    }

    .featSites__nav-list li:not(:last-of-type):after {
        content: '|';
        font-size: 2rem;
        color: #DDDDDD;
        display: inline-block;
        margin-left: 5px;
        margin-right: 10px;
    }

    .grid__square-item {
        width: 50%;
    }

}

/* Switch to 4 per row sooner than 1400px */
@media only screen and (min-width: 1000px) {

    .grid__square-item {
        width: 25%;
    }

    .grid__square-item {
        font-size: 1.8rem;
    }

}


/* ------------------------------------
    Forms
------------------------------------ */

label,
input,
button {
    display: block;
}

label {
    margin-bottom: 5px;
    font-weight: 600;
}

/* iOS reset */
textarea,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="search"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="search"],
textarea {
    margin-bottom: 28px;
    border-radius: 5px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
}

textarea {
    height: 100px;
}

.form__basic {
    position: relative;
}

.form__basic-field {
    margin-bottom: 20px;
}

.form__basic-input,
.form__basic-textarea {
    border: solid 1px #e1e3e5;
    width: 100%;
    padding: 7px;
}

.form__basic-input:hover,
.form__basic-textarea:hover {
    border-color: #DB6DF2;
}

.form__basic-button {
    width: 139px;
    height: 44px;
}

.form__input-group {
    display: flex;
}

.form__input-group > .form__basic-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 12px;
}

.form__input-group > button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 0;
    box-shadow: none;
    font-size: 18px;
}

.form__newsletter {
    position: relative;
    font-family: "Fira Sans", sans-serif;
}

.form__newsletter-input {
    border: 0;
    height: 44px;
    padding: 20px 15px;
    width: 100%;
}

.form__newsletter-button {
    font-size: 16px;
    width: 139px;
    height: 44px;
}

.form__input-group > .form__newsletter-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}



/* Honeypot field */
.form__name-field {
    display: none;
}

.asterisk {
    color: #ff0000;
}


/* ------------------------------------
    Alerts
------------------------------------ */

.alert {
    text-align: center;
    margin: 3rem auto;
}

.alert p {
    background-color: #dddddd;
    display: inline-block;
    padding: .5em 1em;
    font-weight: bold;
}

.alert__error p {
    background-color: #F9E8E4;
    color: #E5461C;
}

.alert__success p {
    background-color: #D9EDFC;
    color: #193C93;
}


/*=================================

Register, domain search

"domain search" shortened to "ds"
(classes are prefixed with .ds__)

===================================*/

.ds .row {
    padding-top: 20px;
}

.avail-prefix-input {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    height: 45px;
    background-color: #fff;
    color: #222;
    font-weight: 400;
    padding-left: 15px;
    font-size: 14px;

    position: absolute;
    left: 0;
    z-index: 0;
    width: 50px;
    opacity: 0;
    background: none;
    padding-right: 0;
    color: #222;
    -webkit-transition: width .25s;
    -moz-transition: width .25s;
    -ms-transition: width .25s;
    -o-transition: width .25s;
    transition: width .25s;
}

.prefix-active .avail-prefix-input {
    width: 122px;
    opacity: 1;
    padding-top: 14px;
    padding-bottom: 20px;
    z-index: 555;
}

/* Compensate for visible label when placeholders aren't supported */
.no-placeholder .avail-prefix-input {
    top: 24px;
}

.prefix-active #ds__form-input {
    padding-left: 94px;
}

.ds__form-input {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-right: 1px solid #e1e3e5;
}

.ds__form-input.is-empty {
    border-color: #C4261E;
    background-image: -webkit-linear-gradient( transparent, transparent), url('/assets/img/exclaim-red-bold.svg');
    background-image: linear-gradient( transparent, transparent), url('/assets/img/exclaim-red-bold.svg');
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-position: top 50% right 15px;
    -webkit-animation: iconSlideIn .33s cubic-bezier(.05,.12,.47,1.33) 1 forwards;
    animation: iconSlideIn .33s cubic-bezier(.05,.12,.47,1.33) 1 forwards;
}

.ds__form-submit {
    width: 139px;
    height: 44px;
    margin-left: 0;
    margin-right: 0;
}

@media only screen and (min-width: 600px) {
    .prefix-active #ds__form-input {
        padding-left: 126px;
    }

    .ds__form-input {
        padding: 15px 20px;
        font-size: 18px;
    }

    .ds__form-submit {
        height: 54px;
    }



    .avail-prefix-input {
        left: 10px;
        font-size: 18px;
    }

    .prefix-active .avail-prefix-input {
        padding-top: 27px;
    }
}


/* Cart status/count */
.ds__cart-status {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: block;
    color: #1ca4e8;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
}

.ds__cart-status:hover,
.ds__cart-status:focus {
    text-decoration: underline;
    outline: none;
}

.icon__cart {
    font-size: 12px;
    vertical-align: middle;
    margin-left: 2px;
}

@media only screen and (min-width: 600px) {
    .ds__cart-status {
        font-size: 18px;
    }

    .icon__cart {
        font-size: 15px;
    }
}

.ds__results {
    font-family: "Fira Sans", sans-serif;
    padding-bottom: 65px;
}

@media only screen and (max-width: 599px) {
    .ds__results {
        padding-bottom: 40px;
    }

    .ds__results .heading__3 {
        font-size: 21px;
        line-height: 1;
    }

    .ds__cart-status {
        margin: 0 auto 30px auto;
    }
}

@media only screen and (min-width: 600px) {
    .ds__results-heading {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
}

/* Search results and suggestions */
.ds__results-list {
    margin-top: 10px;
    margin-bottom: 40px;
}

.ds__results-item {
    font-size: 18px;
    font-weight: 600;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.ds__results-item:not(:last-of-type) {
    border-bottom: solid 2px #ddd;
}

.ds__results-item:hover {
    color: #C4261E;
}

@media only screen and (max-width: 599px) {
    .ds__results-item {
        padding: 13px 15px;
    }
}

.ds__add {
    margin: 0;
    padding: 7px 10px;
    width: 168px;
    font-size: 14px;
    vertical-align: middle;
    border: 2px solid #1ca4e8;
    box-shadow: none;
}

.ds__add,
.ds__add.button:hover,
.ds__add.button:focus {
    color: #1ca4e8;
}

.ds__in-cart .ds__add {
    background-color: #1ca4e8;
}

.ds__in-cart .ds__add,
.ds__in-cart .ds__add.button:hover,
.ds__in-cart .ds__add.button:focus {
    color: #fff;
}

.icon__add-to-cart {
    font-weight: 600;
    font-style: normal;
}

/* Unavailable button */
.ds__unavailable .ds__add[disabled],
.ds__unavailable .ds__add[disabled] {
    background-color: #929496;
    border-color: #929496;
    box-shadow: none;
    color: #fff;
}

.ds__results-domain {
    color: #464649;
    display: inline-block;
    vertical-align: middle;
    text-transform: lowercase;
    /* Wrap long domain names, except for TLD (see .ds__tld below) */
    white-space: pre-line;
    -ms-word-break: break-all;
    word-break: break-all;
    word-wrap: break-word;
}

.ds__results-domain span {
    margin-right: 5px;
}

.ds__results-domain .fas {
    color: #4ed1a1;
}

.ds__in-cart .ds__results-domain {
    color: #db6df2;
    margin-right: 5px;
}

.ds__unavailable .ds__results-domain {
    color: #929496;
}

.ds__unavailable .ds__results-domain .fas {
    color: inherit;
}


@media only screen and (max-width: 599px) {
    .ds__results-domain {
        font-size: 14px;
    }

    .ds__add {
        width: 93px;
        font-size: 12px;
        padding: 8px 10px;
    }
}



/* Keep TLD together instead of breaking between letters */
.ds__tld {
    white-space: nowrap;
}

.ds__available-registrars {
    padding: 0 10px;
}

/* Checkout options */
.ds__checkout-list {
    display: flex;
    text-align: center;
}

.ds__checkout-registrar {
    display: block;
    vertical-align: top;
    width: 25%;
}

.ds__checkout-registrar .button {
    width: 100%;
    border-color: #fff;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    padding-top: 5px;
    padding-bottom: 5px;
}

.ds__checkout-registrar .button:hover,
.ds__checkout-registrar .button:focus {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.ds__checkout-registrar img {
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 130px;
}

@media only screen and (max-width: 599px) {
    .ds__checkout .heading__3,
    .ds__checkout p {
        text-align: center;
    }

    .ds__checkout .heading__3 {
        margin-bottom: 10px;
    }

    .ds__checkout-list {
        display: block;
    }

    .ds__checkout-registrar {
        width: 250px;
        margin: 0 auto 10px auto;
    }
}

@media only screen and (min-width: 600px) {
    .ds__checkout-registrar:not(:last-of-type) {
        margin-right: 15px;
    }
}

/* Empty error styles */

@-webkit-keyframes iconSlideIn {
    0% {
        background-position: 3% -50%;
    }
    100% {
        background-position: 3% 50%;
    }
}

@keyframes iconSlideIn {
    0% {
        background-position: 3% -50%;
    }
    100% {
        background-position: 3% 50%;
    }
}

.search-box {
    padding: 36px 50px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.search-box a {
    color: #1ca4e8;
}

.search-box .list__bulleted > li {
    margin-bottom: 0;
}

.search-box ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-weight: 300;
    font-style: italic;
    color: #999;
    font-size: 18px;
}
.search-box ::-moz-placeholder { /* Firefox 19+ */
    font-weight: 300;
    font-style: italic;
    color: #999;
    font-size: 18px;
}
.search-box :-ms-input-placeholder { /* IE 10+ */
    font-weight: 300;
    font-style: italic;
    color: #999;
    font-size: 18px;
}
.search-box :-moz-placeholder { /* Firefox 18- */
    font-weight: 300;
    font-style: italic;
    color: #999;
    font-size: 18px;
}

@media only screen and (max-width: 599px) {
    .search-box {
        padding: 22px 20px;
        font-size: 14px;
    }

    .search-box h2 {
        font-size: 12px;
    }

    .search-box ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        font-size: 14px;
    }
    .search-box ::-moz-placeholder { /* Firefox 19+ */
        font-size: 14px;
    }
    .search-box :-ms-input-placeholder { /* IE 10+ */
        font-size: 14px;
    }
    .search-box :-moz-placeholder { /* Firefox 18- */
        font-size: 14px;
    }

    .search-box .form__input-group {
        display: block;
    }

    .search-box .form__basic-input {
        display: block;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        margin-bottom: 6px;
    }

    .search-box .form__input-group > button {
        display: block;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        max-width: none;
        width: 100%;
        margin: 0 0 10px 0;
        font-size: 14px;
    }
}


/* ------------------------------------
    Registrar Logos
------------------------------------ */

@media only screen and (max-width: 449px) {
    .reg__logos li img {
        display: block;
        margin: 0 auto;
    }
}



/* ------------------------------------
    Header
------------------------------------ */

.site-header {
    padding: 20px 0;
}

.site-header,
.site-header .page-title {
    color: #fff;
}

.site-header .row {
    justify-content: space-between;
}

.header-logo-container {
    position: relative;
    padding: 25px 0;
}

.site-logo {
    width: 110px;
    height: 39px;
}

@media screen and (max-width: 1040px) {
    .header-logo-container {
        padding: 25px 0;
    }
}

@media screen and (max-width: 800px) {
    .site-logo {
        width: auto;
        height: 30px;
    }
}

@media screen and (max-width: 599px) {
    .header-logo-container {
        padding: 5px 0;
    }

    .site-logo {
        width: 68px;
        height: auto;
    }
}




/* ------------------------------------
    Navigation - Header
------------------------------------ */

.nav-container a {
    color: #fff;
}

.nav-container .button__mobile-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 12px;
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #fff;
    background-color: transparent;
}

.nav-container .button__mobile-nav span span {
    display: inline-block;
    font-size: 13px;
    margin-left: 8px;
}

.nav-container .button__mobile-nav i {
    font-size: 15px;
}

.nav-container .button__mobile-nav i,
.nav-container .button__mobile-nav span span {
    vertical-align: middle;
}

.nav-container .button__mobile-nav span.menu-open {
    display: none;
}

.nav-container .button__mobile-nav span.menu-closed {
    display: inline-block;
}

.mobileToggled .nav-container .button__mobile-nav span.menu-open {
    display: inline-block;
}

.mobileToggled .nav-container .button__mobile-nav span.menu-closed {
    display: none;
}


.nav-container .button__mobile-nav:hover,
.nav-container .button__mobile-nav:focus {
    outline: none;
}

.top-level-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.top-level-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.top-level-nav a:hover,
.top-level-nav a:focus {
    text-decoration: underline;
    color: #f2ee57;
}

@media only screen and (min-width: 600px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-container .button__mobile-nav {
        top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .nav-container .button__mobile-nav {
        display: block
    }

    /* Hide until toggled visible */
    .site-nav.header-nav {
        display: none;
        padding-bottom: 1rem;
        position: absolute;
        top: 100%;
        margin-left: -20px;
        width: calc(100% + 40px);
        right: 0;
        left: 0;
        z-index: 999;
    }

    .site-nav.header-nav ul.top-level-nav {
        display: block;
        background-color: #0d7dbc;
        padding: 18px 17px;
    }

    .site-nav.header-nav ul.top-level-nav li {
        text-align: center;
    }

    .site-nav.header-nav ul.top-level-nav li a {
        display: block;
        color: #222;
        background-color: #fff;
        width: 100%;
        padding: 15px;
    }

    .site-nav.header-nav ul.top-level-nav li:not(:last-of-type) a {
        border-bottom: 1px solid #eee;
    }
}

@media only screen and (max-width: 601px) {
    .site-nav.header-nav {
        top: calc(100% + 18px);
    }
}

@media only screen and (min-width: 768px) {
    #header-main-nav {
        display: block !important;
    }

    .nav-container {
        padding: 0;
        margin-right: -20px;
    }

    .site-nav.header-nav.header-bg {
        background: transparent;
    }

    .top-level-nav a {
        margin: 0 20px;
    }
}

@media only screen and (min-width: 911px) {
    .nav-container {
    }
}




/* ------------------------------------
    Footer
------------------------------------ */

.site-footer {
    flex-shrink: 0;
    position: relative;
    z-index: 50;
    background-color: #333;
    color: #fff;
    padding-top: 44px;
    padding-bottom: 20px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #f2ee57;
    text-decoration: underline;
}

.site-footer .container {
    max-width: 1000px;
}

.site-footer .copyright {
    color: #fff;
}

.footer-logo {
    margin-bottom: 22px;
}

.site-footer--top {
    padding-bottom:24px;
}

.footer-logo-container {
    width: 100%;
    max-width: none;
}

.site-footer--bottom {
    padding: 24px 0 0 0;
    border-top: 1px solid #444;
}

@media only screen and (min-width: 451px) {
    .footer-logo-container {
        max-width: 370px;
    }
}

@media only screen and (max-width: 549px) {
    .footer-logo.logo {
        width: 68px;
    }
}

@media only screen and (max-width: 699px) {
    .footer-logo {
        margin: 0 auto 30px auto;
    }

    .site-footer--bottom {
        text-align: center;
    }

    .site-footer--bottom .container-wide > .row {
        display: block;
    }

    .site-footer .copyright {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .site-footer .copyright {
        text-align: center;
    }
}

@media only screen and (max-width: 999px) {
    .site-footer--top {
        padding-bottom: 44px;
    }

    .site-footer--top .row {
        display: block;
    }

    .footer-logo-container {
        text-align: center;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .site-footer--blocks {
        display: none;
    }
}


/* ------------------------------------
    Navigation - Footer
------------------------------------ */

.footer-nav h3 {
    font-family: "Fira Sans", sans-serif;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1 1 0;
}

.footer-nav > div {
    margin: 0 0 30px 0;
    text-align: center;
}

.footer-nav li {
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 0;
}

.site-footer--bottom .bottom-nav .row {
    justify-content: center;
}

.site-footer--bottom .bottom-nav li {
    margin-right: 10px;
    margin-left: 10px;
}

@media only screen and (max-width: 549px) {
    .footer-nav > div {
        width: 50%;
    }
}

@media only screen and (min-width: 550px) {
    .footer-nav {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .footer-nav > div {
        margin-right: 30px;
        margin-left: 30px;
        text-align: left;
    }
}

@media only screen and (min-width: 699px) {
    .site-footer--bottom .bottom-nav li {
        margin-right: 30px;
    }
}

@media only screen and (min-width: 999px) {
    .footer-nav {
        margin: 0 0 0 40px;
    }

    .footer-nav > div {
        margin: 0 0 0 10px;
        width: 25%;
    }
}


/* ------------------------------------
    Homepage
------------------------------------ */

.home-page .site-header {
    margin-bottom: -130px;
}

.home-title {
    width: 100%;
    margin-bottom: 86px;
    color: #fff;
}

.home-title .tagline {
    font-family: snicker, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.home-title .tagline__reg {
    font-size: 75%;
    top: -0.25em;
}
.home-title h2 {
    text-align: center;
    margin: 0 auto;
    max-width: 720px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-size: 21px;
    line-height: 28px;
}

@media only screen and (max-width: 800px) {
    .home-title {
        margin-bottom: 46px;
    }

    .home-title .page-title {
        margin-top: 35px;
    }

    .home-title h1 {
        font-size: 38px;
    }

    .home-title h1 sup {
        font-size: 10px;
        top: -1.2em;
    }

    .home-title h2 {
        font-size: 19px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 599px) {
    .home-title h1 {
        font-size: 24px;
    }

    .home-title h2 {
        font-size: 16px;
        line-height: 20px;
    }
}

.home-page .upper-content {
    color: #444;
    z-index: 10;
}

.home-page .notification-banner {
    position: relative;
    border-radius: 4px;
    padding: 40px 42px 40px 24px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 23px;
    opacity: 1;
    transition: all .2s ease;
}

.home-page .notification-banner.hide {
    opacity: 0;
    padding: 0;
    margin: 0;
    height: 0;
    transition: all .2s ease;
}

.home-page .notification-banner.hide img,
.home-page .notification-banner.hide div {
    display: none;
}

.home-page .notification-banner .close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

@media only screen and (max-width: 450px) {
    .home-page .notification-banner {
        padding: 30px 19px;
    }

    .home-page .notification-banner.row {
        display: block;
    }

    .home-page .notification-banner img {
        display: block;
        margin: 0 auto 15px auto;
    }

    .home-page .notification-banner div {
        width: 100%;
        text-align: center;
    }
}

.home-page main {
    padding: 0;
}

.home-page section.featured-sites {
    padding-right: 0;
    padding-left: 0;
}

.home-page section.ideas {
    padding-top: 190px;
    padding-bottom: 40px;
}

.home-page section.ideas h2 {
    margin-bottom: 10px;
}

.home-page section.ideas h3 {
    margin-bottom: 5px;
}

.home-page section.ideas .grid {
    justify-content: flex-start;
}

.home-page section.ideas li {
    margin-bottom: 28px;
    width: 100%;
    padding-right: 30px;
}

@media screen and (min-width: 585px) {
    .home-page section.ideas li {
        width: 50%;
    }
}

@media screen and (min-width: 1000px) {
    .home-page section.ideas li {
        width: 33.3333%;
    }
}

@media only screen and (max-width: 910px) {
    .home-page section.ideas .section--intro {
        text-align: center;
    }
}

@media only screen and (max-width: 800px) {
    .home-page section.ideas {
        padding-top: 160px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1050px) {
    .home-page section.ideas .icon__bg--circle {
        margin-bottom: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
    .home-page section.ideas .icon__bg--circle {
        margin-bottom: 12px;
    }
}

@media only screen and (min-width: 585px) and (max-width: 767px) {
    .home-page section.ideas .icon__bg--circle {
        margin-bottom: 36px;
    }
}

@media only screen and (max-width: 584px) {
    .home-page section.ideas .section--intro h2 {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 17px;
    }

    .home-page section.ideas .section--intro p {
        margin-bottom: 0;
    }

    .home-page section.ideas p {
        font-size: 15px;
        line-height: 20px;
    }

    .home-page section.ideas li {
        margin-bottom: 17px;
    }
}

.home-page section.partners {
    padding-top: 24px;
    padding-bottom: 10px;
}

.home-page section.partners li {
    padding: 10px 20px;
    text-align: center;
}

@media only screen and (max-width: 584px) {
    .home-page section.partners {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .home-page section.partners .divider-text-overlay span {
        padding: 0;
        font-size: 18px;
    }

    .home-page section.partners .row {
        flex-wrap: wrap;
    }

    .home-page section.partners li {
        width: 50%;
    }
}

.home-page section.featured-sites {
    padding-top: 80px;
    padding-bottom: 132px;
}

.home-page section.featured-sites .featSites {
    margin-bottom: 33px;
}

.home-page section.featured-sites .button {
    width: 197px;
}

.home-page section.featSites {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media only screen and (max-width: 584px) {
    .home-page section.featured-sites {
        padding-bottom: 91px;
    }

    .home-page section.featured-sites h2 {
        font-size: 21px;
        line-height: 28px;
    }

    .home-page section.featured-sites .button {
        width: calc(100% - 76px);
        font-size: 14px;
    }
}


/* When there is no domain search box on the homepage: */
.home-page.no-ds section.ideas {
    padding-top: 170px;
}

@media only screen and (max-width: 800px) {
    .home-page.no-ds section.ideas {
        padding-top: 140px;
    }
}

.home-page.no-ds .notification-banner {
    background-color: #fff;
    color: #464649;
    font-weight: 300;
}

.home-page.no-ds .notification-banner span {
    font-weight: 600;
}

.home-page:not(.no-ds) .notification-banner a {
    color: #fff;
}


/* ------------------------------------
    About
------------------------------------ */

.about-page main {
    padding: 85px 0 130px 0;
}

.about-page section.section--what-is-baby {
    padding-bottom: 60px;
}

.about-page section.section--what-is-baby .row > div {
    text-align: center;
    flex: 1;
    padding-bottom: 10px;
}

.about-page section.section--what-is-baby .row > div:first-of-type {
    padding-right: 30px;
    border-right-width: 1px;
    border-right-style: solid;
    border-image: linear-gradient(to bottom, #f8f8f8, #eeeeee) 1 100%;
}

.about-page section.section--what-is-baby .row > div:last-of-type {
    padding-left: 30px;
}

.about-page section.section--what-is-baby img {
    margin-bottom: 16px;
}

.about-page section.section--domain-ending {
    padding: 60px 0;
}

.about-page section.section--how-to-use {
    padding: 80px 0 60px 0;
}

.about-page section.section--how-to-use h3 {
    font-family: "Fira Sans", sans-serif;
}

.about-page .table__responsive li.table__responsive--header-row > div {
    padding: 13px 20px;
}

.about-page .table__responsive li:not(:first-of-type) {
    font-size: 18px;
}

.about-page .table__responsive li:not(:first-of-type) > div:first-of-type {
    font-weight: 600;
}
sup.heading__reg {
 top: -0.20em;
}
@media only screen and (max-width: 599px) {
    .about-page main {
        padding-top: 65px;
    }

    .about-page .heading__3 {
        font-size: 22px;
        line-height: 28px;
    }

    .about-page section.section--what-is-baby .row {
        display: block;
    }

    .about-page section.section--what-is-baby .row > div:first-of-type {
        padding-right: 0;
        border-right: none;
        border-image: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 22px;
        margin-bottom: 35px;
    }

    .about-page section.section--what-is-baby .row > div:last-of-type {
        padding-left: 0;
    }

    .about-page section.section--what-is-baby p.t__large {
        font-size: 16px;
        line-height: 24px;
    }

    .about-page section.section--domain-ending {
        padding: 50px 0;
    }

    .about-page .table__responsive li {
        display: block;
        border: 1px solid #ccc;
        border-top: 0;
        padding: 12px 22px 22px;
    }

    .about-page .table__responsive li.table__responsive--header-row {
        padding: 0 14px;
    }

    .about-page .table__responsive li.s__mobile--hide {
        display: none;
    }

    .about-page .table__responsive li.s__mobile--show {
        display: block;
    }

    .about-page .table__responsive li > div {
        width: 100%;
        border: none;
        padding: 10px 0 0 0;
        font-size: 14px;
    }

    .about-page .table__responsive li > div:nth-of-type(2) {
        line-height: 1.8;
    }
}

@media only screen and (min-width: 600px) {
    .about-page .table__responsive li > div {
        width: 50%;
    }

    .about-page .table__responsive li.s__mobile--show {
        display: none;
    }
}

/* ------------------------------------
    Relaunch
------------------------------------ */

.relaunch-page main {
    padding: 85px 0 130px 0;
}

.relaunch-page section.section--xyz-adoption {
    padding-bottom: 60px;
}

.relaunch-page section.section--memorable-names,
.relaunch-page section.section--tier-lists,
.relaunch-page section.section--special-release {
    padding: 60px 0;
}

.relaunch-page section.section--memorable-names .row > div {
    text-align: center;
    flex: 1;
    padding: 10px 0;
}

.relaunch-page section.section--memorable-names .row > div:first-of-type {
    padding-right: 30px;
    border-right-width: 1px;
    border-right-style: solid;
    border-image: linear-gradient(to bottom, #d8d8d8, #cccccc) 1 100%;
}

.relaunch-page section.section--memorable-names .row > div:last-of-type {
    padding-left: 30px;
}

.relaunch-page section.section--memorable-names .row > div > ul {
    display: inline-block;
}


.relaunch-page .table__responsive li.table__responsive--header-row > div {
    padding: 13px 20px;
}

.relaunch-page .table__responsive li:not(:first-of-type) {
    font-size: 18px;
}

.relaunch-page .table__responsive li:not(:first-of-type) > div:first-of-type {
    font-weight: 600;
}

@media only screen and (max-width: 599px) {
    .relaunch-page main {
        padding-top: 65px;
    }

    .relaunch-page .heading__3 {
        font-size: 22px;
        line-height: 28px;
    }

    .relaunch-page section.section--memorable-names .row {
        display: block;
    }

    .relaunch-page section.section--memorable-names .row > div:first-of-type {
        padding-right: 0;
        border-right: none;
        border-image: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 22px;
        margin-bottom: 35px;
    }

    .relaunch-page section.section--memorable-names .row > div:last-of-type {
        padding-left: 0;
    }

    .relaunch-page section.section--memorable-names p.t__large {
        font-size: 16px;
        line-height: 24px;
    }

    .relaunch-page .table__responsive li {
        display: block;
        border: 1px solid #ccc;
        border-top: 0;
        padding: 12px 22px 22px;
    }

    .relaunch-page .table__responsive li.table__responsive--header-row {
        padding: 0 14px;
    }

    .relaunch-page .table__responsive .s__mobile--hide {
        display: none;
    }

    .relaunch-page .table__responsive .s__mobile--show {
        display: block;
    }

    .relaunch-page .table__responsive li > div {
        width: 100%;
        border: none;
        padding: 10px 0 0 0;
        font-size: 14px;
    }

    .relaunch-page .table__responsive li > div:nth-of-type(2) {
        line-height: 1.8;
    }
}

@media only screen and (min-width: 600px) {
    .relaunch-page .table__responsive li > div {
        width: 50%;
    }

    .relaunch-page .table__responsive .s__mobile--show {
        display: none;
    }
}


/* ------------------------------------
    Registrars
------------------------------------ */

.registrars-page .section--intro {
    margin-bottom: 65px;
}

.registrars-page .divider-text-overlay {
    margin-bottom: 25px;
}

.registrars-page .divider-text-overlay span {
    font-size: 24px;
    line-height: 30px;
}


/* ------------------------------------
    Featured Websites
------------------------------------ */

.featured-websites-page .page-intro {
    margin-bottom: 35px;
}


/* ------------------------------------
    Register
------------------------------------ */

.register-page .site-header {
    margin-bottom: -120px;
}

.register-page .upper-content {
    color: #444;
    z-index: 10;
}

.register-page .page-title {
    margin-bottom: 68px;
}

.register-page section.search-results {
    padding-top: 90px;
    padding-bottom: 40px;
}

.register-page .register__cta {
    padding-bottom: 70px;
}

@media only screen and (max-width: 599px) {
    .register-page section.search-results {
        padding-top: 50px;
    }

    .register-page .register__cta {
        text-align: center;
        padding-bottom: 0;
    }

    .register-page .register__cta .heading__3 {
        font-size: 18px;
        line-height: 1;
    }
}


/* ------------------------------------
    Contact
------------------------------------ */

.contact-page section {
    margin-bottom: 55px;
}

.contact__address {
    text-align: center;
    margin-bottom: 20px;
}

.contact--info h3 {
    font-family: "Fira Sans", sans-serif;
    margin-bottom: 0;
}

.anti-abuse {
    margin-top: 24px;
}

.anti-abuse p img {
    width: 150px;
}

.contact-page .contact--form {
    max-width: 66%;
    padding-right: 30px;
}

.contact-page .contact--form .form__basic-input {
    height: 44px;
}

.contact-page .contact--form .form__basic-textarea {
    margin-bottom: 14px;
}

.contact-page .contact--form .g-recaptcha {
    margin-bottom: 28px;
}

.contact-page .contact--info {
    max-width: 33%;
}

.contact-page .contact--info .divider {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 665px) {

    .contact-page .contact--form,
    .contact-page .contact--form .form__basic .button,
    .contact-page .contact--info {
        max-width: none;
        padding-right: 0;
    }

    .contact-page .contact--form .form__basic .button {
        width: 100%;
        font-size: 16px;
    }

    .contact-page .container-wide > .row {
        display: block;
    }
}

/* Universal Contact Form */

.alpaca-field-object {
    padding: 0;
}

.alpaca-field {
    margin-bottom: 24px;
}

.alpaca-control-label {
    width: 100%;
}

.alpaca-message {
    font-style: italic;
    color: #B30000;
    clear: left;
    font-size: 0.9em;
}

input.alpaca-control,
textarea.alpaca-control {
    border: solid 1px #e1e3e5;
    width: 100%;
    padding: 7px;
    margin-bottom: 0;
}

input.alpaca-control {
    height: 44px;
}

input.alpaca-control:hover,
input.alpaca-control:focus,
textarea.alpaca-control:hover,
textarea.alpaca-control:focus {
    border: solid 1px #DB6DF2;
}


.alpaca-form-buttons-container {
    text-align: left;
    margin-bottom: 28px;
}

.alpaca-form-button {
    display: inline-block;
    position: relative;
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    margin: 0 auto;
    width: 139px;
    height: 44px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 #c2c4c6;
    background-position: left center;
    background-size: 100%;
}

.alpaca-form-button:hover,
.alpaca-form-button:focus {
    color: #fff;
}

.alpaca-form-button {
    /*background-image: linear-gradient(to right, #1ca4e8, #db6df2);*/
    background-image: linear-gradient(to right, #1ca4e8, #db6df2, #db6df2, #1ca4e8);
    background-position: left center;
    background-size: 300% 200%;
    -webkit-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -moz-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -o-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    transition: background-position .75s ease-in-out, box-shadow .27s ease;
}

.alpaca-form-button:hover,
.alpaca-form-button:focus {
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.25);
    background-position: right center;
    -webkit-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -moz-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    -o-transition: background-position .75s ease-in-out, box-shadow .27s ease;
    transition: background-position .75s ease-in-out, box-shadow .27s ease;
}
