.tab-menu {
    width: 100%;
    background-color: #ffffff;
    position: relative;
}

.tab-menu:after {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    height: 1px;
    content: "";
    background-color: rgba(49, 55, 67, 0.4);
    z-index: 1;
}

.tabs-general {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 2px;
}

.tabs-general .tab-content {
    font-family: 'ProximaNova-Light';
    font-size: 16px;
    line-height: 1;
}

.tabs-general [type=radio] {
    display: none;
}

.tabs-general input[type="radio"] {
    position: absolute;
    z-index: -1;
}

.tabs-general input[type="radio"]:checked+.tab-label {
    color: #00b5d1;
}

.tabs-general input[type="radio"]:first-of-type:checked~.slide {
    left: 0;
}

.tabs-general .slide {
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 4px;
    background: #00b5d1;
    transition: left 0.3s ease-out;
    z-index: 2;
}

.tabs-general .tab-content {
    width: 100%;
    display: none;
    line-height: 1.5;
}

.tabs-general .tab-content.selected {
    display: block;
}

.tabs-general .tab {
    position: relative;
    display: table;
    width: 100%;
}

.tabs-general .tab .tab-label {
    padding-bottom: 14px;
}

.tabs-general label {
    font-family: 'ProximaNova-Light';
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    color: rgba(49, 55, 67, 0.4);
    background-color: #ffffff;
    box-sizing: border-box;
    display: table-cell;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 30px;
    transition: color 0.2s ease;
}

@media (max-width: 767px) {
    .tab-menu:after {
        display: none;
    }
    ul.tabs-nav {
        position: relative;
        float: left;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 20px 20px 20px;
    }
    ul.tabs-nav .dropup {
        width: 100%;
        float: left;
    }
    ul.tabs-nav .selected-item {
        width: 100%;
        float: left;
        font-size: 20px;
        font-family: 'ProximaNova-Semibold';
        line-height: 1.5;
        padding: 10px 20px;
        color: #00b5d1;
        border-radius: 2px;
        background-color: #ffffff;
        border: solid 1px rgba(49, 55, 65, 0.33);
        outline: none !important;
    }
    ul.tabs-nav .selected-item img {
        float: right;
        height: 28px;
        width: 28px;
        opacity: 0.33;
    }
    ul.tabs-nav .dropdown-menu {
        width: 100%;
        top: 52px;
        height: 0;
        margin-top: 10px;
        border: none;
        -webkit-transition: height 0.2s ease-in;
        -moz-transition: height 0.2s ease-in;
        -o-transition: height 0.2s ease-in;
        -ms-transition: height 0.2s ease-in;
        transition: height 0.2s ease-in;
        box-shadow: 0 5px 9px 0 rgba(0, 0, 0, 0.13);
    }
    ul.tabs-nav .dropdown-menu li {
        width: 100%;
        float: left;
    }
    ul.tabs-nav .dropdown-menu li.selected a {
        background: #ffffff !important;
        font-family: 'ProximaNova-Semibold';
        color: #00b5d1;
    }
    ul.tabs-nav .dropdown-menu li a {
        width: 100%;
        padding: 10px 20px;
        float: left;
        font-family: 'ProximaNova-Light';
        font-size: 20px;
        line-height: 1.56;
        color: rgba(49, 55, 65, 0.4);
    }
    ul.tabs-nav .dropdown-menu li a:hover,
    ul.tabs-nav .dropdown-menu li a:focus,
    ul.tabs-nav .dropdown-menu li a.selected {
        background: #ffffff !important;
        font-family: 'ProximaNova-Semibold';
        color: #00b5d1;
    }
    ul.tabs-nav .dropup.open .selected-item {
        border: solid 1px #00b5d1;
    }
    ul.tabs-nav .dropup.open .selected-item img {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    ul.tabs-nav .dropup.open .dropdown-menu {
        height: inherit;
    }
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.fade {
    background-color: rgba(0, 0, 0, 0.66);
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
}

.modal-content {
    position: relative;
    padding: 40px 55px;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    text-align: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.66);
}

.modal-backdrop.fade {
    background-color: rgba(0, 0, 0, 0.66);
}

.modal-header {
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    font-family: 'ProximaNova-Semibold';
    line-height: 1;
}

.modal-image {
    display: inline-block;
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    border-radius: 50%;
    border: 2px solid #9ccc65;
}

.modal-image img {
    position: absolute;
    margin-top: 42px;
    left: 12px;
}

.modal-body {
    position: relative;
    font-family: 'ProximaNova-Light';
    font-size: 18px;
    line-height: 1.56;
    padding-bottom: 40px;
}

.modal-footer {
    text-align: center;
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn {
    width: 150px;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 520px;
        margin: 300px auto;
    }
    .modal-sm {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .modal-dialog {
        margin: 150px 20px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.module {
    position: relative;
}

.module .module-header {
    margin-top: 100px;
}

.module .module-img {
    position: absolute;
    max-width: inherit;
    z-index: 1;
}

.module .module-img {
    float: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.module .module-img img {
    opacity: 0;
}

.module #loginImgs img {
    height: 490px;
}

.module #loginImgs .anybank {
    background-image: url("biid/mockup-login-anybank-7f8ebcc6761b009264d6e97da2ef7e16.png");
}

.module #loginImgs .anycity {
    background-image: url("biid/mockup-login-anycity-51ad1890c5acae3b8b97d1972323cd06.png");
}

.module #heroImgs .anybank {
    background-image: url("biid/mockup-hero-anybank-d8c19c5945ce192b9fcc1a1bfabe9b93.png");
}

.module #heroImgs .anycity {
    background-image: url("biid/mockup-hero-anycity-c2fea06e93e58617a532c033e7fcc646.png");
}

