/* ------------------------------------------------------------ *\
    Layouts
\* ------------------------------------------------------------ */

html,
body {
    height: 100%;
}
body {
    position: relative;
    color: #433228;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.3em;
    background-color: #ffffff;
    overflow-x: hidden;
    z-index: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
}
a:focus {
    outline: 0;
    text-decoration: none;
}
.dark-hr {
    border-top: 1px solid #d2d2d2;
}

/*  Input error style
    ------------------------------------ */

input.alerted,
input:focus.alerted,
input:hover.alerted,
select.alerted,
select:focus.alerted,
select:hover.alerted,
textarea.alerted,
textarea:focus.alerted,
textarea:hover.alerted,
.form-control.alerted,
.form-control.alerted:focus,
.form-control.alerted:hover {
    border-color: #f00;
    background-color: #ffefef;
}
textarea {overflow-x: hidden;}
/*  Scroll to top button
    ------------------------------------ */

.scroll-top {
    width: 75px;
    height: 76px;
    position: fixed;
    z-index: 100;
    right: 5%;
    bottom: 28px;
    transition: opacity .5s linear;
    opacity: 0;
    background: url("../img/info/icons/to-top.png") no-repeat center center;
}

.scroll-top.in {
    transition: opacity 2s linear;
    opacity: 1;
}


/* ------------------------------------------------------------ *\
    Text
\* ------------------------------------------------------------ */
.heading-primary {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 1.3;
}
.heading-secondary {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 42px;
    color: #3a3a3a;
}
.heading-tertiary {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 42px;
}
.body-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #373838;
}
/* ------------------------------------------------------------ *\
    Buttons
\* ------------------------------------------------------------ */

/*  Btn-primary
------------------------------------ */

.btn.btn-primary {
    display: inline-block;
    padding: 13px 37px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    color: #fff;
    -webkit-transition: all .5s;
         -o-transition: all .5s;
            transition: all .5s;
    background-color: #048ef8;
}
.btn.btn-primary:hover {
    background-color: #0076ba;
}

/*  Transparent_button
------------------------------  */

.transparent_button {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 60px;
    border: 1px solid #fff;
    border-radius: 25px;
    outline: 0;
    color: #fff;
    transition: all .2s ease;
    background-color: transparent;
    box-shadow: none;
    text-transform: uppercase;
}
.transparent_button:hover,
.transparent_button:focus {
    background-color: #fff;
    text-decoration: none;
}
.transparent_button.active {
    color: #fff;
    background-color: #fff;
}

/*  Checkbox
------------------------------------ */
.checkbox { line-height: 1.42; }

/* ------------------------------------------------------------ *\
    Header
\* ------------------------------------------------------------ */
/* Header */
.header {
    padding: 19px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, .11);
            box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, .11);
    z-index: 999;
}
body:not(.docs) .mobile-sidebar__container {
    display: none;
}

/* Sticky Header */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    -webkit-animation-name: animate_header;
    -o-animation-name: animate_header;
    animation-name: animate_header;
    -webkit-animation-duration: .7s;
    -o-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.header.sticky .header-search {
    display: none;
}
.header.sticky .logo {
    margin-top: 0;
}
.header.sticky .logo img {
    max-width: 80px;
}

/* Header Animation */
@-webkit-keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Search */
.header-search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: calc(100% - 150px);
    padding-bottom: 4px;
    border-bottom: 1px solid #ddd;
    margin-left: auto;
}
.header-search__form {
    position: relative;
}
.header-search__input {
    position: absolute;
    top: 0;
    right: 15px;
    width: 0px;
    height: 40px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50px;
    opacity: 0;    
    outline: none;
    transition: all 400ms ease-in-out;
    -moz-box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
    -webkit-box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
    box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
}
.header-search__input.expand {
    width: 300px;
    padding: 0 15px;
    border: 1px solid #e3ebf3;
    opacity: 1;
}
/* Search input placeholders */
.header-search__input::-webkit-input-placeholder {
    color: #373838;
    opacity: .3;
}
.header-search__input::-moz-placeholder {
    color: #373838;
    opacity: .3;
}
.header-search__input:-ms-input-placeholder {
    color: #373838;
    opacity: .3;
}
.header-search__input::placeholder {
    color: #373838;
    opacity: .3;
}
.header-search__input::-ms-clear {
    display: none;
}

.header-search__btn {
    margin-right: 20px;
    position: relative;
    z-index: 1;
    line-height: 40px;
    cursor: pointer;
    -webkit-transition: ease 0.5s;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    transition: ease 0.5s;
}
.header-search__btn.slided {
    padding-right: 15px;

}
.header-search__btn:focus {
    outline: none;
    outline-offset: 0;
}
.header__btn {
    padding-top: 7px !important;
    padding-bottom: 6px !important;
    font-size: 16px !important;
}
.header__login {
    position: relative;
    padding: 20px !important;
}
.header__login::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    margin: auto;
    display: block;
    width: 5px;
    height: 5px;
    background-color: #d8d8d8;
    border-radius: 50%;
}

/* Navigation items */
.header-nav {
    padding-top: 15px;
}
.header-nav li {
    list-style: none;
}
.header-nav li a,
.navbar--secondary li a,
.header__login {
    padding-top: 0;
    padding-right: 30px;
    padding-bottom: 0;
    font-size: 16px;
    color: #373838 !important;
    transition: color 300ms;
    -o-transition: color 300ms;
    -moz-transition: color 300ms;
    -webkit-transition: color 300ms;
}
.navbar--secondary li a {
    font-size: 14px;
}
.header-nav li > a:hover,
.header-nav li > .active,
.header__login:hover,
.navbar--secondary li > a:hover,
.navbar--secondary li > a.active {
    color: #048ef8 !important;
    text-decoration: none;
}
.header-nav li:last-child a {
    padding-right: 0;
    opacity: .4;
    transition: opacity 300ms;
    -o-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -webkit-transition: opacity 300ms;
}
.navbar--secondary li:last-child a {
    padding-right: 0;
}
.header-nav li:last-child a:hover,
.header-nav li:last-child a:focus {
    opacity: 1;
    color: #373838 !important;
}

