html,
body {
    font-family: 'Open Sans', Arial, sans-serif;

    width: 100%;
    min-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #079ddb;
    outline: none;
}

a:hover {
    cursor: pointer;
    color: #1ebdff;
}

.wrapper {
    position: relative;
    width: 100%;
    min-width: 100%;
}

.main-width,
.page-width-container {
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
}

/*Header start*/

header {
    width: 100%;
    height: 90px;
    border-bottom: 5px solid #ffb400;
}

header .logo {
    width: 83px;
    height: 36px;
    margin: 27px 0;
    background: url(../images/logo.svg) 0 0 no-repeat;
}

header .back {
    font-size: 13px;
    line-height: 20px;
    display: block;
    height: 20px;
    margin: 35px 0;
    padding-right: 15px;
    color: #56646b;
    background: url(../images/arr.svg) right 8px no-repeat;
}

/*Header end*/

/*Top sections*/

section.main-page-top {
    width: 100%;
    padding: 45px 0;
    background: #14293a;
    background:    -moz-linear-gradient(-45deg,  #14293a 0%, #20455b 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#14293a), color-stop(100%,#20455b));
    background: -webkit-linear-gradient(-45deg,  #14293a 0%,#20455b 100%);
    background:      -o-linear-gradient(-45deg,  #14293a 0%,#20455b 100%);
    background:     -ms-linear-gradient(-45deg,  #14293a 0%,#20455b 100%);
    background:         linear-gradient(135deg,  #14293a 0%,#20455b 100%);
}

section.main-page-top h1 {
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    color: #fff;
}

section.main-page-top h1 span {
    font-weight: 500;
    line-height: 60px;
    vertical-align: top;
}

.search-form {
    width: 620px;
    height: 40px;
    margin: 30px auto 0;
    border-radius: 2px;
    background: #fff;
}

.search-form > input {
    font-size: 13px;
    line-height: 20px;
    display: block;
    float: left;
    width: 485px;
    height: 20px;
    padding: 10px 15px;
    border: 0;
    border-radius: 2px 0 0 2px;
    outline: none;
}

.search-form > button {
    display: block;
    float: right;
    width: 105px;
    height: 40px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: url(../images/search-btn.svg) 0 0 no-repeat;
}

.search-form > button:hover {
    background-position: 0 -50px;
}

.search-form > button:focus {
    background-position: 0 -100px;
}

.main-page {
    padding: 55px 0;
    background: #f5f5f5;
}

.main-page a {
    display: block;
    float: left;
    width: 300px;
    height: 180px;
    margin: 0 0 30px 20px;
    border-radius: 2px;
}

.main-page a > img {
    display: block;
    margin: 45px auto 20px;
}

.main-page a > span {
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    display: block;
    width: 210px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
}

.main-page a:first-child,
.main-page a:nth-child(3n+1) {
    margin-left: 0;
}

.topics {
    background: #358bbf;
    background:    -moz-linear-gradient(-45deg,  #358bbf 0%, #2273af 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#358bbf), color-stop(100%,#2273af));
    background: -webkit-linear-gradient(-45deg,  #358bbf 0%,#2273af 100%);
    background:      -o-linear-gradient(-45deg,  #358bbf 0%,#2273af 100%);
    background:     -ms-linear-gradient(-45deg,  #358bbf 0%,#2273af 100%);
    background:         linear-gradient(135deg,  #358bbf 0%,#2273af 100%);
}

.basics {
    background: #33b56c;
    background:    -moz-linear-gradient(-45deg,  #33b56c 0%, #20a354 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#33b56c), color-stop(100%,#20a354));
    background: -webkit-linear-gradient(-45deg,  #33b56c 0%,#20a354 100%);
    background:      -o-linear-gradient(-45deg,  #33b56c 0%,#20a354 100%);
    background:     -ms-linear-gradient(-45deg,  #33b56c 0%,#20a354 100%);
    background:         linear-gradient(135deg,  #33b56c 0%,#20a354 100%);
}

.personalize {
    background: #1fa88f;
    background:    -moz-linear-gradient(-45deg,  #1fa88f 0%, #129478 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#1fa88f), color-stop(100%,#129478));
    background: -webkit-linear-gradient(-45deg,  #1fa88f 0%,#129478 100%);
    background:      -o-linear-gradient(-45deg,  #1fa88f 0%,#129478 100%);
    background:     -ms-linear-gradient(-45deg,  #1fa88f 0%,#129478 100%);
    background:         linear-gradient(135deg,  #1fa88f 0%,#129478 100%);
}


.search {
    background: #f4a51a;
    background:    -moz-linear-gradient(-45deg,  #f4a51a 0%, #f1900f 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#f4a51a), color-stop(100%,#f1900f));
    background: -webkit-linear-gradient(-45deg,  #f4a51a 0%,#f1900f 100%);
    background:      -o-linear-gradient(-45deg,  #f4a51a 0%,#f1900f 100%);
    background:     -ms-linear-gradient(-45deg,  #f4a51a 0%,#f1900f 100%);
    background:         linear-gradient(135deg,  #f4a51a 0%,#f1900f 100%);
}

.settings {
    background: #d76000;
    background:    -moz-linear-gradient(-45deg,  #d76000 0%, #cc4900 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#d76000), color-stop(100%,#cc4900));
    background: -webkit-linear-gradient(-45deg,  #d76000 0%,#cc4900 100%);
    background:      -o-linear-gradient(-45deg,  #d76000 0%,#cc4900 100%);
    background:     -ms-linear-gradient(-45deg,  #d76000 0%,#cc4900 100%);
    background:         linear-gradient(135deg,  #d76000 0%,#cc4900 100%);

    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d76000', endColorstr='#cc4900',GradientType=1 );
}


.features {
    background: #c64637;
    background:    -moz-linear-gradient(-45deg,  #c64637 0%, #b73024 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#c64637), color-stop(100%,#b73024));
    background: -webkit-linear-gradient(-45deg,  #c64637 0%,#b73024 100%);
    background:      -o-linear-gradient(-45deg,  #c64637 0%,#b73024 100%);
    background:     -ms-linear-gradient(-45deg,  #c64637 0%,#b73024 100%);
    background:         linear-gradient(135deg,  #c64637 0%,#b73024 100%);
}


.safety {
    background: #6f4a7e;
    background:    -moz-linear-gradient(-45deg,  #6f4a7e 0%, #573466 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#6f4a7e), color-stop(100%,#573466));
    background: -webkit-linear-gradient(-45deg,  #6f4a7e 0%,#573466 100%);
    background:      -o-linear-gradient(-45deg,  #6f4a7e 0%,#573466 100%);
    background:     -ms-linear-gradient(-45deg,  #6f4a7e 0%,#573466 100%);
    background:         linear-gradient(135deg,  #6f4a7e 0%,#573466 100%);
}


.apps {
    background: #384b5d;
    background:    -moz-linear-gradient(-45deg,  #384b5d 0%, #253545 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#384b5d), color-stop(100%,#253545));
    background: -webkit-linear-gradient(-45deg,  #384b5d 0%,#253545 100%);
    background:      -o-linear-gradient(-45deg,  #384b5d 0%,#253545 100%);
    background:     -ms-linear-gradient(-45deg,  #384b5d 0%,#253545 100%);
    background:         linear-gradient(135deg,  #384b5d 0%,#253545 100%);
}

.issues {
    background: #8a9697;
    background:    -moz-linear-gradient(-45deg,  #8a9697 0%, #727f80 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#8a9697), color-stop(100%,#727f80));
    background: -webkit-linear-gradient(-45deg,  #8a9697 0%,#727f80 100%);
    background:      -o-linear-gradient(-45deg,  #8a9697 0%,#727f80 100%);
    background:     -ms-linear-gradient(-45deg,  #8a9697 0%,#727f80 100%);
    background:         linear-gradient(135deg,  #8a9697 0%,#727f80 100%);
}

.most-popular {
    padding: 55px 0;
}

.most-popular h1 {
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 30px;
    text-align: center;
    color: #142835;
}

.most-popular ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.most-popular ul li {
    display: block;
    float: left;
    width: 300px;
    margin-left: 20px;
}

.most-popular ul li:first-child {
    margin: 0;
}

.most-popular a {
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #079ddb;
}

.most-popular a:hover {
    color: #1ebdff;
}

footer {
    font-size: 13px;
    width: 100%;
    height: 70px;
    color: #98a3a8;
    border-top: 2px solid #e5e5e5;
    background: #f1f1f1;
}

footer .copyright {
    height: 20px;
    padding: 25px 0;
}

footer a {
    display: block;
    height: 20px;
    margin-left: 20px;
    padding: 25px 0;
    text-decoration: none;
    color: #98a3a8;
}


.main-page a:hover > img {
    -webkit-animation-name: bounce;
            animation-name: bounce;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;

    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}


@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
    }
    50% {
        -webkit-transform: translateY(0);
    }
    60% {
        -webkit-transform: translateY(-5px);
    }
    80% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
            animation-name: bounce;
}

/*Overwrite styles*/

section.inner-page {
    padding-top: 60px;
}

section.topics-page {
    padding-top: 60px;
}

.page-width-container:after {
    display: block;
    clear: both;
    content: '';
}

.primary-article {
    float: right;
    width: 680px;
}

.primary-nav {
    float: left;
    width: 220px;
}

.primary-article h1 {
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 20px;
    color: #142835;
}

.primary-article p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #56646b;
}

.primary-article .tip {
    font-size: 13px;
    font-style: italic;
    margin: 20px 0 20px 50px;
    padding: 15px 15px 15px 70px;
    color: #79745d;
    background: #fcf9ea url(../images/tip.svg) 20px center no-repeat;
}

.primary-article ul {
    margin: 0;
    padding: 0;
}

.primary-article ul > li {
    font-size: 14px;
    line-height: 24px;
    list-style: none;
    color: #56646b;
    border-top: 1px solid #e7e7e7;
}

.primary-article ul > li:first-child {
    border: 0;
}

.primary-article ul > li {
    padding: 20px 0;
}

section.topics-page .primary-article ul > li > ul {
    width: 320px;
    padding: 0;
}

.primary-article ul > li > ul {
    margin: 20px 0;
    padding-left: 50px;
    list-style: none;
}


.primary-article ul > li > ul > li {
    position: relative;
    margin: 8px 0;
    padding: 0;
    list-style: none;
    border: 0;
}

.primary-article .zippy {
    font-size: 15px;
    line-height: 50px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding-left: 65px;
    background: #fafafa;
    background-image: url(../images/arr-circle-up.svg);
    background-repeat: no-repeat;
    background-position: 30px 15px;
}

.primary-article .zippy.hide {
    background-image: url(../images/arr-circle-down.svg);
}

.primary-article .zippy:hover {
    color: #079ddb;
}

.primary-article .zippy h3 {
    line-height: 18px;
    float: left;
    height: 18px;
    margin: 0;
    margin: 15px 0;
    border-bottom: 1px dotted #079ddb;
}

.primary-article .zippy + div {
    overflow: hidden;
    margin-bottom: 30px;
    padding: 0 30px 30px;
    -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    background: #fafafa;
}

.primary-article .zippy + div p {
    margin-bottom: 30px;
}

.primary-article .zippy + div p.alert {
    background-image: url(../images/warning.svg);
    background-repeat: no-repeat;
    background-position: 26px 16px;
}

.primary-article .zippy + div p:last-child {
    margin: 0;
}

.primary-article .alert {
    font-size: 13px;
    line-height: 50px;
    padding-left: 60px;
    color: #a30000;
    border-radius: 2px;
    background: #f3f3f3;
    -webkit-box-shadow: inset 0 1px 2px 0 rgba(0,0,0,.1);
       -moz-box-shadow: inset 0 1px 2px 0 rgba(0,0,0,.1);
            box-shadow: inset 0 1px 2px 0 rgba(0,0,0,.1);
}

.primary-article code {
    font-family: Courier, sans-serif;
    font-size: 14px;
    color: #c7254e;
    background: #f9f2f4;
}

.primary-article h1 {
    font-size: 30px;
    color: #56646b;
}

.content-container a[target='_blank']:after {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 3px 0 5px;
    content: '';
    background: url(../images/external.svg) no-repeat 0 0;
}

.headings h1,
.headings h2,
.headings h3,
.headings h4,
.headings h5,
.headings h6 {
    margin: 20px 0;
}

h1 {
    font-size: 30px;
    font-weight: 300;
}

h2 {
    font-size: 30px;
    font-weight: 300;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}

h4 {
    font-size: 16px;
    font-weight: 700;
}

h5 {
    font-size: 15px;
    font-weight: 600;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

.headings p {
    margin: 30px 0;
}

a:hover {
    color: #1ebdff;
}

a:visited {
    color: #7759ae;
}

table.borders {
    width: 100%;
    height: 212px;
    border-spacing: 0;
    *border-collapse: collapse; /* IE7 and lower */
}

table.borders {
    margin: 40px 0;
    border: solid #e7e7e7 1px;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}

table.borders th {
    font-size: 14px;
    padding: 20px;
}

table.borders td {
    font-size: 13px;
    padding: 16px 20px;
}

table.borders td,
table.borders th {
    text-align: left;
    border-top: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
}

table.borders th {
    border-top: none;
    background-color: #fafafa;
}

table.borders td:first-child,
table.borders th:first-child {
    border-left: none;
}

table.borders th:first-child {
    -webkit-border-radius: 4px 0 0 0;
       -moz-border-radius: 4px 0 0 0;
            border-radius: 4px 0 0 0;
}

table.borders th:last-child {
    -webkit-border-radius: 0 4px 0 0;
       -moz-border-radius: 0 4px 0 0;
            border-radius: 0 4px 0 0;
}

table.borders tr:last-child td:first-child {
    -webkit-border-radius: 0 0 0 4px;
       -moz-border-radius: 0 0 0 4px;
            border-radius: 0 0 0 4px;
}

table.borders tr:last-child td:last-child {
    -webkit-border-radius: 0 0 4px 0;
       -moz-border-radius: 0 0 4px 0;
            border-radius: 0 0 4px 0;
}

.quote {
    font-size: 13px;
    margin: 30px 0 30px 50px;
    padding: 15px 15px 15px 70px;
    color: #79745d;
    background: #fafafa url(../images/quotes.svg) no-repeat 30px 20px;
}

.images-box {
    width: 100%;
    margin: 40px 0 20px 0;
}

.images-box .main-image {
    position: relative;
}

.images-box .main-image span {
    position: absolute;
    top: 208px;
    display: block;
    width: 20px;
    height: 34px;
    cursor: pointer;
}

.images-box .main-image span.left {
    left: 10px;
    background: url(../images/arr-left.svg) no-repeat 0 0;
}

.images-box .main-image span.left:hover {
    background: url(../images/arr-left-hover.svg) no-repeat 0 0;
}

.images-box .main-image span.right {
    right: 10px;
    background: url(../images/arr-right.svg) no-repeat 0 0;
}

.images-box .main-image span.right:hover {
    background: url(../images/arr-right-hover.svg) no-repeat 0 0;
}

.images-box .main-image > img {
    max-width: 100%;
    max-height: 100%;
}

.image-flow {
    width: 100%;
    margin: 20px 0;
}

.flow-item {
    display: inline-block;
    width: 160px;
    height: 80px;
    margin-right: 9px;
}

.flow-item:last-child {
    margin: 0;
}

.inputs {
    font-size: 14px;
}

.inputs form {
    display: inline-block;
    margin: 20px 10px 0 0;
}

.inputs form:nth-child(2),
.inputs form:nth-child(4) {
    margin-right: 0;
}

input.jfk-textinput {
    font-family: 'Open Sans', Arial, sans-serif;
    width: 310px;
    height: 38px;
    margin-top: 10px;
    padding: 0 10px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    outline: 0;
    -webkit-box-shadow: inset 0 0 1px 1px rgba(100,100,100,.1);
            box-shadow: inset 0 0 1px 1px rgba(100,100,100,.1);
}

input.jfk-textinput:focus {
    border: 1px solid #79c4f6;
}


.inputs form label {
    display: block;
    color: #838d92;
}

.inputs span {
    display: block;
    margin-top: 10px;
    color: #d27272;
}

.buttons {
    margin: 20px 0;
}

.jfk-button,
.jfk-button.gray {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: 190px;
    height: 55px;
    margin: 20px 20px 0 0;
    color: #fff;
    border: none;
    border-radius: 2px;
    outline: 0;
    background: -webkit-linear-gradient(#47a6e0, #2886d2);
    background:         linear-gradient(#47a6e0, #2886d2);
    text-shadow: 0 1px #2c84c3;
}

.jfk-button:hover {
    background: -webkit-linear-gradient(#51b4f1, #3097ea);
    background:         linear-gradient(#51b4f1, #3097ea);
    text-shadow: 0 1px #3492d6;
}

.jfk-button:active {
    background: -webkit-linear-gradient(#2c8cd5, #41a1de);
    background:         linear-gradient(#2c8cd5, #41a1de);
    text-shadow: 0 1px #318ac6;
}

.jfk-button.gray {
    background: -webkit-linear-gradient(#bababa, #9f9f9f);
    background:         linear-gradient(#bababa, #9f9f9f);
    text-shadow: 0 1px #a1a1a1;
}

.jfk-button.gray:hover {
    background: -webkit-linear-gradient(#cbcbcb, #b5b5b5);
    background:         linear-gradient(#cbcbcb, #b5b5b5);
    text-shadow: 0 1px #acacac;
}
.jfk-button.gray:active {
    background: -webkit-linear-gradient(#a4a4a4, #b6b6b6);
    background:         linear-gradient(#a4a4a4, #b6b6b6);
    text-shadow: 0 1px #9f9f9f;
}

/*----------------------*/

/*all topics page*/

section.topics-page h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 30px 0 30px 90px;
    color: #142835;
}

section.topics-page ul li:first-child h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    padding: 0;
}



section.topics-page .parent:nth-child(2) h3 {
    background: url(../images/flag-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(3) h3 {
    background: url(../images/citrio-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(4) h3 {
    background: url(../images/search-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(5) h3 {
    background: url(../images/gear-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(6) h3 {
    background: url(../images/star-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(7) h3 {
    background: url(../images/lock-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(8) h3 {
    background: url(../images/app-icon.png) no-repeat left center;
}

section.topics-page .parent:nth-child(9) h3 {
    background: url(../images/head-icon.png) no-repeat left center;
}

section.topics-page .primary-nav .sibling-nav h4 {
    line-height: 24px;
    height: 48px;
    padding: 10px 0 10px 20px;
}

section.topics-page .primary-nav .sibling-nav h4 > a {
    padding: 0;
    color: #56646b;
    background: url(../images/arr-right-list.svg) no-repeat 180px 20px;
}

section.topics-page .primary-nav .sibling-nav ul li a {
    color: #56646b;
}

section.topics-page .primary-nav .sibling-nav ul li {
    border-top: 1px solid #e7e7e7;
}

section.topics-page .primary-nav .sibling-nav ul li:first-child {
    border-top: none;
}

section.topics-page .primary-nav .sibling-nav ul {
    margin: 0;
}

section.topics-page .primary-nav .sibling-nav ul li {
    margin: 0;
    padding: 10px 10px 10px 20px;
}

/*----------------------*/

/*Inner page navigation*/

.primary-nav .sibling-nav {
    border: 1px solid #e7e7e7;
    border-radius: 4px;
}

.primary-nav .sibling-nav h4 {
    line-height: 50px;
    height: 50px;
    margin: 0;
    border-bottom: 1px solid #e7e7e7;
    background-color: #f1f1f1;
}

.primary-nav .sibling-nav h4 a {
    font-size: 13px;
    font-weight: bold;
    display: block;
    padding: 0 114px 0 20px;
    color: #142835;
    background-image: url(../images/arr-down.svg);
    background-repeat: no-repeat;
    background-position: 194px 20px;
}

.primary-nav .sibling-nav ul {
    margin: 10px 0;
    padding: 0;
}

.primary-nav .sibling-nav ul li {
    line-height: 28px;
    position: relative;
    margin: 10px 0;
    padding: 0 10px 0 20px;
    list-style: none;
}

.primary-nav .sibling-nav ul li a {
    font-size: 13px;
}

.primary-nav .sibling-nav ul li a:hover {
    color: #1ebdff;
}

.primary-nav .sibling-nav ul li a.selected {
    font-weight: bold;
    color: #56646b;
}

.primary-nav .sibling-nav ul li a.selected:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    content: '';
    background: #f1f1f1;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear:after,
.clear:before {
    display: table;
    clear: both;
    content: '';
}
