@charset "UTF-8";

/*
	GENERAL
* ----------------------------------------------------------------------------
*/

body {
	position: relative;
	left: 0px;
    background: #f1f1f1;
	color: #000;

}
body, div, h1, h2, h3, h4, h5, h6, a, p, ul, ol, li, dl, dt, dd,
img, form, fieldset, input, button, textarea, blockquote, * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	-webkit-font-smoothing: antialiased;
}
.container {
    width: 100%;
    /*max-width: 1200px;*/
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
    /*border: solid 1px red;*/
}
    .container.full {padding: 0;}
    .container.wide {max-width: 100%;}
	.container:after {
		content:"";
		display: table;
		clear: both;
	}
    .clearfix:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
    *                                   {box-sizing: border-box;}
	* html .clearfix					{ zoom: 1; } /* IE6 */
	*:first-child+html .clearfix		{ zoom: 1; } /* IE7 */
	.clear								{clear: both;}


/*
	GLOBAL + FORM
* ----------------------------------------------------------------------------
*/

div, h1, h2, h3, h4, h5, h6, a, p, ul, label {
	font-family: 'Montserrat';
}
h1, h2 {
    margin: 25px 0;
    font-weight: 900;
}
h3 {margin: 14px 0;}

p, label {
	font-weight: normal;
	font-size: 16px;
	line-height: 1.4em;
}
label {cursor: pointer;}
a {
	font-weight: normal;
	color: rgba(0,0,0,0.75);
	text-decoration: underline;
}
a:hover  {color: rgba(0,0,0,1.00);}
a:focus {outline: 0;}
a:visited {color: rgba(0,0,0,0.75);}

a.button,
input[type="submit"],
button[type="submit"] {
	display: inline-block;
    width: 100%;
	padding: 18px 26px;
    font-size: 20px;
	font-family: "Montserrat";
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color:#fff;
	background-color: rgba(255,35,35,0.9);
    border: solid 1px rgba(255,35,35,1);
	transition: background 0.6s ease-in-out;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	border-radius: 0px;
    cursor: pointer;
}
a.button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
	background-color: rgba(255,35,35,1);
}
input[type="submit"]:disabled {
	background-color: rgba(255,35,35,0.1);
    border: solid 1px rgba(255,35,35,0.2);
    color: rgba(55,65,80,0.2);
    transition: border, background 0.6s ease;
    cursor: default;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
	width: 100%;
	font-family: "Montserrat";
	color: rgba(0,0,0,1);
	font-weight: 700;
	padding: 16px 6px;
    font-size: 14px;
	background-color: rgba(241,241,241,1);
	border: solid 1px rgba(55,65,80,0.4);
	transition: all 1s ease;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	border-radius: 0px;
    box-sizing: border-box;
    resize: none;
}
select {
    color: rgba(0,0,0,0.6);
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1.5em + 2px),
        calc(100% - 15px) calc(1.5em + 2px),
        calc(100% - 2.5em) 1.1em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
