
/*region Base styles */
* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", "Helvetica Neue", Arial, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0074e6;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html {
    position: relative;
    background-color: #fff;
}

body {
    position: relative;;
    width: 100%;
    max-width: 736px;
    margin: 0 auto;
    font-size: 100%;
    background-color: #fff;
    outline: 1px solid #e5e5e5;
}

body.noscroll {
    overflow: hidden;
}
/*endregion*/

/*region Button styles */
.btn {
    display: inline-block;
    padding: 12px 55px 13px;
    color: #8c8c8c;
    font-size: 1.5em;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}
.btn.green {
    border: none;
    background-color: #0bc337;
    color: #fff;
}
.btn.orange {
    border: none;
    background-color: #f48127;
    color: #fff;
}
.btn.trans-blue {
    border: 1px solid #0074e2;
    background-color: transparent;
    color: #0074e2;
}
/*endregion*/

/*region iTunes button styles */
.itunes-badge {
    display: inline-block;
    margin: 0 auto;
}

.itunes-badge img {
    height: 54px;
}

.en .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-en.svg");
}
.de .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-de.svg");
}
.es .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-es.svg");
}
.fr .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-fr.svg");
}
.it .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-it.svg");
}
.ja .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-ja.svg");
}
.pt .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-pt-br.svg");
}
.ru .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-ru.svg");
}
.zh .itunes-badge img {
    content: url("https://d3pbdh1dmixop.cloudfront.net/img/common/download_app_store-zh.svg");
}
/*endregion*/

/*region Common formatting styles */
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}

.left {
    float: left;
}
.right {
    float: right;
}
.clear {
    clear: both;
}

.half {
    width: 50%;
}

.gray {
    background-color: #fafafa !important;
}
.blue {
    background-color: #009cde !important;
}
.dark-gray {
    background-color: #20262d !important;
}
.light-gray {
    background-color: #f6f6fa !important;
}
.feat-light-gray {
    background-color: #f3f3f6;
}
.feat-dark-gray {
    background-color: #e7e8f1;
}

.hidden {
    display: none !important;
}

.unclickable {
    pointer-events: none !important;
}

.no-padding {
    padding: 0 !important;
}
.no-padding-top {
    padding-top: 0 !important;
}
.no-padding-bottom {
    padding-bottom: 0 !important;
}
.no-padding-left {
    padding-left: 0 !important;
}
.no-padding-right {
    padding-right: 0 !important;
}

.no-margin {
    margin: 0 !important;
}
.no-margin-top {
    margin-top: 0 !important;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}
.no-margin-left {
    margin-left: 0 !important;
}
.no-margin-right {
    margin-right: 0 !important;
}

.no-border {
    border: 0 !important;
}
.no-border-top {
    border-top: 0 !important;
}
.no-border-bottom {
    border-bottom: 0 !important;
}
.no-border-left {
    margin-left: 0 !important;
}
.no-border-right {
    margin-right: 0 !important;
}
/*endregion*/


