/**
 * Типография
 * Стили частично позаимствованы у бутстрапа
 */


/**
 * Основные стили
 */
body {
    font-size: 13px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.42857143;
    color: #000;
}


/**
 * Ссылки
 */
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

a:hover,
a:focus {
    color: #d32f2f;
    text-decoration: none;
}


/**
 * Параграф
 */
p {
    margin: 0 0 15px;
}

p:last-child {
    margin-bottom: 0;
}


/**
 * Заголовки
 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.ls-heading {
    margin: 0 0 15px;
    font-family: "Inter",Georgia,"Times New Roman",Times,serif;
    font-weight: 400;
    line-height: 1.2em;
}

h1, .h1 {
    font-size: 30px;
}

h2, .h2 {
    font-size: 26px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 22px;
}

h5, .h5 {
    font-size: 20px;
}

h6, .h6 {
    font-size: 18px;
}

/* Мелкий текст */
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
    font-size: 65%;
    color: #9e9e9e;
}

.ls-heading a {
    color: #000;
    text-decoration: underline;
}

.ls-heading a:hover,
.ls-heading a:focus {
    color: #d32f2f;
}


/* Заголовок страницы */
.page-header {
    color: #000;
    font-size: 24px;
    line-height: 1em;
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.page-header span {
    color: #9e9e9e;
}


/**
 * Выделенный текст
 */
mark {
    padding: 2px 3px;
    background: #d32f2f;
}


/**
 * Позиционирвоние текста
 */
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}


.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}


.text-muted {
    color: #9e9e9e;
}

.text-primary {
    color: #337ab7;
}

.text-success {
    color: #3c763d;
}

.text-info {
    color: #31708f;
}

.text-warning {
    color: #d32f2f;
}

.text-danger {
    color: #a94442;
}

.text-help {
    color: #aaa;
}


blockquote {
    margin: 20px 0;
    padding: 0 0 0 25px;
    background: #fafafa;
    border-left: 5px solid #eee;
    color: #9e9e9e;
    font-size: 16px;
	font-style: italic;
    line-height: 1.7;
}

.blockquote--reverse,
blockquote.pull-right {
    padding: 0 25px 0 0;
    border-left: 5px solid #eee;
    border-left: 0;
    text-align: right;
}

blockquote footer,
blockquote cite {
    color: #aaa;
}


address {
    margin-bottom: 15px;
    font-style: normal;
}

abbr {
    border-bottom: 1px dotted;
    cursor: help;
}


/**
 * Списки
 */
ul, ol {
    margin: 0;
    list-style: none;
    padding: 0;
}

ul ol, ol ul, ul ul, ol ol {
    margin-bottom: 0;
}

.list-inline {
    padding-left: 0;
}

.list-inline li {
    display: inline-block;
    margin-right: 15px;
}


/**
 * Код
 */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, monospace;
}

/* Строчный код */
code {
    padding: 2px 5px;
    border-radius: 2px;
    background: #fafafa;
    color: #646464;
    word-break: break-all;
    word-wrap: break-word;
}

/* Блок кода */
pre {
    display: block;
    padding: 15px;
    font: normal 13px/1.5em;
    margin: 0 0 15px;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 2px;
    direction: ltr !important;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}

.pre-scrollable {
    max-height: 150px;
    overflow-y: scroll;
}


/* Тег kbd */
kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #eee;
    background-color: #333;
    border-radius: 2px;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none;
}


/**
 * Media Queries
 */

/**
 * >= 768px
 */

@media screen and (min-width: 768px) {
    .page-header {
        font-size: 30px;
    }
}
