/* */

/*---------- MEDIA ----------*/

@media (max-width:480px) {
    .only-mobile {
        display: block;
    }
} 

@media (min-width:480px) and (max-width:960px) { 
    .only-tablet { 
        display: block;
    } 
}

@media (min-width:960px) { 
    .only-desktop { 
        display: block;
    }
}

/* ------------------------- */

/* ---------- TAGS ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: inherit;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 4px 0;
}

p {
    margin: 5px 0px;
}

input[type="submit"] {
    cursor: pointer;
}

button {
    cursor: pointer;
}

/* ------------------------- */

/* ---------- TEXT ---------- */

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-xs {
    font-size: 6px;
}

.txt-sm {
    font-size: 8px;
}

.txt-smmd {
    font-size: 10px;
}

.txt-md {
    font-size: 12px;
}

.txt-mdlg {
    font-size: 14px;
}

.txt-lg {
    font-size: 16px;
}

.txt-xl {
    font-size: 18px;
}

.txt-bold {
    font-weight: bold;
}

.txt-italic {
    font-style: italic;
}

.txt-cs-up {
    text-transform: uppercase;
}

.txt-cs-lw {
    text-transform: lowercase;
}

/* ------------------------- */

/* ---------- FORMS ---------- */

label {
    display: block;
    margin: 5px;
}

textarea {
    max-width: 100%;
}

.txtr-sm {
    height: 100px;
}

.txtr-md {
    height: 200px;
}

.txtr-lg {
    height: 300px;
}

input[type=text],input[type=password],input[type=tel],input[type=email], select, option, textarea {
    padding: 5px 7px 7px 15px;
}

.inp-wide {
    width: 100%;
}

/* ---------- TABLES ---------- */

@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 {
    background: #fff;
    border-collapse: collapse;
    color: #000;
    display: inline-block;
    max-width: 100%;
    overflow: auto;
    vertical-align: top;
    width: 100%;
}

.table caption {
    background: yellowgreen;
    color: #fff;
    font-size: 12pt;
    padding: 7px;
}

.table th,td {
    border:1px solid grey;
    padding: 4px;
    word-break: break-word;
}

.table th {
    background:#e8e8e8;
    font-weight: bold;
    position: sticky;
    text-align: center;
    top: 0px;
}

/* ------------------------- */

/* ---------- NOTICES ---------- */

#sitenotices {
    right: 5vw;
    margin: 50px 0vw;
    max-width: 800px;
    position: fixed;
    top: 50px;
    transition: 1.5s;
    width: 90vw;
    z-index: 99999;
}

.sitenotice {
    background: rgba(21, 111, 193, 0.75);
    color: #fff;
    cursor: pointer;
    font-size: 11pt;
    padding: 9px 15px;
}

.sitenotice:hover {
    background: rgba(21, 111, 193);
}

/* ------------------------- */

/* ------------------------- */

.link {
    color: #156FC1;
    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 {
    margin: auto;
    max-width: 1200px;
}

#content h1 {
    text-align: center;
}

.hided {
    display: none;
}

.shown {
    display: block !important;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.clearspace {
    clear: both;
    height: 50px;
}

.clearline {
    clear: both;
}

/* ------------------------- */