@-ms-viewport {
    width: device-width;
}

.testmenu {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
    background: #111;
}

    .testmenu select {
        width: 300px;
    }

body {
    margin: 0;
    padding: 0;
    background: #E5E5E5;
    color: #333;
    font-size: 13px;
    font-family: 'Open Sans',sans-serif;
}

    body.modal-open {
        overflow: hidden;
    }

h1, h2, h3, h4 {
    color: #000;
    font-weight: 600;
}

h1 {
    padding-bottom: 15px;
    background: url(../img/title-dot.png) left bottom repeat-x;
    font-size: 26px;
    line-height: 28px;
}

h2 {
    padding-bottom: 15px;
    background: url(../img/title-dot.png) left bottom repeat-x;
    font-size: 22px;
    line-height: 24px;
}

h3 {
    font-size: 18px;
    line-height: 20px;
}

h4 {
    font-size: 15px;
    line-height: 18px;
    margin: 15px 0 10px;
}

p {
    color: #333;
    font-size: 13px;
    font-family: 'Open Sans',sans-serif;
}

    p.lb-bottom {
        padding-bottom: 15px;
        background: url(../img/title-dot.png) left bottom repeat-x;
    }

a {
    color: #ee3124;
    text-decoration: none;
    outline: 0;
}

    a:hover {
        color: #ee3124;
        text-decoration: underline;
    }

    a:focus, a:active {
        background-color: none;
        outline: 0;
        text-decoration: none;
    }

