/* Social networks in the footer */
.social-networks {
    padding: 0;
    margin: 10px 0;
    height: 50px;
    width: 100%;
    float: left;
}

.social-networks-item {
    padding: 0;
    margin: 0;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    color: rgba(0, 0, 0, 0) !important;
    font-size: 12px;
    overflow: hidden;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
}

.social-networks-item + .social-networks-item {
    margin-left: 10px;
}

.social-networks-item-telegram {
    background-color: #00aeed;
    background-image: url(/img/telegram-item.webp);
}

.social-networks-item-discord {
    background-color: #5765ec;
    background-image: url(/img/discord-item.webp);
}

@media only screen and (max-width: 600px) {
    .social-networks-item {
        width: 49%;
    }

    .social-networks-item + .social-networks-item {
        margin-left: 1%;
    }
}

/* Promo */
.feed-promo {

}

.feed-promo-input {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.feed-promo-input input {
    padding-right: 44px;
}

.feed-promo .feed-promo-link-input-info {
    display: flex;
    color: white;
    background: #77ad1b;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    right: 6px;
    text-decoration: none;
    font-weight: bold;
}

.feed-promo-input.feed-promo-input-with-info input {
    padding: 0 43px 0 15px;
}

/* Some legacy styles */
.stepbystepBlock {
    border-bottom: #ebebeb solid 1px;
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
}

.stepbystepBlock h2 {
    padding: 15px 0 0 0;
    margin: 0 0 5px 0;
    font-weight: 400;
    font-size: 30px;
    line-height: 32px;
    color: #111;
    width: 100%;
    float: left;
}

.stepbystep {
    float: left;
    padding: 0;
    margin: 10px 0 0 0;
    width: 100%;
}

.stepbystepIn {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.sbsItem {
    display: inline-block;
    padding: 0;
    margin: 5px 15px 0 0;
    flex: 0 0 300px;
    width: 300px;
}

.sbsItemOr {
    display: inline-block;
    padding: 0;
    margin: 5px 15px 0 0;
    flex: 0 0 80px;
    width: 80px;
}

.sbsItemOr img {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.sbsItem img {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.sbsItem p {
    padding: 0;
    margin: 12px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #363636;
    width: 100%;
    float: left;
    text-align: left;
}

.sbsItem b {
    padding: 0;
    margin: 6px 0 0 0;
    font-weight: 600;
}

.sbsItem a {
    color: #d44400;
    text-decoration: underline;
}

.sbsItem a:hover {
    color: #363636;
    text-decoration: underline;
}

/* Buttons in articles */
/* TODO: Rename the class (typo). It is used in articles, so articles should be updated too */
.battonSubmit {
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: 70px;
    font-weight: 600 !important;
    float: left;
    font-size: 24px !important;
    line-height: 70px !important;
    text-align: center !important;
    text-decoration: none !important;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    color: #111 !important;
    background: rgba(255, 204, 0, 1);
    background: -moz-linear-gradient(top, rgba(255, 204, 0, 1) 0%, rgba(244, 173, 31, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 204, 0, 1)), color-stop(100%, rgba(244, 173, 31, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 204, 0, 1) 0%, rgba(244, 173, 31, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 204, 0, 1) 0%, rgba(244, 173, 31, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 204, 0, 1) 0%, rgba(244, 173, 31, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 204, 0, 1) 0%, rgba(244, 173, 31, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcc00', endColorstr='#f4ad1f', GradientType=0);
}

.battonSubmit:hover {
    background: #ffcc00;
}

/* Breadcrumbs */
.breadcrumbs-separator {
    padding: 0 .4em 0 .6em;
}