/* Toogle Menu */
.navbar-toggle {
    margin: 0;
    padding: 0;
}
.navbar-toggle .icon-bar {
    width: 28px;
    background: #545454;
    -webkit-transition: ease .5s;
    -moz-transition: ease .5s;
    transition: ease .5s;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    -webkit-transform: rotate(0)translateY(0)translateX(0);
    transform: rotate(0)translateY(0)translateX(0);
}
.navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1
}
.navbar-toggle.collapsed .icon-bar:nth-child(4) {
    -webkit-transform: rotate(0)translateY(0)translateX(0);
    transform: rotate(0)translateY(0)translateX(0);
}
.navbar-toggle .icon-bar:nth-child(2) {
    -webkit-transform: rotate(-45deg)translateY(5px)translateX(-5px);
    transform: rotate(-45deg)translateY(5px)translateX(-5px);
}
.navbar-toggle .icon-bar:nth-child(3) {
    opacity: 0
}
.navbar-toggle .icon-bar:nth-child(4) {
    -webkit-transform: rotate(45deg)translateY(-4px)translateX(-3px);
    transform: rotate(45deg)translateY(-4px)translateX(-3px);
}

.navbar--secondary {
    padding-top: 25px;
    list-style: none;
    float: right;
}
.navbar--secondary li {
    display: inline-block;
}
/* ------------------------------------------------------------ *\
    Logo
\* ------------------------------------------------------------ */
.logo {
    position: relative;
    z-index: 1003;
    margin-top: -45px;
    padding: 0;
    font-size: 0;
    width: auto;
    height: auto;
}

/* ------------------------------------------------------------ *\
    Header documentation links
\* ------------------------------------------------------------ */

/*  Btn-login
------------------------------------ */
.navbar-default .navbar-nav > li {
    text-align: center;
}

.navbar-default .navbar-nav > li > .btn-login {
    min-width: 89px;
    padding: 7px 15px;
    margin-top: 7px;
    display: inline-block;
    border: none;
    border-radius: 17px;
    color: #fff;
    font-size: 14px;
    -webkit-transition: all .5s;
         -o-transition: all .5s;
            transition: all .5s;
    background-color: #337ab7;
}

.navbar-default .navbar-nav > li > .btn-login:focus,
.navbar-default .navbar-nav > li > .btn-login:hover,
.navbar-default .navbar-nav > li > .btn-login:visited {
    outline: none;
    color: #fff;
    background-color: #02578e;
}

/*  Link-contacts
------------------------------------ */

.navbar-default .navbar-nav > li > .link-contact {
    padding: 0;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 20px;
    border: none;
    color: #000000;
    font-size: 14px;
    -webkit-transition: all .5s;
         -o-transition: all .5s;
            transition: all .5s;
    background-color: none;
    letter-spacing: 0.25px;
}

.navbar-default .navbar-nav > li > .link-contact:hover {
    color: #000;
    text-decoration: underline;
}

.navbar-default .navbar-nav > li > .link-contact:focus {
    outline: none;
}
.navbar-default .navbar-nav > li > .link-contact img {
    margin-top: -3px;
    margin-right: 5px;
}
.tooltip-nowrap + .tooltip {white-space: nowrap;}

/* ------------------------------------------------------------ *\
    Mobile navbar toggle
\* ------------------------------------------------------------ */
.navbar-default .navbar-toggle {
    margin-top: 15px;
}

/* ------------------------------------------------------------ *\
    Home styles
\* ------------------------------------------------------------ */

/*  Hero
------------------------------------ */
.hero {
    position: relative;
    margin-top: -3px;
    height: 870px;
    padding-top: 100px;
    background: url(../img/info/images/home_hero_bg.jpg) no-repeat center;
    z-index: -1;
    overflow-y: hidden;
}
.hero__bg-devices {
    position: absolute;
    left: 49.85%;
    bottom: 40px;
    transform: translateX(-50%);
}
.hero .container {
    position: relative;
    margin: 0 auto;
    text-align: center;
}
.hero .heading-primary {
    max-width: 930px;
    margin: 0 auto;
    font-weight: 400;
    color: #fff;
}
.hero .body-text {
    max-width: 790px;
    padding-top: 25px;
    padding-bottom: 35px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
}
.hero__ico--animated {
    position: absolute;
    -webkit-animation: floating 3s ease-in-out 50ms infinite;
    -moz-animation: floating 3s ease-in-out 50ms infinite;
    -o-animation: floating 3s ease-in-out 50ms infinite;
    animation: floating 3s ease-in-out 50ms infinite;
}
.hero__ico-shadow {
    position: absolute;
    width:45px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .01);
    transform: rotate(-6deg);
    -webkit-animation: floating-shadow 3s ease-in-out 50ms infinite;
    -moz-animation: floating-shadow 3s ease-in-out 50ms infinite;
    -o-animation: floating-shadow 3s ease-in-out 50ms infinite;
    animation: floating-shadow 3s ease-in-out 50ms infinite;
}
.hero__ico-shadow.woo {
    left: 514px;
    top: 515px;
}
.hero__ico-shadow.magento {
    left: 593px;
    top: 505px;
}
.hero__ico-shadow.security {
    width: 40px;
    right: 222px;
    top: 547px;
}

