* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    font-family: "Roboto",sans-serif;
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color:#000;
}

/* HEADER */
.header {
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: row;
}
.header .user {
    width: 100%;
    text-align: right;
    margin: 12px 10px 10px 10px;
    flex: 1;
    display: flex;
    flex-direction: row;
}
.header .user .avatar {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #c59d55;
    display: inline-block;
    cursor: pointer;
}
.header .user .avatar img {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    padding: 1px;
}
.header .user .avatar div {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background: #634f2b;
    margin: 1px;
}
.header .user .avatar div h1 {
    font-size: 14px;
    font-weight: 400;
    padding-top: 6px;
    color: #c59d55;
}
.header .user .search {
    flex: 1;
}
.header .user .search img {
    width: 30px;
    height: 30px;
    padding: 2px;  
    margin-right: 20px;
}
.header .logo {
    width: 100%;
    height: auto;
    padding: 12px;
    flex: 1;
}
.header .logo .large-logo {
    display: block;
    width: 115px;
    height: auto;
}
.header .logo .small-logo {
    display: none;
}
@media (max-width: 640px) {
    .header .logo .large-logo {
        display: none;
}
.header .logo .small-logo {
      display: block;
      width: 32px;
      height: auto;
    }
}
.header .calendar {
    width: 100%;
    flex: 1;
    margin-top: 24px;
    text-align: center;
}
.header .calendar p {
    font-size: 16px;
    color: #634f2b;
    font-weight: 400;
    text-decoration: none;
}
.header .calendar p nobr a {
    color: #c59d55;
    text-decoration: none;
}
.header .calendar p strong{
    font-weight: 600;
}
.header .calendar .arrow{
    width: 20px;
    height: 20px;
}

  /* APP */
.app {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 640px;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    background: none;
    margin-top: 54px;
    text-align: center;
}
.app .screen {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-bottom: 75px;
}
.hidden {
    display: none;
}
.intro {
    display: inline-block;
    padding-top: 50px;
    width: 300px;
    text-align: center;
}
.intro h2 {
    color: #c59d55;
    align-items: center;
    font-size: 20px;
    font-weight: 100;
}
.intro h2 strong {
    font-weight: 400;
}

.intro p {
    padding-top: 3px;
    font-size: 12px;
    color: #c59d55;
    font-weight: 400;
}
.intro p a {
    padding-top: 3px;
    font-size: 12px;
    color: #c59d55;
    font-weight: 400;
    text-decoration: none;
}
.intro p a strong {
    font-weight: 600;
    margin-top: 10px;
}
.intro img {
    width: 200px;
    padding-bottom: 50px;
}
.intro input {
    margin-top: 25px;
    width: 300px;
    height: 45px;
    border-radius: 5px;
    border-color: #c59d55;
    border-width: 1px;
    background: #000;
    border-style: double;
    padding: 5px;
    color: #c59d55;
    font-weight: 600;
    margin-bottom: 5px;
}
.intro input:focus {
    outline: none !important;
}
.intro input::placeholder {
    color: #634f2b;
}
.intro .bottom {
    padding-top: 50px;
    width: 300px;
    display: grid;
    grid-auto-flow: column;
}
.intro .bottom a {
    font-size: 12px;
    color: #c59d55;
    font-weight: 400;
    text-decoration: none;
}
.intro .bottom input {
    margin-top: 0px;
    width: auto;
    background-color: #c59d55;
    color: #000;
    cursor: pointer;
    padding-left: 25px;
    padding-right: 25px;
}
.main-screen {
    overflow-y: auto;
}
.main-screen .news-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main-screen .news-list > .item {
    width: 100%;
    background: #000;
    border-radius: 15px;
    margin-top: 10px;
}
.main-screen .news-list > .item .separator {
    border-bottom: 1px solid #c59d55;
    margin: 0px 10px 0px 10px;
}
.main-screen .news-list > .item .vseparator {
    border-right: 1px solid #c59d55;
    width: 1px;
}
.main-screen .news-list > .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-bottom: 10px;
}
.main-screen .news-list > .item .video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.main-screen .news-list > .item .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 10px;
}
.main-screen .news-list > .item .details {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}
.main-screen .news-list > .item .details p {
    font-size: 12px;
    color: #c59d55;
    margin-top: 0px;
}
.main-screen .news-list > .item .author {
    padding: 10px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}
.main-screen .news-list > .item .author .avatar {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #c59d55;
    flex: 0 0 auto;
}
.main-screen .news-list > .item .author .avatar div {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background: #634f2b;
    margin: 1px;
}
.main-screen .news-list > .item .author .avatar div h1 {
    font-size: 14px;
    font-weight: 400;
    padding-top: 6px;
    color: #c59d55;
    text-decoration: none;
}
.main-screen .news-list > .item .author .avatar img {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    padding: 1px;
}
.main-screen .news-list > .item .author .title {
    width: 600px;
    padding-left: 10px;
    text-align: left;
}
.main-screen .news-list a {
    text-decoration: none;
}
.main-screen .news-list > .item .author .title h2 {
    font-size: 16px;
    border-bottom: 10px;
    color: #c59d55;
}
.main-screen .news-list > .item .author .title p {
    font-size: 12px;
    color: #c59d55;
    margin-top: 0px;
}
.main-screen .news-list > .item .profile {
    padding: 10px 25px 10px 25px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}
