﻿/* BUTTONS */
.grey-action-button {
    color: #e8e8e8;
    background-color: #333333;
    display: inline-block;
    font-size: 11px;
    height: 48px;
    line-height: 48px;
    width: 152px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

    .grey-action-button:hover {
        background-color: #424242;
        cursor: pointer;
    }

.btn-success/*green*/ {
    background-color: #79BA11;
    /*padding: 10px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    margin: 30px 0;*/
}

    .btn-success/*green*/:hover {
        background-color: #90C322;
    }

/* -------------------------------------------- */
.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
 background-color: #79BA11!important; 

}
.menu {
    margin: 15px 30px;
    position: relative;
    background: none;
    border: none;
    white-space: nowrap;
    text-indent: 100%;
    padding: 0px;
    overflow: hidden;
    height: 14px;
    width: 15px;
    -webkit-transform: scale(1.4);
    z-index: 1000;
}

    .menu.active, .menu:focus {
        outline: none;
    }

    .menu:before, .menu:after, .menu i {
        content: '';
        display: block;
        position: absolute;
        width: 15px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        -webkit-transition: -webkit-transform 0.2s ease-out, top 0.2s ease-out, bottom 0.2s ease-out, opacity 0.2s ease-out, background-color 0.2s ease-out;
        -webkit-transform-origin: 0 0;
    }

    .menu:before {
        top: 2px;
    }

    .menu:after {
        bottom: 2px;
        -webkit-transform-origin: 0 100%;
    }

    .menu i {
        top: 50%;
        margin-top: -1px;
    }

    .menu:hover:before {
        top: 0px;
    }

    .menu:hover:after {
        bottom: 0px;
    }

    .menu.active:before, .menu.active:after, .menu.active i {
        background: #fff;
    }

    .menu.active:before {
        -webkit-transform: rotate(45deg);
        left: 1px;
        top: 0px;
        width: 18px;
    }

    .menu.active:after {
        -webkit-transform: rotate(-45deg);
        left: 1px;
        bottom: 0;
        width: 18px;
    }

    .menu.active i {
        -ms-opacity: 0;
        opacity: 0;
    }

/*----------------------*/
/*------ BUTTONS -------*/
/*----------------------*/
.btn {
    -ms-border-radius: 2px !important;
    border-radius: 2px !important;
    border-color: transparent !important;
    /*font-family: "Relative Medium";*/
    font-family: "Open Sans";
    font-weight: 600;
    text-transform: uppercase;

    transition: background-color linear .1s;
}

/*----------------------*/
/*---- INPUT FIELDS ----*/
/*----------------------*/
input, textarea {
    /*font-family: "Relative Book";
    padding: 5px;
    border: 0;
    background: #f5f5f5;
    margin: 5px;
        TODO ANDREAS KOSER SEG!
    */
    /*font-family: "Relative Book" !important;*/
    font-family: "Open Sans" !important;
    background: #f5f5f5;
    background: rgba(245, 245, 245, 0.23);
    margin: 5px;
    border: 1px rgba(232, 232, 232, 0.5) solid;
    padding: 13px !important;
    -webkit-transition: border linear .1s,box-shadow linear .1s;
    -moz-transition: border linear .1s,box-shadow linear .1s;
    -ms-transition: border linear .1s,box-shadow linear .1s;
    -o-transition: border linear .1s,box-shadow linear .1s;
    transition: border linear .1s,box-shadow linear .1s;
    padding-bottom: 1px;
}

    input:focus, textarea:focus {
        outline: none;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        border-bottom: 2px solid #5cb85c;
            padding-bottom: 0px;
    }

select {
    padding: 14px;
    border: 0;
    background: #f5f5f5;
}

    select:focus {
        outline: none;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        border-top: 2px solid #5cb85c;
    }

h3.input-header {
    /*font-family: "Relative Bold";*/
    font-family: "Open Sans";
    text-transform: uppercase;
    font-size: 1em;
    margin-bottom: 2px;
    margin-left: 10px;
}


@media (min-width: 768px) {
    .menu:before, .menu:after, .menu i {
        background: #000;
    }
}