.module #signImgs .anybank {
    background-image: url("biid/mockup-sign-anybank-b8d30b2d572b66b24d93800ace21dae1.png");
}

.module #signImgs .anycity {
    background-image: url("biid/mockup-sign-anycity-46013a5ffa7ff504362aecc6b9c1e26d.png");
}

.module #authorizeImgs .module-img {
    background-image: url("biid/mockup-authorize-f73154f547862fcaa61e37d77f536981.png");
}

.module .module-img-fade {
    display: none;
}

.module-services .module-box {
    padding-top: 0px;
    padding-bottom: 120px;
}

.module-services .module-box-authorize {
    padding-bottom: 100px;
}

.module-services .module-box-video {
    padding-top: 60px;
    padding-bottom: 60px;
}

.module-services .module-block-body {
    max-width: 410px;
}

.module-services .module-block-body .body-text {
    margin-top: 20px;
}

.module-services .sign-img {
    left: -120px;
}

@media (max-width: 992px) {
    .module-services .sign-img {
        left: -200px;
        max-width: 640px;
    }
}

.module-customers .module-block-carousel {
    margin-top: 60px;
}

.module-developers .module-block-tab {
    margin-top: 50px;
}

.module-developers .tabs-general input[type="radio"]:nth-of-type(5):checked~.slide {
    left: calc(80%);
}

.module-developers .tabs-general input[type="radio"]:nth-of-type(4):checked~.slide {
    left: calc(60%);
}

.module-developers .tabs-general input[type="radio"]:nth-of-type(3):checked~.slide {
    left: calc(40%);
}

.module-developers .tabs-general input[type="radio"]:nth-of-type(2):checked~.slide {
    left: calc(20%);
}

.module-developers .tabs-general input[type="radio"]:nth-of-type(1):checked~.slide {
    left: calc(0%);
}

.module-developers .tabs-general .slide {
    width: calc(20%);
}

.module-developers .tabs-general .tab {
    margin-bottom: 40px;
    min-width: 1100px;
}

.module-developers .tabs-general .tab:after {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    height: 1px;
    content: "";
    background-color: rgba(49, 55, 67, 0.4);
    z-index: 1;
}

.module-developers .tabs-general .tab-header {
    position: relative;
    overflow-x: auto;
}

.module-developers .tabs-general label {
    width: 20%;
}

.module-developers .divider {
    position: absolute;
    left: 0;
    margin-top: 55px;
    z-index: 1;
}

.module-whitepaper .module-block-img img {
    height: 450px;
}

@media (max-width: 992px) {
    .module-whitepaper .module-block-img img {
        margin-left: -100px;
    }
}

.module-whitepaper h2 {
    margin-bottom: 60px;
}