input, textarea {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

textarea {
    resize: none;
    font-family: 'Open Sans',sans-serif;
    font-size: 13px !important;
}

div.error {
    color: #ee3124;
    margin-top: 0;
    padding: 5px 0 0 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

div.errormessages {
    color: #ee3124;
}

    div.errormessages p {
        color: #ee3124;
        padding: 0;
        position: relative;
        padding: 0 0 0 22px;
        margin: 0 0 12px;
    }

        div.errormessages p:before {
            display: block;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -48px -173px;
            background-repeat: no-repeat;
            content: " ";
            width: 18px;
            height: 23px;
            position: absolute;
            top: 0;
            left: 0;
        }

.modal {
    display: none;
    width: 800px;
    margin-left: -441px;
    padding: 0 40px 40px;
    border: 1px solid #EBEBEB;
    box-shadow: none;
}

    .modal .modal-header {
        border-bottom: 0;
        padding: 20px 0 0;
    }

    .modal .modal-body {
        padding: 0;
    }

    .modal h1 {
        border-bottom: 0;
    }

    .modal button {
        float: right;
        margin-bottom: 20px;
    }

    .modal .close {
        width: 34px;
        height: 34px;
        text-indent: -8000px;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-position: -40px -74px;
        background-repeat: no-repeat;
        position: absolute;
        right: -17px;
        top: -17px;
    }

        .modal .close:hover {
            cursor: pointer;
        }

    .modal.termsmodal h1 {
        background: 0;
    }

    .modal.termsmodal .modal-body {
        padding: 10px 20px;
        border: 1px solid #DCDCDC;
        border-radius: 5px;
        word-break: break-word;
    }

input[type="text"], input[type="email"], input[type="password"], input[type="url"], textarea {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 7px 10px;
    width: 100%;
    border: 1px solid #EBEBEB;
    background: #F4F4F4;
    font-size: 14px;
    -webkit-appearance: none;
}

    input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="url"]:focus, textarea:focus {
        outline: 0;
        border: 1px solid #CCC;
        background: #fff;
    }

    input[type="text"].error, input[type="email"].error, input[type="password"].error, input[type="url"].error, textarea.error {
        border: 1px solid #ee3124;
        background: #FFF2F2;
    }

textarea {
    min-height: 150px;
    resize: none;
    width: 100%;
}

button, .button, a.button {
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    padding: 10px 40px;
    border: 1px solid #B3180E;
    background: #ee3124;
    background: -moz-linear-gradient(top, #ee3124 0, #e82117 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #ee3124),color-stop(100%, #e82117));
    background: -webkit-linear-gradient(top, #ee3124 0, #e82117 100%);
    background: -o-linear-gradient(top, #ee3124 0, #e82117 100%);
    background: -ms-linear-gradient(top, #ee3124 0, #e82117 100%);
    background: linear-gradient(to bottom, #ee3124 0, #e82117 100%);
    box-shadow: 0 1px 1px #DEDEDE;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee3124', endColorstr='#e82117', GradientType=0);
    -webkit-appearance: none;
    margin-top: 15px;
    line-height: 16px;
    display: inline-block;
    font-family: 'Open Sans',sans-serif;
    vertical-align: top;
}

    button:hover, .button:hover, a.button:hover {
        background: #f1675a;
        background: -moz-linear-gradient(top, #f1675a 0, #e82117 100%);
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #f1675a),color-stop(100%, #e82117));
        background: -webkit-linear-gradient(top, #f1675a 0, #e82117 100%);
        background: -o-linear-gradient(top, #f1675a 0, #e82117 100%);
        background: -ms-linear-gradient(top, #f1675a 0, #e82117 100%);
        background: linear-gradient(to bottom, #f1675a 0, #e82117 100%);
        filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f1675a', endColorstr='#e82117', GradientType=0);
        cursor: pointer;
        text-decoration: none;
    }

    button:active, .button:active, a.button:active {
        background: #e82117;
        background: -moz-linear-gradient(top, #e82117 0, #ee3124 100%);
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #e82117),color-stop(100%, #ee3124));
        background: -webkit-linear-gradient(top, #e82117 0, #ee3124 100%);
        background: -o-linear-gradient(top, #e82117 0, #ee3124 100%);
        background: -ms-linear-gradient(top, #e82117 0, #ee3124 100%);
        background: linear-gradient(to bottom, #e82117 0, #ee3124 100%);
        filter: progid:dximagetransform.microsoft.gradient(startColorstr='#e82117', endColorstr='#ee3124', GradientType=0);
        text-decoration: none;
    }

    button.grey, .button.grey, a.button.grey {
        border: 1px solid #E0E0E0;
        background: #EDEDED;
        background: -moz-linear-gradient(top, #ededed 0, #f1f1f1 100%);
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #ededed),color-stop(100%, #f1f1f1));
        background: -webkit-linear-gradient(top, #ededed 0, #f1f1f1 100%);
        background: -o-linear-gradient(top, #ededed 0, #f1f1f1 100%);
        background: -ms-linear-gradient(top, #ededed 0, #f1f1f1 100%);
        background: linear-gradient(to bottom, #ededed 0, #f1f1f1 100%);
        box-shadow: none;
        color: #2B2B2B;
        filter: progid:dximagetransform.microsoft.gradient(startColorstr='#EDEDED', endColorstr='#F1F1F1', GradientType=0);
        font-weight: 700;
    }

        button.grey:hover, .button.grey:hover, a.button.grey:hover {
            background: #F4F4F4;
            background: -moz-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #f4f4f4),color-stop(100%, #ededed));
            background: -webkit-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -o-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -ms-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: linear-gradient(to bottom, #f4f4f4 0, #ededed 100%);
            filter: progid:dximagetransform.microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#EDEDED', GradientType=0);
        }

        button.grey:active, .button.grey:active, a.button.grey:active {
            background: #f4f4f4;
            background: -moz-linear-gradient(top, #f1f1f1 0, #ededed 100%);
            background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #f1f1f1),color-stop(100%, #ededed));
            background: -webkit-linear-gradient(top, #f1f1f1 0, #ededed 100%);
            background: -o-linear-gradient(top, #f1f1f1 0, #ededed 100%);
            background: -ms-linear-gradient(top, #f1f1f1 0, #ededed 100%);
            background: linear-gradient(to bottom, #f1f1f1 0, #ededed 100%);
            filter: progid:dximagetransform.microsoft.gradient(startColorstr='#F1F1F1', endColorstr='#EDEDED', GradientType=0);
            text-decoration: none;
        }

    button:disabled, .button:disabled, a.button:disabled {
        border: 1px solid #E0E0E0;
        background: #F4F4F4;
        background: -moz-linear-gradient(top, #f4f4f4 0, #ededed 100%);
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #f4f4f4),color-stop(100%, #ededed));
        background: -webkit-linear-gradient(top, #f4f4f4 0, #ededed 100%);
        background: -o-linear-gradient(top, #f4f4f4 0, #ededed 100%);
        background: -ms-linear-gradient(top, #f4f4f4 0, #ededed 100%);
        background: linear-gradient(to bottom, #f4f4f4 0, #ededed 100%);
        filter: progid:dximagetransform.microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#EDEDED', GradientType=0);
        box-shadow: none;
        color: #BBB;
        filter: progid:dximagetransform.microsoft.gradient(startColorstr='#EDEDED', endColorstr='#F1F1F1', GradientType=0);
        font-weight: 700;
    }

        button:disabled:hover, .button:disabled:hover, a.button:disabled:hover {
            background: #F4F4F4;
            background: -moz-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #f4f4f4),color-stop(100%, #ededed));
            background: -webkit-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -o-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -ms-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: linear-gradient(to bottom, #f4f4f4 0, #ededed 100%);
            filter: progid:dximagetransform.microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#EDEDED', GradientType=0);
            cursor: default;
        }

        button:disabled:active, .button:disabled:active, a.button:disabled:active {
            background: #F4F4F4;
            background: -moz-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -webkit-gradient(linear,left top,left bottom,color-stop(0%, #f4f4f4),color-stop(100%, #ededed));
            background: -webkit-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -o-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: -ms-linear-gradient(top, #f4f4f4 0, #ededed 100%);
            background: linear-gradient(to bottom, #f4f4f4 0, #ededed 100%);
            filter: progid:dximagetransform.microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#EDEDED', GradientType=0);
            text-decoration: none;
        }

    button a, .button a, a.button a {
        color: #fff;
    }

        button a:hover, .button a:hover, a.button a:hover {
            color: #fff;
        }

    button.plus, .button.plus, a.button.plus {
        padding: 10px 40px;
        margin: 0;
    }

        button.plus:before, .button.plus:before, a.button.plus:before {
            display: inline-block;
            content: "+";
            margin-right: 5px;
        }

input:disabled, label.select select:disabled {
    color: #777;
    background-color: #F4F4F4;
    -webkit-text-fill-color: #777;
    opacity: 1;
}

    input:disabled:hover, label.select select:disabled:hover {
        cursor: default;
    }

.row-fluid .span6 {
    width: 47.93617%;
    margin-left: 3.52766%;
}

.no-margin {
    margin: 0;
}

    .no-margin.button {
        margin: 0;
    }

.alert {
    padding-left: 38px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-shadow: none;
    position: relative;
    margin-bottom: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    float: left;
}

    .alert:before {
        position: absolute;
        content: " ";
        left: 10px;
        top: 8px;
        width: 22px;
        height: 22px;
        display: block;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-repeat: no-repeat;
    }

    .alert.alert-success {
        color: #3b8f2d;
        background: #bdfcb1;
        border: 1px solid #a1da96;
    }

        .alert.alert-success:before {
            background-position: -73px -202px;
        }

    .alert.alert-error {
        color: #ed3324;
        background: #fde8e5;
        border: 1px solid #e8c0c0;
    }

        .alert.alert-error:before {
            background-position: -46px -202px;
        }

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
    font-family: 'Open Sans',sans-serif;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.container {
    position: relative;
}

.l-boxcontainer {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 25px 0;
    width: 100%;
    border: 1px solid #CCC;
    background: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
    float: left;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.popup {
    color: #ee3124;
}

    .popup:hover {
        text-decoration: underline;
        cursor: pointer;
    }

.breadcrumb {
    background: 0;
    padding: 0;
    margin: -12px 0 15px;
}

    .breadcrumb li {
        font-size: 11px;
        text-transform: uppercase;
        text-shadow: none;
    }

        .breadcrumb li.active {
            color: #000;
        }

        .breadcrumb li .divider {
            color: #ee3124;
            padding: 0 2px;
        }

.row-fluid [class*="span"] {
    min-height: 0;
}

header {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    float: left;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #EBEBEB;
    height: 60px;
}

    header .l-headertop {
        padding: 0 20px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

    header #l-logo {
        float: left;
        margin: 15px 0 10px;
    }

        header #l-logo a {
            float: left;
            margin: 5px 15px 0 0;
            width: 138px;
            height: 26px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: 0 0;
            background-repeat: no-repeat;
            text-indent: -8000px;
        }

        header #l-logo .e-slogan {
            float: left;
            padding: 6px 0 4px 15px;
            height: 20px;
            border-left: 1px solid #918f8f;
            color: #000;
            vertical-align: middle;
            font-weight: 600;
            font-size: 12px;
            margin: 0;
            text-indent: 0;
            background: 0;
        }

            header #l-logo .e-slogan:hover {
                text-decoration: none;
            }

    header nav.secondary {
        float: right;
        margin-top: 22px;
    }

        header nav.secondary ul {
            margin: 0;
            padding: 0;
            list-style: none;
            float: right;
        }

            header nav.secondary ul li {
                float: left;
                font-weight: 600;
                position: relative;
                font-size: 11px;
                text-transform: uppercase;
            }

                header nav.secondary ul li.no-border a {
                    border-left: 0;
                }

                header nav.secondary ul li a {
                    margin-right: 10px;
                    margin-left: 8px;
                    padding-right: 10px;
                    padding-left: 10px;
                    border-right: 1px solid #CBCBCB;
                    border-left: 1px solid #CBCBCB;
                    color: #ee3124;
                }

                    header nav.secondary ul li a:hover {
                        color: #ee3124;
                    }

                header nav.secondary ul li ul li a {
                    border-right: 0;
                    margin: -8px -5px -12px -25px;
                    padding: 8px 5px 8px 25px;
                    color: #333;
                }

                    header nav.secondary ul li ul li a:hover {
                        color: #ee3124;
                        text-decoration: none;
                    }

    header nav .more, header nav .back {
        font-weight: 600;
        display: none;
    }

        header nav .more:hover, header nav .back:hover {
            color: #ee3124;
            cursor: pointer;
        }

    header nav .lang {
        list-style: none;
        margin: -1px 0 0 0;
        height: 22px;
        overflow: hidden;
        width: 20px;
        top: -4px;
        left: 0;
        width: 62px;
        z-index: 10;
        position: relative;
        font-size: 11px;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
    }

        header nav .lang:after {
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: 0 -41px;
            background-repeat: no-repeat;
            display: block;
            width: 10px;
            height: 7px;
            content: " ";
            position: absolute;
            top: 10px;
            right: 0;
        }

        header nav .lang:hover, header nav .lang.hover {
            cursor: pointer;
            height: 196px;
            border: 1px solid #EBEBEB;
            padding: 5px 20px 5px 10px;
            top: -10px;
            left: 11px;
            background: #fff;
            width: 52px;
            margin-left: -22px;
            -webkit-user-select: none;
            -webkit-touch-callout: none;
        }

            header nav .lang:hover:after, header nav .lang.hover:after {
                background-position: -9px -41px;
                top: 15px;
                right: 10px;
            }

        header nav .lang li {
            float: none;
            text-transform: uppercase;
            font-weight: 600;
            color: #333;
            padding: 8px 5px 12px 25px;
            line-height: 9px;
            min-width: 30px;
            border-bottom: 1px dotted #EBEBEB;
            margin-bottom: 4px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
        }

            header nav .lang li a {
                background: 0;
                border-right: 0;
                color: #333;
                border-left: 0 !important;
                margin: -8px -5px -12px -25px;
                padding: 8px 5px 8px 25px;
            }

                header nav .lang li a:hover {
                    color: #ee3124;
                    text-decoration: none;
                }

            header nav .lang li:hover {
                color: #ee3124;
            }

            header nav .lang li.e-eng {
                background-image: url('../img/sprite.png');
                background-size: 212px 700px;
                background-position: -194px -83px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-ned {
                background-position: -194px -29px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-ger {
                background-position: -194px -53px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-esp {
                background-position: -194px -545px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-belg {
                background-position: -194px -570px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-aus {
                background-position: -194px -600px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-ita {
                background-position: -194px -630px;
                background-repeat: no-repeat;
            }

            header nav .lang li.e-fra {
                background-position: -194px -660px;
                background-repeat: no-repeat;
            }

            header nav .lang li:last-child {
                border-bottom: 0;
            }

        header nav .lang.active:after {
            background-position: -10px -41px;
        }

    header .l-mobilemenus {
        position: relative;
        float: right;
        display: none;
        height: 20px;
        z-index: 10;
        margin-top: 25px;
        z-index: 20;
    }

.lang {
    list-style: none;
    margin: -1px 0 0 0;
    height: 22px;
    overflow: hidden;
    width: 20px;
    top: -4px;
    left: 0;
    width: 62px;
    z-index: 10;
    position: relative;
    font-size: 11px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

    .lang:after {
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-position: 0 -41px;
        background-repeat: no-repeat;
        display: block;
        width: 10px;
        height: 7px;
        content: " ";
        position: absolute;
        top: 10px;
        right: 0;
    }

    .lang:hover, .lang.hover {
        cursor: pointer;
        height: 196px;
        border: 1px solid #EBEBEB;
        padding: 5px 20px 5px 10px;
        top: -10px;
        left: 11px;
        background: #fff;
        width: 52px;
        margin-left: -22px;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

        .lang:hover:after, .lang.hover:after {
            background-position: -9px -41px;
            top: 15px;
            right: 10px;
        }

    .lang li {
        float: none;
        text-transform: uppercase;
        font-weight: 600;
        color: #333;
        padding: 8px 5px 12px 25px;
        line-height: 9px;
        min-width: 30px;
        border-bottom: 1px dotted #EBEBEB;
        margin-bottom: 4px;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
    }

        .lang li a {
            background: 0;
            border-right: 0;
            color: #333;
            margin: -8px -5px -12px -25px;
            padding: 8px 5px 8px 25px;
            width: 30px;
        }

            .lang li a:hover {
                color: #ee3124;
                text-decoration: none;
            }

        .lang li:hover {
            color: #ee3124;
        }

        .lang li.e-eng {
            background-position: -194px -83px;
            background-repeat: no-repeat;
        }

        .lang li.e-ned {
            background-position: -194px -29px;
            background-repeat: no-repeat;
        }

        .lang li.e-ger {
            background-position: -194px -53px;
            background-repeat: no-repeat;
        }

        .lang li.e-esp {
            background-position: -194px -545px;
            background-repeat: no-repeat;
        }

        .lang li.e-belg {
            background-position: -194px -570px;
            background-repeat: no-repeat;
        }

        .lang li.e-aus {
            background-position: -194px -600px;
            background-repeat: no-repeat;
        }

        .lang li.e-ita {
            background-position: -194px -630px;
            background-repeat: no-repeat;
        }

        .lang li.e-fra {
            background-position: -194px -660px;
            background-repeat: no-repeat;
        }

        .lang li:last-child {
            border-bottom: 0;
        }

    .lang.active:after {
        background-position: -10px -41px;
    }

nav.primary {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    float: left;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #EBEBEB;
    padding: 0 5px;
}

    nav.primary ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        nav.primary ul li {
            float: left;
            text-transform: uppercase;
            font-weight: 400;
            font-size: 11px;
            text-align: center;
            padding: 0 15px;
        }

            nav.primary ul li a {
                color: #333;
                font-weight: 600;
                text-transform: uppercase;
                padding: 7px 0;
                float: left;
            }

                nav.primary ul li a:hover {
                    color: #ee3124;
                    background: #fff;
                    text-decoration: none;
                }

                nav.primary ul li a.active {
                    color: #ee3124;
                    border-bottom: 2px solid #ee3124;
                    padding: 7px 0 5px;
                }

.m-menubutton {
    padding: 10px 20px;
    display: none;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    -webkit-transition: margin .2s ease-in-out;
    -moz-transition: margin .2s ease-in-out;
    -o-transition: margin .2s ease-in-out;
    transition: margin .2s ease-in-out;
    float: left;
    width: 100%;
    font-weight: 600;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid #EBEBEB;
}

    .m-menubutton:after {
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-position: -188px -125px;
        background-repeat: no-repeat;
        width: 25px;
        height: 24px;
        float: right;
        display: inline-block;
        content: " ";
    }

    .m-menubutton:hover {
        cursor: pointer;
    }

    .m-menubutton.active:after {
        background-position: -188px -164px;
    }

footer {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    float: left;
    padding: 30px 20px 14px;
    width: 100%;
    border-top: 1px solid #EBEBEB;
    position: relative;
}

    footer p {
        color: #9B9191;
        font-weight: 400;
    }

        footer p a {
            color: #9B9191;
        }

            footer p a:hover {
                color: #ee3124;
                text-decoration: none;
            }

    footer .m-links {
        float: left;
    }

    footer .m-copyright {
        float: right;
    }

form {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 20px;
    width: 100%;
}

label {
    margin: 10px 0 0;
    color: #000;
    font-size: 14px;
    line-height: 30px;
    float: left;
    position: relative;
}

    label:hover {
        cursor: default;
    }

    label.checkbox {
        margin: 15px 0 0;
        line-height: 14px;
        padding: 0 18px 0 0;
        width: auto;
    }

        label.checkbox:after {
            display: block;
            content: " ";
            width: 12px;
            height: 12px;
            position: absolute;
            right: 0;
            top: 1px;
            border: 1px solid #CBCBCB;
        }

        label.checkbox:hover {
            cursor: pointer;
        }

        label.checkbox input[type="checkbox"] {
            display: none;
        }

        label.checkbox.selected:after {
            background-position: -202px -287px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-repeat: no-repeat;
        }

    label.checkbox-left {
        margin: 15px 0 0;
        line-height: 14px;
        padding: 0 0 0 22px;
        width: auto;
    }

        label.checkbox-left:after {
            display: block;
            content: " ";
            width: 12px;
            height: 12px;
            position: absolute;
            left: 0;
            top: 1px;
            border: 1px solid #CBCBCB;
        }

        label.checkbox-left:hover {
            cursor: pointer;
        }

        label.checkbox-left input[type="checkbox"] {
            visibility: hidden;
            position: absolute;
        }

        label.checkbox-left.selected:after {
            background-position: -202px -287px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-repeat: no-repeat;
        }

        label.checkbox-left div.error {
            color: #ee3124;
            padding: 0;
            font-size: 13px;
            float: left;
            margin-top: 10px;
            margin-left: -24px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        label.checkbox-left.daylight {
            margin-top: 25px;
        }

    label.radio {
        margin: 15px 0 0 15px;
        line-height: 14px;
        padding: 0 25px 0 0;
        width: auto;
        position: relative;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

        label.radio:first-child {
            margin: 15px 0 0 0;
        }

        label.radio:after {
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: 0 -480px;
            background-repeat: no-repeat;
            display: block;
            content: " ";
            width: 17px;
            height: 19px;
            position: absolute;
            top: -1px;
            left: 0;
        }

        label.radio:hover {
            cursor: pointer;
        }

        label.radio input[type="radio"] {
            visibility: hidden;
            position: absolute;
        }

        label.radio.selected:after {
            background-position: 0 -458px;
        }

        label.radio.home {
            padding-left: 60px;
            position: relative;
            margin: 15px 0 0 0;
        }

            label.radio.home:before {
                content: " ";
                display: block;
                position: absolute;
                width: 40px;
                height: 40px;
                background-image: url('../img/sprite.png');
                background-size: 212px 700px;
                background-position: -99px -29px;
                background-repeat: no-repeat;
                background-color: #FFF;
                top: -13px;
                left: 20px;
            }

        label.radio.building {
            padding-left: 65px;
            position: relative;
        }

            label.radio.building:before {
                content: " ";
                display: block;
                position: absolute;
                width: 40px;
                height: 40px;
                background-image: url('../img/sprite.png');
                background-size: 212px 700px;
                background-position: -139px -30px;
                background-repeat: no-repeat;
                background-color: #FFF;
                top: -13px;
                left: 24px;
            }

    label.select {
        position: relative;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        width: 100%;
    }

        label.select select {
            margin: 0;
            padding: 6px 10px;
            border: 1px solid #EBEBEB;
            background-color: #F4F4F4;
            background-image: url('../img/select.png');
            background-position: right 10px;
            background-repeat: no-repeat;
            background-size: 20px 10px;
            border-radius: 2px;
            -moz-border-radius: 2px;
            -webkit-border-radius: 2px;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            width: 100%;
            outline: 0;
            display: inline-block;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            cursor: pointer;
            color: #333;
        }

            label.select select:focus {
                background-color: #fff;
                outline: 0;
            }

            label.select select.error {
                border: 1px solid #ee3124;
                background-color: #FFF2F2;
            }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    label.select select {
        padding: 6px 30px 6px 10px;
    }
}

label.select .e-star {
    float: none;
    margin: 0 0 0 2px;
}

label.select div.error {
    font-size: 13px;
    padding: 5px 0 0 0;
    line-height: 13px;
}

.e-star {
    color: #ee3124;
    float: left;
    margin: 13px 0 0 2px;
}

.star {
    color: #ee3124;
}

.l-content {
    float: left;
    padding: 20px 0;
    width: 100%;
    background: url(../img/l-content.jpg) center scroll repeat;
    position: relative;
}

    .l-content .back-link {
        margin: 0 0 0 20px;
        display: inline-block;
    }

        .l-content .back-link span {
            font-size: 18px;
            margin-right: 5px;
            display: inline-block;
        }

    .l-content.landing {
        padding: 30px 0 50px;
        background: #f4f4f4 url('../img/map-2x.png') center center no-repeat;
        background-size: 795px;
    }

        .l-content.landing .title {
            text-align: center;
        }

            .l-content.landing .title h1 {
                background: #282c35;
                font-weight: 100;
                color: #fff;
                padding: 15px 0;
                margin: 10px 0 20px;
                font-size: 22px;
                text-indent: -8000px;
                background-image: url('../img/landing-web.gif');
                background-repeat: no-repeat;
                background-position: center center;
            }

            .l-content.landing .title p {
                font-size: 14px;
                margin-bottom: 20px;
                font-weight: 600;
            }

        .l-content.landing .boxes {
            width: 500px;
            margin: 0 auto;
        }

            .l-content.landing .boxes .box {
                float: left;
                width: 100%;
                border: 1px solid #EBEBEB;
                border-radius: 5px;
                -moz-border-radius: 5px;
                -webkit-border-radius: 5px;
                box-shadow: 0 1px 1px #BAB9B9;
                background: #fff;
                padding: 20px;
                box-sizing: border-box;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                margin: 0 0 20px;
            }

                .l-content.landing .boxes .box h2 {
                    font-size: 14px;
                    margin: 0 0 10px;
                    line-height: 16px;
                    padding: 0 0 15px;
                    font-weight: 600;
                }

                .l-content.landing .boxes .box .country {
                    padding: 8px 10px 8px 55px;
                    margin: 0;
                    float: left;
                    width: 152px;
                    box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    line-height: 16px;
                    background-size: 38px 26px;
                    background-position: left center;
                    background-repeat: no-repeat;
                    color: #000;
                    vertical-align: middle;
                }

                    .l-content.landing .boxes .box .country:hover {
                        color: #ee3124;
                        text-decoration: none;
                    }

                    .l-content.landing .boxes .box .country.usa {
                        background-image: url('../img/icon-usa-2x.png');
                    }

                    .l-content.landing .boxes .box .country.can {
                        background-image: url('../img/icon-canada-2x.png');
                        margin: 7px 0 0;
                    }

                    .l-content.landing .boxes .box .country.uk {
                        background-image: url('../img/icon-uk-2x.png');
                        margin: 2px 0 0;
                    }

                    .l-content.landing .boxes .box .country.ned {
                        background-image: url('../img/icon-holland-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.ire {
                        background-image: url('../img/icon-ireland-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.aus {
                        background-image: url('../img/icon-aus-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.belg {
                        background-image: url('../img/icon-belg-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.ita {
                        background-image: url('../img/icon-italy-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.esp {
                        background-image: url('../img/icon-esp-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.fra {
                        background-image: url('../img/icon-fra-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.den {
                        background-image: url('../img/icon-den-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.ger {
                        background-image: url('../img/icon-ger-2x.png');
                        margin: 10px 0 0;
                    }

                    .l-content.landing .boxes .box .country.che {
                        background-image: url('../img/icon-che-2x.png');
                        margin: 10px 0 0;
                    }

.l-notice {
    background: #282c35;
    padding: 10px 50px;
    color: #fff;
    float: left;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}

    .l-notice p {
        color: #fff;
        margin: 5px 0;
        font-size: 12px;
    }

        .l-notice p a {
            font-weight: 600;
            text-decoration: underline;
            color: #EBEBEB;
        }

        .l-notice p.title {
            font-size: 25px;
            margin-bottom: 10px;
            line-height: 30px;
            font-weight: 400;
        }

    .l-notice .e-close {
        width: 26px;
        height: 26px;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-position: 0 -77px;
        background-repeat: no-repeat;
        text-indent: -8000px;
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        opacity: .7;
    }

        .l-notice .e-close:hover {
            cursor: pointer;
            opacity: 1;
        }

    .l-notice.comingsoon {
        margin-top: 40px;
        overflow: visible;
    }

        .l-notice.comingsoon .text .title {
            color: #fff;
            text-indent: 192px;
            font-weight: 200;
        }

.required {
    position: absolute;
    top: 6px;
    right: 0;
    font-size: 11px;
    line-height: 15px;
}

.accordion > .accordion-group {
    border: 0;
    background: url(../img/title-dot.png) left bottom repeat-x;
    padding: 0 0 10px;
    margin: 0 0 10px;
}

    .accordion > .accordion-group:after {
        content: " ";
        display: inline;
        font-size: 1px;
        line-height: 0;
    }

    .accordion > .accordion-group > .accordion-heading a {
        color: #000;
        font-size: 16px;
        padding: 10px 0;
        position: relative;
    }

        .accordion > .accordion-group > .accordion-heading a:hover {
            color: #ee3124;
            text-decoration: none;
        }

        .accordion > .accordion-group > .accordion-heading a:after {
            content: ' ';
            display: block;
            position: absolute;
            right: 0;
            top: 18px;
            width: 13px;
            height: 4px;
            font-size: 16px;
            font-weight: 700;
            color: #ee3124;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -196px -517px;
            background-repeat: no-repeat;
        }

        .accordion > .accordion-group > .accordion-heading a.collapsed:after {
            content: " ";
            display: block;
            position: absolute;
            right: 0;
            top: 13px;
            font-size: 30px;
            color: #ee3124;
            width: 13px;
            height: 14px;
            font-weight: 400;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -196px -497px;
            background-repeat: no-repeat;
        }

    .accordion > .accordion-group .accordion-inner {
        border: 0;
        padding: 10px 0 0 10px;
        color: #333;
    }

        .accordion > .accordion-group .accordion-inner .accordion {
            margin: 0;
        }

        .accordion > .accordion-group .accordion-inner .accordion-group {
            background: 0;
            padding: 0;
        }

            .accordion > .accordion-group .accordion-inner .accordion-group .accordion-heading a {
                font-size: 14px;
                color: #ee3124;
                padding: 0;
            }

                .accordion > .accordion-group .accordion-inner .accordion-group .accordion-heading a:after {
                    display: none;
                }

        .accordion > .accordion-group .accordion-inner .accordion-inner {
            padding: 5px 0 15px;
        }

#cancel, #delete {
    width: 446px;
    margin-left: -254px;
    padding: 10px 30px 30px;
    text-align: center;
    top: 50%;
    margin-top: -102px;
}

    #cancel h2, #delete h2 {
        line-height: 24px;
    }

    #cancel p, #delete p {
        margin: 20px 0;
    }

    #cancel .button, #delete .button {
        min-width: 45px;
    }

        #cancel .button.cancel, #delete .button.cancel, #cancel .button.delete, #delete .button.delete {
            margin-left: 20px;
        }

#m-timeout {
    width: 324px;
    margin-left: -193px;
    padding: 10px 30px 30px;
    text-align: center;
    top: 50%;
    margin-top: -102px;
}

    #m-timeout h2 {
        line-height: 24px;
        background: 0;
        padding: 0;
        position: relative;
        padding: 30px 0 0;
    }

        #m-timeout h2:after {
            content: " ";
            display: block;
            position: absolute;
            width: 20px;
            height: 20px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -192px -321px;
            background-repeat: no-repeat;
            background-color: #FFF;
            margin-left: -10px;
            left: 50%;
            top: 0;
        }

    #m-timeout p {
        margin: 10px 0;
    }

    #m-timeout .button {
        min-width: 45px;
    }

        #m-timeout .button:first-child {
            margin-right: 20px;
        }

#m-locationload {
    position: absolute;
    width: 246px;
    margin-left: -154px;
    padding: 30px 30px 50px;
    text-align: center;
    top: 50%;
    margin-top: -102px;
}

    #m-locationload h2 {
        line-height: 24px;
        background: 0;
        padding: 0;
        position: relative;
        margin: 0 0 40px;
    }

    #m-locationload p {
        margin: 10px 0;
    }

    #m-locationload img {
        display: block;
        width: 100px;
        margin: 0 auto;
    }

    #m-locationload.clear {
        background: transparent;
        border: 0;
        width: 100px;
        margin-left: -50px;
        left: 50%;
        height: 60px;
        top: 50%;
        margin-top: -20px;
        padding: 0;
    }

        #m-locationload.clear img {
            width: auto;
            display: block;
        }

        #m-locationload.clear p {
            color: #888;
            font-size: 12px;
            font-weight: 400;
            text-transform: uppercase;
        }

label.lb-bottom {
    width: 100%;
}

#faqsearch {
    position: absolute;
    width: 200px;
    top: 20px;
    right: 20px;
    padding: 0;
    border: 1px solid #DFDFDF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    #faqsearch .search-query {
        float: left;
        position: relative;
        box-shadow: none;
        height: 32px;
        font-size: 14px;
        border: 0;
        color: #000;
        font-weight: 400;
        padding: 0 0 0 15px;
        outline: 0;
    }

        #faqsearch .search-query:focus, #faqsearch .search-query:active {
            box-shadow: none;
            border: 0;
            outline: 0;
        }

        #faqsearch .search-query::-webkit-input-placeholder {
            color: #333;
        }

        #faqsearch .search-query:-moz-placeholder {
            color: #333;
        }

        #faqsearch .search-query::-moz-placeholder {
            color: #333;
        }

        #faqsearch .search-query:-ms-input-placeholder {
            color: #333;
        }

    #faqsearch #go {
        float: right;
        height: 9px;
        width: 6px;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-position: 0 -247px;
        background-repeat: no-repeat;
        background-color: transparent;
        border: 0;
        margin: 12px 5px 0 0;
    }

#cookieNotice {
    clear: both;
    border-top: 1px #eee solid;
    float: left;
    width: 100%;
    padding: 15px 0;
}

    #cookieNotice p {
        margin: 0;
    }

        #cookieNotice p .button {
            margin: -4px 5px 0;
            font-size: 12px;
            padding: 5px 15px;
        }

.m-smallbox {
    width: 378px;
    margin: 0 auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #EBEBEB;
    background: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 1px 1px #BAB9B9;
    font-size: 13px;
}

    .m-smallbox input {
        margin-bottom: 5px;
    }

        .m-smallbox input[type="email"], .m-smallbox input[type="password"], .m-smallbox input[type="text"] {
            padding: 10px;
            width: 100%;
        }

    .m-smallbox button {
        width: 100%;
        margin: 15px 0;
    }

    .m-smallbox form {
        padding: 20px 40px 20px;
    }

        .m-smallbox form#login {
            border-bottom: 1px solid #E2E2E2;
        }

            .m-smallbox form#login .column2 {
                padding: 2px 0 0;
            }

            .m-smallbox form#login button {
                margin: 20px 0 10px;
            }

                .m-smallbox form#login button.loading:before {
                    position: relative;
                    display: inline-block;
                    width: 12px;
                    height: 11px;
                    content: " ";
                    background: url(../img/login-loader.gif) 0 0 no-repeat;
                    margin: 2px -30px 0 0;
                    background-size: 100%;
                    float: right;
                }

    .m-smallbox .forgot {
        text-align: right;
    }

    .m-smallbox .checkbox-left {
        margin: 4px 0 0;
    }

    .m-smallbox .registerlink {
        padding: 20px 40px;
        border-top: 1px solid #F0F0F0;
        background: #fafafa url(../img/texture-dots.png) 0 0 scroll repeat;
    }

        .m-smallbox .registerlink h2 {
            background: 0;
            font-size: 18px;
            margin: 0 0 5px;
            line-height: 18px;
            padding: 0;
            font-weight: 400;
        }

        .m-smallbox .registerlink a {
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
        }

    .m-smallbox .form-row div.error {
        padding: 0 0 5px;
    }

    .m-smallbox .form-row input[type="text"], .m-smallbox .form-row input[type="email"], .m-smallbox .form-row input[type="password"] {
        background-position: right 11px;
    }

    .m-smallbox .cookie {
        margin: 0;
        font-size: 10px;
        line-height: 14px;
        color: #888;
    }

    .m-smallbox .m-contactcare h2 {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .m-smallbox .twocolumn .column1 {
        width: 138px;
        margin-right: 15px;
        float: left;
    }

    .m-smallbox .twocolumn .column2 {
        float: right;
        width: 140px;
        text-align: right;
    }

    .m-smallbox.welcome {
        padding: 25px;
        text-align: center;
    }

        .m-smallbox.welcome h1 {
            font-size: 19px;
            margin-top: 0;
        }

        .m-smallbox.welcome a.button {
            margin-top: 10px;
        }

    .m-smallbox .forgot-email label {
        width: 100%;
        line-height: 14px;
        margin: 0;
    }

    .m-smallbox .forgot-email p {
        float: left;
        margin-top: 0;
    }

    .m-smallbox .current {
        margin-bottom: 20px;
    }

    .m-smallbox .macid {
        color: #ee3124;
        margin: 10px 0;
        padding-right: 20px;
        position: relative;
    }

        .m-smallbox .macid:hover {
            cursor: pointer;
            text-decoration: none;
        }

        .m-smallbox .macid:after {
            content: "\2014";
            position: absolute;
            display: block;
            font-size: 12px;
            top: -1px;
            right: 1px;
            font-weight: 700;
        }

        .m-smallbox .macid.collapsed:after {
            content: "+";
            float: right;
            display: inline-block;
            font-size: 22px;
            top: -1px;
            right: 0;
            font-weight: 400;
        }

    .m-smallbox p.gateway-register {
        margin-top: 10px;
    }

    .m-smallbox #delete-account .column1 .button {
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding: 10px;
    }

    .m-smallbox #delete-account .column2 button {
        padding: 10px 15px;
    }

.m-mediumbox {
    width: 480px;
    margin: 0 auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #EBEBEB;
    background: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 1px 1px #BAB9B9;
    padding: 10px 20px 20px;
}

    .m-mediumbox h1.success {
        margin-bottom: 20px;
    }

    .m-mediumbox h2 {
        background: 0;
        margin-bottom: 10px;
        padding-bottom: 0;
    }

    .m-mediumbox p.border-bottom {
        padding-bottom: 30px;
        background: url(../img/title-dot.png) left bottom repeat-x;
        margin-bottom: 5px;
    }

    .m-mediumbox img {
        display: block;
        margin: 0 auto;
    }

    .m-mediumbox .span7 p {
        width: 95%;
    }

    .m-mediumbox .span5 img {
        margin-top: 40px;
    }

    .m-mediumbox ul {
        list-style: none;
        margin: 0 0 15px;
        padding: 0;
    }

        .m-mediumbox ul li {
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -204px -280px;
            background-repeat: no-repeat;
            padding: 5px 0 0 15px;
            line-height: 14px;
        }

    .m-mediumbox .google, .m-mediumbox .apple {
        display: inline-block;
    }

        .m-mediumbox .google img, .m-mediumbox .apple img {
            width: 100%;
        }

    .m-mediumbox .google {
        width: 128px;
    }

    .m-mediumbox .apple {
        width: 124px;
    }

    .m-mediumbox.warning {
        padding: 30px 0;
    }

        .m-mediumbox.warning h1 {
            padding-bottom: 20px;
            background: url(../img/title-dot.png) left bottom repeat-x;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .m-mediumbox.warning .textcontainer {
            padding: 0 30px;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

        .m-mediumbox.warning .greybox {
            border-top: 1px solid #E9E9E9;
            border-bottom: 1px solid #E9E9E9;
            background: #fafafa url(../img/texture-dots.png) 0 0 scroll repeat;
            padding: 0 30px;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            margin: 20px 0;
        }

            .m-mediumbox.warning .greybox h4 {
                margin-bottom: 0;
            }

    .m-mediumbox .twocolumn {
        float: left;
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 20px;
        background: url(../img/title-dot.png) left bottom repeat-x;
    }

        .m-mediumbox .twocolumn .column1 {
            width: 230px;
            float: left;
            margin-right: 20px;
        }

        .m-mediumbox .twocolumn .column2 {
            width: 174px;
            float: left;
            margin-top: 30px;
        }

    .m-mediumbox .appstores {
        float: left;
        width: 100%;
    }

        .m-mediumbox .appstores .column1 {
            width: 164px;
            float: left;
            margin-right: 16px;
        }

        .m-mediumbox .appstores .column2 {
            width: 124px;
            float: left;
            margin-right: 10px;
            margin-top: 5px;
        }

        .m-mediumbox .appstores .column3 {
            width: 124px;
            float: left;
            margin-top: 5px;
        }

.m-largebox {
    width: 614px;
    margin: 0 auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #EBEBEB;
    background: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 1px 1px #BAB9B9;
    font-size: 13px;
    position: relative;
}

    .m-largebox form {
        padding: 10px 20px 20px;
    }

    .m-largebox #account-edit h2 {
        margin-top: 0;
    }

    .m-largebox #account-edit .personal-info {
        margin: 30px 0;
    }

    .m-largebox #account-edit .button {
        margin-right: 10px;
    }

    .m-largebox #change-password .forgot-email {
        float: left;
        width: 100%;
        margin-top: 20px;
    }

        .m-largebox #change-password .forgot-email label {
            width: 100%;
            line-height: 14px;
            margin: 0;
        }

    .m-largebox #change-password .m-pwcriteria {
        margin-bottom: 30px;
    }

    .m-largebox.confirmation {
        padding: 20px 40px;
        text-align: center;
        min-height: 280px;
    }

        .m-largebox.confirmation h1 {
            margin-bottom: 20px;
        }

        .m-largebox.confirmation h2 {
            padding: 0 0 20px;
            margin: 20px 0 20px;
        }

        .m-largebox.confirmation p:first-child {
            padding-bottom: 15px;
            background: url(../img/title-dot.png) left bottom repeat-x;
            margin-bottom: 0;
        }

.m-fullbox {
    width: 898px;
    margin: 0 auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #EBEBEB;
    background: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 1px 1px #BAB9B9;
    font-size: 13px;
    padding: 20px 20px 30px;
    position: relative;
}

    .m-fullbox.support-accordion:after {
        content: " ";
        display: inline;
        font-size: 1px;
        line-height: 0;
    }

    .m-fullbox h1 {
        margin-top: 0;
    }

    .m-fullbox.margin-top {
        margin-top: 20px;
    }

    .m-fullbox.twocolumn .column1, .m-fullbox .twocolumn .column1, .m-fullbox.twocolumn .column2, .m-fullbox .twocolumn .column2 {
        width: 408px;
        float: left;
    }

    .m-fullbox.twocolumn .column1, .m-fullbox .twocolumn .column1 {
        margin-right: 39px;
    }

        .m-fullbox.twocolumn .column1 input[type="text"], .m-fullbox .twocolumn .column1 input[type="text"], .m-fullbox.twocolumn .column1 input[type="email"], .m-fullbox .twocolumn .column1 input[type="email"], .m-fullbox.twocolumn .column1 input[type="password"], .m-fullbox .twocolumn .column1 input[type="password"], .m-fullbox.twocolumn .column1 input[type="url"], .m-fullbox .twocolumn .column1 input[type="url"] {
            width: 70%;
            display: block;
            clear: both;
        }

        .m-fullbox.twocolumn .column1 label.radio, .m-fullbox .twocolumn .column1 label.radio {
            margin: 40px 0 40px 15px;
        }

            .m-fullbox.twocolumn .column1 label.radio.home, .m-fullbox .twocolumn .column1 label.radio.home {
                margin: 40px 0 0;
            }

        .m-fullbox.twocolumn .column1 label.select, .m-fullbox .twocolumn .column1 label.select {
            width: 70%;
            margin-right: 60%;
        }

        .m-fullbox.twocolumn .column1 address, .m-fullbox .twocolumn .column1 address {
            margin-top: 16px;
        }

        .m-fullbox.twocolumn .column1 .shared-location-owner, .m-fullbox .twocolumn .column1 .shared-location-owner {
            margin-top: 16px;
            margin-bottom: 20px;
        }

    .m-fullbox.twocolumn .column2.contactnotifications label, .m-fullbox .twocolumn .column2.contactnotifications label {
        margin: 0;
    }

    .m-fullbox.twocolumn .column2.contactnotifications input, .m-fullbox .twocolumn .column2.contactnotifications input {
        width: 70%;
        margin-right: 30%;
    }

    .m-fullbox.twocolumn .column2.contactnotifications .e-star, .m-fullbox .twocolumn .column2.contactnotifications .e-star {
        margin: 3px 0 0 2px;
    }

    .m-fullbox.twocolumn .column2.contactnotifications p, .m-fullbox .twocolumn .column2.contactnotifications p {
        margin-top: 16px;
    }

    .m-fullbox.twocolumn.grantaccess h1, .m-fullbox .twocolumn.grantaccess h1 {
        background: 0;
    }

    .m-fullbox.twocolumn.grantaccess h2, .m-fullbox .twocolumn.grantaccess h2 {
        font-size: 16px;
        line-height: 18px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .m-fullbox.twocolumn.grantaccess .account-break label.checkbox-left, .m-fullbox .twocolumn.grantaccess .account-break label.checkbox-left {
        margin: 5px 0;
        font-weight: 700;
    }

    .m-fullbox.twocolumn.grantaccess .column1 .account-break, .m-fullbox .twocolumn.grantaccess .column1 .account-break {
        padding-bottom: 30px;
    }

    .m-fullbox.twocolumn.grantaccess .column1 button, .m-fullbox .twocolumn.grantaccess .column1 button {
        margin-top: 30px;
    }

    .m-fullbox.twocolumn.editlocation h1, .m-fullbox .twocolumn.editlocation h1 {
        background: 0;
    }

    .m-fullbox.twocolumn.editlocation h2, .m-fullbox .twocolumn.editlocation h2 {
        font-size: 16px;
        line-height: 18px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .m-fullbox.twocolumn .revoke-address, .m-fullbox .twocolumn .revoke-address {
        margin-top: 15px;
        display: block;
    }

    .m-fullbox.twocolumn .columnfull, .m-fullbox .twocolumn .columnfull {
        float: left;
        width: 100%;
        margin: 30px 0 0;
    }

        .m-fullbox.twocolumn .columnfull p, .m-fullbox .twocolumn .columnfull p {
            margin-top: 0;
        }

            .m-fullbox.twocolumn .columnfull p.no-devices, .m-fullbox .twocolumn .columnfull p.no-devices {
                margin: 18px 0 20px;
                min-height: 28px;
                padding: 10px 0 18px;
                background: url(../img/title-dot.png) left bottom repeat-x;
            }

                .m-fullbox.twocolumn .columnfull p.no-devices .button, .m-fullbox .twocolumn .columnfull p.no-devices .button {
                    margin-top: -10px;
                }

                .m-fullbox.twocolumn .columnfull p.no-devices:before, .m-fullbox .twocolumn .columnfull p.no-devices:before {
                    content: " ";
                    display: inline-block;
                    float: left;
                    width: 21px;
                    height: 19px;
                    background-image: url('../img/sprite.png');
                    background-size: 212px 700px;
                    background-position: -192px -321px;
                    background-repeat: no-repeat;
                    margin: 0 5px 0 0;
                }

        .m-fullbox.twocolumn .columnfull .pull-left button, .m-fullbox .twocolumn .columnfull .pull-left button, .m-fullbox.twocolumn .columnfull .pull-right button, .m-fullbox .twocolumn .columnfull .pull-right button, .m-fullbox.twocolumn .columnfull .pull-left .button, .m-fullbox .twocolumn .columnfull .pull-left .button, .m-fullbox.twocolumn .columnfull .pull-right .button, .m-fullbox .twocolumn .columnfull .pull-right .button {
            margin: 0;
        }

            .m-fullbox.twocolumn .columnfull .pull-left .button.grey, .m-fullbox .twocolumn .columnfull .pull-left .button.grey, .m-fullbox.twocolumn .columnfull .pull-right .button.grey, .m-fullbox .twocolumn .columnfull .pull-right .button.grey {
                margin: 0 10px 0 0;
            }

        .m-fullbox.twocolumn .columnfull .pull-left.account-delete, .m-fullbox .twocolumn .columnfull .pull-left.account-delete, .m-fullbox.twocolumn .columnfull .pull-right.account-delete, .m-fullbox .twocolumn .columnfull .pull-right.account-delete {
            background: url(../img/title-dot.png) left top repeat-x;
            width: 100%;
            text-align: right;
            padding: 10px 0 0;
        }

        .m-fullbox.twocolumn .columnfull button, .m-fullbox .twocolumn .columnfull button {
            margin: 0;
            min-width: 140px;
            padding: 10px 40px;
            vertical-align: top;
        }

        .m-fullbox.twocolumn .columnfull .button, .m-fullbox .twocolumn .columnfull .button {
            min-width: 58px;
        }

        .m-fullbox.twocolumn .columnfull .gateways, .m-fullbox .twocolumn .columnfull .gateways {
            list-style: none;
            margin: 0 0 20px;
            padding: 0;
        }

            .m-fullbox.twocolumn .columnfull .gateways li, .m-fullbox .twocolumn .columnfull .gateways li {
                padding: 15px 0;
                background: url(../img/title-dot.png) left bottom repeat-x;
                text-transform: uppercase;
                box-sizing: border-box;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
            }

                .m-fullbox.twocolumn .columnfull .gateways li .delete, .m-fullbox .twocolumn .columnfull .gateways li .delete {
                    text-indent: -8000px;
                    width: 30px;
                    height: 30px;
                    background-image: url('../img/sprite.png');
                    background-size: 212px 700px;
                    background-repeat: no-repeat;
                    background-position: -157px -359px;
                    border-radius: 5px;
                    -moz-border-radius: 5px;
                    -webkit-border-radius: 5px;
                    border: 1px solid #E0E0E0;
                    background-color: #f4f4f4;
                    border-bottom: 1px solid #CCC;
                    float: right;
                    margin: -6px 0 0;
                }

                    .m-fullbox.twocolumn .columnfull .gateways li .delete:hover, .m-fullbox .twocolumn .columnfull .gateways li .delete:hover {
                        background-position: -132px -359px;
                        background-color: #fff;
                    }

    .m-fullbox.twocolumn.locationoverview h1, .m-fullbox .twocolumn.locationoverview h1 {
        background: 0;
        padding-bottom: 0;
    }

    .m-fullbox.twocolumn.locationoverview h2, .m-fullbox .twocolumn.locationoverview h2 {
        font-size: 16px;
        line-height: 18px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .m-fullbox.twocolumn.locationoverview label, .m-fullbox .twocolumn.locationoverview label {
        width: 100%;
    }

        .m-fullbox.twocolumn.locationoverview label.radio:hover, .m-fullbox .twocolumn.locationoverview label.radio:hover {
            cursor: default;
        }

    .m-fullbox.twocolumn.locationoverview.twocolumn .column1 label.radio, .m-fullbox .twocolumn.locationoverview.twocolumn .column1 label.radio {
        margin-left: 0;
    }

    .m-fullbox .breadcrumb-top {
        float: left;
        width: 100%;
        margin: -20px 0 20px -20px;
        padding: 15px 20px;
        border-bottom: 1px solid #EBEBEB;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

        .m-fullbox .breadcrumb-top .back-link {
            margin: 0;
        }

    .m-fullbox .account-break {
        padding: 15px 0;
        background: url(../img/title-dot.png) left bottom repeat-x;
        position: relative;
    }

        .m-fullbox .account-break .button {
            margin: 10px 0;
            min-width: 148px;
        }

        .m-fullbox .account-break:last-child {
            background: 0;
        }

    .m-fullbox .account-options {
        margin: 30px 0 0;
    }

        .m-fullbox .account-options .button {
            margin: 0;
            min-width: 148px;
        }

    .m-fullbox .user-access .button {
        width: 180px;
        display: block;
        padding: 10px 0;
    }

    .m-fullbox .user-access .email {
        font-weight: 700;
        width: 175px;
    }

    .m-fullbox .user-access .register {
        text-align: center;
        width: 164px;
    }

        .m-fullbox .user-access .register.alert {
            color: #ee3124;
            font-weight: 700;
            background: 0;
            border: 0;
            padding: 0;
            margin: 0;
        }

            .m-fullbox .user-access .register.alert:before {
                display: none;
            }

    .m-fullbox .user-access .options {
        position: absolute;
        top: 50%;
        margin-top: -16px;
        right: 0;
        margin-left: 0;
        width: 70px;
    }

    .m-fullbox .user-access .settings, .m-fullbox .user-access .delete {
        text-indent: -8000px;
        width: 30px;
        height: 30px;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-repeat: no-repeat;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border: 1px solid #E0E0E0;
        background-color: #f4f4f4;
        border-bottom: 1px solid #CCC;
        float: right;
    }

        .m-fullbox .user-access .settings:hover, .m-fullbox .user-access .delete:hover {
            background-color: #fff;
        }

    .m-fullbox .user-access .settings {
        background-position: -187px -360px;
    }

        .m-fullbox .user-access .settings:hover {
            background-position: -187px -456px;
        }

    .m-fullbox .user-access .delete {
        background-position: -157px -359px;
        margin-left: 5px;
    }

        .m-fullbox .user-access .delete:hover {
            background-position: -132px -359px;
        }

    .m-fullbox.support {
        margin: 20px auto 0;
        padding: 20px;
    }

        .m-fullbox.support h2 {
            padding: 0;
            background: 0;
            margin: 8px 0 0;
            font-weight: 400;
            font-size: 20px;
            line-height: 20px;
            position: relative;
            padding-left: 45px;
        }

            .m-fullbox.support h2:before {
                background-image: url('../img/sprite.png');
                background-size: 212px 700px;
                background-repeat: no-repeat;
                background-position: -173px -409px;
                display: block;
                position: absolute;
                width: 39px;
                height: 39px;
                content: " ";
                left: 0;
                top: 50%;
                margin-top: -19px;
            }

        .m-fullbox.support .button {
            margin-top: 0;
        }

.m-formholder .m-largebox {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

.m-formholder .m-smallbox, .m-formholder .m-fullbox {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

.m-formholder h3 {
    margin-top: 20px;
}

    .m-formholder h3.lb-top {
        background: url(../img/title-dot.png) left top repeat-x;
        padding-top: 25px;
        margin-top: 25px;
    }

.m-formholder .m-termsconditions {
    width: 100%;
    float: left;
    margin: 30px 0;
    padding: 20px 0 0;
    background: url(../img/title-dot.png) left top repeat-x;
}

    .m-formholder .m-termsconditions span.terms {
        color: #ee3124;
        float: left;
        font-size: 14px;
    }

        .m-formholder .m-termsconditions span.terms:hover {
            text-decoration: underline;
            cursor: pointer;
        }

    .m-formholder .m-termsconditions label {
        margin: 2.5px 3px 0 0;
        width: auto;
    }

        .m-formholder .m-termsconditions label .error {
            width: 275px;
        }

    .m-formholder .m-termsconditions div.error {
        display: none !important;
    }

.m-formholder label.lb-bottom {
    margin: 0;
    padding: 0 0 5px;
    background: url(../img/title-dot.png) left bottom repeat-x;
    color: #5C5C5C;
    float: none;
    display: block;
    position: relative;
    width: 100%;
}

.m-formholder label.lb-top {
    margin: 30px 0;
    padding: 20px 0 0 20px;
    background: url(../img/title-dot.png) left top repeat-x;
    color: #5C5C5C;
    float: left;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}

    .m-formholder label.lb-top:after {
        top: 20px;
    }

.m-formholder label.full {
    width: 100%;
}

.m-formholder .row-fluid.lb-bottom {
    margin: 0;
    padding: 0 0 30px;
    background: url(../img/title-dot.png) left bottom repeat-x;
}

.m-formholder .row-fluid.lb-top {
    margin: 30px 0;
    padding: 20px 0 0;
    background: url(../img/title-dot.png) left top repeat-x;
}

.m-formholder .m-titlebar {
    background: #ee3124;
    width: 614px;
    margin: 0 auto;
    color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 20px;
    position: relative;
    z-index: 10;
}

    .m-formholder .m-titlebar.small {
        width: 376px;
    }

    .m-formholder .m-titlebar.large {
        width: 898px;
    }

    .m-formholder .m-titlebar h1 {
        margin: 0;
        padding: 0;
        color: #fff;
        background: 0;
        font-size: 20px;
    }

    .m-formholder .m-titlebar:after {
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(136,183,213,0);
        border-top-color: #ee3124;
        border-width: 5px;
        left: 20px;
        z-index: 8;
    }

    .m-formholder .m-titlebar.register {
        background: #ee3124;
    }

        .m-formholder .m-titlebar.register h1 {
            color: #fff;
        }

        .m-formholder .m-titlebar.register:after {
            border-top-color: #ee3124;
        }

.m-formholder .m-contact {
    background: url(../img/title-dot.png) left bottom repeat-x;
    float: left;
    width: 100%;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
}

    .m-formholder .m-contact label {
        font-size: 13px;
    }

    .m-formholder .m-contact h3 {
        background: url(../img/title-dot.png) left top repeat-x;
        padding-top: 30px;
    }

.m-formholder .contactnotifications label {
    margin-top: 5px;
}

.m-formholder .contactnotifications p {
    margin-bottom: 0;
}

.m-formholder .contactnotifications input {
    margin-bottom: 10px;
    width: 279px;
    display: block;
    clear: left;
}

.m-formholder .contactnotifications .error {
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
}

.m-formholder .contactnotifications div.error {
    margin-bottom: 10px;
}

.m-formholder .contactnotifications .e-star {
    margin-top: 8px;
}

.m-formholder .locationtype {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

    .m-formholder .locationtype div.error {
        width: 100%;
        position: absolute;
        left: 180px;
        white-space: nowrap;
        top: -8px;
        padding-top: 7px;
    }

.m-formholder .nomargin {
    margin: 0;
}

.m-locations {
    min-height: 300px;
    width: 100%;
    padding: 0 20px 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .m-locations h1 {
        background: 0;
        padding: 0;
        font-weight: 400;
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 26px;
    }

    .m-locations.empty {
        padding-top: 60px;
        text-align: center;
    }

        .m-locations.empty p {
            font-size: 18px;
            line-height: 18px;
            margin-bottom: 40px;
        }

        .m-locations.empty img {
            display: block;
            margin: 0 auto 30px;
            width: 92px;
        }

    .m-locations .locationgroup.selected {
        margin-top: 40px;
    }

    .m-locations .locationgroup .e-location {
        width: 100%;
        background: #fff;
        padding: 20px 60px 18px 60px;
        border: 1px solid #EBEBEB;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-shadow: 0 1px 1px #BAB9B9;
        margin: 8px 0;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        font-weight: 700;
        font-size: 16px;
        position: relative;
        display: block;
        color: #000;
        text-decoration: none;
    }

        .m-locations .locationgroup .e-location .alert {
            color: red;
            font-size: 12px;
            float: right;
            border: 0;
            background: transparent;
            padding: 0;
            margin-top: 0;
            width: auto;
        }

            .m-locations .locationgroup .e-location .alert:after {
                content: " ";
                display: inline-block;
                width: 20px;
                height: 20px;
                background-image: url('../img/sprite.png');
                background-size: 212px 700px;
                background-position: -192px -321px;
                background-repeat: no-repeat;
                background-color: #FFF;
                margin-left: 8px;
                float: right;
            }

            .m-locations .locationgroup .e-location .alert:before {
                display: none;
            }

        .m-locations .locationgroup .e-location:after {
            content: " ";
            display: block;
            position: absolute;
            width: 11px;
            height: 18px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -22px -358px;
            background-repeat: no-repeat;
            background-color: #FFF;
            top: 50%;
            right: 20px;
            margin-top: -8px;
        }

        .m-locations .locationgroup .e-location.home:before {
            content: " ";
            display: block;
            position: absolute;
            width: 30px;
            height: 30px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -99px -29px;
            background-repeat: no-repeat;
            background-color: #FFF;
            top: 50%;
            left: 10px;
            margin-top: -20px;
        }

        .m-locations .locationgroup .e-location.building:before {
            content: " ";
            display: block;
            position: absolute;
            width: 40px;
            height: 40px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: -139px -30px;
            background-repeat: no-repeat;
            background-color: #FFF;
            top: 50%;
            left: 10px;
            margin-top: -20px;
        }

        .m-locations .locationgroup .e-location:hover {
            color: #ee3124;
        }

            .m-locations .locationgroup .e-location:hover:after {
                background-position: 0 -358px;
            }

            .m-locations .locationgroup .e-location:hover.home:before {
                background-position: -99px -67px;
            }

            .m-locations .locationgroup .e-location:hover.building:before {
                background-position: -139px -64px;
            }

        .m-locations .locationgroup .e-location.empty {
            padding: 20px 20px 18px;
        }

            .m-locations .locationgroup .e-location.empty:after {
                display: none;
            }

            .m-locations .locationgroup .e-location.empty:hover {
                color: #000;
            }

    .m-locations .locationgroup .button {
        margin-top: 15px;
    }

    .m-locations .locationgroup .empty .button {
        margin: 20px 0 0;
    }

#m-submitstatus {
    width: 400px;
    padding: 20px;
    margin-left: -221px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: none;
    top: 20%;
}

    #m-submitstatus h1 {
        margin-top: 0;
        text-align: center;
        padding-bottom: 20px;
        font-size: 24px;
        line-height: 26px;
    }

    #m-submitstatus p {
        text-align: center;
        margin: 10px 0;
        width: 100%;
        display: inline-block;
    }

    #m-submitstatus img {
        margin: 0 auto;
        display: block;
    }

    #m-submitstatus .modal-body {
        max-height: none;
    }

    #m-submitstatus .animation {
        margin: 30px auto 20px;
        width: 100px;
        height: 100px;
        overflow: hidden;
    }

        #m-submitstatus .animation .success {
            opacity: 0;
            margin-top: -360px;
        }

    #m-submitstatus .form-error {
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        padding: 10px 10px 10px 70px;
        background-image: url('../img/sprite.png');
        background-size: 212px 700px;
        background-position: -160px -213px;
        background-repeat: no-repeat;
        background-color: #ee3124;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        display: none;
    }

        #m-submitstatus .form-error p {
            margin: 0;
            color: #fff;
            text-align: left;
        }

        #m-submitstatus .form-error .return {
            color: #EBEBEB;
            font-weight: 600;
        }

            #m-submitstatus .form-error .return:hover {
                cursor: pointer;
                text-decoration: underline;
            }

.m-pwcriteria, .m-ecriteria {
    padding: 34px 0 0 10px;
    font-size: 11px;
    color: #555;
}

    .m-pwcriteria p, .m-ecriteria p {
        font-size: 11px;
        color: #555;
        line-height: 16px;
        margin-top: 2px;
    }

    .m-pwcriteria ul, .m-ecriteria ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .m-pwcriteria ul li, .m-ecriteria ul li {
            color: #555;
            background-image: url(../img/criteria.png);
            background-repeat: no-repeat;
            background-position: 0 6px;
            background-size: 8px 40px;
            padding: 0 0 0 14px;
        }

            .m-pwcriteria ul li.active, .m-ecriteria ul li.active {
                background-position: 0 -26px;
            }

    .m-pwcriteria #pwindicator, .m-ecriteria #pwindicator {
        float: right;
        text-align: right;
        width: 100%;
        position: relative;
    }

        .m-pwcriteria #pwindicator .info, .m-ecriteria #pwindicator .info {
            text-indent: -8000px;
            background-image: url('../img/sprite.png');
            background-size: 212px 700px;
            background-position: 0 -171px;
            background-repeat: no-repeat;
            width: 17px;
            height: 17px;
            text-align: left;
            right: 0;
            position: absolute;
            top: 15px;
        }

            .m-pwcriteria #pwindicator .info:hover, .m-ecriteria #pwindicator .info:hover {
                background-position: 0 -188px;
                cursor: pointer;
            }

        .m-pwcriteria #pwindicator .bubble, .m-ecriteria #pwindicator .bubble {
            border: 1px solid #ee3124;
            background: #fff;
            position: absolute;
            left: 102%;
            padding: 5px 10px;
            border-radius: 5px;
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            top: -4px;
            display: none;
            z-index: 10;
            width: 200px;
            text-align: left;
        }

            .m-pwcriteria #pwindicator .bubble:after, .m-ecriteria #pwindicator .bubble:after, .m-pwcriteria #pwindicator .bubble:before, .m-ecriteria #pwindicator .bubble:before {
                right: 100%;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
            }

            .m-pwcriteria #pwindicator .bubble:after, .m-ecriteria #pwindicator .bubble:after {
                border-color: rgba(255,255,255,0);
                border-right-color: #fff;
                border-width: 5px;
                top: 20px;
            }

            .m-pwcriteria #pwindicator .bubble:before, .m-ecriteria #pwindicator .bubble:before {
                border-color: rgba(238,49,36,0);
                border-right-color: #ee3124;
                border-width: 6px;
                top: 19px;
            }

        .m-pwcriteria #pwindicator .meter, .m-ecriteria #pwindicator .meter {
            height: 2px;
            margin: 10px 0 0;
            background: #CBCBCB;
            text-align: left;
        }

            .m-pwcriteria #pwindicator .meter .bar, .m-ecriteria #pwindicator .meter .bar {
                height: 2px;
                text-indent: -8000px;
            }

        .m-pwcriteria #pwindicator .label, .m-ecriteria #pwindicator .label {
            height: 20px;
            width: 100%;
            display: block;
            text-transform: uppercase;
            padding: 0 22px 0 0;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

        .m-pwcriteria #pwindicator.pw-very-weak .bar, .m-ecriteria #pwindicator.pw-very-weak .bar {
            background: #770800;
            width: 20%;
        }

        .m-pwcriteria #pwindicator.pw-weak .bar, .m-ecriteria #pwindicator.pw-weak .bar {
            background: #d9392e;
            width: 40%;
        }

        .m-pwcriteria #pwindicator.pw-ok .bar, .m-ecriteria #pwindicator.pw-ok .bar {
            background: #F0BB1F;
            width: 60%;
        }

        .m-pwcriteria #pwindicator.pw-good .bar, .m-ecriteria #pwindicator.pw-good .bar {
            background: #2e9bd9;
            width: 80%;
        }

        .m-pwcriteria #pwindicator.pw-excellent .bar, .m-ecriteria #pwindicator.pw-excellent .bar {
            background: #7DC347;
            width: 100%;
        }