textarea {resize: none;}
input[type="checkbox"] {position: absolute;}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	color: rgba(55,65,80,1);
	border: solid 1px rgba(55,65,80,1);
	background-color: rgba(245,245,245,1);
}
::selection {color: #fff; background: rgba(0,148,2018,0.7);}
::-moz-selection {color: #fff; background: rgba(0,148,2018,0.7);}
::-webkit-input-placeholder {
	position: relative;
	border-radius: 0px;
	transition: all 0.5s ease;
	color: rgba(55,65,80,0.7);
}
:focus::-webkit-input-placeholder {
	border-radius: 0px;
	color: rgba(55,65,80,0);
}


/*
	HEADER
* ----------------------------------------------------------------------------
*/
header {text-align: center;}
    header div.logo,
    header div.info {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header div.logo {
        /*height: 180px;*/
        background: rgba(255,255,255,1.00);
    }
        header div.logo a {text-decoration: none;}
        header .logo svg {
            width: 360px;
            height: auto;
        }
        header .logo svg path:nth-child(1),
        header .logo svg path:nth-child(2),
        header .logo svg circle,
        header .logo svg text {fill: rgba(255,35,35,1.00);}
        header .logo svg text {
            font-family: 'Montserrat';
            font-size: 3px;
            font-weight: 400;
        }
        header .logo svg circle {
            animation: reddot 3s ease infinite;
            stroke: rgba(255,35,35,1.00);
        }
            @keyframes reddot {
                0% {stroke-width: 0.4;}
                50% {stroke-width: 1.1;}
                100% {stroke-width: 0.4;}
            }
    header div.info {
        
        height: 100px;
        background: rgba(255,35,35,1.00);
    }
        header h1,
        header h2 {margin: 0;}
        header .info h1 {
            font-size: 22px;
            margin-bottom: 4px;
            font-weight: 200;
            color: rgba(255,255,255,1.00);
            text-transform: uppercase;
        }
        header .info h2 {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255,255,255,1.00);
        }
        header div.button {
            position: absolute;
            flex: 0 auto;
            max-width: none;
            /*text-align: right; 
            right: 30px;
            top: 30px;*/
        }
            header div.button a {
                position: relative;
                display: inline-block;
                width: 120px;
                padding: 12px;
                border-radius: 4px;
                background: rgba(255,35,35,0);
                border: solid 1px rgba(255,35,35,0.1);
                color: rgba(255,35,35,0.4);
                text-decoration: none;
                text-transform: uppercase;
                font-size: 14px;
                font-weight: 600;
                text-align: center;
                transition: all 0.6s ease;
            }
            header div.button a:after {
              content: '⇠';
              position: absolute;
              opacity: 0;  
              top: 11px;
              right: 6px;
              transition: 0.5s;
            }
            header div.button a:hover{
                padding-right: 24px;
                padding-left: 8px;
                color: rgba(255,35,35,0.9);
                border: solid 1px rgba(255,35,35,0.9);
            }

            header div.button a:hover:after {
              opacity: 1;
              right: 16px;
            }


/*
	LOGIN
* ----------------------------------------------------------------------------
*/
#logowanie {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
}
    #logowanie .row {
        padding: 6px;
        margin: 0.5%;
        width: 100%;
        box-sizing: border-box;
    }
        #logowanie label.login_remember {
            display: block;
            position: relative;
            text-align: left;
            font-size: 12px;
            color: rgba(0,0,0,0.5);
            line-height: 28px;
            padding-left: 35px;
            margin-bottom: 12px;
            cursor: pointer;
            user-select: none;
        }
            #logowanie label.login_remember input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
            }
            #logowanie .checkmark {
                position: absolute;
                top: 0;
                left: 0;
                height: 25px;
                width: 25px;
                border: solid 1px rgba(55,65,80,0.4);
            }
            #logowanie label.login_remember:hover input ~ .checkmark {
                background-color: rgba(55,65,80,0.05);
            }
            #logowanie label.login_remember input:checked ~ .checkmark {
                background-color: rgba(255,35,35,1.00);
            }
            #logowanie .checkmark:after {
                content: "";
                position: absolute;
                display: none;
            }
            #logowanie label.login_remember input:checked ~ .checkmark:after {
                display: block;
            }
            #logowanie label.login_remember .checkmark:after {
                left: 8px;
                top: 4px;
                width: 5px;
                height: 10px;
                border: solid white;
                border-width: 0 3px 3px 0;
                transform: rotate(45deg);
            }
    #logowanie #login_response {margin-bottom: 24px;}
    #logowanie .notice p {
        text-align: center;
        font-size: 16px;
        font-weight: 800;
        color: rgba(170,26,26,1);
    }
    #logowanie #login_response_sent p {
        margin: 120px 0;
        text-transform: uppercase;
    }
        #logowanie .login_error input, #logowanie .login_error textarea, #logowanie .login_error div {
            border: solid 1px rgba(170,26,26,1);
            background: rgba(170,26,26,0.05);
        }
            #logowanie .login_error p {
                display: none;
                font-size: 12px;
                font-weight: 800;
                color: rgba(170,26,26,0.9);
                margin-top: 9px;
            }
    button[type="submit"] {
        position: relative;
        display: inline-block;
        width: 200px;
        border-radius: 4px;
        background: rgba(255,35,35,0.9);
        border: solid 1px rgba(255,35,35,0.95);
        color: rgba(255,255,255,1);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        transition: all 0.6s ease;
    }
     button[type="submit"]:after {
      content: '⇢';
      position: absolute;
      opacity: 0;  
      top: 17px;
      right: 36px;
      transition: 0.5s;
    }
     button[type="submit"]:hover{
        padding-right: 24px;
        padding-left: 8px;
        color: rgba(255,255,255,0.85);
        border: solid 1px rgba(255,35,35,1);
    }
    button[type="submit"]:hover:after {
      opacity: 1;
      right: 30px;
    }
    button[type="submit"]:disabled {
        background-color: rgba(255,35,35,0.1);
        border: solid 1px rgba(255,35,35,0.2);
        color: rgba(55,65,80,0.2);
        transition: 0.6s ease;
        cursor: default;
    }


