#form label.error {
    width: auto;
    display: block;
    color: red;
    margin-left: 0px;
    font-size: 12px;
    font-weight: bold;
}

.form-message {
    display: none;
    font-weight: 600;
    font-size: 2rem;
    color: #018448;
    text-align: center;
}

.form__btn-container {
	margin-bottom: 30px;
}

.footer__scrollup {
    width: 46px;
    height: 46px;
    position: fixed;
    bottom: 50px;
	cursor: pointer;
    right: 15px;
    display: none;
    z-index: 5;
    text-indent: -9999px;
    background-image: url(../img/icons/up-arrow.png);
    background-repeat: no-repeat;
    background-position: 8px 6px;
    background-color: rgba(0,0,0,.75);
}
.polityka__item {
    list-style-type: decimal;
    padding-top: 5px;
}

/* Przełącznik języków */
.header__lang {
    background-color: #ffffff;
    color: #b30f0b;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 160px;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px 10px;
    border-radius: 25px;
    margin-right: 10px;
  }
  .header__lang .custom-select {
    position: relative;
    display: inline-block;
  }
  .header__lang .selected-option, .option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
  }
  .header__lang .options {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .header__lang .option:hover {
    background-color: #f1f1f1;
  }
  .header__lang img {
    margin-right: 5px;
  }