:root {
    --main-orange: #f96909;
/* 	--main-orange: #f96909; */
/*     --main-black: #000000; */
	--main-black:   #0f1317;
    --main-white: white;
    --main-grey: grey;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    
    list-style: none;
}
body {
    background-color: var(--main-black);
}

.logo-intro {
    z-index: 100;
    width: 100%;
    height: 100vh;
    background-color: var(--main-black);
    /* background-color: transparent; */
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation: intro-logo 1s 1s both ease-in-out;
            animation: intro-logo 1s 1s both ease-in-out;
            /* animation: intro-logo2 1s 1s both ease-in-out ; */
}
.logo-intro img {
    width: 35%;
}
@-webkit-keyframes intro-logo {
    0% {
        top: 0px;
    }
   100% {top: -120vh;}
    
}
@keyframes intro-logo {
    0% {top: 0px;}
   100% {top: -120vh;}
    
}

div .h-logo-small {
    width: 75px;
    z-index: 150;
}
.rr-logo {
    display: none;
}
.active {
    color: var(--main-orange);
}

a {
    text-decoration: none;
}



.main-header {
  
    position: relative;
    overflow: hidden;
    /* background-color: var(--main-grey); */
    
}
nav {
    position: fixed;
    top: 2%;
    /* background-color: var(--main-black); */
    padding: 5px;
    color: var(--main-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
    -webkit-animation: h-menu-animation 1s both ease-in-out;
            animation: h-menu-animation 1s both ease-in-out;
    
}
nav a {
    color: var(--main-white);
}

.nav-icons {
    position: relative;
    padding: 0 5px 0 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.div-menu-icons {
    border-left: 1px solid grey;
    cursor: pointer;
    font-size: 15px;
    
}
.div-menu-icons {
    border-right: 1px solid grey;
}
.div-menu-icons:hover .nav-icons {
    color: var(--main-orange);
    
}

.menu-txt{
    font-size: 10px;
    padding: 0 5px 0 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.div-menu-icons:hover .menu-txt {
    color: var(--main-orange);
    
}

.h-slider-pics {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    -webkit-animation: slider 15s infinite linear;
            animation: slider 15s infinite linear;
}
.h-slider-pics:nth-child(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}

.h-slider-pics:nth-child(3) {
    -webkit-animation-delay: 10s;
            animation-delay: 10s;
}

.h-logo, .rr-logo {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 125px;
    z-index: 150;
    -webkit-animation: h-logo-animation 0.5s 2s both;
            animation: h-logo-animation 0.5s 2s both;
}
.h-menu {
    position: absolute;
    top: 5%;
    right: -120px;
    padding: 10px;
    background-color: var(--main-orange);
    color: var(--main-white);
    width: 100px;
    -webkit-box-shadow: 5px 5px 15px var(--main-black);
            box-shadow: 5px 5px 15px var(--main-black);
    cursor: pointer;
    -webkit-animation: h-menu-animation 1s both ease-in-out;
            animation: h-menu-animation 1s both ease-in-out;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.h-menu:hover {
    /* color: rgb(207, 205, 205); */
    /* padding-left: 20px; */
    border-left: 5px solid var(--main-white);
}
.h-menu-f {
    top: 5%;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
}
.h-menu-s {
    top: 15%;
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
}

.h-menu-w {
    top: 25%;
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
}

.h-menu-i {
    top: 35%;
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
}

.h-menu-b {
    top: 45%;
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
}

h1 {
    
    color: var(--main-white);
    padding: 10px 40px;
    
    
}
h1:nth-of-type(1) {
    top: 20%;
    left: 20%;
    
}
h1:nth-of-type(2) {
    top: 35%;
    left: 30%;
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}

h1:nth-of-type(3) {
    top: 50%;
    left: 45%;
    -webkit-animation-delay: 10s;
            animation-delay: 10s;
}

.header-links {
    width: 75px;
    height: 75px;
    background-color: #f96909;
    position: absolute;
    bottom: 15px;
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.forum-header {
	width: 100%;
	height: 25vh;
	background-color: var(--main-orange);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	
}
/* -----MAIN INTRO----- */
    .main-intro {
        margin-top: 10vh;
        position: relative;
        top: 0;
        height: 80vh;
        width: 100%;
    }
    .main-intro-content {
        display: inline-block;
        height: 100%;
        margin: auto;
        
    }
    .main-intro-txt {
        position: absolute;
        top: 15%;
        height: 60%;
        background-color: var(--main-black);
        border: 2px solid var(--main-orange);
        z-index: 25;
        width: 40%;
        min-width: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: white;
        margin-left: 5%;
        border-radius: 15px;
        -webkit-box-shadow: 12px 3px 17px -1px rgba(0,0,0,0.67); 
        box-shadow: 12px 3px 17px -1px rgba(0,0,0,0.67);
    }
    .mitxt-content {
        padding: 25px;
        font-size: 25px;
    }
    .main-intro-img {
        margin-top: 5%;
        height: 80%;
        float: right;
        margin-right: 10%;
        width: 50%;
        min-width: 450px;
        overflow: hidden;
        position: relative;
        
    }
    .mi-img-title {
        z-index: 5;
        color: white;
        position: absolute;
        padding: 15px;
        left: 10%;
        text-align: center;
    }
    .fa-play-circle {
         position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 50px;
        color: #FFFFFF;
        text-shadow: 0 0 10px #FFFFFF;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
    }
    .main-intro-content:hover .fa-play-circle {
        color: #FFFFFF;
        text-shadow: 0 0 20px #FFFFFF;
    }
    .mi-img {
        position: absolute;
        top: 0;
        left: 0;
        
        
       
    }
/* -----MAIN INTRO----- */

footer {
    background-color: var(--main-grey);
    text-align: center;
    color: var(--main-orange);
}
.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-cookies-consent label {
    color: black;
}
input, button,
#forums-list-0 {
    border-radius: 2px;
}
.rr-story-title {
    font-family: 'Nosifer', cursive;
    text-align: center;
    font-size: 25px;
    color: white;
    padding: 15px;
    /* background-image: url("../img/storry_bcg.png");
    background-position: center; 
    background-repeat: no-repeat; */
    background-color: var(--main-orange);
    margin-bottom: 25px;
}
.story-img {
    position: relative;
}
.rr-story {
    width: 100%;
    background-color: var(--main-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    
}
.rr-story-items {
    width: 23%;
    min-width: 300px;
    height: 300px;
    margin-bottom: 15px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    background-color: var(--main-black);
    -webkit-box-shadow: 1px 3px 15px -2px #000000; 
    box-shadow: 1px 3px 15px -2px #000000;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    
}
.rr-story-items:hover {
    -webkit-box-shadow: 1px 3px 7px -2px #000000; 
    box-shadow: 1px 3px 7px -2px #000000;
}
.rr-story-items:hover .rr-si-hover {
    width: 150%;
    height: 150%;
    opacity: .4;
}
.rr-si-hover {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--main-orange);
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.rr-si-hover p {
    color: black;
}
.rr-item-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}
#bbpress-forums div.bbp-topic-content a, #bbpress-forums div.bbp-reply-content a {
    color: black;
}
@-webkit-keyframes h-menu-animation {
    0% {right: -500px;}
   90% {right: 5px;}
    100% {right: 0;}
}
@keyframes h-menu-animation {
    0% {right: -500px;}
   90% {right: 5px;}
    100% {right: 0;}
}
@-webkit-keyframes h-logo-animation {
    0% {-webkit-transform: scale(0);transform: scale(0);}
    80% {-webkit-transform: scale(1.05);transform: scale(1.05);}
    100% {-webkit-transform: scale(1);transform: scale(1);}
    
}
@keyframes h-logo-animation {
    0% {-webkit-transform: scale(0);transform: scale(0);}
    80% {-webkit-transform: scale(1.05);transform: scale(1.05);}
    100% {-webkit-transform: scale(1);transform: scale(1);}
    
}
@-webkit-keyframes txt {
    0% {opacity: 0;}
    5% {opacity: 0;}
    10% {opacity: 1;}
    23.33% {opacity: 1;}
    28.33% {opacity: 0;}
    33.33% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes txt {
    0% {opacity: 0;}
    5% {opacity: 0;}
    10% {opacity: 1;}
    23.33% {opacity: 1;}
    28.33% {opacity: 0;}
    33.33% {opacity: 0;}
    100% {opacity: 0;}
}

@-webkit-keyframes slider {
    0% {opacity: 0;}
    5% {opacity: 1;}
    33.33% {opacity: 1;}
    38.33% {opacity: 0;}
    100% {opacity: 0;}
}

@keyframes slider {
    0% {opacity: 0;}
    5% {opacity: 1;}
    33.33% {opacity: 1;}
    38.33% {opacity: 0;}
    100% {opacity: 0;}
}

/* ----------------------------------------------
 * Generated by Animista on 2019-9-7 12:34:8
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-elliptic-bottom-fwd
 * ----------------------------------------
 */
 .slide-in-elliptic-bottom-fwd {
	-webkit-animation: slide-in-elliptic-bottom-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-elliptic-bottom-fwd 0.7s 2.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes slide-in-elliptic-bottom-fwd {
    0% {
      -webkit-transform: translateY(600px) rotateX(30deg) scale(0);
              transform: translateY(600px) rotateX(30deg) scale(0);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotateX(0) scale(1);
              transform: translateY(0) rotateX(0) scale(1);
      -webkit-transform-origin: 50% -1400px;
              transform-origin: 50% -1400px;
      opacity: 1;
    }
  }
  @keyframes slide-in-elliptic-bottom-fwd {
    0% {
      -webkit-transform: translateY(600px) rotateX(30deg) scale(0);
              transform: translateY(600px) rotateX(30deg) scale(0);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotateX(0) scale(1);
              transform: translateY(0) rotateX(0) scale(1);
      -webkit-transform-origin: 50% -1400px;
              transform-origin: 50% -1400px;
      opacity: 1;
    }
  }
  /* ----------------------------------------------
 * Generated by Animista on 2019-9-7 12:38:35
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-fwd-right
 * ----------------------------------------
 */
 .slide-in-fwd-right {
	-webkit-animation: slide-in-fwd-right 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-fwd-right 0.4s 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-fwd-right {
    0% {
      -webkit-transform: translateZ(-1400px) translateX(1000px);
              transform: translateZ(-1400px) translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0) translateX(0);
              transform: translateZ(0) translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-fwd-right {
    0% {
      -webkit-transform: translateZ(-1400px) translateX(1000px);
              transform: translateZ(-1400px) translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0) translateX(0);
              transform: translateZ(0) translateX(0);
      opacity: 1;
    }
  }
  
.forum-info {
	color: white;
	background-color: var(--main-orange);
	padding: 10px;
	margin-top: 15px;
}

 /* ----------------------------------------------
 * koknkurs
 * ---------------------------------------------- */
#post-341, #post-377 {
	margin-top: 10vh;
	padding: 25px;
}

 



@media screen and (max-width: 968px) {
    nav {
          /* flex-direction: column; */
          width: 100%;
          height: 100px;
        }
        .header-paper svg {
            display: none;
        }
       
        .div-menu-icons {
            border: none;
        }
        .h-logo {
            top: 15%;
            width: 75px;
        }
		.logo-intro img {
            width: 65%;
        }
        .rr-story-title {
            font-size: 15px;
        }
        .mitxt-content {
            padding: 25px;
            font-size: 15px;
        }
        .main-intro-content {
            margin-right: 1%;
              
        }
        .main-intro-img {
            display: none;
        }
        .main-intro-txt, .main-intro {
            width: 90%;
        }
		#post-341 {
			margin-top: 5vh;
			
		}
	.mainCGdiv .cg_gallery_view_sort_control .cg-gallery-upload 		{
		width: 100%;
	}
    }

/* KONRAD */
#post-369 {
	margin-top: 10vh;
	padding: 15px;
}
#post-369 .sidebar {
	display: none;
}
.request_name, .um-field-c, .um-half {
	margin-bottom: 15px;
}
#post-370 {
	margin-top: 10vh;
	padding: 15px;
}
/* KONRAD */

.f-cz {
	color: #049ff7;
}