/* Setting border-box box-sizing + ie fallback
----------------------------------------------- */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    position: relative;
    min-height: 100%; /* fixes focus scrolling in Safari (OS X) */
    margin: 0;
    padding: 0;

    -webkit-tap-highlight-color: rgba(0,0,0,0); /* disable webkit tap highlight */
    color: #313131;
    font-family: 'Lato', sans-serif;
}


/* =Cosmetic CSS for demo purpose
   ----------------------------------------------- */

header {
    overflow: hidden;
}

.logo {
    text-align: center;
    padding: 10px;
}

/* Container */
#container {
    position: relative;
    padding: 20px 40px;
    text-align: justify;
}

/* Offside instances */
.offside {
    padding: 20px 0;
    width: 200px;
    background-color: #123f7a;
}

.popmenuli li{
        font-size: 20px;
    list-style: none;
    margin-bottom: 15px;
}

.popmenuli ul {
    clear: both;
    margin: 0;
    padding: 0 20px;
}

.popmenuli li > a {
    text-decoration: none;
    color: #ffffff;
}

.popmenuli li > a:hover {
    text-decoration: none;
    color: #000000;
}

/* Lists
ul {
    clear: both;
    margin: 0;
    padding: 0 20px;
}

li {
    list-style: none;
}

li > a{
    text-decoration: none;
    color: #000;
}*/

/* Offside buttons */

/*.offside-button {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin: 0 auto 10px auto;
    background: #FFE200;
    color: #000;
    text-align: center;
    cursor: pointer;
}
.offside-button:hover {
    background: #FFD900;
}*/

.site-overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;

    -webkit-transition: visibility 0s ease, opacity .2s ease;
    -moz-transition: visibility 0s ease, opacity .2s ease;
    -o-transition: visibility 0s ease, opacity .2s ease;
    transition: visibility 0s ease, opacity .2s ease;
}

/* Abstract icon class*/
.icon {
    display: block;
    position: relative;
    padding: 10px 0;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    font-family: 'Lato', sans-serif;
}

.icon .icon-bar {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 1px;
    background-color: #fff;
}

.icon:hover .icon-bar {
    background-color: #989898;
}

.icon:focus {
    outline: 0;
}

/* Hamburger button */
.icon--hamburger .icon-bar + .icon-bar {
    margin-top: 4px;
}

/* Close button */
.icon--cross {
    padding: 20px;
    padding-bottom: 20px;
    margin-bottom:20px;
}

.icon--cross > .icon-bar + .icon-bar {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.icon--cross > .icon-bar{
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);

    margin-top: -3px;
}



/* Helpers */
.h--left{
    float: left;
}

.h--right{
        float: right;
    margin-left: 10px;
    position: absolute;
    right: 3%;;
}

/* Demo specific: typical */

/* Just few cosmetic CSS for overlay fade in/out */
.offside-js--is-open .site-overlay {
    visibility: visible;
    opacity: .7;
    -webkit-transition-delay: delay 0s;
    -o-transition-delay: delay 0s;
    transition-delay: delay 0s;
}

.header .btn {

    margin-right: 70px;
}
