/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.tlControlContainer {
  width: 100%;
  float: left;
  opacity: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
}

.trafficLightContainer{
    margin-bottom: 10px;
    margin-top: 10px;
}


.trafficLightBody {
    background-color: rgb(37, 37, 37);
    width: 150px;
    height: 410px;
    margin: auto;
    padding-top: 1px;
    border-radius: 30px;
    border-color: hsl(0, 0%, 30%);
    border-width: 25px;
    border-style: solid;
}

.trafficLightBulb {
    width: 110px;
    height: 110px;
    margin: 20px;
    border-radius: 55px;
    position: relative;

}

.trafficRed {
    margin-top: 19px;
    background-image: -o-radial-gradient(hsl(0, 100%, 29%), hsl(0, 100%, 20%));
    background-image: radial-gradient(hsl(0, 100%, 29%), hsl(0, 100%, 20%));
}

.trafficAmber {
    background-image: -o-radial-gradient(hsl(37, 100%, 29%), hsl(37, 100%, 20%));
    background-image: radial-gradient(hsl(37, 100%, 29%), hsl(37, 100%, 20%));
}

.trafficGreen {
    background-image: -o-radial-gradient(hsl(120, 100%, 20%), hsl(120, 100%, 15%));
    background-image: radial-gradient(hsl(120, 100%, 20%), hsl(120, 100%, 15%));
}


@media (hover: hover) and (pointer: fine) {

    .trafficRed::before {
        background-image: -o-radial-gradient(hsl(0, 100%, 38%), hsl(0, 100%, 31%));
        background-image: radial-gradient(hsl(0, 100%, 38%), hsl(0, 100%, 31%));
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        border-radius: 55px;
        -webkit-transition: opacity 0.07s linear;
        -o-transition: opacity 0.07s linear;
        transition: opacity 0.07s linear;
    }

    .trafficRed:hover::before {
        opacity: 1;
    }

    .trafficAmber::before {
        background-image: -o-radial-gradient(hsl(37, 100%, 38%), hsl(37, 100%, 31%));
        background-image: radial-gradient(hsl(37, 100%, 38%), hsl(37, 100%, 31%));
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        border-radius: 55px;
        -webkit-transition: opacity 0.07s linear;
        -o-transition: opacity 0.07s linear;
        transition: opacity 0.07s linear;
    }

    .trafficAmber:hover::before {
        opacity: 1;
    }

    .trafficGreen::before {
        background-image: -o-radial-gradient(hsl(120, 100%, 30%), hsl(120, 100%, 25%));
        background-image: radial-gradient(hsl(120, 100%, 30%), hsl(120, 100%, 25%));
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        border-radius: 55px;
        -webkit-transition: opacity 0.07s linear;
        -o-transition: opacity 0.07s linear;
        transition: opacity 0.07s linear;
    }

    .trafficGreen:hover::before {
        opacity: 1;
    }

}


