* {
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.wrapper {
    margin: 0 auto;
    width: 50%;
}

.player-wrapper {
    overflow: hidden;
    background: #000;
}

.player-wrapper {
    margin: auto !important;
}

.logo-image {
    height: 75px;
    width: 200px;
    margin: auto;
    padding: 30px;
}

.stream-info {
    margin-bottom: 10px;
}
.stream-info h1 {
    margin: 50px auto 80px auto;
    text-align: center;
    font: bold 30px "Arial", sans-serif;

}
.styled-wrapper {
    margin-bottom: 40px;
    max-width: 800px;
    padding: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    background: #f9f9f9;
}

.stream-info .streaming-url-title {
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

label {
}

input {
    border: 1px solid #cbcbd1;
    border-radius: 3px;
    height: 45px;
    font-size: 1rem;
    padding: 0 2.4%;
    margin: 0;
    display: inline-block;
    width: 95%;
}

button {
    background-color: #0071b1;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    height: 47px;
    transition: background 0.4s;
    text-decoration: none;
    padding: 13px 30px;
    border: none;
    margin-top: 10px;
    position: relative;
    outline: none;
}

button:hover {
    background-color: #164c71;
    transition: background 0.4s;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    padding: 5px 10px;
    font-size: 12px;
    background: #484848;
    position: absolute;
    right: 0;
    top: -20px;
    width: 70px;
    display: none;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.tooltip-text.tooltip-active {
    top: -22px;
    display: block;
}

.tooltip-text.tooltip-active:after {
    top: 22px;
    display: block;
}

.tooltip-text:after {
    content: '';
    width: 0px;
    height: 0px;
    background: none;
    position: absolute;
    left: 47%;
    top: -8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #484848;
    display: none;
}

.button-wrapper {
    text-align: right;
    display: block;
    width: 100%;
}

.footer-wrapper {
    margin: 50px auto;
    position: relative;
}
.footer-wrapper pre.prettyprint {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    background: #fff;
}

.footer-wrapper p, p {
    margin: 10px 0;
    text-align: left;
    font: bold 16px "Arial", sans-serif;
    display: inline-block;
}
.copyCodeBtn {
    position: absolute;
    top: 80px;
    right: 40px;
}

.prettyprint {
    overflow: auto;
}

@media screen and (max-width: 768px) {
    .player-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 496px) {
    .container {
        width: 90%;
        margin: 0 auto;
        overflow: hidden;
        padding: 0 5%;
    }

    input {
        width: 95%;
        padding: 0 2.5%;
    }

}