/*
	HOME
* ----------------------------------------------------------------------------
*/
main .container {padding-top: 40px; padding-bottom: 40px;}
    section.video.container {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    section.video {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
    }
    section.video.dim { animation: dimmed 100ms ease; opacity: 0.1;}
    @keyframes dimmed {
        0% {opacity: 1;}
        100% {opacity: 0.1;}
    }
        section.video .thumbnail {
            position: relative;
            flex: auto;
            margin: 20px;
            width: 100%;
            max-width: 100%;
            align-self: center;
            height: auto;
            border: 1px solid rgba(0,0,0,0.6);
            border-radius: 10px;
            cursor: pointer;
            overflow: hidden;
            transition: 0.6s ease;
        }
            section.video img {
                display: block;
                width: 100%;
                transform: scale(1);
                filter: brightness(80%);
                transition: 1s ease;
            }
            section.video .info {
                position: absolute;
                bottom: 0%;
                width: 100%;
                height: 40%;
                background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
                z-index: 0;
                text-align: center;
            }
                section.video .info p {
                    margin-top: 14%;
                    padding: 0;
                    /*font-size: 1.2vw;*/
                    font-size: 18px;
                    letter-spacing: 0.4em;
                    text-transform: uppercase;
                    line-height: 40%;
                    font-weight: 700;
                    color: rgba(255,255,255,1.00);
                    transition: 1s ease;
                }
            section.video .play-btn {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%,-50%);
                background: rgba(255,35,35,1.00);
                border-radius: 50%;
                width: 20%;
                height: 35.55%;
                box-shadow: 0 0 0 6px rgba(255,255,255, 0.5);
                z-index: 1;
            }
                section.video .play-btn span {
                    position: absolute;
                    left: 53%;
                    top: 57%;
                    transform: translate(-50%,-50%);
                    width: 25%;
                    height: 44.64%;
                    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
                }
                section.video .thumbnail:hover {box-shadow: 0 0 8px rgba(0,0,0, 0.4);}
                section.video .thumbnail:hover img {transform: scale(1.05); filter: brightness(100%);}
                section.video .thumbnail:hover p {letter-spacing: 0.2em;}
                section.video .thumbnail:hover .play-btn {animation: play-btn 2s linear;}
                section.video .thumbnail:hover .play-btn span {animation: play-arrow 0.5s linear;}
            @keyframes play-btn {
                0% {box-shadow: 0 0 0 6px rgba(255,35,35, 0.5);}
                86% {box-shadow: 0 0 0 60px rgba(255,35,35, 0);}
                90% {box-shadow: 0 0 0 0px rgba(255,35,35, 0);}
                100% {box-shadow: 0 0 0 6px rgba(255,255,255, 0.5);}
            }
            @keyframes play-arrow {
                0% {width: 25%; height: 44.64%;}
                50% {width: 30%; height: 53.57%; top: 58%;}
                100% {width: 25%; height: 44.64%;}
            }

            section.video .nocams {margin: 120px auto;}
            section.video .nocams svg {fill: rgba(255,35,35,0.2); margin: 0 auto;  display: block; margin-bottom: 10px; width: 100px;}
            section.video .nocams p {color: rgba(255,35,35,0.2); text-align: center;}


