/* Version: 14.0.0.0 */
/* Author: Alexandr Merzlyakov */
/* Author URI: https://skinsdle.com */

/*------------------
    Styles.css
------------------*/

/*Buttons font*/
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
}

/*---------
   Icons
---------*/
@font-face {
    font-family: 'Icons';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('../fonts/Icons.ttf') format('truetype');
}

.sd-icon {
    align-self: center;
    display: inline-flex;
    font-family: "Icons";
    font-size: 125%;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: none;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
}

/*Body font*/
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/IncludeFonts/Roboto-Thin.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/IncludeFonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/IncludeFonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/IncludeFonts/Roboto-Bold.ttf') format('truetype');
}


/*--------------------
    Cookie-message
---------------------*/
#cookieMessage {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 4px;
    bottom: calc(0.5rem + 0.5vw);
    box-shadow: 0 8px 20px 0 rgba(80, 80, 80, 0.8);
    left: calc(0.5rem + 0.5vw);
    padding: calc(0.5rem + 0.5vw);
    position: fixed;
    text-align: center;
    z-index: 1003;
}

@media(max-width:767px) {
    #cookieMessage {
        right: calc(0.5rem + 0.5vw);
    }
}

/*--------------------
    AcceptPlus
---------------------*/
#acceptPlus {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.66);
    bottom: 0;
    display: flex;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1003;
}

/*-------------------
    Color-Theme
-------------------*/
.theme-primary {
    background-color: rgb(83, 86, 88);
    color: rgb(255, 255, 255);
}

.theme-accent {
    background-color: rgb(47, 149, 102);
    color: rgb(255, 255, 255);
}

.text-primary {
    color: rgb(83, 86, 88);
}

.text-accent {
    color: rgb(47, 149, 102);
}

.b-c_primary {
    background-color: rgb(83, 86, 88);
}

.b-c_accent {
    background-color: rgb(47, 149, 102);
}

.color-primary {
    color: rgb(255, 255, 255);
}

.color-accent {
    color: rgb(255, 255, 255);
}

.border-c_primary {
    border-color: rgb(83, 86, 88);
}

.border-c_accent {
    border-color: rgb(47, 149, 102);
}

.quote, .title_quote {
    border-left-color: rgb(47, 149, 102);
}

/*----------
    Html
----------*/

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

*, *:before, *:after {
    box-sizing: inherit
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    word-wrap: break-word;
}

body {
    font-family: 'Roboto';
    font-size: calc(0.8255rem + 0.2vw);
    line-height: 1.428;
}

/*Link*/
a {
    background-color: transparent;
    color: inherit;
    outline: none;
    text-decoration: none;
    transition: color 0.25s ease 0s;
}

    .story__content a, a:hover {
        color: rgb(47, 149, 102);
        text-decoration: none;
    }

/*Link hover
.story__content a:not(.btn-raised), .story a:not(.btn-raised):not(.btn-outlined):hover, .sbstory a:not(.btn-raised):not(.btn-outlined):hover {
    color: rgb(47, 149, 102);
}
*/

/*Link for target*/
.story__content a[target="_blank"]:not(.highslide) {
    display: inline-block;
    outline: none;
    overflow: hidden;
    position: relative;
    transition: color 0.25s ease 0s;
    vertical-align: top;
}

    .story__content a[target="_blank"]:not(.highslide):before {
        backface-visibility: hidden;
        background-color: rgb(47, 149, 102);
        bottom: 1px;
        content: "";
        height: 1px;
        left: 0;
        position: absolute;
        top: auto;
        -webkit-transform: scaleX(1);
        transform: scaleX(0);
        transition: transform 0.25s ease 0s;
        width: 100%;
    }

    .story__content a[target="_blank"]:not(.highslide):hover:before {
        background-color: rgb(47, 149, 102);
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

::-ms-clear {
    display: none;
}

:focus {
    outline: none !important;
}

.clear:after, .clearfix:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
}

/*Display*/
.d_none {
    display: none;
}

.d_inline {
    display: inline;
}

.d_block {
    display: block;
}

.d_inline-block {
    display: inline-block;
}

/*--------------------
    Flex container
--------------------*/
.d_flex {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
}

.f-d_column {
    flex-direction: column
}

.f-w_nowrap {
    flex-wrap: nowrap !important
}

.f-d_row-reverse:nth-child(2n) {
    flex-direction: row-reverse
}

/*justify-content*/
.j-c_flex-start {
    -ms-flex-pack: start;
    justify-content: flex-start
}

.j-c_flex-end {
    -ms-flex-pack: end;
    justify-content: flex-end
}

.j-c_center {
    -ms-flex-pack: center;
    justify-content: center
}

.j-c_space-between {
    -ms-flex-pack: justify;
    justify-content: space-between
}

.j-c_space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

/*justify-content\tablet*/
@media (max-width: 768px) {
    .tablet_j-c_center {
        -ms-flex-pack: center;
        justify-content: center
    }
}

/*justify-content\phone*/
@media (max-width: 576px) {
    .phone_j-c_center {
        -ms-flex-pack: center;
        justify-content: center
    }
}

/*justify-content\phone*/
@media (max-width: 576px) {
    .phone_j-c_space-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

/*align-items*/
.a-i_flex-start {
    -ms-flex-align: start;
    align-items: flex-start
}

.a-i_flex-end {
    -ms-flex-align: end;
    align-items: flex-end
}

.a-i_center {
    -ms-flex-align: center;
    align-items: center;
}

.a-i_baseline {
    -ms-flex-align: baseline;
    align-items: baseline
}

.a-i_stretch {
    -ms-flex-align: stretch;
    align-items: stretch
}

/*--------------------
    Flex items
--------------------*/

/*align-self*/
.a-s_flex-start {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.a-s_flex-end {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.a-s_center {
    -ms-flex-item-align: center;
    align-self: center
}

.a-s_baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline
}

.a-s_stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch
}

/*--------------------
    Flex Group:

    Compact_
    flex: 0 1 auto;

    Full_
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
----------------------*/
[class*="flex_"] {
    max-width: 100%;
    min-width: 0;
}

/*0%*/
.flex_1-1-0 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

/*100%*/
.flex_1-1-100 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
}

