.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 100%;
}
.circle-container {
    width: 100%;
    height: 900px;
    position: relative;
    margin-top: -100px;
}
.avatar-mobile {
    width: 100px;
    height: 100px;
    border-radius: 6px;
}
.circle {
    position: absolute;
    border: 2px dotted rgb(255, 255, 255);
    border-radius: 50%;
    background: url('https://i.imgur.com/HZ2BxgV.jpg') no-repeat center center;
    background-size: cover;
    outline: none !important;

    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;
}
.circle-helper {
    position: absolute;

    opacity: 0;

    font-size: 20px;

    top: 50%;
    left: 20%;
    padding: 15px;
    transform: translate(-50%, -50%);

    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;

    color: #fcfcfc;
}
#cboxCurrent {
    opacity: 0;
}
.circle:hover {
    opacity: 0.6;
}
.circle:hover .circle-helper {
    opacity: 0.9;
    left: 50%;
}

.player-profile.inactive {
    opacity: 0.3;
}

.player-profile {
    transition: background-color 0.4s;
}
.player-profile:hover {
    /* opacity: 1;
    background: #464646;
    transition: background-color 1s; */
}

.player-avatar {
    opacity: 0.5;
    transition: opacity 0.4s;
}

.player-profile:hover .player-avatar {
    opacity: 1;
    transition: opacity 1s;
}
.player-avatar-list {
    display: block;
    margin: auto;
    max-height: 120px;
    margin-top: 20px;
}
.player-text {
    position: absolute;
    top: 65%;
    width: 100%;
    display: block;
    font-size: medium;
    color: rgba(255, 255, 255, 0.75);
}
.avatar-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1,1);
    }
    to {
        -webkit-transform: scale(1.5,1.5);
    }
}

/* Standard syntax */
@keyframes zoom {
    from {
        transform: scale(1,1);
    }
    to {
        transform: scale(1.5,1.5);
    }
}

.zoom-wrapper {
    overflow: hidden;
}
.zoom-wrapper:hover img {
    -webkit-animation: zoom 20s; /* Chrome, Safari, Opera */
    animation: zoom 35s;
}
.thumbnail {
    padding: 0;
}
.cboxIframe {
    background: #000 !important;
}

body {
    min-height: 1440px;
    background: #060606 url('/_dev/images/bg-kld.jpg');
    /*background-size: cover;*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    color: #d6d6d6;
}
#footer {
    padding: 20px;
}
.container {
    background: rgba(6, 6, 6, 0.70);
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #e6e6e6;
    background-color: #656565;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
}
.form-inline .text-small {
    font-size: 10px;
}
.gly-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}
@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.gly-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.gly-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.gly-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}
.gly-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.gly-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
    opacity: 0
}
.form-inline .input-long {
    width: 100%;
}
@media (min-width: 768px) {
    .form-inline .input-long {
        width: 400px;
    }

}

@media (min-width: 768px) and (max-width: 1200px) {
    .navbar-brand {
        display: none;
    }
}

.content {
  margin-top: 54px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .content {
    margin-top: 50px;
  }
}