#m-comfortenergy {
    max-width: 400px;
    margin-left: -200px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    #m-comfortenergy ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        #m-comfortenergy ul .country {
            padding: 8px 0 8px 55px;
            margin: 0;
            float: left;
            width: 100%;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            line-height: 16px;
            background-size: 38px 26px;
            background-position: left center;
            background-repeat: no-repeat;
            color: #000;
        }

            #m-comfortenergy ul .country:hover {
                color: #ee3124;
                text-decoration: none;
            }

            #m-comfortenergy ul .country.uk {
                background-image: url('../img/icon-uk-2x.png');
                margin: 0 0 10px;
            }

            #m-comfortenergy ul .country.ned {
                background-image: url('../img/icon-holland-2x.png');
            }

.m-comingsoon {
    width: 535px;
    margin: 0 auto;
}

    .m-comingsoon .image {
        width: 50%;
        float: left;
        margin-top: -105px;
    }

    .m-comingsoon .text {
        width: 46%;
        margin-left: 4%;
        float: left;
    }

        .m-comingsoon .text p {
            font-weight: 600;
        }

#m-customercare {
    width: 400px;
    margin-left: -200px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    #m-customercare h2 {
        margin-top: 20px;
    }

    #m-customercare .boxes {
        margin: 20px 0;
    }

        #m-customercare .boxes .column1, #m-customercare .boxes .column2 {
            width: 100%;
            float: left;
        }

            #m-customercare .boxes .column1 h3, #m-customercare .boxes .column2 h3 {
                margin-top: 0;
            }

            #m-customercare .boxes .column1 p, #m-customercare .boxes .column2 p {
                margin-bottom: 0;
            }

        #m-customercare .boxes .column1 {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #DFDFDF;
        }

