/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,
:active {
	/*outline: none;*/
}
a:focus,
a:active {
	/* outline: none;*/
}
a, a:link, a:visited  {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}
a:hover  {
    /* color: inherit; */
    text-decoration: none;
}
aside, nav, footer, header, section, main {
	display: block;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}
ul, ul li {
	list-style: none;
}
img {
	vertical-align: top;
}
img, svg {
	max-width: 100%;
	height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
	display: none;
}
button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
label {
	cursor: pointer;
}
legend {
	display: block;
}


/* Base style */
html,
body {
    font-size: 14px;
    font-weight: normal;
    height: 100vh;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    background-color: #F6F7F7FF;
}
.wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrapper-content {
    display: flex;
    justify-content: space-between;
}
.content {
    padding: 0 20px;
    flex: 1 1 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}
.dashboard {
    /* flex: 1 1 40%; */
    display: flex;
    justify-content: space-between;
    gap: 10px;
    min-height: 250px;
}
.header {
    width: 100%;
    background-color: #FFEF88;
    padding: 20px;
}
.header__title {
    color: #993300;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}
.leftbar {
    flex: 1 1 15%;
    margin: 10px;
    margin-top: 0;
}
.requisites, .description, .movie {
    display: flex;
    flex-direction: column;
}
.requisites {
    border: 2px solid #C8C8C8FF;
    outline: 2px solid #C8C8C8FF;
    outline-offset: 2px;
}
.requisites__logo {
    margin-bottom: 10px;
}
.requisites__logo img{
    width: 100%;
}
.requisites__info {
    padding: 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(88, 88, 88);
    line-height: 1.2;
}
.requisites__info p {
    padding-bottom: 10px;
    text-align: center;
}
.requisites__info p:last-child {
    padding-bottom: 0;
}
.movie {
    margin: 10px 0;
    border: 2px solid #C8C8C8FF;
    outline: 2px solid #C8C8C8FF;
    outline-offset: 2px;
}
.movie__image {
    margin-bottom: 10px;
    text-align: center;
}
.movie__image img {
    display: block;
    margin: 0 auto;
}
.header-content {
    display: flex;
    justify-content: space-between;
}
.header-content__text {
    width: 100%;
    padding-bottom: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}
.header-content__image {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
}
.header-content__image img {
    height: 150px;
}
.docs {
    display: flex;
    justify-content: space-between;
    border: 2px solid #C8C8C8FF;
    border-left: 0;
    border-right: 0;
}
.docs a {
    color: #993300FF;
    padding: 10px;
    font-weight: bold;
}
.docs a:hover,
.docs a:focus {
    text-decoration: underline;
}
.modal__presentation {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    display: none;
    pointer-events: none;
}
.modal__presentation:target {
    display: block;
    pointer-events: auto;
}
.modal__presentation > div {
    text-align: center;
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    /* width: 24px; */
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.close:hover {
    background: #00d9ff;
}
.main-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.main-content__images {
    width: 100%;
}
.main-content__text-1, .main-content__text-2 {
    padding: 5px;
    max-width: 40%;
    text-align:justify;
    line-height: 1.2;
}
.ads {
    flex: 1 1 100%;
    border: 2px solid #C8C8C8FF;
    border-left: 0;
    border-right: 0;
    padding: 10px;
    font-size: 0.9em;
}
.ads-table {
    border-collapse: collapse;
    width: 100%;
}
.ads-table td {
    padding: 5px;
    border-bottom: 1px solid #C8C8C8FF;
    min-width: 100px;
}
.ads-table td:first-child {
    white-space: nowrap;
}
.ads-table td:not(:last-child) {
    text-align: center;
}
.ads-table td:last-child {
    text-align: justify;
}
.rightbar {
    flex: 1 1 20%;
    margin: 10px;
    margin-top: 0;
}
.files {
    border: 2px solid #C8C8C8FF;
    outline: 2px solid #C8C8C8FF;
    outline-offset: 2px;
}
.files-table {
    border-collapse: collapse;
    width: 100%;
}
.files-table thead {
    background: #C8C8C8FF;
}
.files-table th {
    padding: 5px;
}
.files-table td {
    padding: 5px;
    border-bottom: 1px solid #C8C8C8FF;
    min-width: 100px;
}
.files-table a {
    display: block;
    text-align: center; 
    color: #993300FF;
    font-weight: bold;
}
.files-table a:hover,
.files-table a:focus {
    text-decoration: underline;
}
.files-table td:not(:last-child) {
    text-align: center;
}
.files-table td:last-child {
    text-align: justify;
}