@-webkit-keyframes floating {
    0%   { 
        -webkit-transform: translateY(0px);
        transform: translateY(0px); 
    }
    65%  { 
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px); 
    }
    100% { 
        -webkit-transform: translateY(0px);
        transform: translateY(-0px); 
    }    
}
@keyframes floating {
    0%   { 
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); 
    }
    65%  { 
        -webkit-transform: translateY(-7px);
        -moz-transform: translateY(-7px);
        -o-transform: translateY(-7px);
        transform: translateY(-7px); 
    }
    100% { 
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(-0px); 
    }     
}

@-webkit-keyframes floating-shadow {
    0%   { 
        -webkit-box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
        box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
    }
	65%  { 
        -webkit-box-shadow: 11px 10px 12px rgba(0,0,0,.3);
        box-shadow: 11px 10px 12px rgba(0,0,0,.3); 
    }
	100% { 
        -webkit-box-shadow: 11px 10px 12px rgba(0,0,0,.5);
        box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
    }
}
@keyframes floating-shadow {
    0%   { 
        -webkit-box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
        -moz-box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
        box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
    }
	65%  { 
        -webkit-box-shadow: 11px 10px 12px rgba(0,0,0,.3);
        -moz-box-shadow: 11px 10px 12px rgba(0,0,0,.3);
        box-shadow: 11px 10px 12px rgba(0,0,0,.3); 
    }
	100% { 
        -webkit-box-shadow: 11px 10px 12px rgba(0,0,0,.5);
        -moz-box-shadow: 11px 10px 12px rgba(0,0,0,.5);
        box-shadow: 11px 10px 12px rgba(0,0,0,.5); 
    }
}

/*  Quick links
------------------------------------ */
.quick-links {
    position: relative;
    margin-top: 140px;
    margin-bottom: 140px;
}
.quick-links__item {
    margin-top: 35px;
    text-align: center;
    color: #048ef8;
}
.quick-links__link {
    display: block;
    margin-top: 35px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    color: #048ef8;
}
.quick-links__bg-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 326px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, .6);
    z-index: -1;
}

/*  Devices
------------------------------------ */
.devices {
    margin-bottom: 60px;
}
.devices__header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}
.devices__tabs .nav-tabs {
    display: flex;
    justify-content: center;
    border: 0;
}
.devices__tabs .nav-tabs > li {
    display: inline-block;
    float: initial;
    margin-bottom: 0;
    margin-left: 17px;
    margin-right: 17px;
}
.devices__tabs li a {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 35px;
    min-width: 260px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #606060;
    border: 0;
}
.devices__tabs li.active a,
.devices__tabs li.active a:focus,
.devices__tabs li.active a:hover,
.devices__tabs li:hover a,
.devices__tabs li a.active,
.devices__tabs li a.active:focus,
.devices__tabs li a.active:hover {
    border: 0;
    background-color: #fff;
    box-shadow: 18px 0 54px rgba(0, 0, 0, .06);
    color: #048ef8;
}
.devices__tabs li.active:hover a {
    border: 0;
    pointer-events: none;
    color: #048ef8;
}
.devices__tab-img {
    position: relative;
    display: inline-block;
    margin-top: 70px;
    margin-left: 50px;
}
.devices__tab-trail {
    position: relative;
    display: inline-block;
    top: -25px;
    left: -11px;
}
.devices__pros {
    position: relative;
    float: left;
    left: 60px;
    max-width: 490px;
    margin-top: 170px;
    vertical-align: top;
}
.devices__carousel-item:focus {
    outline: none;
}
.devices__carousel-item .body-text {
    min-height: 100px;
}