/*region iPhone 4/5 styles */
@media only screen and (min-device-width : 320px) {

    /*region Top menu styles */
    .top-menu {
        position: fixed;
        max-width: 736px;
        width: 100%;
        height: 55px;
        border: none;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow: hidden;
        opacity: 1;
    }

    .top-menu.active {
        min-height: 100%;
        height: auto;
        overflow: scroll;
    }

    .top-menu .first-level {
        width: 100%;
        height: 55px;
        background-color: #191c2e;
        list-style: none;
    }

    .top-menu.moved .first-level {
        background-color: rgba(255, 255, 255, 0.95);
    }

    .top-menu .first-level li {
        position: absolute;
    }

    .top-menu .burger-button {
        display: block;
        left: 0;
        width: 55px;
        height: 55px;
        padding: 21px 0 0 20px;
        box-sizing: border-box;
    }

    .top-menu .burger-button .svg.open {
        display: block;
        width: 16px;
        height: 14px;
    }

    .top-menu .burger-button .svg.close {
        display: none;
        width: 14px;
        height: 14px;
    }

    .top-menu .burger-button.active {
        padding: 21px 0 0 21px;
    }

    .top-menu .burger-button.active .svg.open {
        display: none;
    }

    .top-menu .burger-button.active .svg.close {
        display: block;
    }

    .top-menu.moved .burger-button .svg .cls-1 {
        fill: #000;
    }

    .top-menu .lang-button {
        display: block;
        right: 0;
        width: 80px;
        height: 55px;
        padding: 17px 0 0 21px;
        box-sizing: border-box;
    }
    .top-menu .lang-button:after {
        content: "";
        border-bottom: 2px solid #fff; border-right: 2px solid #fff;
        width: 5px;
        height: 5px;
        position: absolute;
        right: 34px;
        top: 18px;
        z-index: 1100;
        -moz-transform: translate(10px,4px) rotate(45deg);
        -webkit-transform: translate(10px,4px) rotate(45deg);
        -o-transform: translate(10px,4px) rotate(45deg);
        -ms-transform: translate(10px,4px) rotate(45deg);
        transform: translate(10px,4px) rotate(45deg);
    }

    .top-menu .lang-button img {
        display: block;
        width: 20px;
        height: 20px;
    }

    .top-menu.moved .lang-button {
        display: none;
    }

    .top-menu .buy-button {
        display: none;
        right: 0;
        min-width: 120px;
        height: 55px;
        padding: 13px 16px 0 16px;
        box-sizing: border-box;
    }

    .top-menu .buy-button .btn {
        height: 30px;
        padding: 0 12px;
        font-size: 1em;
        font-weight: 400;
        line-height: 30px;
        text-align: center;
        box-sizing: border-box;
    }

    .top-menu.moved .buy-button {
        display: block;
    }
    /*endregion*/

    /*region Collapsible menu styles*/
    .top-menu .collapsible-menu {
        position: absolute;
        top: 55px;
        display: none;
        width: 100%;
        min-height: 100px;
        padding: 20px 0 0;
        background-color:  rgba(255, 255, 255, 0.95);
        box-sizing: border-box;
        list-style: none;
    }
    .top-menu .collapsible-menu:after {
        content: "";
        position: absolute;
        left: 26px;
        top: -5px;
        display: block;
        width: 10px;
        height: 10px;
        margin: 0 0 0 -5px;
        background: rgba(255, 255, 255, 0.95);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .top-menu.moved .collapsible-menu:after {
        background: transparent;
    }

    .top-menu .collapsible-menu li {
        margin: 0 20px 20px;
    }

    .top-menu .collapsible-menu li.separator {
        border-bottom: 1px solid rgba(204, 204, 204, 0.95);
    }

    .top-menu .collapsible-menu li a {
        display: inline-block;
        width: 100%;
        height: 33px;
        color:  #444;
        font-size: 1.25em;
        font-weight: 400;
    }

    .top-menu .collapsible-menu li a span {
        color:  #444;
        line-height: 33px;
    }

    .top-menu .collapsible-menu li a .icon {
        display: inline-block;
        width: 33px;
        height: 33px;
        padding: 0 10px 0 0;
        vertical-align: top;
    }

    .top-menu .collapsible-menu li a .logo {
        display: inline-block;
        width: 36px;
        height: 36px;
        margin: -2px 0 0 0;
        padding: 0 10px 0 0;
        vertical-align: top;
    }
    /*endregion*/

    /*region Burger menu styles*/
    .top-menu .collapsible-menu.burger-menu {
    }
    .top-menu .collapsible-menu.burger-menu:after {
        left: 28px;
        right: auto;
    }
    /*endregion*/

    /*region Languages menu styles*/
    .top-menu .collapsible-menu.lang-menu {
    }
    .top-menu .collapsible-menu.lang-menu:after {
        left: auto;
        right: 34px;
    }
    /*endregion*/

    /*region Garland common styles */
    .common-garland {
        height: 86px;
        padding: 13px 0 0;
        background-color: #1b1d31;
        box-sizing: border-box;
    }

    .common-garland .garland-window {
        position: relative;
        width: 100%;
        height: 49px;
        background-color: #1b1d31;
        overflow: hidden;
    }

    .common-garland .garland-card {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 49px;
        background-color: #1b1d31;
        box-sizing: border-box;
        opacity: 0;
    }

    .common-garland .garland-card.current {
        display: block;
    }

    .common-garland .garland-item {
        display: inline-block;
        padding: 0 0 0 26px;
        height: 49px;
        background: url("/img/mobile/common/garland_left.svg") no-repeat top left;
        background-size: 14px 49px;
    }

    .common-garland .garland-right {
        display: inline-block;
        padding: 0 26px 0 0;
        height: 49px;
        background: url("/img/mobile/common/garland_right.svg") no-repeat top right;
        background-size: 14px 49px;
    }

    .common-garland .garland-item .title {
        color: #fff;
        font-size: 1.125em;
        font-weight: 600;
    }

    .common-garland .garland-item .author {
        color: #fff;
        font-size: 0.875em;
        font-weight: 300;
    }

    .garland-bullets {
        list-style: none;
        display: block;
        margin: -2px auto 0;
        text-align: center;
    }

    .garland-bullets li {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 0 5px;
        border-radius: 50%;
        background-color: #595965;
    }

    .garland-bullets li.current {
        background-color: #fff;
    }
    /*endregion*/

    /*region Quote Carousel styles */
    .quote-carousel {
        padding: 30px 20px 30px;
        background-color: #212231;
    }

    .quote-window {
        position: relative;
        width: 280px;
        height: 140px;
        margin: 0 auto 10px;
    }

    .quote-card {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 280px;
        min-height: 140px;
        padding: 0 0 0 15px;
        box-sizing: border-box;
        background: url("/img/mobile/common/quote.svg") no-repeat 0 0;
        background-size: 17px 14px;
        opacity: 0;
    }

    .quote-card.current {
        display: block;
    }

    .quote-card .quote-text {
        padding: 5px 0 25px 10px;
        color: #fff;
        font-size: 1.063em;
        font-weight: 300;
        line-height: 1.5;
    }

    .quote-card .learn-more {
        position: relative;
        display: inline-block;
        padding: 0 10px 0 0;
        color: #00a6fb;
        font-size: 0.875em;
        font-weight: 600;
    }

    .quote-card .learn-more:after {
        content: "";
        border-bottom: 2px solid #00a6fb;
        border-right: 2px solid #00a6fb;
        width: 4px;
        height: 4px;
        position: absolute;
        right: 0;
        top: 8px;
        z-index: 100;
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .quote-card .author {
        display: inline-block;
        text-align: right;
    }

    .quote-card .author .logo {
        display: block;
        width: 102px;
        height: 26px;
    }

    .quote-card .author .name {
        color: #fff;
        font-size: 0.75em;
        font-weight: 300;
        line-height: 1.5;
    }

    .quote-card .author .logo.cult-of-mac {
        width: 102px;
        height: 26px;
    }
    .quote-card .author .logo.nine-to-five-mac {
        width: 119px;
        height: 26px;
    }
    .quote-card .author .logo.beautiful-pixels {
        width: 80px;
        height: 25px;
        margin-bottom: 5px;
    }
    .quote-card .author .logo.macworld {
        width: 105px;
        height: 26px;
    }
    .quote-card .author .logo.stories {
        width: 102px;
        height: 26px;
    }

    .quote-bullets {
        list-style: none;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .quote-bullets li {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 0 5px;
        border-radius: 50%;
        background-color: #595965;
    }

    .quote-bullets li.current {
        background-color: #fff;
    }
    /*endregion*/

    /*region Expert languages block styles */
    .expert-languages {
        padding: 20px 20px 0;
        background-color: #2f303e;
    }

    .expert-languages .title {
        padding: 0 0 20px;
        color: #fff;
        font-size: 1.25em;
        font-weight: 400;
    }

    .expert-languages .flag {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 15px 20px;
    }
    /*endregion*/

    /*region Footer menu styles */
    .footer {
        width: 100%;
        padding: 20px 0 0;
        background-color: #2f303e;
    }

    /*region Directories links styles */
    .footer .directories {
        margin: 0 20px 40px;
        border-top: 1px solid #737384;
    }

    .footer .directory {
        border-bottom: 1px solid #737384;
    }

    .footer .directory .directory-title {
        height: 58px;
        color: #fff;
        font-size: 1.125em;
        font-weight: 400;
        line-height: 58px;
    }

    .footer .directory .directory-title:after {
        content: "+";
        float: right;
        font-size: 1.25em;
        font-weight: normal;
        margin-top: -2px;
        margin-right: 8px;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease;
    }

    .footer .directory.active .directory-title:after {
        -webkit-transform: rotate(45deg) scale(1.08);
        -ms-transform: rotate(45deg) scale(1.08);
        transform: rotate(45deg) scale(1.08);
    }

    .footer .directory .directory-list {
        display: none;
        list-style: none;
    }

    .footer .directory.active .directory-list {
        display: block;
    }

    .footer .directory .directory-list li {
        padding: 0 0 20px 20px;
    }

    .footer .directory .directory-list li a {
        color: #fff;
        font-size: 1em;
        font-weight: 400;
    }
    /*endregion*/

    /*region Social buttons styles */
    .footer .social {
        width: auto;
        margin: 0 auto 40px;
    }

    .footer .social a {
        display: inline-block;
        margin: 0 20px;
        vertical-align: middle;
    }

    .footer .social a.twitter {
        width: 28px;
        height: 23px;
    }
    .footer .social a.facebook {
        width: 28px;
        height: 28px;
    }
    .footer .social a.vimeo {
        width: 28px;
        height: 24px;
    }
    .footer .social a.youtube {
        width: 40px;
        height: 25px;
    }
    /*endregion*/

    /*region Share/Tweet button styles */
    .footer .footer-share {
        display: inline-block;
        width: 130px;
        height: 40px;
        margin: 0 10px 0 0;
        color: #fff;
        font-weight: 600;
        font-size: 1em;
        line-height: 2.4;
        border-radius: 3px;
        background-color: #3b5997;
        text-align: left;
    }

    .footer .footer-share .icon {
        float: left;
        display: block;
        width: 40px;
        height: 40px;
        margin: 0 0 0 18px;
        padding: 0;
        background: url("/img/iphone/iphone-foot-share@2x.png") no-repeat 0 0;
        background-size: 80px 40px;
        overflow: hidden;
    }

    .footer .footer-tweet {
        display: inline-block;
        width: 130px;
        height: 40px;
        margin: 0 0 0 10px;
        color: #fff;
        font-weight: 600;
        font-size: 1em;
        line-height: 2.4;
        border-radius: 3px;
        background-color: #00aced;
        text-align: left;
    }

    .footer .footer-tweet .icon {
        float: left;
        display: block;
        width: 40px;
        height: 40px;
        margin: 0 0 0 18px;
        padding: 0;
        background: url("/img/iphone/iphone-foot-share@2x.png") no-repeat -40px 0;
        background-size: 80px 40px;
        overflow: hidden;
    }
    /*endregion*/

    /*region Footer rights styles */
    .footer .footer-rights {
        padding: 30px 20px 20px;
        color: #737385;
        font-size: 0.75em;
        line-height: 1.5;
    }
    /*endregion*/
    /*endregion*/

}
/*endregion*/


/*region iPhone 6/7 styles */
@media only screen and (min-device-width : 375px) {

    /*region Quote Carousel styles */
    .quote-window {
        width: 335px;
    }

    .quote-card {
        width: 335px;
    }

    .quote-card .quote-text {
        font-size: 1.125em;
    }

    .quote-card .learn-more {
        font-size: 1em;
    }

    .quote-card .learn-more:after {
        width: 5px;
        height: 5px;
        top: 9px;
    }

    .quote-card .author .name {
        font-size: 0.875em;
    }
    /*endregion*/

    /*region Footer menu styles */

    /*region Directories links styles */
    .footer .directory .directory-title {
        font-size: 1.25em;
    }

    .footer .directory .directory-list li a {
        font-size: 1.125em;
    }
    /*endregion*/

    /*region Social buttons styles */
    .footer .social a.twitter {
        width: 33px;
        height: 27px;
    }
    .footer .social a.facebook {
        width: 33px;
        height: 33px;
    }
    .footer .social a.vimeo {
        width: 33px;
        height: 28px;
    }
    .footer .social a.youtube {
        width: 46px;
        height: 30px;
    }
    /*endregion*/

    /*region Share/Tweet button styles */
    .footer .footer-share {
        width: 150px;
        height: 44px;
        margin: 0 15px 0 0;
        font-size: 1.125em;
        line-height: 2.4;
    }

    .footer .footer-share .icon {
        margin: 2px 5px 0 18px;
    }

    .footer .footer-tweet {
        width: 150px;
        height: 44px;
        margin: 0 0 0 15px;
        font-size: 1.125em;
        line-height: 2.4;
    }

    .footer .footer-tweet .icon {
        margin: 2px 5px 0 18px;
    }
    /*endregion*/

    /*endregion*/

}
/*endregion*/


/*region iPhone 6 Plus / 7 Plus styles */
@media only screen and (min-device-width : 414px) {

    /*region Collapsible menu styles*/
    .top-menu .collapsible-menu li a .logo.logo-mac {
        content: url("/img/mobile/common/pdf_expert_mac_menu_3x.png");
    }

    .top-menu .collapsible-menu li a .logo.logo-ios {
        content: url("/img/mobile/common/pdf_expert_ios_menu_3x.png");
    }
    /*endregion*/

    /*region Expert languages block styles */
    .expert-languages .flag {
        width: 60px;
        height: 60px;
        margin: 15px 30px;
    }
    /*endregion*/

}
/*endregion*/