.breadcrumb-before {
    width: 898px;
    margin: 0 auto;
    padding: 15px 20px;
    background: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-left: 1px #EBEBEB solid;
    border-top: 1px #EBEBEB solid;
    border-right: 1px #EBEBEB solid;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

    .breadcrumb-before .back-link {
        margin: 0;
    }

@media (min-width: 768px) {
    .menu {
        display: block !important;
    }
}

@media (max-width: 979px) {
    .breadcrumb-before {
        width: 682px;
    }

    .m-fullbox {
        width: 682px;
    }

        .m-fullbox h1 {
            font-size: 22px;
        }

        .m-fullbox.twocolumn .column1, .m-fullbox.twocolumn .column2 {
            width: 48%;
        }

        .m-fullbox.twocolumn .column1 {
            margin-right: 4%;
        }

            .m-fullbox.twocolumn .column1 input[type="text"], .m-fullbox.twocolumn .column1 input[type="email"], .m-fullbox.twocolumn .column1 input[type="password"], .m-fullbox.twocolumn .column1 input[type="url"], .m-fullbox.twocolumn .column1 button, .m-fullbox.twocolumn .column1 label.select {
                width: 100%;
            }

        .m-fullbox.twocolumn.grantaccess .column1 button {
            width: 100%;
        }

        .m-fullbox .user-acces .button {
            width: auto;
            padding: 10px;
        }

        .m-fullbox .user-acces .email {
            width: 60%;
        }

        .m-fullbox .user-acces .register {
            margin-left: 0;
            width: 60%;
            padding-top: 0;
            text-align: left;
        }

        .m-fullbox .user-access .register {
            text-align: left;
        }

    .m-formholder .m-titlebar.large {
        width: 682px;
    }
}

@media (max-width: 767px) {
    header nav.secondary ul li a {
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
    }

    h1 {
        line-height: 30px;
    }

    h2 {
        line-height: 26px;
    }

    h3 {
        line-height: 24px;
    }

    h4 {
        line-height: 20px;
    }

    .row-fluid .span6 {
        width: 100%;
        margin-left: 0;
    }

    .l-content {
        padding: 0;
    }

        .l-content .back-link {
            margin: 0;
        }

    .breadcrumb-before {
        width: 100%;
        border: 0;
    }

    .breadcrumb {
        margin: 0;
        padding: 10px 20px;
    }

    .pull-left, .pull-right {
        float: left;
        width: 100%;
    }

        .pull-left a.delete, .pull-right a.delete {
            float: right;
        }

        .pull-left.two-button .button, .pull-right.two-button .button, .pull-left.two-button button, .pull-right.two-button button {
            width: 48%;
        }

            .pull-left.two-button .button.grey, .pull-right.two-button .button.grey, .pull-left.two-button button.grey, .pull-right.two-button button.grey {
                float: left;
                margin-right: 4%;
            }

        .pull-left.two-button button, .pull-right.two-button button, .pull-left.two-button .button, .pull-right.two-button .button {
            float: right;
            margin-right: 0;
        }

        .pull-left.single-button .button, .pull-right.single-button .button, .pull-left.single-button button, .pull-right.single-button button {
            width: 100%;
        }

    .m-fullbox.twocolumn .columnfull button, .m-fullbox .twocolumn .columnfull button {
        padding: 10px 0;
        min-width: 0;
    }

    .disable {
        height: 100%;
        width: 100%;
        position: absolute;
        background-color: rgba(255,255,255,.7);
        padding: 0;
        margin: 0;
        overflow: hidden;
        z-index: 9;
        top: 0;
        left: 0;
    }

    .two-button .button, .two-button button {
        width: 48%;
    }

        .two-button .button.grey, .two-button button.grey {
            float: left;
            margin-right: 4%;
        }

    .two-button button, .two-button .button {
        float: right;
        margin-right: 0;
    }

    .l-notice {
        padding: 10px 50px 10px 20px;
        text-align: left;
    }

        .l-notice.comingsoon .title {
            text-indent: 0 !important;
            text-align: center;
        }

    .l-boxcontainer {
        margin: 0;
        border: 0;
    }

    .modal {
        display: none;
        width: 80%;
        margin: 0 auto;
        padding: 0 20px;
        left: 6px;
    }

        .modal.fade.in {
            top: 40px;
        }

        .modal .modal-body {
            max-height: 210px;
        }

        .modal h1 {
            font-size: 20px;
        }

        .modal.terms {
            height: 84%;
        }

            .modal.terms .modal-body {
                height: 73%;
                max-height: none;
            }

    #m-comfortenergy {
        margin-left: auto;
    }

        #m-comfortenergy h1 {
            font-size: 18px;
        }

        #m-comfortenergy .country.ned {
            margin-bottom: 20px;
        }

    #cancel, #delete {
        width: 240px;
        margin-left: -151px;
        left: 50%;
        margin-top: -119px;
    }

        #cancel p, #delete p {
            margin-bottom: 10px;
        }

        #cancel .cancelbuttons .button, #delete .cancelbuttons .button {
            width: 47%;
            min-width: 0;
        }

            #cancel .cancelbuttons .button.grey, #delete .cancelbuttons .button.grey {
                margin-right: 3%;
            }

        #cancel .button.cancel, #delete .button.cancel, #cancel .button.delete, #delete .button.delete {
            margin-left: 0;
        }

    #m-timeout {
        width: 240px;
        margin-left: -151px;
        left: 50%;
        margin-top: -119px;
    }

        #m-timeout .button {
            width: 48%;
        }

            #m-timeout .button:first-child {
                margin-right: 2%;
            }

    #m-locationload {
        margin-left: auto;
    }

    .required {
        position: relative;
        margin-bottom: 10px;
    }

    header {
        height: auto;
        padding-top: 10px;
    }

        header #l-logo {
            margin-bottom: 15px;
            width: 140px;
            margin-top: 5px;
        }

            header #l-logo .e-slogan {
                padding: 0;
                border-left: 0;
            }

        header .l-mobilemenus {
            display: block;
        }

        header nav.secondary {
            float: left;
            width: 100%;
            margin: 0;
        }

            header nav.secondary ul {
                float: right;
            }

                header nav.secondary ul li {
                    width: 100%;
                }

                    header nav.secondary ul li:first-child a {
                        border-right: 0;
                        padding-right: 0;
                        margin-right: 0;
                    }

        header .lang:hover, header .lang.hover {
            margin-left: 0;
        }

    .m-menubutton {
        display: block;
    }

    .menu {
        background: #fff;
        position: absolute;
        left: 0;
        width: 100%;
        display: none;
        z-index: 12;
        top: 147px;
        border-bottom: 2px solid #ee3124;
    }

        .menu nav.primary {
            border: 0;
            background: #fff;
            position: relative;
            margin-left: 0;
            padding: 0;
            -webkit-transition: margin .4s ease-in-out;
            -moz-transition: margin .4s ease-in-out;
            -ms-transition: margin .4s ease-in-out;
            -o-transition: margin .4s ease-in-out;
            transition: margin .4s ease-in-out;
        }

            .menu nav.primary ul li {
                box-sizing: border-box;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                width: 100%;
                font-size: 14px;
                text-align: left;
                padding: 0;
            }

                .menu nav.primary ul li a {
                    margin-right: 0;
                    background: 0;
                    padding: 12px 20px;
                    float: left;
                    width: 100%;
                    color: #000;
                    box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    border-bottom: 1px solid #EBEBEB;
                }

                    .menu nav.primary ul li a:hover {
                        text-decoration: none;
                        color: #ee3124;
                    }

                    .menu nav.primary ul li a.active {
                        color: #ee3124;
                        border-left: 3px solid #ee3124;
                        padding: 12px 20px 12px 17px;
                    }

                .menu nav.primary ul li.more {
                    text-transform: uppercase;
                    padding: 10px 20px;
                    box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    display: block;
                }

            .menu nav.primary.moved {
                margin-left: -100%;
            }

    footer .m-links, footer .m-copyright {
        float: none;
        width: 100%;
        text-align: center;
    }

    button, .button, a.button {
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding: 10px 0;
    }

    label.select {
        width: 100%;
    }

    label.radio {
        margin: 15px 0;
    }

        label.radio.home {
            margin: 15px 0;
        }

    .m-smallbox label {
        font-size: 13px;
    }

    .m-smallbox .forgot {
        text-align: left;
    }

    .m-smallbox .twocolumn .column1, .m-smallbox .twocolumn .column2 {
        width: 48%;
    }

        .m-smallbox .twocolumn .column1 button, .m-smallbox .twocolumn .column2 button {
            padding: 10px 0;
        }

    .m-smallbox .twocolumn .column1 {
        margin-right: 4%;
    }

    .m-smallbox .registerlink {
        padding: 20px;
    }

    .m-smallbox #macid-location .row-fluid .span9 {
        width: 74.46808510638297%;
        float: left;
    }

    .m-smallbox #macid-location .row-fluid .span3 {
        width: 23.404255319148934%;
        margin-left: 2.127659574468085%;
        float: left;
    }

    .m-smallbox form#login button.loading:before {
        margin: 2px 20px 0 -20px;
    }

    .m-fullbox.twocolumn .column1, .m-fullbox.twocolumn .column2 {
        width: 100%;
    }

    .m-fullbox.twocolumn .column1 {
        margin-right: 0;
        margin-bottom: 20px;
    }

        .m-fullbox.twocolumn .column1 label.select {
            width: 100%;
            margin-right: 0;
        }

        .m-fullbox.twocolumn .column1 label.radio {
            width: 100%;
            margin: 10px 0 30px;
        }

            .m-fullbox.twocolumn .column1 label.radio.home {
                margin: 20px 0;
            }

    .m-fullbox.twocolumn .column2.contactnotifications input {
        width: 100%;
        margin-right: 0;
    }

    .m-fullbox.twocolumn .columnfull .pull-left .button.grey, .m-fullbox.twocolumn .columnfull .pull-right .button.grey {
        margin-right: 2%;
    }

    .m-fullbox .user-access .button {
        width: 100%;
    }

    .m-fullbox .account-options {
        margin-top: 10px;
        padding-bottom: 15px;
        float: left;
        width: 100%;
    }

        .m-fullbox .account-options .button {
            width: 100%;
            float: left;
            display: inline-block;
            margin: 0;
        }

    .m-fullbox.support {
        margin: 20px auto 0;
        padding: 20px;
    }

        .m-fullbox.support h2 {
            padding: 0 0 0 45px;
            background: 0;
            margin: 8px 0 0;
            font-weight: 400;
            font-size: 20px;
            line-height: 22px;
        }

        .m-fullbox.support .button {
            margin-top: 20px;
        }

    .m-smallbox, .m-largebox, .m-formholder .m-titlebar, .m-formholder .m-titlebar.small, .m-formholder .m-titlebar.large, .m-mediumbox, .m-fullbox {
        width: 100%;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

        .m-smallbox form, .m-largebox form, .m-formholder .m-titlebar form, .m-formholder .m-titlebar.small form, .m-formholder .m-titlebar.large form, .m-mediumbox form, .m-fullbox form {
            padding: 20px;
        }

    .m-formholder .m-largebox.confirmation {
        min-height: 0;
    }

        .m-formholder .m-largebox.confirmation h2 {
            font-size: 18px;
        }

    .m-formholder .m-titlebar {
        padding: 10px 20px;
    }

    .m-formholder .contactnotifications input {
        width: 100%;
    }

        .m-formholder .contactnotifications input.error {
            margin-bottom: 0;
        }

    .m-formholder .contactnotifications div.error {
        margin: 0 0 10px;
    }

    .m-formholder .m-termsconditions label {
        font-size: 13px;
        width: auto;
        margin: 3px 5px 0 0;
    }

        .m-formholder .m-termsconditions label.checkbox-left:after {
            top: 0;
        }

    .m-formholder .m-termsconditions span.terms {
        font-size: 13px;
    }

    .m-formholder .locationtype {
        margin-bottom: 0;
    }

    #m-submitstatus {
        left: 50%;
        width: 234px;
        margin-left: -138px;
    }

        #m-submitstatus h1 {
            font-size: 20px;
        }

    #pwindicator .bubble {
        right: 0;
        max-width: 300px;
        top: 40px;
        left: auto;
    }

        #pwindicator .bubble:after, #pwindicator .bubble:before {
            bottom: 100%;
            right: auto;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
        }

        #pwindicator .bubble:after {
            border-color: rgba(255,255,255,0);
            border-bottom-color: #fff;
            border-width: 5px;
            border-right-color: none;
            right: 5px;
            top: auto;
            margin-left: -5px;
        }

        #pwindicator .bubble:before {
            border-color: rgba(238,49,36,0);
            border-bottom-color: #ee3124;
            border-width: 6px;
            border-right-color: none;
            right: 4px;
            top: auto;
            margin-left: -6px;
        }

    .m-mediumbox.warning .textcontainer, .m-mediumbox.warning .greybox {
        padding: 0 20px;
    }

        .m-mediumbox.warning .textcontainer .span6, .m-mediumbox.warning .greybox .span6 {
            width: 48%;
            margin-right: 0;
            float: left;
        }

            .m-mediumbox.warning .textcontainer .span6:first-child, .m-mediumbox.warning .greybox .span6:first-child {
                margin-right: 3%;
            }

    .m-mediumbox .twocolumn .column1 {
        width: 48%;
        float: left;
        margin-right: 3%;
    }

    .m-mediumbox .twocolumn .column2 {
        width: 48%;
        float: left;
        margin-top: 30px;
    }

    .m-twobuttons .pull-left, .m-twobuttons .pull-right {
        width: 48%;
    }

    .m-twobuttons .pull-left {
        margin-right: 4%;
    }

    .m-locations .locationgroup .e-location {
        padding: 20px 85px 18px 60px;
    }

        .m-locations .locationgroup .e-location .alert {
            text-indent: -8000px;
            position: absolute;
            right: 60px;
            top: 50%;
            margin-top: -8px;
        }

    .m-locations .locationgroup .empty .button {
        margin: 15px 0 0;
    }

    .m-locations.empty {
        min-height: 180px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .m-locations.empty p {
            line-height: 22px;
        }

    .m-pwcriteria, .m-ecriteria {
        padding: 10px 0 0;
    }

    .m-fullbox.twocolumn .columnfull .pull-left button, .m-fullbox .twocolumn .columnfull .pull-left button, .m-fullbox.twocolumn .columnfull .pull-right button, .m-fullbox .twocolumn .columnfull .pull-right button, .m-fullbox.twocolumn .columnfull .pull-left .button, .m-fullbox .twocolumn .columnfull .pull-left .button, .m-fullbox.twocolumn .columnfull .pull-right .button, .m-fullbox .twocolumn .columnfull .pull-right .button {
        margin: 0 0 10px;
    }

    .m-fullbox.twocolumn.grantaccess .user-access .account-break {
        padding: 0;
    }

        .m-fullbox.twocolumn.grantaccess .user-access .account-break label.checkbox-left {
            margin: 0;
            padding: 15px 0 15px 22px;
            width: 100%;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

            .m-fullbox.twocolumn.grantaccess .user-access .account-break label.checkbox-left:after {
                top: 50%;
                margin-top: -6px;
            }

    .m-fullbox.twocolumn .columnfull p.no-devices, .m-fullbox .twocolumn .columnfull p.no-devices {
        padding: 0 0 18px;
        margin: 10px 0 15px;
    }

        .m-fullbox.twocolumn .columnfull p.no-devices .button, .m-fullbox .twocolumn .columnfull p.no-devices .button {
            margin-top: 15px;
        }

    .m-locations.empty img {
        margin: 20px auto 30px;
    }

    #cookieNotice p {
        line-height: 32px;
    }

        #cookieNotice p .button {
            margin: 0 20px 5px 5px;
            font-size: 12px;
            padding: 5px 15px;
            float: none;
            width: auto;
        }

        #cookieNotice p a {
            font-size: 12px;
        }

    .m-comingsoon {
        width: 100%;
        margin: 0 auto;
    }

        .m-comingsoon .image {
            width: 240px;
            margin: 20px auto;
            float: none;
        }

        .m-comingsoon .text {
            width: 100%;
            margin: 0 0 20px;
            float: none;
            text-align: center;
        }

            .m-comingsoon .text p {
                font-weight: 600;
            }

    #m-customercare {
        width: 80%;
        margin-left: -40%;
        left: 50%;
        top: 30px;
        height: 300px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

        #m-customercare .modal-body {
            max-height: 280px;
        }

        #m-customercare .boxes {
            margin: 20px 0;
        }

            #m-customercare .boxes .column1, #m-customercare .boxes .column2 {
                width: 100%;
                float: left;
            }

            #m-customercare .boxes .column1 {
                margin-bottom: 20px;
                padding-bottom: 20px;
                border-right: 0;
                border-bottom: 1px solid #DFDFDF;
            }
}

