/* ------------------------------- Start General ----------------------------------------- */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Electrolize', sans-serif;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
    background: #e7e6e6;
}
ul, ol { list-style: none }
h1, h2, h3, h4, h5, h6, ul, ol, p {
    margin: 0;
    padding: 0;
    font-weight: normal
}
p { font-size: inherit }
a, a:focus, a:hover { color: inherit; text-decoration: none }
/* .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: auto;
} */
.circle { border-radius: 50% }
.clear { width: 100%; display: block; clear: both }
.btn-nice-container {
    width: 170px !important;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    position: relative;
    text-align: center
}
.btn-nice-container::after {
    content: "";
    display: block;
    background: #e7e6e6;
    width: 150%;
    height: 20px;
    -webkit-transform: skewY(5deg);
    -moz-transform: skewY(5deg);
    -o-transform: skewY(5deg);
    transform: skewY(5deg);
    position: relative;
    top: -4px;
    right: -19px
}
.btn-nice-container .btn-nice {
    background: #058702;
    border: 0;
    outline: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    cursor: pointer;
    margin-right: -27px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.75);
    -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.75);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: skewX(30deg);
    -moz-transform: skewX(30deg);
    -o-transform: skewX(30deg);
    transform: skewX(30deg);
    display: inline-block
}
.btn-nice-container .btn-nice:hover {
    background: #086fb1
}
.btn-nice-container .btn-nice span {
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    transform: skewX(-30deg);
    display: inline-block;
    color: #fff;
    position: relative;
    top: -4px
}
/* ------------------------------- End General ----------------------------------------- */
/* ------------------------------- Start navbar ----------------------------------------- */
.navbar {
    width: 100%;
    height: 85px;
    padding-top: 10px;
    text-align: center;
    -webkit-box-shadow: 0 4px 2px -2px #aaa;
    -moz-box-shadow: 0 4px 2px -2px #aaa;
    -o-box-shadow: 0 4px 2px -2px #aaa;
    box-shadow: 0 4px 2px -2px #aaa;
    /* position: fixed; */
    z-index: 99;
    /* background: #e7e6e6; */
    top: 0;
    left: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 0px !important;
}
.navbar .menu, .navbar .fa-search {
    cursor: pointer;
    font-size: 25px;
    padding: 10px
}
.navbar .menu {
    float: left;
    color: white;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar .fa-search {
    float: right;
}
@media(max-width: 550px) {
    .navbar .logo {width: 100px; padding-top: 10px}
}
.navbar.up {
    top: -110px
}
/* ------------------------------- End navbar ----------------------------------------- */
/* ------------------------------- Start navbar content ----------------------------------------- */
.navbar-content {
    height: 100vh;
    position: fixed;
    z-index: 999;
    left: -400px;
    top: 0;
    width: 100%;
    max-width: 250px;
    color: #fff;
    font-size: 22px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-right: 1px solid #8ce6e6;
   /* overflow-y: scroll;*/
    overflow: hidden;
    background: rgb(70,73,81);
    background: rgba(70,73,81, 0.8);
}
.navbar-content .welcome.mtn {
  background-color: #fdca03 !important;
}
.navbar-content .welcome {
    background: rgba(162, 162, 162, 0.8);
    padding: 15px;
}
.navbar-content .welcome .img-circle {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100%;
    margin: 10px auto;
    border: 2px solid #8ce6e6;
}
.navbar-content .welcome .img-circle img {
    height: 100%;
    width: auto
}
.navbar-content .welcome .close {
    text-align: right;
    margin-bottom: 15px
}
.navbar-content .welcome .close .fa {
    font-size: 25px;
    color: black;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-content .welcome h3 {
    font-weight: normal;
    font-size: 25px;
    text-transform: uppercase;
    padding-bottom: 15px
}
.navbar-content .welcome p {
    font-size: 14px
}
.navbar-content ul.mtn, .navbar-content ul.mtn * {
  background: #fff !important;
  border-bottom: #fff;
  color: #000;
}
.navbar-content ul.mtn li a i{
  color: #000;
}
.navbar-content ul {
    background: rgb(70,73,81,0.8);
    text-align: left
}
.navbar-content ul > li {
    padding: 10px 0 10px 55px;
    border-bottom: 2px solid #464951;
    font-size: 15px;
    background: rgb(70,73,81, 0.8);
}
.navbar-content .favorate {
    cursor: pointer;
}
.navbar-content ol > li {
    padding-left: 55px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-content ol > li:hover {
    background: #a3222285
}
.navbar-content ol > li span {
    font-size: 13px;
    position: relative;
    top: -1px
}
.scale-zero {
    -webket-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
/* ------------------------------- End navbar content ----------------------------------------- */
/* ------------------------------- Start login ----------------------------------------- */

.login form {
    width: 100%;
    max-width: 400px;
    margin: auto;
    font-size: 22px;
}
.login form div {
    width: 100%;
    margin-bottom: 10px
}
.login form div.buttons {
    display: flex;
    position: relative;
}
.login form div.buttons span {
    background: #fff;
    border: 0;
    outline: 0;
    color: #aaa;
    flex: 1;
    font-size: 20px;
    padding: 12px;
    text-transform: uppercase;
    display: block;
    text-align: center
}
.login form div.buttons span:last-of-type {
    background: #058702;
    color: #fff
}
[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
.login form > div:last-of-type {
    text-align: right;
    margin-top: 25px
}
.login form .input {
    width: 100%;
    padding: 12px;
    outline: 0;
    border: 0;
    text-align: center;
    font-size: 20px
}
@media(max-width: 415px) {
    .login h1 {
        font-size: 30px
    }
    .login form div.buttons span {
        padding: 14px;
        font-size: 17px
    }
}
@media(max-width: 366px) {
    .login form div.buttons span {
        padding: 16px;
        font-size: 12px
    }
}
/* ------------------------------- End login ----------------------------------------- */
/* ------------------------------- Start Footer ----------------------------------------- */
.footer {
    width: 100%;
    background: #464646;
    height: 250px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    -webkit-box-shadow: inset 0 0 10px #000;
    -moz-box-shadow: inset 0 0 10px #000;
    -o-box-shadow: inset 0 0 10px #000;
    box-shadow: inset 0 0 10px #000;
    position: relative;

}
.footer .text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footer .text p {
    font-size: 10px;
    margin-top: 15px;
    color: #ccc
}
.top {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff;
    background: #086fb1;
    border-radius: 50%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: .5
}
.top:hover {
    opacity: 1
}
/* ------------------------------- End Footer ----------------------------------------- */