/*  Online payments
------------------------------------ */
.online-payments {
    margin-bottom: 90px;
}
.online-payments__header {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}
.online-payments__img-container {
    position: relative;
    min-height: 500px;
}
.online-payments__img-container--desktop {
    position: absolute;
    top: -230px;
    left: -370px;
}
.online-payments__img-trail {
    position: absolute;
    bottom: -12px;
    left: 222px;
}
.online-payments__img-checkout {
    position: absolute;
    top: -30px;
    right: 45px;
}
.online-payments__plugin-img {
    position: relative;
    height: 90px;
    margin-bottom: 10px;
}
.online-payments__plugin-img img {
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.online-payments__list {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 100px;
    padding-left: 0;
    list-style: none;
}
.online-payments__list-item {
    width: 16.66666667%;
    float: left;
}
.online-payments__list-item > div {
    display: block;
    height: 40px;
    line-height: 40px;
    position: relative;
}
.online-payments__list-item:not(:first-child) > div:before {
    content: '';
    width: 145px;
    height: 2px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ebf6fc;
    z-index: -1;
}
.online-payments__list-item .icon__container {
    display: inline-block;
    position: relative;
    background: #fff;
}
.online-payments__list-item .icon__container:before,
.online-payments__list-item .icon__container:after {
    content: '';
    height: 2px;
    width: 4px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
}
.online-payments__list-item .icon__container:before { left: -4px; }
.online-payments__list-item .icon__container:after { right: -4px; }
.online-payments__list-item:last-child .icon__container:after {
    width: 50px;
    right: -50px;
}
.online-payments__list p {
    margin-top: 15px;
    font-weight: 300;
    font-size: 12px;
    color: #3a3a3a;
    letter-spacing: 0.025em;
    text-align: center;
}

/*  Mobile payments
------------------------------------ */
.mobile-payments {
    margin-bottom: 120px;
}
.mobile-payments__img-container {
    position: relative;
    min-height: 600px;
}
.mobile-payments__img {
    position: absolute;
    top: -69px;
    right: 200px;
    z-index: -1;
}
.mobile-payments__img-trail {
    position: absolute;
    left: 23px;
    top: 366px;
}
.mobile-payments__img-checkout {
    position: absolute;
    top: -68px;
    left: -186px;
}
.mobile-payments__img--mobile {
    display: block;
    margin: 0 auto;
}

/*  Call to action
------------------------------------ */
.cta {
    position: relative;
    height: 375px;
    min-height: 375px;
    background: url(../img/info/images/cta_bg.png) no-repeat center, linear-gradient(to bottom, #1d6ab2 0%,#465fca 69%);
}
.cta .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.cta__heading {
    margin-bottom: 35px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
}
/*  End of Home Section */


.section{position: relative;}
.floating-content {
    margin-bottom: 30px;
    position: relative;
    transition: all .2s ease-in-out;
    background-color: #ffffff;
    box-shadow: 1px 1px 38px 0px rgba(0, 0, 0, 0.11);
}

.article.floating-corection {
    padding: 40px;
    -webkit-transition: none; 
         -o-transition: none; 
            transition: none; 
}
.content {
    min-height: 224px;
}

/* ------------------------------------------------------------ *\
            PACKAGES PAGE
\* ------------------------------------------------------------ */
.packages {
    padding-top: 95px;
    padding-bottom: 140px;
}
.packages .heading-primary {
    margin-bottom: 20px;
    color: #3a3a3a;
}
.packages .heading-secondary {
    margin-top: 70px;
    margin-bottom: 30px;
    font-weight: 500;
}
.packages .heading-tertiary {
    margin-top: 15px;
    margin-bottom: 25px;
}
.packages__item {
    margin-bottom: 30px;
}
.packages__item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 38px 15px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 5px 5px 38px rgba(51, 55, 59, .08);
    transition: all .5s ease-in-out;
}
.packages__item a:hover,
.packages__item a:focus {
    text-decoration: none;
    box-shadow: 5px 5px 60px rgba(51, 55, 59, .15);
}
.packages__item img {
    width: 106px;
    height: 106px;
    margin: 0 auto 30px;
}
.packages__title {
    margin-bottom: 13px;
    font-size: 16px;
    color: #373838;
}
.packages__link {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    color: #048ef8;
}
/* ------------------------------------------------------------ *\
            SANDBOX PAGE
\* ------------------------------------------------------------ */
.sandbox__hero {
    position: relative;
    margin-top: -3px;
    height: 500px;
    padding-top: 50px;
    background: url(../img/info/images/sandbox_hero_bg.jpg) no-repeat center;
    z-index: -1;
    overflow-y: hidden;
}
.sandbox__hero .heading-primary {
    max-width: 1020px;
    margin: 0 auto;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
.api__section {
    background: #f8f9f9;
    padding: 90px 0 60px;
}
.api-box {
    display: block;
    min-height: 220px;
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 46px 0 rgba(0, 0, 0, .05);
            box-shadow: 0 0 46px 0 rgba(0, 0, 0, .05);
    -webkit-transition: .3s cubic-bezier(.25,.1,.25,1);
         -o-transition: .3s cubic-bezier(.25,.1,.25,1);
            transition: .3s cubic-bezier(.25,.1,.25,1);
}
.api-box:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 0 52px 0 rgba(0, 0, 0, .1);
    -webkit-transform: translateY(-.325em);
        -ms-transform: translateY(-.325em);
            transform: translateY(-.325em);
}
.api-box__title {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin: 20px 0;
}
.api-box__description {
    max-width: 165px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 16px;
    color: #3a3a3a;
}


/* ------------------------------------------------------------ *\
                    Footer
\* ------------------------------------------------------------ */
footer {
    padding: 40px 0 55px 0;
    background: #2a3137;
}
.footer-list {
    padding-left: 0;
    padding-bottom: 25px;
    margin-bottom: 0;
    list-style: none;
}

.footer-list__title {
    font-weight: 700;
    color: #fff;
}
footer a,
footer a:focus {
    color: #bcbcbc;
    transition: color 300ms;
    -o-transition: color 300ms;
    -moz-transition: color 300ms;
    -webkit-transition: color 300ms;
}
footer a,
.footer-list__title {
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0.025em;
}
footer a:hover {
    color: #048ef8;
    text-decoration: none;
}


/* ------------------------------------------------------------ *\
    Features
\* ------------------------------------------------------------ */

.features {
    min-height: 500px;
    padding: 40px 0 10px 0;
    position: relative;
    color: #555;
}

/* ------------------------------------------------------------ *\
    Main
\* ------------------------------------------------------------ */
.main {
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    padding-top: 118px;
    overflow-x: hidden;
    z-index: 1;
}   

/* ------------------------------------------------------------ *\
    Sidebar-nav
\* ------------------------------------------------------------ */

.sidebar-nav {
    padding-bottom: 10px;
    overflow: hidden;
}
.sidebar-nav ul {
    padding-left: 0px;
    position: relative;
    list-style-type: none;
}
.sidebar-nav > ul {
    padding: 20px 0;
    margin-bottom: 20px;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    background: #fafbfc;
}
.sidebar-nav a {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    color: #3a3a3a;
    line-height: 35px;
    -webkit-transition: color 300ms;
            transition: color 300ms;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-nav a:active,
.sidebar-nav a:hover,
.sidebar-nav .active,
.sidebar-nav .expand > .active:hover,
.sidebar-nav .expand > .active:active {
    outline: none;
    text-decoration: none;
    color: #048ef8
}
.sidebar-nav .expand > a:active,
.sidebar-nav .expand > a:hover,
.sidebar-nav .expand > a:focus {
    color: #3a3a3a;
}
.sidebar-nav .btn-expand {
    position: relative;
    display: inline-block;
}
.sidebar-nav .btn-expand:before {
    background: url(../img/ico/ico-plus.svg) no-repeat center;
}
.sidebar-nav .expand > .btn-expand:before {
    background: url(../img/ico/ico-minus.svg) no-repeat center;
}
.sidebar-nav .btn-expand:before,
.sidebar-nav .expand > .btn-expand:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    -webkit-background-size: 10px 10px;
    -moz-background-size: 10px 10px;
    -o-background-size: 10px 10px;
    background-size: 10px 10px;
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}
.sidebar-nav .sub-menu {
    padding-left: 20px;
    display: none;
}
.sidebar-nav .sub-menu-secondary,
.sidebar-nav .sub-menu-teritary,
.sidebar-nav .sub-menu-quaternary {
    padding-left: 20px;
    display: none;
}
.sidebar-nav .expand > ul.sub-menu,
.sidebar-nav .expand > ul.sub-menu-secondary,
.sidebar-nav .expand > ul.sub-menu-teritary,
.sidebar-nav .expand > ul.sub-menu-quaternary {
    display: block;
}
.sidebar-nav .expand>ul.sub-menu-secondary a,
.sidebar-nav .expand>ul.sub-menu-teritary a ,
.sidebar-nav .expand>ul.sub-menu-quaternary a {
    font-size: 14px;
}
.sidebar-nav .expand > ul.sub-menu-quaternary a {
    font-size: 13px;
}
.sidebar-nav .sub-menu-secondary {
    position: relative;
}
.sidebar-nav .sub-menu-quaternary a {
    position: relative;
}
.sidebar-nav .sub-menu-quaternary .current a {
    text-shadow: 0.5px 0 0 #000;
    background-color: #fff;
}
/* .sidebar-nav .sub-menu-quaternary a:before {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    display: none;
    background-color: #fff;
} */
/* .sidebar-nav .sub-menu-quaternary .current a:before {
    display: block;
} */
.sidebar-nav .expand > a {
    font-weight: 700;
    font-size: 15px;
}

.sticky_sidebar.sidebar-fixed,
.sticky_sidebar.sidebar-absolute {
	left: calc(50% - 570px);
	width: 327px;
}
.sticky_sidebar.sidebar-fixed { 
    position: fixed; 
}
.sticky_sidebar.sidebar-absolute { 
    position: absolute; 
}
.api-select__container select {
    border: 1px solid #e1e4e7;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url(../img/ico/arrow-down.png) !important;
    background-position: 93% 50% !important;
    background-repeat: no-repeat !important;
    cursor: pointer;
}
.api-select__container select::-ms-expand {
    display: none;
}
.api-select__container select:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

/* ------------------------------------------------------------ *\
    Article
\* ------------------------------------------------------------ */

.article {
    padding: 28px 25px;
    margin-bottom: 360px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #444;
}

.article p {
    margin-bottom: 0;
}
.article a {
    color: #048ef8;
}

.article h1,
.article h2,
.article h3 {
    margin: 0 0 24px 0;
}

.article h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: #3a3a3a;
}


