@font-face {
    font-family: Nyala;
    src: url(fonts/nyala.ttf);
}

@media (min-width:768px) {
    .bcol-2, .bcol-3, .bcol-4,.bcol-2-3,.bcol-3-4 {
        float: left;
        vertical-align: top;
    }
    .bcol-2 {
        width: 50%;
    }
    .bcol-3 {
        width: 33.3%;
    }
    .bcol-4 {
        width: 25%;
    }
    .bcol-2-3 {
        width: 66.6%;
    }
    .bcol-3-4 {
        width: 75%;
    }
}

@media (max-width:480px) {
    .for-mobile {
        display: block;
    }
} 
     
@media (min-width:480px) and (max-width:960px) { 
    .for-tablet { 
        display: block;
    } 
} 
    
@media (min-width:960px) { 
    .for-desktop { 
        display: block;
    } 
}

* {
    box-sizing: border-box;
    font-family: 'Raleway', 'Source Sans Pro', sans-serif;
}

body {
    margin: 0px;
}

img {
    max-width:100%;
}

h1,h2,h3,h4,h5,h6 {
    margin: 4px 0px;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: inherit;
}

p {
    margin: 5px 0px;
}

input[type="submit"] {
    cursor: pointer;
}

button {
    cursor: pointer;
}

.link {
    color: #1167b6;
    font-weight: bold;
}

.fl-right {
    float: right;
}

.fl-left {
    float: left;
}

/* -------------------- */

#content {
    background:#fff;
    /* border: 1px solid #d2d2d2; */
    font-size: 10pt;
    margin: 0px auto;
    margin-top: 130px;
    max-width: 100vw;
    max-width: 1200px;
    min-height: calc(100vh - 92px);
}

.container {
    padding: 20px 10px;
    margin: auto;
    max-width: 100vw;
    max-width: 1200px;
}

#content h1 {
    text-align: center;
}

.invis {
    display: none;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.divide {
    clear: both;
    height: 30px;
    margin: 30px auto;
}

.clearspace {
    clear: both;
    height: 50px;
}

.clearline {
    clear: both;
}

.lp-block {
    padding: 10% 5%;
    text-align: center;
}

/* ---------- ТЕКСТЫ ---------- */

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-sm {
    font-size: 6pt;
}

.txt-smmd {
    font-size: 8pt;
}

.txt-md {
    font-size: 12pt;
}

.txt-mdlg {
    font-size: 14pt;
}

.txt-lg {
    font-size: 16pt;
}

.txt-bold {
    font-weight: bold;
}

.txt-italic {
    font-style: italic;
}

.txt-cs-up {
    text-transform: uppercase;
}

.txt-cs-lw {
    text-transform: lowercase;
}

/* -------------------- */


/* ---------- ФОРМЫ ---------- */

label {
    display: block;
    margin: 8px;
}

textarea {
    max-width: 100%;
}

.txtr-md {
    height: 150px;
}

input[type=text],input[type=password],input[type=tel], select, option, textarea {
    padding: 5px 7px 7px 7px;
}

.inp-wide {
    width: 100%;
}

/* -------------------- */

@media only screen and (max-width: 480px) {
    table { 
        display: block; 
        overflow: auto;
    }
}

.table-wrap {
    max-height: 90vh;
    max-width: 90vw;
    overflow-x: auto;
    overflow-y: auto;
}

.table-cmn {
    background: #fff;
    border-collapse: collapse;
    color: #000;
    display: inline-block;
    max-width: 100%;
    overflow: auto;
    vertical-align: top;
    width: 100%;
}

.table-cmn caption {
    background: yellowgreen;
    color: #fff;
    font-size: 12pt;
    padding: 7px;
}

.table-cmn th,td {
    border:1px solid grey;
    padding: 4px;
    word-break: break-word;
}

.table-cmn th {
    background:#e8e8e8;
    font-weight: bold;
    position: sticky;
    text-align: center;
    top: 0px;
}

/* -------------------- */

#notice {
    background: rgba(24, 202, 12, 0.75);
    color: #fff;
    cursor: pointer;
    font-size: 11pt;
    right: 5vw;
    margin: 50px 0vw;
    max-width: 800px;
    padding: 9px 15px;
    position: fixed;
    top: 50px;
    transition: 1.5s;
    width: 90vw;
    z-index: 99999;
}

#notice:hover {
    background: rgba(24, 202, 12);
}

/* -------------------- */