.module-news .divider {
    margin-top: 60px;
    margin-bottom: 30px;
}

.module-box {
    padding-top: 100px;
    padding-bottom: 100px;
}

.module-box-hero {
    position: relative;
    padding-top: 160px;
}

.module-box-hero h2 {
    color: #ffffff !important;
    text-align: left;
}

.module-box-hero .module-block-hero {
    text-align: left;
}

.module-box-hero .btn {
    width: 200px;
}

.module-box-hero .btn:last-child {
    margin-left: 15px;
}

.module-box-hero-desc {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .authorize-img {
        background-position: center;
    }
    #signImgs {
        height: 650px;
    }
    #authorizeImgs {
        height: 474px;
    }
    #loginImgs {
        height: 490px;
    }
}

.module-block-news-sa {
    margin-top: 30px;
}

.module-block-news-sa .description {
    margin-bottom: 25px;
    font-family: 'ProximaNova-Light';
    font-size: 22px;
    line-height: 1.36;
    text-align: center;
    color: #313743;
}

.module-block-news-sa .fb_iframe_widget {
    float: left !important;
}

.module-block-news-sa .IN-widget {
    float: left !important;
}

.module-block-news-sa .twitter-follow-button {
    float: left !important;
    height: 20px !important;
    width: 63px !important;
    position: relative !important;
    visibility: visible !important;
}

.module-block-social-account {
    width: 100%;
    float: left;
    height: 20px;
    text-align: center;
    line-height: 1;
}

.module-block-social-account .sa {
    height: 20px;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.module-block-intro {
    margin-top: 20px;
}

.module-block-intro .divider {
    margin-top: 60px;
    margin-bottom: 100px;
}

.module-block-hero {
    max-width: 520px;
    font-family: 'ProximaNova-Light';
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    color: #ffffff;
}

@media (max-width: 767px) {
    .module-block-hero {
        font-size: 22px;
        line-height: 1.36;
    }
}

.module-block-text {
    margin-top: 20px;
}

.module-block-carousel {
    margin-top: 20px;
}

.module-block-carousel .carousel img {
    height: 50px;
}

.module-block-carousel .carousel .carousel-indicators>li {
    background-color: #989ba1;
    border: none;
}

.module-block-carousel .carousel .carousel-indicators>li.active {
    background-color: #313743;
}

.module-block-carousel blockquote {
    max-width: 930px;
    margin: 0 auto 30px;
    border: none;
    font-family: 'ProximaNova-Light-It';
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #313743;
}

.module-block-carousel .title {
    font-family: 'ProximaNova-Semibold';
    font-size: 18px;
    font-weight: 600;
    line-height: 1.11;
    text-align: center;
    color: #313743;
}

.module-block-carousel .description {
    margin-top: 5px;
    text-transform: uppercase;
    opacity: 0.4;
    font-family: 'ProximaNova-Regular';
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
    color: #313743;
}

.module-block-body {
    font-family: 'ProximaNova-Light';
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
    color: #313743;
}

.module-block-form input {
    margin-top: 20px;
}

.module-block-form input:first-child {
    margin-top: 0px;
}

.module-block-form .form-description {
    margin-top: 20px;
}

.module-block-form .btn {
    margin-top: 40px;
}

.module-block-form .title {
    font-family: 'ProximaNova-Light';
    font-weight: normal;
    font-size: 32px;
    line-height: 1.25;
    text-align: left;
    color: #313743;
}

@media (max-width: 767px) {
    .module-block-form .title {
        font-size: 42px;
        line-height: 1;
    }
}

.module-block-whitepaper {
    text-align: center;
}

.module-block-whitepaper .header {
    font-family: 'ProximaNova-Semibold';
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    color: #313743;
}

.module-block-whitepaper .description {
    display: inline-block;
    max-width: 450px;
    font-family: 'ProximaNova-Light';
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: #313743;
}

.module-block-info {
    display: inline-block;
    max-width: 330px;
    padding: 0;
    vertical-align: top;
}

.module-block-info img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.module-block-info .title {
    font-family: 'ProximaNova-Bold';
    font-size: 18px;
    line-height: 1.11;
    color: #ffffff;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .module-block-info .title {
        line-height: 1.33;
    }
}