.article .article-head {
    margin-bottom: 30px;
}

.article .article-image {
    margin: 40px 0 50px;
    text-align: center;
}

.article .article-image img {
    width: 100%;
    height: auto;
}
.article-head .heading-primary {
    color: #3a3a3a;
}

/*  Article modifiers  */

/*  Article-secondary  
----------------------------*/

.article-secondary h1 {
    line-height: 1.2em;
}
.article-secondary h2 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 24px;
}


/* ------------------------------------------------------------ *\
    Footnote
\* ------------------------------------------------------------ */
.footnote {
    position: relative;
    padding-top: 49px;
    padding-bottom: 49px;
    background-color: #007ff5;
}
.footnote .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}
.footnote__title {
    display: inline-block;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
}
.footnote .transparent_button {
    float: right;
}

/* ------------------------------------------------------------ *\
    Search    
\* ------------------------------------------------------------ */

.search {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    background-color: #fff;
}
.search input {
    width: 100%;
    padding: 6px 55px 6px 15px;
    border: none;
    background: none;
}
.search .search-btn {
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    background: none;
}
.search .search-btn:focus,
.search input:focus {
    outline: none;
}

/*  Search placeholder color  */

.search input::-webkit-input-placeholder {
    color: #000;
}
.search input:-moz-placeholder {
    color: #000;
}
.search input::-moz-placeholder {
    color: #000;
}
.search input:-ms-input-placeholder {
    color: #000;
}

/*  Search icons
-----------------------  */

.ico-search {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url(../img/ico/ico-search.png) 0 0 no-repeat;
}

/* ------------------------------------------------------------ *\
    Custom dropdown
\* ------------------------------------------------------------ */
.custom-rounded-dropdown {
    height: 30px;
    padding: 4px 25px 4px 22px;
    border-radius: 30px;
}
.custom-rounded-dropdown::-ms-expand {
    display: none;
}
.custom-rounded-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
}
.custom-arrow-wrapper {
    position: relative;
}
.custom-arrow-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    margin-left: -3px;
    border-color: #555555 transparent transparent transparent;
    border-style: solid;
    border-width: 6px 3px 0 3px;
    height: 0;
    width: 0;
    pointer-events: none;
}
@media all and (min-width:0\0) and (min-resolution:.001dpcm){
    .custom-rounded-dropdown {
        padding: 4px 12px;
    }
    .custom-arrow-wrapper::before {
        content: '';
        border-width: 0;
    
    }
}

/* ------------------------------------------------------------ *\
    Editor
\* ------------------------------------------------------------ */

.editor {
    height: 500px;
}

/* ------------------------------------------------------------ *\
    Tabs
\* ------------------------------------------------------------ */

