@charset "UTF-8";

/* Прокрутка вверх */
.scroll-up {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #FFF;
    color: #666;
    opacity: .7;
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0px 0px 24px #ccc;
    transition: .4s;
    display: none;
    padding-left: 15px;
    padding-top: 7px;
}
.scroll-up:hover {
	background-color: #72c02c;
	color: #FFF;
  opacity: 1;
  transition: .4s;
}

/* Наш цвет кнопок */
.btn-success,
.btn-success:hover {
	background-color: #72c02c;
	border-color: #72c02c;
	/*border: none;*/
}
.btn-success:hover {
	opacity: .8;
}

/* Белые кнопки */
.btn-white {
	background-color: #fff;
}
.btn-white:hover {
	background-color: #f0f0f0;
}

/* Голубой фон */
.bg-info {
	background-color: #00ACEE!important;
}

/* Зеленый фон */
.bg-success {
	background-color: #72c02c!important;
}

/* Правильный цвет текста */
.text-success {
	color: #72c02c!important;
}

.border-success {
	border-color: #72c02c!important;
}

/* Блоки страниц */
.page-block {
    padding-top: 80px;
    padding-bottom: 80px;
}
.block-title {
    padding-bottom: 30px;
}
.block-title h1,
.block-title h2 {
    margin-top: 0;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
}
.block-title h1 {
    font-size: 24px;
}
.block-title h1:after {
    content: '';
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    background: #72c02c;
    width: 70px;
    height: 1px;
    margin-top: 30px;
}
.block-title h2 {
    font-size: 18px;
}

/* Текст с фоном */
.text-bg {
    background-color: rgba(0,0,0, 0.3);
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 0px;
    padding-bottom: 1px;
}

/* Заголовки */
h4 {
    font-size: 18px;
}