/*auto*/
.flex_1-1-auto {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex_100 {
    flex-basis: 100%;
    max-width: 100%;
}

.flex_50 {
    flex-basis: 50%;
    max-width: 50%;
}

.flex_33 {
    flex-basis: 33.3%;
    max-width: 33.3%;
}

.flex_25 {
    flex-basis: 25%;
    max-width: 25%;
}

/*tablet*/
@media (max-width: 768px) {
    .tablet_flex_100 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .tablet_flex_50 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .tablet_flex_33 {
        flex-basis: 33.3%;
        max-width: 33.3%;
    }

    .tablet_flex_25 {
        flex-basis: 25%;
        max-width: 25%;
    }
}
/*phone*/
@media (max-width: 576px) {
    .phone_flex_100 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .phone_flex_50 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .phone_flex_33 {
        flex-basis: 33.3%;
        max-width: 33.3%;
    }

    .phone_flex_25 {
        flex-basis: 25%;
        max-width: 25%;
    }
}

.f-g_1, .spacer {
    flex-grow: 1;
}

/*hide tablet*/
@media (max-width: 768px) {
    .hide-t {
        display: none !important;
    }
}

/*hide phone*/
@media (max-width: 576px) {
    .hide-p {
        display: none !important;
    }
}

/*only phone*/
@media (min-width:576px) {
    .only-p {
        display: none !important
    }
}

/*hide*/
.hide {
    display: none !important;
}

/*height*/
.h_100 {
    height: 100%;
    max-height: 100%;
}

/*width*/
.w_100 {
    max-width: 100%;
    width: 100%;
}

/*width\tablet*/
@media (max-width: 768px) {
    .tablet_w_100 {
        width: 100%;
    }

    .tablet_w_50 {
        width: 50%;
    }

    .tablet_w_25 {
        width: 25%;
    }
}

/*width\phone*/
@media (max-width: 576px) {
    .phone_w_100 {
        width: 100%;
    }

    .phone_w_50 {
        width: 50%;
    }

    .phone_w_25 {
        width: 25%;
    }
}

/*hide_elements*/
@media (max-width: 1200px) {
    .hide_1200 {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .hide_1100 {
        display: none !important;
    }
}

@media (max-width: 1000px) {
    .hide_1000 {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .hide_900 {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .hide_800 {
        display: none !important;
    }
}

@media (max-width: 700px) {
    .hide_700 {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .hide_600 {
        display: none !important;
    }
}


/*show_elements*/
@media (min-width:1199px) {
    .show_1200 {
        display: none !important
    }
}

@media (min-width:1099px) {
    .show_1100 {
        display: none !important
    }
}

@media (min-width:999px) {
    .show_1000 {
        display: none !important
    }
}

@media (min-width:899px) {
    .show_900 {
        display: none !important
    }
}

@media (min-width:799px) {
    .show_800 {
        display: none !important
    }
}

/*position*/
.p_relative {
    position: relative;
}

.p_fixed {
    position: fixed;
}

.p_absolute {
    position: absolute;
}

.p_static {
    position: static;
}

.p_sticky {
    position: sticky;
}

/*position-absolute*/
.top-left {
    position: absolute;
    top: calc(0.5rem + 0.5vw);
    left: calc(0.5rem + 0.5vw);
}

.top-right {
    position: absolute;
    top: calc(0.5rem + 0.5vw);
    right: calc(0.5rem + 0.5vw);
}

.bottom-left {
    position: absolute;
    bottom: calc(0.5rem + 0.5vw);
    left: calc(0.5rem + 0.5vw);
}

.bottom-right {
    position: absolute;
    bottom: calc(0.5rem + 0.5vw);
    right: calc(0.5rem + 0.5vw);
}

/*float*/
.f_left {
    float: left;
}

.f_right {
    float: right;
}

.f_none {
    float: none;
}

/*text-transform*/
.t-t_uppercase {
    text-transform: uppercase;
}

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

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

/*text-align*/
.t-a_left {
    text-align: left;
}

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

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

/*text-align\tablet*/
@media (max-width: 768px) {
    .tablet_t-a_left {
        text-align: left;
    }

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

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

/*text-align\phone*/
@media (max-width: 576px) {
    .phone_t-a_left {
        text-align: left;
    }

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

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

/*font-weight*/
.f-w_300 {
    font-weight: 300;
}

.f-w_400 {
    font-weight: 400;
}

.f-w_500 {
    font-weight: 500;
}

.f-w_700 {
    font-weight: 700;
}

/*font-size*/
.f-s_80 {
    font-size: 80%;
}

.f-s_90 {
    font-size: 90%;
}

.f-s_100 {
    font-size: 100%;
}

.f-s_110 {
    font-size: 110%;
}

.f-s_120 {
    font-size: 120%;
}

.f-s_130 {
    font-size: 130%;
}

.f-s_140 {
    font-size: 140%;
}

.f-s_150 {
    font-size: 150%;
}

.f-s_200 {
    font-size: 200%;
}

.f-s_250 {
    font-size: 250%;
}

.f-s_300 {
    font-size: 300%;
}

.f-s_350 {
    font-size: 350%;
}

.f-s_400 {
    font-size: 400%;
}

.f-s_450 {
    font-size: 450%;
}

.f-s_500 {
    font-size: 500%;
}

/*background-img*/
.b-s_contain {
    background-repeat: no-repeat;
    background-size: contain;
}

.b-s_cover {
    background-repeat: no-repeat;
    background-size: cover;
}

.b-a_fixed {
    background-attachment: fixed;
}

/*img_thumb*/
.b_b-r_p {
    border: 1px solid rgba(124, 126, 128, 0.33);
    border-radius: 4px;
    padding: 4px;
}

/*darken*/
.darken {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: opacity 0.5s ease 0s;
    width: 100%;
    z-index: 1;
}

    .darken:hover {
        opacity: 1;
    }

/*opacity*/
.o_10 {
    opacity: 0.1;
}

.o_20 {
    opacity: 0.2;
}

.o_30 {
    opacity: 0.3;
}

.o_40 {
    opacity: 0.4;
}

.o_50 {
    opacity: 0.5;
}

.o_60 {
    opacity: 0.6;
}

.o_70 {
    opacity: 0.7;
}

.o_80 {
    opacity: 0.8;
}

.o_90 {
    opacity: 0.9;
}

/*border-radius*/
.b-r_story {
    border-radius: 0px;
}

.b-r_0 {
    border-radius: 0;
}

.b-r_2 {
    border-radius: 2px;
}

.b-r_4 {
    border-radius: 4px;
}

.b-r_50 {
    border-radius: 50%;
}

/*list item*/
ol.list, ul.list, ol.list ol, ol.list ul, ul.list ol, ul.list ul {
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 0;
}

ol.d_inline-block li, ul.d_inline-block li, .d_inline-block li {
    display: inline-block;
}

/*ol_list\ul_list*/
ol.ol_list, ol.ul_list, ul.ol_list, ul.ul_list {
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 0;
}

ol.ol_list, ul.ol_list {
    counter-reset: ol;
}

    ol.ol_list li:before, ol.ul_list li:before, ul.ol_list li:before, ul.ul_list li:before {
        display: inline-flex;
        font-weight: 700;
    }

    ol.ol_list li:before, ul.ol_list li:before {
        color: rgb(144, 146, 148);
        content: counter(ol, decimal);
        counter-increment: ol;
        margin-right: 0.5rem;
        transition: color 0.75s ease 0s;
    }

    ol.ol_list.ol_primary li:before, ul.ol_list.ol_primary li:before {
        color: rgb(83, 86, 88);
    }

    ol.ol_list.ol_accent li:before, ul.ol_list.ol_accent li:before {
        color: rgb(47, 149, 102);
    }

    ol.ol_list.ol_hover_primary li:hover:before, ul.ol_list.ol_hover_primary li:hover:before {
        color: rgb(83, 86, 88);
    }

    ol.ol_list.ol_hover_accent li:hover:before, ul.ol_list.ol_hover_accent li:hover:before {
        color: rgb(47, 149, 102);
    }

ol.ul_list li:before, ul.ul_list li:before {
    background-color: rgb(144, 146, 148);
    border-radius: 50%;
    content: "";
    height: 10px;
    margin-right: 0.5rem;
    top: 0;
    transition: background-color 0.75s ease 0s;
    width: 10px;
}

ol.ul_list.ul_primary li:before, ul.ul_list.ul_primary li:before {
    background-color: rgb(83, 86, 88);
}

ol.ul_list.ul_accent li:before, ul.ul_list.ul_accent li:before {
    background-color: rgb(47, 149, 102);
}

ol.ul_list.ul_hover_primary li:hover:before, ul.ul_list.ul_hover_primary li:hover:before {
    background-color: rgb(83, 86, 88);
}

ol.ul_list.ul_hover_accent li:hover:before, ul.ul_list.ul_hover_accent li:hover:before {
    background-color: rgb(47, 149, 102);
}

/*html tags*/
h1, .h1 {
    font-size: 200%;
}

h2, .h2 {
    font-size: 150%;
}

h3, .h3 {
    font-size: 115%;
}

h4, .h4 {
    font-size: 100%;
}

h5, .h5 {
    font-size: 85%;
}

h6, .h6 {
    font-size: 65%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: inherit;
    margin-bottom: calc(0.5rem + 0.5vw);
    margin-top: 0;
}

p {
    margin-bottom: calc(0.5rem + 0.5vw);
    margin-top: 0;
}

    .h1, .h2, .h3, .h4, .h5, .h6, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child {
        margin-bottom: 0;
    }

/*truncate*/
.truncate {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*text-muted*/
.text-muted {
    color: rgb(144,146,148) !important;
}

/*fieldset*/
fieldset {
    border: 1px solid rgba(124, 126, 128, 0.25);
    border-radius: 0.2rem;
    margin: 0;
    padding: 0 calc(0.5rem + 0.25vw) calc(0.5rem + 0.25vw);
}
    fieldset legend {
        font-size: 100%;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: calc(0.5rem + 0.25vw);
        padding-right: calc(0.5rem + 0.25vw);
        width: auto;
    }

/*table-b*/
.table-b {
    border: 1px solid rgba(124, 126, 128, 0.33);
    border-radius: 4px;
    border-spacing: 0;
    font-size: 90%;
}

    .table-b thead {
        font-weight: 700;
    }

    .table-b tr td:first-child {
        border-left: none;
    }

    .table-b tr td {
        border-bottom: 1px solid rgba(124, 126, 128, 0.33);
        border-left: 1px solid rgba(124, 126, 128, 0.33);
        overflow: hidden;
        padding: 0.5rem 0.75rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .table-b tr td .pm_list {
            color: rgb(47, 149, 102);
            font-weight: 500;
        }

    .table-b tbody tr td:last-child {
        font-size: 90%;
    }

/*margin-vw\width*/
.m {
    margin: calc(0.5rem + 0.5vw);
}

.m-t {
    margin-top: calc(0.5rem + 0.5vw);
}

.m-r {
    margin-right: calc(0.5rem + 0.5vw);
}

.m-b {
    margin-bottom: calc(0.5rem + 0.5vw);
}

.m-l {
    margin-left: calc(0.5rem + 0.5vw);
}

/*.m-r_group*/
.m-r_group > * {
    margin-right: calc(0.5rem + 0.5vw);
}

.m-r_group > *:last-child {
    margin-right: 0;
}

/*small_margin*/
.sm {
    margin: 0.5rem;
}

.sm-t {
    margin-top: 0.5rem;
}

.sm-r {
    margin-right: 0.5rem;
}

.sm-b {
    margin-bottom: 0.5rem;
}

.sm-l {
    margin-left: 0.5rem;
}

.m_auto {
    margin: auto;
}

.m-l_auto {
    margin-left: auto;
}

.m-r_auto {
    margin-right: auto;
}

/*padding-vw\width*/
.p {
    padding: calc(0.5rem + 0.5vw);
}

.p-t {
    padding-top: calc(0.5rem + 0.5vw);
}

.p-r {
    padding-right: calc(0.5rem + 0.5vw);
}

.p-b {
    padding-bottom: calc(0.5rem + 0.5vw);
}

.p-l {
    padding-left: calc(0.5rem + 0.5vw);
}

/*small_padding*/
.sp {
    padding: 0.5rem;
}

.sp-t {
    padding-top: 0.5rem;
}

.sp-r {
    padding-right: 0.5rem;
}

.sp-b {
    padding-bottom: 0.5rem;
}

.sp-l {
    padding-left: 0.5rem;
}

/*border*/
.b {
    border: 1px solid rgba(124, 126, 128, 0.33);
}

.b-t {
    border-top: 1px solid rgba(124, 126, 128, 0.33);
}

.b-r {
    border-right: 1px solid rgba(124, 126, 128, 0.33);
}

.b-b {
    border-bottom: 1px solid rgba(124, 126, 128, 0.33);
}

.b-l {
    border-left: 1px solid rgba(124, 126, 128, 0.33);
}

/*Divider*/
.divider {
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    border-top: 1px solid rgba(34, 36, 38, 0.15);
}

.hidden.divider {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border-color: transparent;
}

.clearing.divider {
    clear: both;
}

hr {
    border-bottom: 1px solid rgba(245, 245, 245, 0.14);
    border-top: 1px solid rgba(34, 36, 38, 0.14);
    color: rgba(0, 0, 0, 0);
}

/*pulse-animation*/
.pulse {
    overflow: visible;
    position: relative;
    z-index: 0;
}

    .pulse::before {
        animation: 1s cubic-bezier(0.24, 0, 0.38, 1) 0s normal none infinite running pulse-animation;
        background-color: inherit;
        border-radius: inherit;
        content: "";
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
        width: 100%;
        z-index: -1;
    }

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/*-----------
    Layout
------------*/

/*boxed*/
.boxed .sd__page {
    background-color: rgb(235, 236, 237);
    padding: calc(0.5rem + 0.5vw);
}

/*frame*/
.frame.wrapper {
    padding-top: calc(0.5rem + 0.5vw);
    padding-bottom: calc(0.5rem + 0.5vw);
}

.frame .wrapper__container {
    padding-left: calc(0.5rem + 0.5vw);
    padding-right: calc(0.5rem + 0.5vw);
}

.frame .header, .frame .subheader, .frame .masthead, .frame .menu, .frame .custom, .frame .sd__page, .frame .subcontent, .frame .footer {
    margin-bottom: calc(0.5rem + 0.5vw);
}

.frame .footer, .footer {
    margin-bottom: 0;
}

/*wide*/
.wide .sd__page {
    padding-top: calc(0.5rem + 0.5vw);
}

@media (max-width: 1040px) {
    .wide .sd__page {
        padding: calc(0.5rem + 0.5vw);
    }
}


/*wrapper*/
.wrapper {
    background: rgb(255, 255, 255) url("/") no-repeat scroll 0 0 ;
    font-size: 100%;
}

/*container*/
.wrapper__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-bottom: 0%;
    padding-top: 0%;
    width: 100%;
}

.sd__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    padding-left: calc(0.5rem + 0.5vw);
    padding-right: calc(0.5rem + 0.5vw);
    width: 100%;
}

/*sd__page*/
.sd__page {
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    padding-left: calc(0.5rem + 0.5vw);
    padding-right: calc(0.5rem + 0.5vw);
    width: 100%;
}

    /*SideNav*/
    .sd__page .sd__sidenav {
        flex: 0 0 250px;
        max-width: 250px;
    }

        .sd__page .sd__sidenav.p_relative {
            margin-right: calc(0.5rem + 0.5vw);
        }

        .sd__page .sd__sidenav.p_fixed {
            background-color: rgb(255, 255, 255);
            border-radius: 0;
            bottom: 0;
            color: rgb(66, 66, 66);
            flex: 0 0 330px;
            left: 0;
            max-width: 100%;
            overflow-y: auto;
            position: fixed;
            right: auto;
            top: 0;
            transform: translate3d(-100%, 0px, 0px);
            transition: transform 0.5s ease 0s;
            width: 330px;
            z-index: 999;
        }

            .sd__page .sd__sidenav.p_fixed.visible {
                transform: translate3d(0px, 0px, 0px);
            }

@media (max-width: 1200px) {
    .sd__page .sd__sidenav {
        background-color: rgb(255, 255, 255);
        border-radius: 0;
        bottom: 0;
        color: rgb(66, 66, 66);
        flex: 0 0 330px;
        left: 0;
        max-width: 100%;
        overflow-y: auto;
        position: fixed;
        right: auto;
        top: 0;
        transform: translate3d(-100%, 0px, 0px);
        transition: transform 0.5s ease 0s;
        width: 330px;
        z-index: 999;
    }

        .sd__page .sd__sidenav.visible {
            margin-right: 0;
            padding: calc(0.5rem + 0.5vw);
            transform: translate3d(0px, 0px, 0px);
        }
}

@media (max-width: 576px) and (orientation: portrait) {
    .sd__page .sd__sidenav.visible {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}


/*SideBar*/
.sd__page .sd__sidebar {
    background-color: rgb(240, 248, 242);
    flex: 0 0 344px;
    max-width: 344px;
}

@media (max-width: 992px) {
    .sd__page .sd__sidebar {
        background-color: rgb(255, 255, 255);
        border-radius: 0;
        bottom: 0;
        color: rgb(66, 66, 66);
        flex: 0 0 330px;
        left: auto;
        margin: 0;
        max-width: 100%;
        overflow-y: auto;
        position: fixed;
        right: 0;
        top: 0;
        transform: translate3d(100%, 0px, 0px);
        transition: transform 0.5s ease 0s;
        width: 330px;
        z-index: 999;
    }

        .sd__page .sd__sidebar.visible {
            margin-left: 0;
            padding: calc(0.5rem + 0.5vw);
            transform: translate3d(0px, 0px, 0px);
        }
}

@media (max-width: 576px) and (orientation: portrait) {
    .sd__page .sd__sidebar.visible {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 991px) {
    .sidebar-trigger {
        display: none;
    }
}

/*-------------
    Button
-------------*/
button, .btn-text, .ui-button, .bbcodes, .btn-outlined, .btn-raised {
    align-items: center;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-flex;
    font-family: "Roboto",sans-serif;
    font-size: 100%;
    font-weight: 500;
    line-height: 125%;
    justify-content: center;
    padding: calc(0.5rem / 2 + 0.25vw);
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s ease-in-out 0s, background-color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s, box-shadow 0.25s ease-in-out 0s;
    white-space: nowrap;
}

    .btn-outlined > a:hover, .btn-raised > a:hover, a > .btn-outlineda:hover, a > .btn-raiseda:hover {
        color: rgb(255, 255, 255);
    }

.btn-text {
    color: inherit;
}

    .btn-text:hover, .btn-text:focus, .btn-text:active, .btn-text.active {
        background-color: rgba(124, 126, 128, 0.33);
        color: initial;
    }

.btn-outlined {
    background-color: transparent;
    border-color: rgb(47, 149, 102);
    color: rgb(47, 149, 102);
}

    .btn-outlined:hover {
        background-color: rgb(47, 149, 102);
        border-color: rgb(47, 149, 102);
        color: rgb(255, 255, 255);
    }

.btn-raised {
    background-color: rgb(47, 149, 102);
    color: rgb(255, 255, 255);
}

    .btn-raised:hover {
        background-color: rgb(47, 149, 102);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        color: rgb(255, 255, 255);
    }

/*btn-sm*/
@media (min-width: 576px) {
    .btn-sm {
        font-size: 85%;
        padding: calc(0.5rem / 8 + 0.25vw);
    }
}

/*btn-block*/
.btn-block {
    display: block;
    text-align: center;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: calc(0.5rem / 2 + 0.5vw);
    }

/*phone_btn-block*/
@media (max-width: 576px) {
    .p_btn-block, .phone_btn-block {
        width: 100%;
    }

        .p_btn-block + .p_btn-block, .phone_btn-block + .phone_btn-block {
            margin-top: calc(0.5rem / 2 + 0.5vw);
        }
}

/*btn + m*/
button > .m-l, .btn-text > .m-l, .ui-button > .m-l, .bbcodes > .m-l, .btn-outlined > .m-l, .btn-raised > .m-l {
    margin-left: 0.5rem;
}

button > .m-r, .btn-text > .m-r, .ui-button > .m-r, .bbcodes > .m-r, .btn-outlined > .m-r, .btn-raised > .m-r {
    margin-right: 0.5rem;
}

/*disabled*/
button:disabled {
    cursor: default;
    opacity: 0.85;
    pointer-events: none;
}

button, .ui-button, .bbcodes {
    border-color: rgba(124, 126, 128, 0.33);
    color: inherit;
}

.header .hide-t > button:hover, .header .hide-t > .ui-button:hover, .header .hide-t > .bbcodes:hover, .header .hide-t > button.active, .header .hide-t > .ui-button.active, .header .hide-t > .bbcodes.active {
    border-color: rgba(255, 255, 255, 0.33);
    color: inherit;
}


/*
    button:hover, button:focus, button:active, .ui-button:hover, .ui-button:focus, .ui-button:active, .bbcodes:hover, .bbcodes:focus, .bbcodes:active, button.active, .ui-button.active, .bbcodes.active {
        background-color: rgba(134, 136, 138, 0.28);
        border-color: transparent;
        color: inherit;
    }
*/

/*-----------
    Badge
-----------*/
.badge {
    background-color: rgb(47, 149, 102);
    border: none;
    border-radius: 2px;
    box-shadow: none;
    color: rgb(255, 255, 255);
    font-size: 80%;
    line-height: 100%;
    padding: calc(0.5rem / 1.25) 0.5rem;
    transition: color 0.25s ease-in-out 0s, background-color 0.25s ease-in-out 0s;
}

/*-------------
    Tooltip
-------------*/
#tooltip {
    background-color: #ffffff;
    border: 1px solid #d4d4d5;
    border-radius: 0.25rem;
    bottom: auto;
    box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
    color: rgba(0, 0, 0, 0.87);
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    left: auto;
    line-height: 1.4285em;
    margin-bottom: 0.75em;
    padding: 0.5em 0.8em;
    position: absolute;
    right: auto;
    text-align: center;
    text-indent: 0;
    text-transform: none;
    top: auto;
    transform: scale(0);
    transition: transform 0.25s ease 0s;
    white-space: nowrap;
    z-index: 7;
}
    /* Arrow */
    #tooltip:after {
        background-color: #ffffff;
        bottom: -0.4em;
        box-shadow: 1px 1px 0 0 #bababc;
        content: "";
        height: 0.75em;
        left: 46.5%;
        position: absolute;
        right: auto;
        top: auto;
        transform: rotate(45deg);
        width: 0.75em;
    }
    /* Arrow Top */
    #tooltip.top:after {
        box-shadow: -1px -1px 0 0 #bababc;
        top: -7px;
    }
    /* Arrow Left */
    #tooltip.left:after {
        left: 0.8em;
        right: auto;
    }
    /* Arrow Right */
    #tooltip.right:after {
        left: auto;
        right: 0.8em;
    }

/*---------------
	DropDown
---------------*/
.dropdown {
    position: relative;
}

    .dropdown .menu {
        background-color: rgb(255, 255, 255);
        border: 1px solid rgba(124, 126, 128, 0.33);
        border-radius: 2px;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
        left: auto;
        margin-top: -1rem;
        opacity: 0;
        position: absolute;
        right: auto;
        top: 0;
        transition: all 0.25s ease 0s;
        visibility: hidden;
        z-index: 3;
    }

        .dropdown .menu.visible {
            margin-top: 0;
            opacity: 1;
            visibility: visible;
        }

        .dropdown .menu.left {
            right: 0;
        }

        .dropdown .menu.right {
            left: 0;
        }

        /*item*/
        .dropdown .menu > a,
        .dropdown .menu > .item {
            align-items: center;
            border-radius: 2px;
            color: rgb(75, 75, 75);
            display: flex;
            margin: calc(0.5rem);
            padding: calc(0.5rem - 0.25vw) calc(0.5rem * 3) calc(0.5rem - 0.25vw) calc(0.5rem);
            transition: background-color 0.25s ease 0s, color 0.25s ease 0s;
            white-space: nowrap;
        }

            .dropdown .menu > a:hover,
            .dropdown .menu > a.active,
            .dropdown .menu > .item:hover,
            .dropdown .menu > .item.active {
                background-color: rgba(124, 126, 128, 0.33);
                color: rgb(25, 25, 25);
            }

/*------------
    Rating
------------*/
.rating {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 0px;
    padding: 0px;
}

    .rating > a {
        padding: 0px;
    }

/*-----------
    Form
-----------*/
input, select, textarea {
    background-color: transparent;
    border: 1px solid rgba(124, 126, 128, 0.33);
    border-radius: 2px;
    color: inherit;
    font-family: Arial,sans-serif;
    font-size: 100%;
    line-height: calc(1rem + 0.5vw);
    margin: 0;
    max-width: 100%;
    padding: calc(0.5rem / 2 + 0.25vw) calc(0.5rem + 0.25vw);
    transition: border-color 0.25s ease-in-out 0s, box-shadow 0.25s ease-in-out 0s;
}

/*field*/
.field {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.field, .fields {
    width: 100%;
}

    .field .w_50 {
        width: calc(50% - 0.5rem);
    }

    .field .label {
        display: inline-block;
        font-size: 90%;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .field input, .field select, .field textarea {
        margin-bottom: calc(0.5rem + 0.25vw);
        width: 100%;
    }

/*phone_fields*/
@media (max-width: 576px) {
    .field .w_50 {
        width: 100%;
    }
}

.field input[type="checkbox"], .field input[type="radio"] {
    margin-right: calc(0.5rem + 0.25vw);
    width: auto;
}

/*required*/
input:required, textarea:required {
    border-left: 1px solid red;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
    border-color: rgb(83, 86, 88);
    box-shadow: 0 0 0 1px rgb(83, 86, 88);
    outline: 0;
}

/*field material*/
.fields.material {
    position: relative;
}

    .fields.material label {
        display: inline-block !important;
        opacity: 0.6;
        pointer-events: none;
        transform: translateY(32px);
        transition: transform 0.25s ease 0s;
    }

    .fields.material.active label {
        opacity: 1;
        transform: translateY(12px);
    }

    .fields.material.required label:after {
        color: rgb(255, 0, 0);
        content: " *";
        font-weight: 700;
    }

    .fields.material input, .fields.material select, .fields.material textarea {
        border-radius: 0;
        border-style: none none solid;
        border-width: medium medium 1px;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }

    .fields.material textarea {
        overflow-y: hidden;
        resize: vertical;
    }

    .fields.material select {
        background: transparent url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\"><path d=\"M7 10l5 5 5-5z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/></svg>") no-repeat scroll right center;
        opacity: 0.6;
        -moz-appearance: none;
        -webkit-appearance: none;
    }

        .fields.material select::-ms-expand {
            display: none;
        }

    /*hide_placeholder*/
    .fields.material input::-webkit-input-placeholder {
        color: transparent;
    }

    .fields.material input::-moz-placeholder {
        color: transparent;
    }

    .fields.material input:-ms-input-placeholder {
        color: transparent;
    }

    .fields.material textarea::-webkit-input-placeholder {
        color: transparent;
    }

    .fields.material textarea::-moz-placeholder {
        color: transparent;
    }

    .fields.material textarea:-ms-input-placeholder {
        color: transparent;
    }

/*--------------------
    Checkbox\Radio
---------------------*/
input + label {
    display: inline-block;
    margin-bottom: 0;
    padding-left: calc(0.5rem + 0.5vw);
}

/*Static checkbox end radio for label + input*/
.pollanswer, .vote, .checkbox {
    align-items: center;
    display: flex;
    position: relative;
    width: auto;
}

    .pollanswer > input, .vote > input, .checkbox > input {
        align-self: flex-start;
        display: none;
        margin: 0;
        min-height: 24px;
        min-width: 24px;
        padding: 0;
    }

    .pollanswer input[type="checkbox"] + label, .pollanswer input[type="radio"] + label, .vote input[type="checkbox"] + label, .vote input[type="radio"] + label, .checkbox input[type="checkbox"] + label, .checkbox input[type="radio"] + label {
        align-items: center;
        cursor: pointer;
        display: flex;
        padding-left: 0;
    }

        .pollanswer input[type="checkbox"] + label:before, .pollanswer input[type="radio"] + label:before, .vote input[type="checkbox"] + label:before, .vote input[type="radio"] + label:before, .checkbox input[type="checkbox"] + label:before, .checkbox input[type="radio"] + label:before {
            font-family: "Icons";
            font-size: 140%;
            margin-right: calc(0.5rem);
            transition: all 0.25s ease 0s;
        }

        /*checkbox*/
        .pollanswer input[type="checkbox"] + label:before, .vote input[type="checkbox"] + label:before, .checkbox input[type="checkbox"] + label:before {
            color: rgb(124, 126, 128);
            content: "\e90c";
        }

    .pollanswer input[type="checkbox"]:checked + label:before, .vote input[type="checkbox"]:checked + label:before, .checkbox input[type="checkbox"]:checked + label:before {
        color: rgb(47, 149, 102);
        content: "\e90b";
    }

    /*radio*/
    .pollanswer input[type="radio"] + label:before, .vote input[type="radio"] + label:before, .checkbox input[type="radio"] + label:before {
        align-self: flex-start;
        color: rgb(124, 126, 128);
        content: "\e93b";
    }

    .pollanswer input[type="radio"]:checked + label:before, .vote input[type="radio"]:checked + label:before, .checkbox input[type="radio"]:checked + label:before {
        color: rgb(47, 149, 102);
        content: "\e93a";
    }

/*------------
	Tabs
------------*/
.tabs__nav {
    border-bottom: 1px solid rgba(124, 126, 128, 0.33);
    position: relative;
}

    .tabs__nav .tabs__nav-item {
        align-items: center;
        display: flex;
        padding-bottom: 1em;
        padding-top: 1em;
        position: relative;
    }

        .tabs__nav .tabs__nav-item.active {
            color: rgb(47, 149, 102);
        }

            .tabs__nav .tabs__nav-item.active:before {
                background-color: rgb(47, 149, 102);
                bottom: -1px;
                content: "";
                height: 3px;
                left: 0;
                margin-bottom: -1px;
                position: absolute;
                right: 0;
            }

.tabs__content {

}

    .tabs__content .tabs__content-item {
        display: none;
    }

        .tabs__content .tabs__content-item.active {
            display: block;
        }

.tab-fading {
    animation: fading 10s infinite
}

@keyframes fading {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.tab-opacity {
    animation: opac 0.8s
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/*-----------------
    Owl-Carusel
-----------------*/
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: manipulation;
        -moz-backface-visibility: hidden;
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper,
    .owl-carousel .owl-item {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
        }

    .owl-carousel .owl-nav.disabled,
    .owl-carousel .owl-dots.disabled {
        display: none;
    }

    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab;
    }

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Owl Carousel - Auto Height Plugin */
.owl-height {
    transition: height 500ms ease-in-out;
}

/* Owl Carousel + */
.masthead_owl-nav {
    background-color: rgb(83, 86, 88);
    border-radius: 4px;
    bottom: auto;
    left: auto;
    padding: 0.5rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

    .masthead_owl-nav button + button {
        margin-left: 0.5rem;
    }

.owl-title {
    bottom: 0;
    left: 0;
    padding: calc(0.5rem + 0.25vw);
    position: absolute;
    right: 0;
    transition: background-color 0.33s ease 0s;
    z-index: 1;
}

    .owl-title::before {
        background-color: rgba(0, 0, 0, 0.33);
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

.owl-item a:hover .owl-title {
    background-color: rgba(0, 0, 0, 0.66);
}

    .owl-item a:hover .owl-title.hoverable__truncate .truncate {
        white-space: inherit;
    }

/*------------------------------
    Styles for template.tpl
-------------------------------*/
.story__content:after {
    clear: both;
    content: "";
    display: block;
}

/*add_09_06_2020*/
.story__content {
	text-align: justify !important;
}

.story__content .highslide img {
    border: 1px solid rgb(121, 121, 121);
    box-sizing: content-box;
    padding: 4px;
}

/*include\custom.tpl*/
.custom {
    background-color: rgb(172, 215, 182);
}
.custom .tabs__nav-item {
    align-self: stretch;
    background-color: rgb(83, 86, 88);
    color: rgb(244, 243, 243);
    font-size: 12px;
    font-weight: 500;
}
.custom .tabs__nav-item.active {
    background-color: rgb(172, 215, 182);
    color: rgb(64, 64, 64);
}



/*include\footer.tpl*/
footer.footer {
    background-color: rgb(255, 255, 255);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(55, 55, 55);
}

/*include\header.tpl*/
header.header {
    background-color: rgb(83, 86, 88);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(255, 255, 255);
}

.search-form {
    position: relative;
}

    .search-form .search-form__input {
        border-color: rgba(255, 255, 255, 0.33);
        width: 100%;
    }

        .search-form .search-form__input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.66);
        }

        .search-form .search-form__input:hover, .search-form .search-form__input:focus {
            border-color: rgba(255, 255, 255, 0.66);
            box-shadow: none;
        }

    .search-form .search-form__button {
        border-left-color: rgba(255, 255, 255, 0.33);
        bottom: 0;
        left: auto;
        position: absolute;
        right: 0;
        top: 0;
    }

/*search for phone*/
@media (max-width: 576px) {
    .searchOut {
        background-color: rgb(83, 86, 88);
        bottom: auto;
        color: rgb(255, 255, 255);
        left: 0;
        padding: calc(0.5rem + 0.5vw);
        position: fixed;
        right: 0;
        top: 0;
        transform: translateY(-125%);
        transition: transform 0.25s ease 0s;
        z-index: 7;
    }

        .searchOut.visible {
            transform: translateY(0%);
        }

            .searchOut.visible .search-form .search-form__input {
                border-color: rgb(255, 255, 255);
            }

                .searchOut.visible .search-form .search-form__input:hover, .search-form .search-form__input:focus {
                    border-color: rgb(255, 255, 255);
                }

            .searchOut.visible .search-form .search-form__button {
                border-color: rgb(255, 255, 255);
            }
}


/*include\lastcomments.tpll*/
/*include\masthead.tpl*/
section.masthead {
    background-color: rgb(236, 236, 236);
    border: 0px solid rgb(204, 205, 206);
    border-radius: 0px;
    color: rgb(25, 25, 25);
}

/*include\navmenu.tpl*/
nav.menu {
    background-color: rgb(66, 66, 66);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(255, 255, 255);
}

    /*js--toggle*/
    nav.menu .js--toggle {
        overflow-x: auto;
        overflow-y: hidden;
    }

    nav.menu li.navmenu-trigger {
        display: none;
    }

    nav.menu .js--toggle li.navmenu-trigger {
        align-items: center;
        display: flex;
        flex: 1 0 auto;
    }

    nav.menu .js--toggle .menu__li:first-child .menu__a, nav.menu .js--toggle .menu__li:last-child .menu__a {
        margin: 0.5rem;
    }

    nav.menu .js--toggle.js--column {
        flex-direction: column;
    }

        nav.menu .js--toggle.js--column .navmenu-trigger {
            border-bottom: 2px solid rgba(124, 126, 128, 0.75);
        }

    nav.menu .js--toggle .navmenu-trigger .toggle_text {
        display: none;
    }

    nav.menu .js--toggle.js--column .navmenu-trigger .toggle_text {
        display: block;
    }

    nav.menu .js--toggle.js--column li:not(.navmenu-trigger) a {
        margin: calc(0.5rem);
    }

    nav.menu .js--toggle .menu__a .menu__arrow {
        display: none;
    }

    nav.menu .js--toggle.js--column .menu__a .menu__arrow {
        display: flex;
        margin-left: auto;
    }

    nav.menu .js--toggle.js--column .menu__a + .menu__ul {
        border: medium none;
        left: 0;
        padding-left: calc(0.5rem * 2);
        position: relative;
        top: 0;
    }

    /*end_js--toggle*/

    nav.menu .menu__ul {
        display: flex;
    }

    nav.menu .menu__a {
        border: 1px solid rgba(124, 126, 128, 0.33);
        border-radius: 2px;
        margin: calc(0.5rem) 0 calc(0.5rem) calc(0.5rem);
        white-space: nowrap;
    }

        nav.menu .menu__a .menu__plus, nav.menu .menu__a .menu__count {
            display: none;
        }

        nav.menu .menu__a .menu__arrow {
            box-shadow: 1px 0 0 0 rgba(124, 126, 128, 0.25) inset;
            display: flex;
            margin: calc(0.5rem) 0;
            padding: 0 0.75rem;
        }

        nav.menu .menu__a + .menu__ul {
            background-color: rgb(66, 66, 66);
            border: 1px solid rgba(124, 126, 128, 0.25);
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            bottom: auto;
            display: none;
            left: auto;
            padding-left: 0;
            position: absolute;
            right: auto;
            top: 100%;
            width: auto;
            z-index: 1;
        }

            nav.menu .menu__a + .menu__ul .menu__ul {
                border-top-right-radius: 4px;
                left: 100%;
                top: 0;
            }

            nav.menu .menu__a + .menu__ul .menu__a {
                margin: calc(0.5rem);
            }


/*theme_menu*/






/*include\sidebar.tpl*/
.sb_profile {
    background-color: rgb(225, 237, 228);
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}


.sbstory {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
}

.sbstory {
    box-shadow: none;
    margin-bottom: calc(0.5rem + 0.5vw);
}

    .sbstory .sbstory__title {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        font-size: 115%;
        font-weight: 500;
        margin-bottom: 0;
    }

/*sbmenu*/
.sbmenu.sbstory {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
    padding: 0.5rem;
}

/*calendar*/
.calendar tr th.monthselect {
    border-top: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    font-size: 115%;
    font-weight: 500;
}

/*calendar_theme-a*/
.theme-a tbody tr th.monthselect {
    background-color: rgb(83, 86, 88);
    color: rgb(255, 255, 255);
}

/*calendar_theme-b*/
.theme-b tbody tr th.monthselect {
    background-color: rgb(47, 149, 102);
    color: rgb(255, 255, 255);
}

/*calendar_theme-c*/
.theme-c tbody tr th.monthselect {
    background-color: rgb(47, 149, 102);
    color: rgb(255, 255, 255);
}

/*arhiv*/
.arhiv .archives {
    display: flex;
    margin-bottom: 0.5rem;
}

    .arhiv .archives + br {
        display: none;
    }

#dle_news_archive_link {
    border-top: 1px solid rgba(124, 126, 128, 0.33);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

#dle_news_archive_link > br {
    display: none;
}

#dle_news_archive_link .archives {
    margin-bottom: 0;
}

/*include\sidenav.tpl*/
/*include\subcontent.tpl*/
section.subcontent {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
}

/*include\subheader.tpl*/
section.subheader {
    background-color: rgb(255, 255, 255);
    border: 0px solid rgb(204, 205, 206);
    border-radius: 0px;
    color: rgb(25, 25, 25);
}

/*addcomments.tpl*/
.comments_subscribe {
    cursor: pointer;
    margin-bottom: 0;
}

.mass_comments_action {
    display: none;
    margin-bottom: 0.5rem;
    text-align: right;
}

/*addnews.tpl*/
.addnews .checkbox label {
    cursor: pointer;
}
.addnews .checkbox label input {
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

/*attachment.tpl*/
/*categorymenu.tpl*/
.menu__ul {
    position: relative;
}

    .menu__li {
        position: relative;
    }

        .menu__a {
            align-items: center;
            background-color: transparent;
            border: 1px solid rgba(124, 126, 128, 0.33);
            border-radius: 2px;
            display: flex;
            flex-direction: row;
            font-size: 90%;
            font-weight: 500;
            margin: 0.5rem 0;
            position: relative;
            transition: color 0.25s ease-in-out 0s, background-color 0.25s ease-in-out 0s, border-color 0.25s ease 0s;
        }

            .menu__a:hover, .menu__a.active {
                background-color: rgba(124, 126, 128, 0.33);
                border-color: transparent;
                color: inherit; /*rgb(47, 149, 102)*/
            }

        .menu__li:first-child .menu__a {
            margin-top: 0;
        }

        .menu__li:last-child .menu__a {
            margin-bottom: 0;
        }

        .menu__a .menu__name {
            margin: 0.5rem;
        }

        .menu__a .menu__count {
            align-self: flex-start;
            margin: calc(0.5rem) calc(0.5rem) calc(0.5rem) auto;
        }

        .menu__a.menu__parent .menu__plus {
            align-items: center;
            align-self: stretch;
            box-shadow: -1px 0 0 0 rgba(124, 126, 128, 0.25) inset;
            display: flex;
            font-weight: 700;
            margin: calc(0.5rem) 0;
            padding: 0 0.75rem;
        }

        .menu__a .menu__arrow {
            display: none;
        }

        .menu__a + .menu__ul {
            display: none;
            padding-left: calc(0.5rem * 2);
        }

.frame .sd__sidenav .sbmenu, .wide .sd__sidenav .sbmenu {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
    padding: 0.5rem;
}

/*categorytitle.tpl*/
/*comments.tpl*/
.comments.story, #dlefastreplycomments {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
}

.comments.story, #dlefastreplycomments {
    box-shadow: none;
}

    .comments.story .comments__title {
        border-bottom: 1px solid rgba(124, 126, 128, 0.33);
    }

    .comments.story .comments__meta {
        border-top: 1px solid rgba(124, 126, 128, 0.33);
    }

.comments__avatar {
    border: 1px solid rgba(124, 126, 128, 0.33);
    display: flex;
    height: 42px;
    position: relative;
    width: 42px;
}

    .comments__avatar.rootcomments {
        height: 52px;
        width: 52px;
    }

    .comments__avatar img {
        background-size: cover;
        flex-basis: 0;
        flex-grow: 1;
        object-fit: cover;
    }

    .comments__avatar .online {
        background-color: rgb(0, 128, 0);
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50%;
        bottom: 5%;
        color: rgba(0, 0, 0, 0);
        height: 10px;
        position: absolute;
        right: 0;
        width: 10px;
    }

.comments-tree-list {
    list-style-type: none;
    padding-left: 0;
}

    .comments-tree-list .comments-tree-list {
        padding-left: calc(0.5rem + 1vw);
    }

#dlefastreplycomments {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
    margin-bottom: calc(0.5rem + 0.5vw);
    padding: calc(0.5rem + 0.5vw);
}

    #dlefastreplycomments textarea {
        margin-top: calc(0.5rem + 0.5vw);
    }

/*feedback.tpl*/
.addfiles {
    bottom: 0;
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

/*fullstory.tpl*/
.fullstory.story .story__title {
    font-size: 150%;
}


/*info.tpl*/
.info.story {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
}

.info.story {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
}

.info ul {
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 0;
}

.info li {
    list-style-type: none;
}

.dle-popup-alert ul {
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 0;
}

/*informer.tpl*/
/*login.tpl*/
.sd__modal {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.66);
    bottom: 0;
    cursor: pointer;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 6;
}

.sd__dialog {
    background-color: white;
    border-radius: 0.25em;
    box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.87);
    cursor: default;
    margin: auto;
    padding: calc(0.5rem + 0.5vw);
    z-index: 7;
}