.module-block-info .description {
    font-family: 'ProximaNova-Light';
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

.module-block-video {
    text-align: center;
}

.module-block-video div {
    display: inline-block;
    vertical-align: middle;
}

.module-block-video .description {
    font-family: 'ProximaNova-Light';
    font-size: 20px;
    line-height: 1.4;
    max-width: 370px;
    margin-left: 20px;
    color: #313743;
    text-align: left;
    line-height: 1.2;
}

.module-block-video .description a {
    font-family: 'ProximaNova-Semibold';
    font-size: 16px;
    line-height: 1.5;
    color: #00b5d1;
}

.module-block-video .description a img {
    display: inline-block;
    vertical-align: middle;
}

.module-block-video .video {
    position: relative;
    width: 216px;
    height: 138px;
    line-height: 0;
    border-radius: 4px;
    background: url("biid/video-cover-c1f87b673259c44437eb3b924ebcc073.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.module-block-video .video:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.module-block-video .video .button-video-play {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.module-block-video .video .button-video-play img {
    margin-top: 31px;
    cursor: pointer;
}

.module-block-code {
    display: inline-block;
    width: 100%;
    max-width: 930px;
    background-color: rgba(100, 169, 246, 0.1);
}

.module-block-code .tabs-code {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: left;
}

.module-block-code .tabs-code [type=radio] {
    display: none;
}

.module-block-code .tabs-code .click-to-copy-button {
    display: none;
    position: absolute;
    right: 10px;
    padding: 2px 4px;
    top: 60px;
    width: 24px;
    height: 24px;
    background: rgba(49, 55, 65, 0.4);
    z-index: 2;
    cursor: pointer;
}

.module-block-code .tabs-code .click-to-copy-button img {
    height: 20px;
}

.module-block-code .tabs-code .copied-text {
    display: none;
    position: absolute;
    font-size: 14px;
    top: 60px;
    right: 10px;
    padding: 8px 10px;
    color: #ffffff;
    font-family: 'ProximaNova-Light';
    background: #313743;
    z-index: 2;
}

.module-block-code .tabs-code input[type="radio"] {
    position: absolute;
    z-index: -1;
}

.module-block-code .tabs-code input[type="radio"]:checked+label {
    color: #ffffff;
    border-bottom: 4px solid #9ccc65;
}

.module-block-code .tabs-code .tabs-nav {
    width: 100%;
    float: left;
    background-color: #313743;
}

.module-block-code .tabs-code .tabs-nav label {
    width: initial;
    float: left;
    height: 50px;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1;
    text-align: left;
    justify-content: left;
    color: rgba(255, 255, 255, 0.4);
    background-color: #313743;
    border-bottom: 4px solid transparent;
}

.module-block-code .tabs-code .tab-code-content {
    position: relative;
    width: 100%;
    padding: 0 40px;
    height: 410px;
    overflow: auto;
    line-height: 1;
    display: none;
    font-family: "Monaco";
}

.module-block-code .tabs-code .tab-code-content pre {
    padding: 10px 0px 20px;
}

.module-block-code .tabs-code .tab-code-content.selected {
    display: block;
}

@media (max-width: 767px) {
    #authorizeImgs,
    #loginImgs,
    #signImgs {
        height: initial !important;
    }
    .module .module-header {
        margin-top: 80px;
    }
    .module .btn {
        padding: 13px 0;
        font-size: 15px;
    }
    .module .module-img {
        top: 0;
        left: 0;
        right: 0;
        margin-left: auto !important;
        margin-right: auto;
        background-position: center;
    }
    .module:first-child .module-img {
        top: -5px;
        margin-top: 0;
        max-height: 280px;
    }
    .module.module-hero .module-box-hero {
        text-align: center;
    }
    .module.module-hero .module-box-hero h1,
    .module.module-hero .module-box-hero h2,
    .module.module-hero .module-box-hero .module-block-hero {
        text-align: center;
    }
    .module.module-hero .module-box-hero .module-block-hero {
        max-width: 100%;
        margin-bottom: 20px !important;
    }
    .module.module-hero .module-box-hero .btn {
        display: inline-block;
        margin-top: 20px;
        margin: 20px 10px 0;
    }
    .module.module-hero .module-box:first-child {
        padding-top: 100px;
    }
    .module.module-hero .module-box:last-child {
        padding-bottom: 30px;
    }
    .module.module-services .module-box {
        position: relative;
        text-align: center;
    }
    .module.module-services .module-box h3,
    .module.module-services .module-box .module-block-body {
        text-align: center;
    }
    .module.module-services .module-box-login {
        padding-top: 325px;
    }
    .module.module-services .module-box-login .module-img {
        max-height: 285px;
    }
    .module.module-services .module-box-sign {
        padding-top: 440px;
    }
    .module.module-services .module-box-sign .module-img {
        max-height: 400px;
    }
    .module.module-services .module-box-authorize {
        padding-top: 340px;
    }
    .module.module-services .module-box-authorize .module-img {
        max-height: 300px;
    }
    .module.module-whitepaper .module-block-img img {
        margin-left: 0;
        max-height: 225px;
    }
    .module.module-whitepaper h2 {
        margin-bottom: 40px;
    }
    .module.module-developers .tabs-general .tab-label {
        font-size: 18px;
        line-height: 1.56;
    }
    .module.module-developers .module-block-tab {
        margin-top: 60px;
    }
    .module .module-box,
    .module .module-header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .module .module-box {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .module .module-box-video {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .module .module-block-body {
        max-width: 100%;
    }
    .module .module-block-info {
        display: inline-block;
        margin-bottom: 50px;
    }
    .module .module-block-info .title {
        margin-bottom: 5px;
    }
    .module .module-block-img {
        position: inherit;
    }
    .module .module-block-intro {
        margin-top: 20px;
    }
    .module .module-block-intro .divider {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .module .module-block-video .description {
        margin-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    .module .module-block-video .description a {
        display: inline-block;
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.5;
    }
    .module .module-block-carousel blockquote {
        font-size: 30px;
        line-height: 1.33;
    }
    .module .module-block-form .btn {
        margin-top: 35px;
    }
    .module .module-block-form .title {
        font-size: 24px;
        line-height: 24px;
    }
    .module .module-block-form form {
        text-align: center;
    }
    .module .module-block-form form input:first-child {
        margin-top: 0px;
    }
    .module .module-block-whitepaper .header {
        line-height: 1.17;
    }
    .module .module-block-whitepaper .description {
        max-width: 335px;
        line-height: 1.5;
        margin-bottom: 60px;
    }
    ul.tabs-nav {
        padding: 0;
        margin-bottom: 20px;
        float: left;
    }
    ul.tabs-nav .dropup.open .dropdown-menu {
        height: 255px !important;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    #heroImgs .anybank {
        background-image: url("biid/mockup-hero-anybank@2x-f5f3d62bf13d98611004fff8054ca8dd.png") !important;
    }
    #heroImgs .anycity {
        background-image: url("biid/mockup-hero-anycity@2x-02e85cd2203f3b1afae3d001f9bc875e.png") !important;
    }
    #loginImgs .anybank {
        background-image: url("biid/mockup-login-anybank@2x-c5cba9f34d7a3d2dd9b5d8e6fd437ef9.png") !important;
    }
    #loginImgs .anycity {
        background-image: url("biid/mockup-login-anycity@2x-933ad8a8d5bf0b122a25db8be67059ce.png") !important;
    }
    #signImgs .anybank {
        background-image: url("biid/mockup-sign-anybank@2x-6e14e27aa16f159cb50e9cef70a0f05b.png") !important;
    }
    #signImgs .anycity {
        background-image: url("biid/mockup-sign-anycity@2x-88b0031c0e2e3910d06d7daf5453e4a3.png") !important;
    }
    #authorizeImgs .module-img {
        background-image: url("biid/mockup-authorize@2x-41f9760848d053b975323e52403f59f8.png") !important;
    }
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner>.item {
    height: 0 !important;
    position: relative;
    width: 100%;
    -webkit-transition: opacity 0.6s linear;
    -moz-transition: opacity 0.6s linear;
    -o-transition: opacity 0.6s linear;
    -ms-transition: opacity 0.6s linear;
    transition: opacity 0.6s linear;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    line-height: 1;
}

