body {
    font-family: Kaufland-Regular, sans-serif;
    font-size: 16px;
    margin-top: 54px;
}

.top-navbar {
    background-color: #e61927;
    border-bottom: 3px solid #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.top-navbar .checkbox {
    position: absolute;
    left:0;
    top:0;
    display: block;
    width: 34px;
    height: 26px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.top-navbar menu {
    margin-top: -3px;
}

.top-navbar .hamburger-lines {
    height: 26px;
    width: 34px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-navbar .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
}

.top-navbar .hamburger-lines .line1 {
    transform-origin: 0 0;
    transition: transform 0.4s ease-in-out;
}

.top-navbar .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.top-navbar .hamburger-lines .line3 {
    transform-origin: 0 100%;
    transition: transform 0.4s ease-in-out;
}

.top-navbar input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
}

.top-navbar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.top-navbar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.top-navbar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.top-navbar ul.menu-inline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-navbar ul.menu-inline li {
    display: inline-block;
    margin: 0 15px;
}

.top-navbar ul.menu-inline li a {
    color: #fff;
    text-decoration: none;
}

.top-navbar ul.menu-dropdown {
    min-width: 170px;
    position: absolute;
    top: 41px;
    left: 0;
    background-color: #e61927;
    list-style: none;
    border-bottom: 2px solid #000;
    margin:0;
    padding:0;
    transition: all .5s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.top-navbar ul.menu-dropdown li {
    border-bottom: 1px solid #000;
}

.top-navbar ul.menu-dropdown li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    display: block;
}

.top-navbar input[type="checkbox"]:checked ~ ul.menu-dropdown {
    opacity: 1;
    pointer-events: inherit;
}

footer {
    font-family: Kaufland-Bold, sans-serif;
    font-size: 14px;
    background-color: #505050;
    color: #ffffff;
}

.footer-last {
    font-size: 12px;
    background-color: #333333;
    color: #ffffff;
}

footer a,
.footer-last a {
    color: #ffffff;
    text-decoration: none;
}

.homepage h2 {
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 30px;
    line-height: 36px;
}

.homepage .readmore,
.kindness-score-result .readmore {
    border-bottom: 2px solid #e10915;
    text-align: right;
}

.homepage .readmore.readmore-left,
.kindness-score-result .readmore.readmore-left {
    text-align: left;
}

.homepage .readmore a,
.kindness-score-result .readmore a{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    background-color: #e10915;
    padding: 10px 26px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
}