.sd__dialog-titlebar {
    align-items: center;
    border-bottom: 1px solid rgba(124, 126, 128, 0.33);
    display: flex;
    justify-content: center;
    padding-bottom: calc(0.5rem + 0.5vw);
}

.sd__dialog-content {
    padding: calc(0.5rem + 0.5vw) 0;
}

.sd__dialog-buttonpane {
    border-top: 1px solid rgba(124, 126, 128, 0.33);
    padding-top: calc(0.5rem + 0.5vw);
}

.sd__dialog-buttonset {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

/*orientation (горизонтальная)
@media (orientation: landscape) {
    .sd__dialog-content .orientation {
        display: none;
    }
}*/
/*orientation (вертикальная)
@media (orientation: portrait) {
    .sd__dialog-content .orientation {
        margin-bottom: 0.5rem;
    }
}*/

/*lostpassword.tpl*/
/*main.tpl*/
.sortbar {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
}

/*navigation.tpl*/
.navigation {
    overflow-x: auto;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.navigation .pages, .navigation .nextprev {
    display: flex;
}

	.navigation .pages > *, .navigation .nextprev > * {
		align-items: center;
		background-color: rgba(0, 0, 0, 0);
		border-radius: 50%;
		display: flex;
		height: 40px;
		justify-content: center;
		transition: color 0.25s ease-in-out 0s, background-color 0.25s ease-in-out 0s;
		width: 40px;
	}

	.navigation .pages > * {
		background-color: rgb(231, 243, 234);
		margin-right: 0.5rem;
		padding: calc(0.5rem / 4) calc(0.5rem);
	}

        .navigation .pages > *:last-child {
            margin-right: 0;
        }

    .navigation .nextprev > * {
        padding: calc(0.5rem / 2);
    }

	.navigation .pages a, .navigation .nextprev a {
		background-color: rgba(0, 0, 0, 0);
		color: rgb(39, 37, 40);
	}
	
	.navigation .nextprev a {
		background-color: rgb(47, 149, 102);
	}

        .navigation .pages a:hover, .navigation .nextprev a:hover {
            background-color: rgb(83, 86, 88);
            color: rgb(255, 255, 255) !important;
        }

/*offline.tpl*/
/*pm.tpl*/
/*poll.tpl*/
/*preview.tpl*/
/*print.tpl*/
/*profile_popup.tpl*/
.profile_popup {
    font-size: 14px;
}

/*registration.tpl*/
#result-registration li {
    list-style-type: none;
}

/*relatednews.tpl*/
.related-news.story {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
}

.related-news.story {
    box-shadow: none;
}

/*search.tpl*/
@media (max-width: 576px) {
    #dofullsearch {
        margin-top: 0.5rem;
    }
}

/*searchresult.tpl*/
/*shortstory.tpl*/
.story {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid rgb(224, 225, 226);
    border-radius: 0px;
    color: rgb(66, 66, 66);
	*font-size: 14px;
    line-height: 22px;
}

.story {
    box-shadow: none;
    margin-bottom: calc(0.5rem + 0.5vw);
}

    .story .story__title {
        font-size: 130%;
        font-weight: 500;
        margin-bottom: 0;
        text-align: center !important;
    }

    .story .story__meta {
        font-size: 90%;
        font-weight: 500;
    }

/*speedbar.tpl*/
/*splitnewsnavigation.tpl*/
/*static.tpl*/
.static p.pages:not(:empty) {
    clear: both;
    margin-top: 1em;
}

/*static_print.tpl*/
/*stats.tpl*/
/*tagscloud.tpl*/
.tags {
    display: flex;
    flex-wrap: wrap;
}

    .tags > span {
        display: flex;
        margin-bottom: calc(0.5rem / 4 + 0.25vw);
        margin-right: calc(0.5rem / 4 + 0.25vw);
    }

        .tags > span a {
            background-color: rgb(47, 149, 102);
            border-radius: 2px;
            color: rgb(255, 255, 255);
            padding: calc(0.5rem / 8 + 0.25vw) calc(0.5rem / 2 + 0.35vw);
            transition: color 0.25s ease-in-out 0s, background-color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        }

            .tags > span a:hover {
                background-color: rgb(83, 86, 88);
                color: rgb(255, 255, 255) !important;
            }

