@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");

body {
    position: relative;
    background: #f4f4f4;
    font-family: Montserrat, sans-serif;
    color: #000;
    font-size: 1.0rem;
    margin: 0;
}

.loginBody {
    background: #222;
}

/* header */
header {
    background: #222;
    position: relative;
    width: 100%;
    color: #f05246;
    padding-top: 2%;
    padding-bottom: 1%;
    z-index: 105;
}

header a {
    color: #f05246 !important;
    text-decoration: none;
}

/*header a:hover{
	 text-decoration: underline; 
}*/

/* logo */
.pause-icon {
    font-size: 2.14em;
    margin-left: 1em;
    color: #f05246;
}

.pause-icon:before {
    margin-right: .24078em;
}

.pause-icon:after,
.pause-icon:before {
    content: "";
    display: inline-block;
    height: 1em;
    width: .36175em;
    background-color: currentColor;
}

.pause-icon-container {
    float: left;
    margin-right: 2%;
}



/* nav */
.clipsNavItemTemp a {
    color: orange !important;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1080px;
    list-style: none;
}

nav ul,
nav li {
    flex: 1;
    font-weight: bold;
}

nav li:last-child {
    border-bottom: none;
}

nav a {
    text-decoration: none;
    color: inherit;
    display: block;
}

nav a:hover {
    background: rgba(128, 128, 128, 0.25);
    color: #fff;
}

nav li {
    position: relative;
    line-height: 50px;
    color: #fff;
    text-align: center;
}

nav input,
nav label {
    display: none;
    width: 36px;
    height: 36px;
    background: #555;
    color: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 1.6rem;
    border-radius: 2px;
}

nav label {
    position: absolute;
    top: 8px;
    right: 8px;
    transition: .4s;
}

nav label:hover {
    cursor: pointer;
}

nav label:before {
    font-family: FontAwesome;
    font-size: 24px;
    content: "\f0c9";
    text-align: center;
}

.nav_stats_li {
    display: inline;
    margin-right: 3%;
}

.nav_stats_li::after,
.nav_stats_li::before {
    content: '·';
}

.nav_stats_li a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

.nav_stats_li a:hover {
    color: rgba(240, 82, 70, 1);
}



/* clips-container */
.clips-container {
    padding: 1% 1%;
}

.clips-container p {
    margin-left: 2%;
}

input {
    font-size: 1em;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #eee;
    padding-left: 1%;
}



/* login page */

#homeBO {
    background-color: #D6D6D6;
    background-image: linear-gradient(white, #aaa);
    width: 50%;
    max-width: 600px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4%;
    border-radius: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 1% 2% 1% 2%;
    box-shadow: 5px 5px 15px;
}

#homeBO h1 {
    color: #f05246;
    margin-left: 1%;
    margin-top: -0.9% !important;
    margin-bottom: 0.2%;
}

#homeBO h2 {
    color: #e0e0e0;
    background-color: #CCC;
    border-radius: 5px;
    text-align: center;
    text-shadow: 1px 1px #999;
    padding: 1% 0% 1% 0%;
    margin-left: 0%;
}


#homeBO #login,
#homeBO #pass,
#homeBO #submit {
    display: inline-block;
    /*float: right;*/
}

input:focus {
    background-color: #fff;
}

.alert {
    display: block;
    background-color: #FF8080;
    text-align: center;
    padding: 1%;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}



/* Dashboard */
.dashboard {
    text-align: center;
    height: 40vh;
}

.dashboard li {
    display: inline-block;
    margin-right: 2.5%;
}

.dashboard li a {
    font-size: 2em;
    text-decoration: none;
    /* color:#F05246; */
    color: #000;
}

.dashboard li a:hover {
    color: #F05246;
}



/* footer */
footer {
    display: block;
    background: #222;
    position: relative;
    width: 100%;
    font-size: 0.6em;
    color: #fff;
    padding-top: 1%;
    padding-bottom: 1%;
    bottom: 0;
    text-align: center;
    /* margin-bottom: 1%; */
}

footer img {
    height: 40px;
    width: auto;
}


#return-to-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
    /*background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);*/
    background: rgba(240, 82, 70, 0.5);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

#return-to-top i {
    /* color: rgba(255,255,255,0.1); */
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    /* background: rgba(0, 0, 0, 0.9); */
    background: rgba(240, 82, 70, 1);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}