@media (max-width: 500px) {
    .m-fullbox .account-options .button {
        width: 100%;
    }

        .m-fullbox .account-options .button:first-child {
            margin-right: 0;
        }

    .l-content.landing .boxes {
        width: 100%;
    }

        .l-content.landing .boxes .box.first {
            margin: 0 auto 20px;
            float: none;
        }

        .l-content.landing .boxes .box {
            margin: 0 auto;
            float: none;
            width: 80%;
        }

            .l-content.landing .boxes .box .country {
                width: 100%;
            }

                .l-content.landing .boxes .box .country.uk, .l-content.landing .boxes .box .country.usa {
                    margin: 7px 0 0;
                }
}

@media (max-width: 479px) {
    .m-mediumbox .appstores .column1 {
        width: 100%;
    }

    .m-mediumbox .appstores .column2 {
        margin-right: 3%;
        width: 48%;
    }

    .m-mediumbox .appstores .column3 {
        width: 48%;
    }

    .l-content.landing {
        padding: 0 0 30px;
    }

        .l-content.landing .title h1 {
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 280px;
            margin-top: 0;
        }
}

@media (max-width: 400px) {
    .m-loginbox form, .m-largebox form, .m-formholder .m-titlebar form, .m-loginbox .registerlink, .m-largebox .registerlink, .m-formholder .m-titlebar .registerlink {
        padding: 20px;
    }

    .m-smallbox h1 {
        font-size: 20px;
    }

    footer p a {
        font-size: 11px;
    }
}
/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */
