@charset "utf-8";
* {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%
}

body {
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 100%;
    color: #555;
    background: #d0d0d0;
    background: -webkit-linear-gradient(90deg, #abbaab 10%, #ffffff 90%);
    /* Chrome 10+, Saf5.1+ */
    background: -moz-linear-gradient(90deg, #abbaab 10%, #ffffff 90%);
    /* FF3.6+ */
    background: -ms-linear-gradient(90deg, #abbaab 10%, #ffffff 90%);
    /* IE10 */
    background: -o-linear-gradient(90deg, #abbaab 10%, #ffffff 90%);
    /* Opera 11.10+ */
    background: linear-gradient(90deg, #abbaab 10%, #ffffff 90%);
    /* W3C */
    margin: 0;
}

.top-nav {
    background: #009688;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    left: 0;
    opacity: 0.95;
    padding: 8px;
    right: 0;
    top: 0;
    z-index: 9999;
    margin: 0 auto
}

.topnav-wrapper {
    margin: 0 auto;
    max-width: 980px
}

.topnav-link {
    float: right
}

.top-nav a {
    text-decoration: none;
    color: #d9d9d9
}

.top-nav a:hover {
    color: #82eaae
}

header {
    padding: 7vh 10vw;
    color: #676767;
    text-align: center
}

h1,
h2 {
    font-weight: 300;
    margin: 0 0 1rem 0;
}

.container {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 820px;
    min-width: 320px;
}

.info {
    margin: 50px auto;
    text-align: center;
}

.info a {
    text-decoration: none;
    color: #016993;
}

.info a:hover {
    color: #ad8c02;
}




.tabs-box {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
}


/* панель вкладок */

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 42px;
    border-bottom: 1px solid #00655c;
    width: 100%;
}

ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    padding: 0 21px;
    height: 42px;
    line-height: 42px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background-color: #fff;
    color: black;
    overflow: hidden;
    position: relative;
    font-size: 24px;
    margin-left: 5px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;

}

.tab_last {
    border-right: 1px solid #00655c;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;

}

ul.tabs li:hover {
    background-color: #26A69A;
    color: #fefefe;
}


ul.tabs li.active {
    background-color: #039ccc;
    color: #333;    
    display: block;
    color: #fff;
    font-size: 24px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    margin-right: 5px;
}
.tab_container {
    border: 1px solid #00655c;
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    /* background: #fff; */
    overflow: auto;
    
}

.tab_content {
    /* padding: 20px; */
    display: none;
}

.tab_content p {
    margin-bottom: 10px
}


.tab_content img {
    width: 100%;
    height: auto;
    -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* полноразмерная картинка */

.tab_content img .large-img {
    width: 100%;
    margin-bottom: 10px;
}


/* миниатюра слева */

.tab_content img.img-left {
    width: 25%;
    float: left;
    margin: 5px 15px 15px 0;
}


/* миниатюра справа */

.tab_content img.img-right {
    width: 25%;
    float: right;
    margin: 5px 0 15px 15px;
}


