/**
    * INFORMATION ABOUT CSS GUIDELINE
    *
    * 1. Each new section need to have a name like this : 
    *   /*******************\
            #CONTACT
        \*******************/
    /*
    * 
    * 2. select need to be written like this (with the "-"):
    *       - .page-content or .page-footer 
    *
    * 3. Write "#e3e3e3" instead of "#E3E3E3"
    *
    * 4. You can comment a block style with (need to be in lowercase) : /* style for the contact form */  
/*  *
    *
**/



/* ==|== primary styles =====================================================
   author: moxi
   ========================================================================== */
html, body {
    height: auto;
    min-height: 100%;
}
body{
	background-color: #f2f2f2;
    font-family: 'Open Sans', sans-serif;
}

body.onepager:not(.ipad) .off-canvas-content{
    overflow-y: hidden; /* prevents scolling (gets set to auto after pageload) */
}
*:focus {
    outline: none;
}

/*******************\
    #TEXT 
\*******************/
h1, h2, h3, h4, h5 {
	font-family: 'Open Sans', sans-serif;
    margin: 0;
}
h1 {
	font-size: 36px;
    line-height: 36px;
}
h2 {
	font-size: 24px;
    margin-bottom: 15px;
}
h3{
    font-size: 20px;
}
.success {
    color: green;
    font-weight: bold;
    margin-bottom: 15px;
}
.warnings{
    color: #ff8700;
    font-weight: bold;
    margin-bottom: 15px;
}
.button, .button:focus {
    background-color: #fbb800;
    text-transform: uppercase;
}
.button:hover {
    background-color: #d59c00;
}

/*******************\
    #LOADING 
\*******************/
#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}
#loading-image {
    z-index: 100;
    height: 100px;
    width: auto;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0    
}

/*******************\
    #HEADER 
\*******************/
header {
    width: 100%;
    z-index: 20;
    background: #fff;
    position: relative;
    padding: 20px 0;
}
header .shadow {
    background: url(../pix/shadow.png) repeat-x top;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: -6px;
}

/*******************\
    #PAGE 
\*******************/
.main-section {
    padding: 50px 0;
}
.content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.nav div {
    display: inline-block;
    padding: 10px 15px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 3px;
    background: #d5d5d5;
    cursor: pointer;
}
.nav .active {
    background: #fff;
}
.tab-content {
    background: #fff;
}
.tab {
    padding: 30px 0;
}

form .grid-x {
    width: 100%;
    max-width: 600px;
}

.list-container {
    border-top: 1px solid #ccc;
    padding-top: 30px;
}
.checkbox, .list-container h3 {
    display: inline-block;
    margin-bottom: 10px;
}
.checkbox {
    cursor: pointer;
    position: relative;
    width: 17px;
    height: 17px;
    border: 1px solid #afacaa;
    background: #f2f1ee;
    border-radius: 1px;
    margin-right: 10px;
}
.checkbox.active:before, .group-checkbox.active .checkbox:before {
    position: absolute;
    top: 2px;
    left: 2px;
    content: "";
    border-radius: 1px;
    width: 11px;
    height: 11px;
    background: #6c6763;
}
.group {
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.group .arrow {
    background: url(../pix/arrow_up.svg) no-repeat top left / contain;
    width: 25px;
    height: 20px;
    position: absolute;
    top: 6px;
    left: 0;
    cursor: pointer;
}
.group .arrow.closed {
    background-image: url(../pix/arrow_down.svg);
}
.group-checkbox {
    display: inline-block;
}
.group-checkbox .checkbox {
    width: 25px;
    height: 25px;
}
.group-checkbox.active .checkbox:before {
    width: 19px;
    height: 19px;
}

.ele-container {
    padding-left: 8px;
}
.team-ele {
    max-width: 300px;
}
.team-ele label{
    display: flex;
    align-items: center;
    cursor: move;
}
.group {
    cursor: move;
}
.sort-placeholder {
    background: #ccc;
}


.hidden {
    display: none
}