.main-screen .news-list > .item .profile .avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 25px;
    background: #c59d55;
    flex: 0 0 auto;
}
.main-screen .news-list > .item .profile .avatar div {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: #634f2b;
    margin: 1px;
}
.main-screen .news-list > .item .profile .avatar div h1 {
    font-size: 24px;
    font-weight: 400;
    padding-top: 10px;
    color: #c59d55;
}
.main-screen .news-list > .item .profile .avatar img {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    padding: 1px;
}
.main-screen .news-list > .item .profile .title {
    width:600px;
    padding-left: 10px;
    text-align: left;
}
.main-screen .news-list > .item .profile .title h2 {
    font-size: 20px;
    font-weight: 400;
    border-bottom: 10px;
    margin-top: 5px;
    color: #c59d55;
}
.main-screen .news-list > .item .profile .title p {
    font-size: 12px;
    color: #c59d55;
    margin-top: 5px;
}
.main-screen .news-list > .item .profile img {
    width: 40px;
    height: 40px;
}
.main-screen .news-list > .item .member {
    width: 100%;
    padding: 25px;
    display: flex;
    flex-direction: row;
}
.main-screen .news-list > .item .member .avatar {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: #c59d55;
    margin-right: 60px;
    flex: 0 0 auto;
}
.main-screen .news-list > .item .member .avatar div {
    width: 116px;
    height: 116px;
    border-radius: 58px;
    background: #634f2b;
    margin: 2px;
    text-align: center;
}
.main-screen .news-list > .item .member .avatar div h1 {
    font-size: 56px;
    font-weight: 400;
    padding-top: 28px;
    color: #c59d55;
}
.main-screen .news-list > .item .member .avatar img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    padding: 1px;
}
.main-screen .news-list > .item .member .title {
    width: 410px;
    flex: 1;
    padding-left: 10px;
    text-align: left;
}
.main-screen .news-list > .item .member .title h2 {
    font-size: 20px;
    font-weight: 400;
    border-bottom: 10px;
    margin-top: 5px;
    color: #c59d55;
}
.main-screen .news-list > .item .member .title p {
    font-size: 12px;
    color: #c59d55;
    margin-top: 5px;
    padding-bottom: 5px;
}
.main-screen .news-list > .item .catalog {
    width: 100%;
    padding: 25px;
    display: flex;
    flex-direction: row;
}
.main-screen .news-list > .item .catalog .nav-item {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
}
.main-screen .news-list > .item .catalog a{
    width: 100%;
}
.main-screen .news-list > .item .catalog .nav-item img{
    width: 40px;
    height: 40px;
    margin: 5px 10px 5px 5px;
}
.main-screen .news-list > .item .catalog .nav-item p{
    font-size: 12px;
    color: #c59d55;
    margin: 20px 5px 5px 0px;
}
.main-screen .news-list > .item .catalog .nav-item div{
    flex: 1;
    width: 100%;
    text-align: right;
}
.main-screen .news-list > .item .week {
    padding-left: 15%;
    padding-right: 20%;
    display: flex;
    flex-direction: row;
    text-align: right;
}
.main-screen .news-list > .item .week .day {
    flex: 1;
    padding: 10px;
}
.main-screen .news-list > .item .week .day p {
    font-size: 12px;
    color: #634f2b;
}
.main-screen .news-list > .item .week .day p a {
    font-size: 12px;
    color: #c59d55;
    font-weight: 600;
    text-decoration: none;
}
.main-screen .news-list > .item .month {
    padding: 30px 20px 20px 20px;
}
.main-screen .news-list > .item .month p {
    font-size: 16px;
    color: #634f2b;
}
.main-screen .news-list > .item .month p a {
    color: #c59d55;
    font-weight: 400;
    text-decoration: none;
}
.main-screen .news-list > .item .textbox {
    width: 100%;
    padding: 10px;
}
.main-screen .news-list > .item .textbox input {
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border-color: #c59d55;
    border-width: 1px;
    background: #000;
    border-style: double;
    padding: 5px;
    color: #c59d55;
    font-weight: 600;
    margin-bottom: 5px;
}
.main-screen .news-list > .item .textbox input:focus {
    outline: none !important;
}
.main-screen .news-list > .item .textbox input::placeholder {
    color: #634f2b;
}
.main-screen .news-list > .item .textsubmit {
    padding: 0px 10px 10px 10px;
    text-align: right;
}
.main-screen .news-list > .item .textsubmit input {
    margin-top: 0px;
    width: auto;
    background-color: #c59d55;
    color: #000;
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    border-style: double;
    border: none;
    font-weight: 600;
    font-size: 12px;
}