.trafficRedLit {
    margin-top: 19px;
    -webkit-filter: drop-shadow(hsl(0,100%,50%) 0px 0px 25px );
            filter: drop-shadow(hsl(0,100%,50%) 0px 0px 25px );
    background-image: -o-radial-gradient(hsl(0, 100%, 60%), hsl(0, 100%, 45%));
    background-image: radial-gradient(hsl(0, 100%, 60%), hsl(0, 100%, 45%));
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.trafficAmberLit {
    -webkit-filter: drop-shadow(hsl(37,100%,50%) 0px 0px 25px );
            filter: drop-shadow(hsl(37,100%,50%) 0px 0px 25px );
    background-image: -o-radial-gradient(hsl(37, 100%, 60%), hsl(37, 100%, 45%));
    background-image: radial-gradient(hsl(37, 100%, 60%), hsl(37, 100%, 45%));
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.trafficGreenLit {
    -webkit-filter: drop-shadow(hsl(120,100%,50%) 0px 0px 25px );
            filter: drop-shadow(hsl(120,100%,50%) 0px 0px 25px );
    background-image: -o-radial-gradient(hsl(120, 100%, 60%), hsl(120, 100%, 45%));
    background-image: radial-gradient(hsl(120, 100%, 60%), hsl(120, 100%, 45%));
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.connectionOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 10;
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
}

.coShow {
    opacity: 1;
    -webkit-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

.connectionMessage {
    z-index: 11 ;
    margin-top: 60px;
    font-size: 1.6em;
    font-weight: 500;
    margin-bottom: 10px;
}

.connectionSubtitle {
    margin-bottom: 15px;
}

.connectionIcon {
    z-index: 11;
    width: 80px;
}

.buttonBoxContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
    height: 800px;
}

@media screen and (max-width: 800px) {
    .buttonBoxContainer {
        width: 100%;
        margin-top: 100px;
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
    }
}

.buttonBox {
    background-color: hsl(51, 100%, 50%);
    width: 230px;
    height: 350px;
    border-width: 5px;
    border-style: solid;
    border-radius: 10px;
    border-right-color: hsl(51, 100%, 36%);
    border-bottom-color: hsl(51, 100%, 36%);
    border-left-color: hsl(51, 100%, 69%);
    border-top-color: hsl(51, 100%, 69%);
}

.buttonBoxPanel {
    background-color: black;
    width: 180px;
    margin: auto;
    margin-top: 25px;
    height: 260px;
    border-width: 3px;
    border-style: solid;
    border-radius: 8px;
    border-top-color: hsl(51, 100%, 36%);
    border-left-color: hsl(51, 100%, 36%);
    border-right-color: hsl(51, 100%, 69%);
    border-bottom-color: hsl(51, 100%, 69%);
}

.modeOptionButton {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: rgba(0, 0, 0, 0);
    outline: 2px solid #707070;
    width: 35px;
    height: 35px;
    float: left;
    margin:5px;
    margin-right: 7px;
}

.modeOptionButton:checked {
    background-image: url(assets/greenwalksymbol.svg);
    background-position: center;
    background-size: 100%;
    -webkit-filter: drop-shadow(hsl(120,100%,50%) 0px 0px 10px );
            filter: drop-shadow(hsl(120,100%,50%) 0px 0px 10px );
}

.controlModeTitle {
    background-color: white;
    width: 100%;
    color: black;
    font-weight: 800;
    font-size: 1.3em;
}

.optionLabelTitle {
    font-size: 1.35em;
    font-weight: 800;
    float: right;
    width: 130px;
    text-align: left;
    padding-top: 6px;
}

.optionLabelSubtitle {
    padding-top: 45px;
    text-align: left;
    padding-left: 5px;
    font-size: .8em;
}

.optionContainer {
    margin-bottom: 11px;
    padding-left: 3px;
    padding-top: 3px;
}

.autoButtonButton {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: -o-radial-gradient(hsl(0, 0%, 85%), hsl(0, 0%, 78%));
    background-image: radial-gradient(hsl(0, 0%, 85%), hsl(0, 0%, 78%));
    width: 28px;
    height: 28px;
    border-radius: 14px;
    margin: auto;
    margin-top: 8px;
    border-style: solid;
    border-width: 2.5px;
    border-color: hsl(0, 100%, 16%);
    outline-style: solid;
    outline-width: 3px;
    outline-color: hsl(51, 100%, 38%);
}

.autoButtonButton:checked {
    border-color: hsl(0, 100%, 50%);
    -webkit-filter: drop-shadow(hsl(0, 100%, 55%) 0px 0px 10px );
            filter: drop-shadow(hsl(0, 100%, 55%) 0px 0px 10px );
    outline-color: hsl(33, 100%, 62%);
}

.autoButtonLabel {
    display: block;
    font-weight: 500;
    color: hsl(51, 100%, 33%);
    font-size: .8em;
    margin-top: -4px;
}

.lightPole {
    display: block;
    position: relative;
    width: 30px;
    height: 800px;
    overflow: hidden;
    background-color: hsl(0, 0%, 20%);
    position: absolute;
    z-index: -1;
    margin: auto;
    overflow: hidden;
}

.lightPole2 {
    display: block;
    position: relative;
    width: 30px;
    height: 415px;
    overflow: hidden;
    background-color: hsl(0, 0%, 20%);
    position: absolute;
    z-index: -1;
    margin-left: 60px;
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    .lightPole {
        display: none;
    }

    .lightPole2 {
    display: block;
    position: relative;
    width: 30px;
    height: 600px;
    overflow: hidden;
    background-color: hsl(0, 0%, 20%);
    position: absolute;
    z-index: -1;
    margin-left: 60px;
    overflow: hidden;

    }
}

.videoContainer {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 700px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}
.videoContainer iframe {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.donationContainer {
    position: absolute;
    margin-top: 395px;
    background-color: rgb(228, 195, 75);
    color: rgb(39, 39, 39);
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    font-family: 'Comic Sans MS', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    rotate: -4deg;
    border-radius: 13px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(39, 39, 39);
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgb(228, 195, 75);

}

.anonMessageContainer {
    position: absolute;
    margin-top: 500px;
    background-color: rgb(54, 153, 210);
    color: rgb(39, 39, 39);
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    font-family: 'Comic Sans MS', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    rotate: 2deg;
    border-radius: 13px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(39, 39, 39);
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgb(54, 153, 210);

}

.instructionContainer {
    position: absolute;
    margin-top: 70px;
    margin-left: -24px;
    background-color: rgb(110, 181, 40);
    color: rgb(39, 39, 39);
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    font-family: 'Comic Sans MS', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    rotate: 2deg;
    border-radius: 13px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(39, 39, 39);
    outline-style: solid;
    outline-width: 2px;
    text-align: center;
    outline-color: rgb(110, 181, 40);


}

.visitorCounter {
    position: absolute;
    margin-top: 70px;
    margin-left: -24px;
    background-color: rgb(110, 181, 40);
    color: rgb(39, 39, 39);
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    font-family: 'Comic Sans MS', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    rotate: 2deg;
    border-radius: 13px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(39, 39, 39);
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgb(110, 181, 40);

}

.greenOOO {
    position: absolute;
    margin-top: -108px;
    margin-left: -12px;
    background-color: rgb(81, 81, 81);
    color: rgb(199, 199, 199);
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    font-family: 'Comic Sans MS', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    rotate: -22deg;
    border-radius: 13px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(39, 39, 39);
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgb(81, 81, 81);
    -webkit-filter:drop-shadow(3px 3px 6px rgb(0, 0, 0));
            filter:drop-shadow(3px 3px 6px rgb(0, 0, 0));
    text-align: center;

}


@media screen and (max-width: 800px) {
    .instructionContainer {
        margin-top: 48px;
    }

    .lightPole2 {
        height: 750px;
    }
}

.videoOverlay {
    position: absolute;
    color: red;
    z-index: 10;
    margin-top: 5px;
    margin-left: 13px;
    font-size: 1.8em;
    font-weight: 600;
    -webkit-filter: drop-shadow(3px 3px 6px rgb(0, 0, 0));
            filter: drop-shadow(3px 3px 6px rgb(0, 0, 0));
}

.videoLiveCircle {
    width: .75em;
    height: .75em;
    border-radius: 50%;
    background-color: red;
    display: inline-block;
}

.productHunt {
    position: absolute;
    margin-top: 180px;
    margin-left: -42px;
    rotate: -2deg;
}

@media screen and (max-width: 800px) {
    .productHunt {
        display: none;
    }
}