.carousel-inner>.item.active,
.carousel-inner>.item.next.left,
.carousel-inner>.item.prev.right {
    left: 0;
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    height: 100% !important;
}

.carousel-inner>.active {
    left: 0;
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner>.next {
    left: 100%;
}

.carousel-inner>.prev {
    left: -100%;
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0;
}

.carousel-inner>.active.left {
    left: -100%;
}

.carousel-inner>.active.right {
    left: 100%;
}

.carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: -24px;
    z-index: 7;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px 3px;
    text-indent: -999px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #989ba1;
}

.carousel-indicators li:hover {
    background-color: #313743;
}

.carousel-indicators li:focus,
.carousel-indicators li:active {
    background-color: #313743 !important;
}

.carousel-indicators .active {
    margin: 1px 3px;
    width: 10px;
    height: 10px;
    background-color: #313743;
}

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel,
.carousel-inner,
.carousel-inner .item {
    height: 100%;
}

.prettyprint {
    border: none !important;
    overflow: initial !important;
    padding: 0 !important;
    margin: 0 !important;
}

.prettyprint ol.linenums {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    white-space: nowrap !important;
}

.prettyprint ol.linenums li {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

pre {
    margin: 0;
    font-family: "Monaco";
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: left;
    color: #313743;
}

pre span {
    font-size: 16px !important;
    font-family: "Monaco" !important;
    line-height: 1.38 !important;
}

pre span.typ {
    color: #9575cd !important;
}

pre span.com {
    color: #f45d7a !important;
}

pre span.kwd {
    color: #00b5d1 !important;
}

pre span.pun,
pre span.pln {
    color: #313743 !important;
}

input,
textarea,
select {
    width: 100%;
    padding: 9px 20px;
    background-color: #ffffff;
    border-radius: 2px;
    border: solid 1px rgba(49, 55, 67, 0.33);
    color: #313743;
    font-family: 'ProximaNova-Light';
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: normal;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    border: solid 1px #9ccc65;
}

select:required:invalid {
    color: rgba(49, 55, 67, 0.4);
}

.error {
    display: none !important;
}

select[value=""] {
    color: red;
}

option:not(:first-of-type) {
    color: #313743;
}

option {
    color: rgba(49, 55, 67, 0.4);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.unit {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 13px;
    width: 28px;
    height: 28px;
    background-image: url("biid/icon-dropdown-grey-8ba3d58ae812867e4d289b0f6e26f719.svg");
    background-size: 28px 28px;
    background-position: 0 0;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
}

input:not(:placeholder-shown) {
    border: solid 1px #9ccc65;
}

select {
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
}

::-webkit-input-placeholder {
    color: rgba(49, 55, 67, 0.4);
}

::-moz-placeholder {
    color: rgba(49, 55, 67, 0.4);
}

:-moz-placeholder {
    color: rgba(49, 55, 67, 0.4);
}

:-ms-input-placeholder {
    color: rgba(49, 55, 67, 0.4);
}

.error-input {
    border: solid 1px #f45d7a !important;
    color: #f45d7a !important;
}

.g-recaptcha {
    margin-top: 20px;
    display: inline-block;
}

.error-input::-webkit-input-placeholder {
    color: #f45d7a;
}

.error-input::-moz-placeholder {
    color: #f45d7a;
}

.error-input:-moz-placeholder {
    color: #f45d7a;
}

.error-input:-ms-input-placeholder {
    color: #f45d7a;
}

.form-description {
    font-size: 16px;
    font-family: 'ProximaNova-Regular';
    color: rgba(49, 55, 65, 0.4);
    line-height: 1.88;
}

.cookie {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 40px;
    color: #ffffff;
    background-color: rgba(0, 181, 209, 0.9);
    font-family: 'ProximaNova-Light';
    font-size: 20px;
    text-align: center;
    z-index: 4;
}

.cookie img {
    height: 30px;
    width: 30px;
}

.cookie a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie .close-cookie {
    position: absolute;
    top: 21px;
    right: 40px;
}

@media (max-width: 767px) {
    .cookie {
        padding: 16px 20px;
    }
    .cookie .close-cookie {
        position: absolute;
        right: 10px;
        top: 20px;
    }
    .cookie img {
        height: 20px;
        width: 20px;
    }
}