/*
	SINGLE WEBCAM
* ----------------------------------------------------------------------------
*/
        section.show .player {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%;
        }
            section.show .player iframe,
            section.show .player video {
                position: absolute;
                top: 0;
                left: 0;
                margin: 0 auto;
                width: 100%;
                height: 100%;
                border: 0;
            }
            section.show .player video {
                background: #000 url("https://eiffage-live.pl/gfx/load.gif") no-repeat center center;
            }
            section.show button {
                position: absolute;
                padding: 2px 0 0;
                top: 8%;
                right: 0%;
                width: 50px;
                font-size: 7px;
                line-height: 48px;
                text-transform: uppercase;
                background: none;
                border: 0;
                box-sizing: border-box;
                color: transparent;
                cursor: pointer;
                outline: none;
                overflow: hidden;
                transform: translate(-50%, -50%);
                transition: all 0.2s ease-in;
                z-index: 99;
            }
            section.show button::before,
            section.show button::after {
                background-color: white;
                content: '';
                display: block;
                height: 1px;
                left: 0;
                position: absolute;
                transform-origin: center left;
                transition: all 0.2s ease-in;
                width: 141.4214px;
                z-index: -1;
            }
            section.show button::before {
                top: 0;
                transform: rotate(45deg);
            }
            section.show button::after {
                bottom: 0;
                transform: rotate(-45deg);
            }
            section.show button:hover {
                color: rgba(255,255,255,1.00);
                border-radius: 50%;
            }
            section.show button:hover::before,
            section.show button:hover::after {
                height: 50px;
                transform: rotate(0deg);
                background: rgba(255,35,35,1.00);
            }
        section.show .details,
        section .navigation {
            margin: 60px 16% 0 16%;
        }
            section.show .details h1 {}
            section.show .details p {margin-bottom: 12px;}

        section .navigation {
            display: flex;
            flex-flow: wrap;
            text-align: center;
            align-content: center;
        }
            section .navigation a {
                margin: 12px;
                padding: 12px;
                flex: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                text-transform: uppercase;
                color: rgba(255,255,255,1.00);
                border: solid 1px rgba(255,35,35,1.00);
                background: rgba(255,35,35,1.00);
                transition: 0.6s ease;
            }
                section .navigation a:first-child {margin-left: 0;}
                section .navigation a:last-child {margin-right: 0;}
                section .navigation svg {
                    height: 30px;
                    width: auto;
                    margin-right: 15px;
                    fill: rgba(255,255,255,1.00);
                    transition: 0.6s ease;
                }
                section .navigation a:hover {
                    color: rgba(255,35,35,1);
                    border: solid 1px rgba(255,35,35,0.4);
                    background: rgba(255,255,255,1.00);
                }
                section .navigation a:hover svg {fill: rgba(255,35,35,1);}


/*
	FOOTER
* ----------------------------------------------------------------------------
*/
footer {
    padding: 20px 0;
    text-align: center;
    color: rgba(0,0,0,0.5);
 }
    footer h1 {
        margin: 0;
        font-size: 12px;
        font-weight: 400;
}
    footer p {
        margin: 6px auto;
        font-size: 9px;
    }


/*
	MEDIA QUERIES
* ----------------------------------------------------------------------------
*/  

/* EXTRA SMALL DEVICES (phone, 600px and down) */
@media only screen and (max-width: 600px) {
    header div.button {top: 10px; left: 0; right: 0; text-align: center;}
    header .logo  {padding: 80px 0 20px 0;}
    header .logo svg {width: 200px;}
}
/* SMALL DEVICES (portrait tablet and large phone, 600px and up) */
@media only screen and (min-width: 600px) {
    header div.button {top: 10px; left: 0; right: 0; text-align: center;}
    header .logo  {padding: 80px 0 20px 0;}
    header .logo svg {width: 260px;}
    #logowanie {max-width: 500px;}
}
/* MEDIUM DEVICES (landscape tablet, 768px and up) */
@media only screen and (min-width: 768px) {
    header div.button {top: 30px; right: 30px; text-align: right;}
    header .logo  {padding: 0; height: 180px;}
    header .logo svg {width: 360px;}
    section.video .thumbnail {width: 44%; max-width: 70%;}
}
/* LARGE DEVICES (laptop/desktop, 992px and up) */
@media only screen and (min-width: 992px) {
} 
/* EXTRA LARGE DEVICES (large laptop and desktop, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .container {max-width: 1200px;}
}