.cta {
    height: 110px;
    overflow: hidden;
    background: rgb(227,0,15);
    background: -moz-linear-gradient(0deg, rgba(227,0,15,1) 0%, rgba(255,52,66,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(227,0,15,1) 0%, rgba(255,52,66,1) 100%);
    background: linear-gradient(0deg, rgba(227,0,15,1) 0%, rgba(255,52,66,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e3000f",endColorstr="#ff3442",GradientType=1);
    border-radius: 12px;
}

.cta a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(218,219,220,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(218,219,220,1) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(218,219,220,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#dadbdc",GradientType=1);
    padding: 8px 40px;
    font-size: 18px;
    font-family: Kaufland-Bold, sans-serif;
    border-radius: 12px;
    margin-top: 30px;
}

.bg-gray {
    background-color: #dedede;
    border-radius: 12px;
}

.kindness-icon {
    margin-top: -20px;
}

.homepage .btn-quiz {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-family: Kaufland-Bold, sans-serif;
    font-size: 17px;
    display: block;
    background: rgb(255,51,65);
    background: -moz-linear-gradient(0deg, rgba(255,51,65,1) 0%, rgba(227,0,15,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,51,65,1) 0%, rgba(227,0,15,1) 100%);
    background: linear-gradient(0deg, rgba(255,51,65,1) 0%, rgba(227,0,15,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3341",endColorstr="#e3000f",GradientType=1);
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px;
}

.homepage .hero,
.despre-campanie .hero,
.kindness-score .hero,
.kindness-score-result .hero,
.stiri .hero,
.stiri-single .hero,
.contact .hero,
.implica-te .hero {
    position: relative;
}

.homepage .hero .absolute,
.despre-campanie .hero .absolute,
.kindness-score .hero .absolute,
.kindness-score-result .hero .absolute,
.implica-te .hero .absolute {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
}

.kindness-score-result .hero .fs-48 {
    line-height: 48px;
}

.stiri .hero .absolute,
.stiri-single .hero .absolute,
.contact .hero .absolute {
    position: absolute;
    left: 15px;
    width: calc(100% - 30px);
    top: 50%;
    transform: translateY(-50%);
}

.homepage .hero .text {
    margin-bottom: 0;
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 50px;
    color: #fff;
    line-height: 67px;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5);
}

.despre-campanie .hero .text,
.kindness-score .hero .text,
.kindness-score-result .hero .text,
.stiri .hero .text,
.stiri-single .hero .text,
.contact .hero .text,
.implica-te .hero .text {
    margin-bottom: 0;
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 80px;
    line-height: 90px;
    color: #fff;
    text-align: center;
}

.despre-campanie .hero .subtext,
.implica-te .hero .subtext {
    margin-bottom: 19px;
    font-family: Kaufland-Medium, sans-serif;
    font-size: 40px;
    line-height: 43px;
    color: #fff;
    text-align: center;
}

.homepage .hero .timer {
    background-color: #6e0007;
    padding: 12px;
    border-radius: 12px;
}

.homepage .hero .timer .numbers {
    position: relative;
    width: 100%
}

.homepage .hero .timer .numbers .up {
    background-color: #dedede;
    height: 70px;
    border-bottom: 3px solid #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.homepage .hero .timer .numbers .down {
    background-color: #fff;
    height: 70px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.homepage .hero .timer .numbers span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 106px;
    line-height: 82px;
    font-family: Kaufland-Heavy, sans-serif;
}

.homepage .hero .timer .numbers .bullet-left,
.homepage .hero .timer .numbers .bullet-right {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 27px;
    border-left: 7px solid #000;
    border-radius: 90px;
}

.homepage .hero .timer .numbers .bullet-left {
    left: 0;
}

.homepage .hero .timer .numbers .bullet-right {
    right: 0;
}

.homepage .hero .timer a.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-family: Kaufland-Heavy ,sans-serif;
    font-size: 32px;
    line-height: 30px;
    text-align: center;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255,52,66,1);
    background: -moz-linear-gradient(0deg, rgba(255,52,66,1) 0%, rgba(227,0,15,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,52,66,1) 0%, rgba(227,0,15,1) 100%);
    background: linear-gradient(0deg, rgba(255,52,66,1) 0%, rgba(227,0,15,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3442",endColorstr="#e3000f",GradientType=1);
}

.top-navbar .timer {
    display: none;
    background: rgba(255,52,66,1);
    background: -moz-linear-gradient(0deg, rgba(255,52,66,1) 0%, rgba(227,0,15,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,52,66,1) 0%, rgba(227,0,15,1) 100%);
    background: linear-gradient(0deg, rgba(255,52,66,1) 0%, rgba(227,0,15,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff3442",endColorstr="#e3000f",GradientType=1);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 2px solid #720007;
    border-left: 2px solid #720007;
    border-right: 2px solid #720007;
    min-width: 500px;
    margin-bottom: -8px;
    padding: 3px 12px;
}

.top-navbar .timer .numbers {
    position: relative;
    width: 100%;
}

.top-navbar .timer .numbers .up {
    background-color: #dedede;
    height: 17px;
    border: 1px solid #720007;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.top-navbar .timer .numbers .down {
    background-color: #fff;
    height: 17px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-left: 1px solid #720007;
    border-right: 1px solid #720007;
    border-bottom: 1px solid #720007;
}

.top-navbar .timer .numbers span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    line-height: 16px;
    font-family: Kaufland-Heavy, sans-serif;
}

.top-navbar .timer .numbers .bullet-left,
.top-navbar .timer .numbers .bullet-right {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 7px;
    border-left: 2px solid #720007;
    border-radius: 90px;
}

.top-navbar .timer .numbers .bullet-left {
    left: 0;
}

.top-navbar .timer .numbers .bullet-right {
    right: 0;
}

.top-navbar .timer a.button {
    color: #fff;
    text-decoration: none;
    font-family: Kaufland-Heavy ,sans-serif;
    font-size: 24px;
    line-height: 24px;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-right: 9px;
}

.despre-campanie .quote {
    position: relative;
}

.despre-campanie .quote .ghilimele {
    position: absolute;
}

.despre-campanie .quote .quote-border {
    position: absolute;
    height: 100%;
    border-left: 3px solid #dedede;
    left: -15px;
}

.despre-campanie .card-number {
    background: url('../images/card-number.png') no-repeat center center;
    background-size: contain;
    font-size: 42px;
    color: #fff;
    font-family: Kaufland-Heavy, sans-serif ;
    text-align: center;
    border-radius: 3px;
    width: 100%;
}

.despre-campanie .card-text {
    line-height: 20px;
}

.despre-campanie .border-bottom-red {
    border-bottom: 3px solid #e10915;
    margin-top: 10px;
}

.despre-campanie .episoade {
    border-bottom: 2px solid #e10915;
    padding-bottom: 7px;
}

.despre-campanie .episoade a {
    text-decoration: none;
}

.despre-campanie .episoade a.active {
    text-decoration: underline;
}

.despre-campanie .tab-pane .fs-24 {
    line-height: 28px;
}

.despre-campanie .clock,
.kindness-score-result .clock {
    background: url('../images/clock.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    border-radius: 20px;
}

.despre-campanie .clock .clock-button,
.kindness-score-result .clock .clock-button{
    color: #fff;
    background-color: #e10915;
    border-radius: 5px;
    padding: 5px 25px;
    text-decoration: none;
    font-family: Kaufland-Bold, sans-serif;
    font-size: 18px;
}

.btn-gray {
    background: #a8a8a8;
    color: #fff;
    border-radius: 5px;
    padding: 4px 25px;
    text-decoration: none;
    display: block;
    font-family: Kaufland-Bold, sans-serif;
    font-size: 16px;
}

.btn-gray.active {
    background-color: #e10915;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-container iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}

.kindness-score .question {
    border: 2px solid #dedede;
    border-radius: 15px;
    padding: 15px;
}

.kindness-score .question .text {
    font-family: Kaufland-Medium, sans-serif;
    font-size: 24px;
    color: #555657;
    margin-bottom: 0;
    line-height: 30px;
}

.kindness-score .answer {
    border: 2px solid #dedede;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}

.kindness-score .answer.answer1,
.kindness-score .answer.answer1 span{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.kindness-score .answer.answer5,
.kindness-score .answer.answer5 span{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.kindness-score .answer input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
    background-color: transparent;
}

.kindness-score .answer input[type="radio"]:checked ~ span {
    color: #fff;
    background-color: #e10915;
}

.kindness-score .answer span {
    padding: 20px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-family: Kaufland-Medium, sans-serif;
    color: #555657;
}

.kindness-score form.quiz button {
    background-color: #dedede;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 15px;
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #666;
    padding: 20px 10px;
}

.kindness-score form.quiz button[disabled="disabled"] {
    opacity: .3;
}

.stiri form button,
.stiri-single form button {
    background-color: #dedede;
    border: 0;
    border-radius: 8px;
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 16px;
    color: #a0a0a0;
    padding: 6px 10px;
}

.stiri form input[type="text"],
.stiri-single form input[type="text"] {
    border:1px solid #a0a0a0;
    border-radius: 8px;
    padding: 5px 10px;
    font-family: Kaufland-RegularItalic, sans-serif;
    color: #a0a0a0;
    outline: none;
}

.stiri h2,
.stiri-single h2 {
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
}

.stiri p.date,
.stiri-single p.date{
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 12px;
    line-height: 20px;
    border-bottom: 2px dotted #b8b8b8;
    padding-bottom: 4px;
    width: 100%;
}

.stiri .summary p,
.stiri-single .content p {
    font-size: 12px;
    font-family: Kaufland-Regular, sans-serif;
    margin-bottom: .5rem;
}

.stiri p.date img,
.stiri-single p.date img {
    margin-bottom: 3px;
}

.stiri-single .border-top-dotted {
    border-top: 2px dotted #b8b8b8;
}

.stiri-single .share {
    background-color: #dedede;
    border-radius: 7px;
    color: #7f7f7f;
    font-size: 12px;
    text-decoration: none;
    font-family: Kaufland-Bold, sans-serif;
    padding: 9px 10px;
    display: flex;
}

.stiri .next-prev,
.stiri-single .next-prev {
    background-color: #dedede;
    border-radius: 7px;
    color: #7f7f7f;
    font-size: 10px;
    line-height: 10px;
    text-decoration: none;
    font-family: Kaufland-Bold, sans-serif;
    padding: 9px 10px;
    display: inline-block;
}

.stiri div.pagination {
    justify-content: center;
}

.stiri div.pagination .flex-sm-fill div:first-child {
    display: none;
}

ul.pagination li.page-item a{
    color: #e10915;
}

ul.pagination li.page-item.active span {
    background-color: #e10915;
    color: #fff;
    border-color: #e10915;
}

.modal#contribuie .modal-header,
.modal#share .modal-header {
    border-bottom: none;
}

.modal#contribuie .modal-content,
.modal#share .modal-content {
    background-color: #e10915;
    border:5px solid #e10915;
}

.modal#contribuie .modal-header .btn-close-white,
.modal#share .modal-header .btn-close-white {
    position: absolute;
    right: 15px;
    top: 15px;
    border: 1px solid #000;
    opacity: 1;
    font-size: 10px;
}

.modal#contribuie .modal-body,
.modal#share .modal-body {
    background-color: #fff;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.modal#contribuie .modal-footer,
.modal#share .modal-footer {
    background-color: #fff;
    border: 0;
}

.modal#contribuie input,
.modal#contribuie textarea,
.modal#contribuie select {
    background-color: #e6e6e6;
    border: 2px solid #c4c4c4;
    border-radius: 15px;
    padding: 5px 10px;
}

.modal#contribuie button[type="submit"] {
    background-color: #e10915;
    color: #fff;
    padding: 10px 20px;
    font-family: Kaufland-Heavy, sans-serif;
    font-size: 27px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.modal-open .modal-backdrop {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1 !important;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
    border-color: #e10915 !important;
}

@media screen and (max-width: 1199px) {
    .homepage .hero .text,
    .implica-te .hero .text {
        font-size: 44px;
        line-height: 57px;
    }

    .homepage .hero .timer .numbers .up {
        background-color: #dedede;
        height: 50px;
        border-bottom: 3px solid #000;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .homepage .hero .timer .numbers .down {
        background-color: #fff;
        height: 50px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .homepage .hero .timer .numbers span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 76px;
        line-height: 72px;
        font-family: Kaufland-Heavy, sans-serif;
    }
}

@media screen and (max-width: 992px) {
    body {
        margin-top: 71px;
    }

    .top-navbar .menu-inline {
        display: none !important;
    }

    .top-navbar .timer {
        margin-bottom: -17px;
    }

    .homepage .hero .text,
    .implica-te .hero .text {
        font-size: 34px;
        line-height: 47px;
    }

    .homepage .hero .timer .numbers .up {
        background-color: #dedede;
        height: 30px;
        border-bottom: 3px solid #000;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .homepage .hero .timer .numbers .down {
        background-color: #fff;
        height: 30px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .homepage .hero .timer .numbers span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 56px;
        line-height: 62px;
        font-family: Kaufland-Heavy, sans-serif;
    }

    .homepage .hero .timer a.button {
        font-size: 24px;
    }

    .despre-campanie .hero .text {
        font-size: 60px;
        line-height: 70px;
    }

    .despre-campanie .hero .subtext,
    .implica-te .hero .subtext{
        font-size: 30px;
        line-height: 33px;
    }

    .despre-campanie .quote .ghilimele img {
        width: 36px;
    }

    .despre-campanie .clock,
    .kindness-score-result .clock {
        background-position: top left;
    }

    .cta {
        height: auto;
    }

    .kindness-score .hero .absolute .text,
    .kindness-score-result .hero .absolute .text {
        font-size: 52px;
    }

    .kindness-score .hero .absolute .w-50 {
        width: 100%!important;
    }
}

@media screen and (max-width: 767px) {
    .homepage .hero {
        display: none;
    }

    .top-navbar {
        height: 71px;
    }

    .top-navbar .timer {
        border: none;
        padding: 0;
        background: transparent;
        min-width: unset;
    }

    .top-navbar ul.menu-dropdown {
        top: 46px;
        right: 0;
        left: unset;
    }

    .despre-campanie .quote .ghilimele {
        display: none;
    }

    .timer.d-block {
        display: flex !important;
    }

    .kindness-score form .row.h-100 {
        min-height: 90px;
    }
}

@media screen and (max-width: 575px) {
    .kindness-icon {
        margin-top: 0;
        width: auto !important;
    }

    .modal#contribuie .modal-body br {
        display: none;
    }

    .kindness-score-result .hero .fs-48 {
        font-size: 32px;
        line-height: 32px;
    }

    .kindness-score .answer span {
        font-size: 16px;
        padding: 10px 2px;
    }
}

.resp-sharing-button__icon,.resp-sharing-button__link{display:inline-block}.resp-sharing-button__link{text-decoration:none;color:#fff;margin:.5em}.resp-sharing-button{border-radius:5px;transition:25ms ease-out;padding:.5em .75em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.resp-sharing-button__icon svg{width:20px;height:24px;margin-right:.4em;vertical-align:top}.resp-sharing-button--small svg{margin:0;vertical-align:middle}.resp-sharing-button__icon{stroke:#fff;fill:none}.resp-sharing-button__icon--solid,.resp-sharing-button__icon--solidcircle{fill:#fff;stroke:none}.resp-sharing-button--pinterest{background-color:#bd081c}.resp-sharing-button--pinterest:hover{background-color:#8c0615}.resp-sharing-button--tumblr{background-color:#35465c}.resp-sharing-button--tumblr:hover{background-color:#222d3c}.resp-sharing-button--reddit{background-color:#5f99cf}.resp-sharing-button--reddit:hover{background-color:#3a80c1}.resp-sharing-button--google{background-color:#dd4b39}.resp-sharing-button--google:hover{background-color:#c23321}.resp-sharing-button--email{background-color:#777}.resp-sharing-button--email:hover{background-color:#5e5e5e}.resp-sharing-button--xing{background-color:#1a7576}.resp-sharing-button--xing:hover{background-color:#114c4c}.resp-sharing-button--whatsapp{background-color:#25d366}.resp-sharing-button--whatsapp:hover{background-color:#1da851}.resp-sharing-button--hackernews{background-color:#f60}.resp-sharing-button--hackernews:focus,.resp-sharing-button--hackernews:hover{background-color:#fb6200}.resp-sharing-button--vk{background-color:#507299}.resp-sharing-button--vk:hover{background-color:#43648c}.resp-sharing-button--facebook{background-color:#3b5998;border-color:#3b5998}.resp-sharing-button--facebook:active,.resp-sharing-button--facebook:hover{background-color:#2d4373;border-color:#2d4373}.resp-sharing-button--twitter{background-color:#55acee;border-color:#55acee}.resp-sharing-button--twitter:active,.resp-sharing-button--twitter:hover{background-color:#2795e9;border-color:#2795e9}.resp-sharing-button--linkedin{background-color:#0077b5;border-color:#0077b5}.resp-sharing-button--linkedin:active,.resp-sharing-button--linkedin:hover{background-color:#046293;border-color:#046293}