.tabs {
    margin: 20px 0;
}
.tabs .tab {
    display: none;
}
.tabs .tabs-nav {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 18px;
    list-style-type: none;
    background-color: #0072bc;
}
.tabs .tab.current {
    display: block;
    position: relative;
}
.tabs .tabs-nav a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.tabs .tabs-nav .current a {
    border-color: #0c0c0c;
    background-color: #272822;
    cursor: default;
}
.tabs .tabs-nav li:not(.current) a:hover {
    background-color: #1f6696;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.tabs .tabs-nav li:not(.current) a:active {
    background-color: #185b88;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.tabs .tabs-nav:after {
    content: "";
    display: table;
    clear: both;
    line-height: 0;
}
.tabs .tabs-nav li {
    min-width: 114px;
    float: left;
}
.tabs .tabs-nav a {
    width: 100%;
    padding: 12px;
    display: block;
    border-right: 1px solid #0072bc;
    border-left: 1px solid #0072bc;
    color: #fff;
    text-align: center;
    background-color: #1984ca;
}
.tabs pre {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}
.tabs .tabs-nav a:focus,
.tabs .tabs-nav a:hover {
    text-decoration: none;
}
.tabs pre.copied::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(12, 19, 15, 0.85);
    opacity: 0;
    -webkit-animation: fadeOutAnimation 2s 1;
    -moz-animation:    fadeOutAnimation 2s 1;
    -o-animation:      fadeOutAnimation 2s 1;
    animation:         fadeOutAnimation 2s 1;
}
.tabs pre.copied::after {
    content:'Copied to Clipboard';
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    -webkit-animation: fadeOutAnimation 2s 1;
    -moz-animation:    fadeOutAnimation 2s 1;
    -o-animation:      fadeOutAnimation 2s 1;
    animation:         fadeOutAnimation 2s 1;
}
@-webkit-keyframes fadeOutAnimation {
  0%, 60%   { opacity: 1; }
  100% { opacity: 0; }
}
@-moz-keyframes fadeOutAnimation {
  0%, 60%   { opacity: 1; }
  100% { opacity: 0; }
}
@-o-keyframes fadeOutAnimation {
  0%, 60%   { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes fadeOutAnimation {
  0%, 60%   { opacity: 1; }
  100% { opacity: 0; }
}

/*  .highlight.js code container fixed height
-------------------------------------------------  */

.hljs {
    max-height: 500px;
    padding: 5px 10px !important;
}
.hljs-line-numbers {
	text-align: right;
	border-right: 1px solid #ccc;
	color: #999;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.copy-to-clipboard-btn {
    height: 20px;
    vertical-align: top;
    margin-top: 3px;
    -ms-touch-action: none;
	touch-action: none;
}

/* ------------------------------------------------------------ *\
    Developer info table
\* ------------------------------------------------------------ */
/* Always add :not(code) > table in selector when styling tables, because 
   we don't wanna apply these styles to code preview panels.
   Note that Highlight js uses tables in code preview panel. */
.cms-tables :not(code) > table {
    width: 100% !important;
    padding: 5px;
    color: #433228;
    margin: auto;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.cms-tables :not(code) > table thead tr td,
.cms-tables :not(code) > table tbody tr th,
.cms-tables :not(code) > table thead tr th {
    padding: 12px;
    border-top: none;
    border-right: 1px solid #0072bc;
    border-bottom: 1px solid #0072bc;
    border-left: 1px solid #0072bc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-align: center;
    vertical-align: middle;
    background-color: #1984ca;
}
.cms-tables :not(code) > table thead tr {border-top: none;}
.cms-tables :not(code) > table tr:nth-child(odd) td {
    color: #666b85;
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
.cms-tables :not(code) > table tr:nth-child(even) td {background-color: #ebebeb;}
.cms-tables :not(code) > table td {
    font-size: 14px;
    font-weight: normal;
    padding: 8px;
    border: 1px solid #c1c3d1;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    background-color: #ffffff;
}
.cms-tables :not(code) > table.white-table-rows td,
.cms-tables :not(code) > table.white-table-rows tr:nth-child(even) td,
.cms-tables :not(code) > table.white-table-rows tr:nth-child(odd) td {
    text-shadow: none;
    color: #433228;
    background-color: #ffffff;
}

/* ------------------------------------------------------------ *\
    Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
    padding-left: 0;
    font-size: 13px;
    list-style: none;
}
.breadcrumbs li {
    display: inline-block;
}
.breadcrumbs a {
    display: inline-block;
    color: #0072bc;
}
.breadcrumbs a:hover {
    color: #0072bc;
}
.breadcrumbs li.current a {
    font-weight: 600;
}
.breadcrumbs span {
    margin: 0 3px;
    display: inline-block;
    color: #0072bc;
}

/* ------------------------------------------------------------ *\
    Form-contacts
\* ------------------------------------------------------------ */

.form-contacts .textarea {
    min-height: 130px;
    resize: vertical;
}

.form-contacts label {
    font-weight: 300;
    color: #373838;
}
.form-contacts .form-group {
    margin-bottom: 25px;
}
.form-contacts .form-control {
    height: 40px;
    font-size: 16px;
    color: #373838;
    border: 1px solid #d1dbe5;
    -webkit-box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
       -moz-box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
            box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
}
.selectpicker {
    -webkit-appearance: none;
       -moz-appearance: none;
    background-image: url(../img/ico/arrow-down.png) !important;
    background-position: 97% 50% !important;
    background-repeat: no-repeat !important;
    cursor: pointer;
}
.selectpicker::-ms-expand {
    display: none;
}

/*  Custom checkbox
-------------------------------------------------  */
.checkbox > .form-label {
    display: block;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 19px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox > .form-label input {
    width: 0;
    position: absolute;
    height: 0;
    opacity: 0;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #d1dbe5;
    -webkit-box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
       -moz-box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
            box-shadow: inset 0 0 7px rgba(49, 79, 100, .12);
    -webkit-transition: ease .2s;
       -moz-transition: ease .2s;
         -o-transition: ease .2s;
            transition: ease .2s;
}
/* Style the checkmark/indicator */
.checkbox>.form-label .checkmark:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 9px;
    border: solid #048ef8;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg) scale(0);
        -ms-transform: rotate(45deg) scale(0);
         -o-transform: rotate(45deg) scale(0);
            transform: rotate(45deg) scale(0);
    -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
         -o-transition: transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;

}
/* Show the checkmark when checked */
.checkbox > .form-label input:checked ~ .checkmark:after {
    -webkit-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
         -o-transform: rotate(45deg) scale(1);
            transform: rotate(45deg) scale(1);
    -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
         -o-transition: transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;
  
}
span.red {
    color: #f8302b;
}

/* ------------------------------------------------------------ *\
    Search engine page
\* ------------------------------------------------------------ */

h1.search_title {
    padding-right: 90px;
    margin-bottom: 5px;
}

.search_keyword {
    display: inline;
    text-transform: none;
}

.search_keyword:before,
.search_keyword:after {
    content: "\"";
}

.search_counted_result_title {
    margin-top: 13px;
    float: right;
}

h2.search_result_title {
    margin-top: 30px;
}

.search_result_box {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.search_result_box h3 {
    margin-bottom: 10px;
}

.search_result_box_link {
    color: #000;
}

.search_result_box_link:hover,
.search_result_box_link:focus {
    color: #000;
    text-decoration: none;
}

.search_hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.search_result_box:hover {
    position: relative;
    cursor: pointer;
    transition: 0.2s;
    background: #f7f7f7;
    box-shadow: 0 0 0 12px #f7f7f7;
}
.searched_info_text {
    word-wrap: break-word;
}
.highlighter {
    background-color: yellow;
}

.search_breadcrumbs {
    display: inline-block;
    color: #0072bc;
}

.search_breadcrumbs.current {
    font-weight: 600;
}

.matching_results_info {
    margin-top: 15px;
    color: #a1a1a1;
    font-size: 12px;
}

/*just for test, delete after that*/
.position_search_icon {
    position: absolute;
    top: 1px;
    left: 90%;
}


/*----- zoom in image -----*/
.img_viewer_backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 199;
    color: #fff;
}
.img_viewer_fullscreen_frame {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 200;
    width: auto;
    max-height: calc(100% - 60px);
    max-width: calc(100% - 60px);
    background-color: #fff;
    border: 2px solid white;
    box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.5);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.img_viewer_close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 201;
    font-size: 24px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.img_viewer_close:hover {
    color: #fff;
    text-shadow: none;
    opacity: 1;
    cursor: pointer;
    -moz-transform: translateY(-50%) scale(1.3);
    -ms-transform: translateY(-50%) scale(1.3);
    -o-transform: translateY(-50%) scale(1.3);
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
/*.zoom-in-cursor img {cursor: zoom-in;}*/
.zoom-in-cursor a > img {cursor: pointer;}

/* /doc/ecommerce_platforms/v1_0/ shopping carts fixes*/
.supported_platforms_logos {margin-right: -40px;}
.supported_platforms_logos > a {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 13px;
}
.supported_platforms_logos a[href*="presta-shop"] > img {padding: 5px 10px 5px 0;}

/*doc/smart_pos_devices/v1_0/ and doc/traditional_pos_devices/v1_0/ myPOS terminal images fixes*/
.pos_devices_images {
    text-align: center;
    margin-bottom: 20px;
}
.pos_devices_images > a {
    display: inline-block;
    margin-right: 20px;
    margin-left: 20px;
}
.pos_devices_images > a > img {margin-top: 10px;}

/* ------------------------------------------------------------ *\
    Pagination
\* ------------------------------------------------------------ */
.pagination {
    display:block;
    margin: auto;
    text-align: center;
    margin-top: 28px;
}
.pagination a {
    margin: 20px 3px;
    display: inline-block;
    color: #a8a8a8;
    font-size: 14px;
}
.pagination .dots {
    display: inline-block;
    margin: 20px 10px;
    color: #a8a8a8;
}
.pagination a:hover {
    color: #0072ba;
}
.pagination a.active {
    color: #0072ba;
    text-decoration: underline;
}
.pagination a:first-child,
.pagination a:last-child {
    min-width: 100px;
}

/*  Cookies
==========================================*/
.cookies-container {
    background-color: rgba(4,127,198,.92);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    color: #fff;
    text-align: left;
    z-index: 999999;
}
.cookies-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.cookies-content {
    overflow: hidden;
    font-size: 0;
    color: #fff; 
    font-weight: 300;
}
.cookies-content::before {
    display: inline-block;
    width: 41px;
    height: 41px;
    margin-right: 19px;
    background: url(../img/info/icons/wheel_icon.png) no-repeat 0 0;
    vertical-align: middle;
    content: '';
}
.cookies-content-inner {
    display: inline-block;
    width: calc(100% - 60px);
    vertical-align: middle;
}

.cookies-content h2,
.cookies-content .cookie-title {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
}

.cookies-content p {
    font-size: 16px;
    margin-bottom: 0;
}

.cookies-content a {
    color: #fff;
    font-weight: 700;
}

.cookies-action {
    text-align: right;
}
.btn-close-cookies {
    position: absolute;
    top: 10px;
    right: 5px;
    display: inline-block;
    width: 26px;
    height: 26px;
    font-size: 19px;
    color: #fff;
    opacity: 1;
    font-weight: normal;
}
.btn-close-cookies:hover,
.btn-close-cookies:focus { color: #fff; }

.button_continue {
    display: inline-block;
    padding: 6px 25px 5px; 
    margin-top: 8px;
    font-size: 14px; 
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .025em;
    border: 2px solid #fff; 
    border-radius: 18px;
    color: #fff; 
    -webkit-transition: all .5s; 
         -o-transition: all .5s; 
            transition: all .5s; 
}

.button_continue:hover {
    color: #047fc6; 
    background-color: #fff; 
    border-color: #fff;
    text-decoration: none; 
}


/*  Lists
==========================================*/
.list--blue-ticks {
    padding-left: 0;
}
.list--blue-ticks li {
    position: relative;
    display: inline-block;
    padding-left: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    list-style-type: none;
    color: #373838;
}
.list--blue-ticks li::before {
    position: absolute;
    top: 4px;
    left: 4px;
    display: inline-block;
    width: 10px;
    height: 16px;
    border: 2px solid #048ef8;
    border-top-width: 0;
    border-left-width: 0;
    vertical-align: middle;
    content: '';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*  Icons
==========================================*/

i { vertical-align: middle; }
.ico {
    display: inline-block;
}
.ico-arrows {
    background: url(../img/info/icons/arrows.png) no-repeat center;
    width: 83px;
    height: 32px;
    margin-top: 7px;
    margin-bottom: 7px;
}
.ico-arrow-carousel {
    position: absolute;
    top: 55%;
    background: url(../img/info/icons/arrow_carousel_left.svg) no-repeat center;
    -webkit-background-size: 19px 52px;
    -moz-background-size: 19px 52px;
    -o-background-size: 19px 52px;
    background-size: 19px 52px;
    width: 19px;
    height: 52px;
    cursor: pointer;
}
.ico-arrow-carousel.left {
    left: 30px;
    z-index: 1;
}
.ico-arrow-carousel.right {
    transform: rotate(.5turn);
    right: -10px;
}
.ico-document {
    background: url(../img/info/icons/document.svg) no-repeat center;
    -webkit-background-size: 40px 45px;
    -moz-background-size: 40px 45px;
    -o-background-size: 40px 45px;
    background-size: 40px 45px;
    width: 40px;
    height: 45px;
}
.ico-gears {
    background: url(../img/info/icons/gears.svg) no-repeat center;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -o-background-size: 50px 50px;
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
}
.ico-message-support {
    background: url(../img/info/icons/message_support.svg) no-repeat center;
    -webkit-background-size: 61px 48px;
    -moz-background-size: 61px 48px;
    -o-background-size: 61px 48px;
    background-size: 61px 48px;
    width: 61px;
    height: 48px;
}
.ico-website {
    background: url(../img/info/icons/website.svg) no-repeat center;
    -webkit-background-size: 45px 35px;
    -moz-background-size: 45px 35px;
    -o-background-size: 45px 35px;
    background-size: 45px 35px;
    width: 45px;
    height: 35px;
}
.ico-transaction {
    background: url(../img/info/icons/transaction.svg) no-repeat center;
    -webkit-background-size: 38px 26px;
    -moz-background-size: 38px 26px;
    -o-background-size: 38px 26px;
    background-size: 38px 26px;
    width: 38px;
    height: 26px;
}
.ico-fraud-check {
    background: url(../img/info/icons/fraud-check.svg) no-repeat center;
    -webkit-background-size: 31px 38px;
    -moz-background-size: 31px 38px;
    -o-background-size: 31px 38px;
    background-size: 31px 38px;
    width: 31px;
    height: 38px;
}
.ico-vault {
    background: url(../img/info/icons/vault.svg) no-repeat center;
    -webkit-background-size: 38px 35px;
    -moz-background-size: 38px 35px;
    -o-background-size: 38px 35px;
    background-size: 38px 35px;
    width: 38px;
    height: 35px;
}
.ico-success {
    background: url(../img/info/icons/succees.svg) no-repeat center;
    -webkit-background-size: 34px 34px;
    -moz-background-size: 34px 34px;
    -o-background-size: 34px 34px;
    background-size: 34px 34px;
    width: 34px;
    height: 34px;
}
.ico-paid {
    background: url(../img/info/icons/paid.svg) no-repeat center;
    -webkit-background-size: 38px 36px;
    -moz-background-size: 38px 36px;
    -o-background-size: 38px 36px;
    background-size: 38px 36px;
    width: 38px;
    height: 36px;
}
.ico-woo {
    left: 521px;
    top: 482px;
    background: url(../img/info/icons/woo.png) no-repeat center;
    -webkit-background-size: 53px 35px;
    -moz-background-size: 53px 35px;
    -o-background-size: 53px 35px;
    background-size: 53px 35px;
    width: 53px;
    height: 35px;
}
.ico-magento {
    left: 603px;
    top: 464px;
    background: url(../img/info/icons/magento.png) no-repeat center;
    -webkit-background-size: 47px 42px;
    -moz-background-size: 47px 42px;
    -o-background-size: 47px 42px;
    background-size: 47px 42px;
    width: 47px;
    height: 42px;
}
.ico-security {
    right: 212px;
    top: 507px;
    background: url(../img/info/icons/security.png) no-repeat center;
    -webkit-background-size: 42px 40px;
    -moz-background-size: 42px 40px;
    -o-background-size: 42px 40px;
    background-size: 42px 40px;
    width: 42px;
    height: 40px;
}
.ico-arrow--white {
    right: 20px;
    top: 11px;
    background: url(../img/ico/arrow-down-white.svg) no-repeat center;
    -webkit-background-size: 20px 11px;
    -moz-background-size: 20px 11px;
    -o-background-size: 20px 11px;
    background-size: 20px 11px;
    width: 20px;
    height: 11px;
}

/* ------------------------------------------------------------ *\
    Bootstrap 4 modals styles
\* ------------------------------------------------------------ */
.fade.show{opacity:1}
.modal-backdrop.show{opacity:.5}
.modal.show .modal-dialog {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.cookies-banner.cookies-banner-show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