/*topnews.tpl*/
/*userinfo.tpl*/
.add_avatar {
    position: relative;
}

    .add_avatar > label[for="file"] {
        cursor: pointer;
    }

    .add_avatar > input[type="file"] {
        bottom: 0;
        cursor: pointer;
        left: 0;
        margin: 0;
        opacity: 0;
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
    }

/*vote.tpl*/


/*#dle-content*/
.main-padding {
	padding: 20px 40px;
}

@media (max-width: 768px) {
	.main-padding {
		padding: 8px 16px;
	}
}

#dle-content .shortstory {
    flex: 0 0 48%;
    width: 48%;
	margin-bottom: calc(0.5rem * 6);
}

#dle-content .shortstory img:first-child {
    height: 200px;
    object-fit: cover;
    width: 450px;
}

@media (max-width: 768px) {
    #dle-content .shortstory {
		flex: 0 0 100%;
		width: 100%;
    }	
	
	#dle-content .shortstory img:first-child {
		height: 176px;
		object-fit: cover;
		width: 100%;
	}	
}

.custom .tabs__content a:hover {
	text-decoration: underline;
}

.custom ul li {
    padding-bottom: 2px;
    padding-top: 2px;
}

#searchinput {
    margin-bottom: 16px;
    width: 100%;
}



































