﻿/****
    FORM TABS
****/
pre {
    background-color: #666;
    border: none !important;
    border-radius: 8px !important;
    color:#FFF;
}

.panel {
    background-color: transparent;
}

.wizard p:after {
    height: 42px;
}

/****
    INPUT ELEMENTS
****/
input,
select,
.select2-chosen {
    border-radius: 8px !important;
}

    input[type=text],
    input[type=number],
    input[type=password],
    textarea,
    select {
        border: none !important;
        box-shadow: none !important;
        background-color: #f2f2f2 !important;
        -webkit-transition: all .1s ease-in-out;
        -moz-transition: all .1s ease-in-out;
        -ms-transition: all .1s ease-in-out;
        -o-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out;
    }

        input[type=text]:focus,
        input[type=number]:focus,
        input[type=password]:focus,
        textarea:focus,
        select:focus,
        .form-control:focus {
            -webkit-transition: all .1s ease-in-out;
            -moz-transition: all .1s ease-in-out;
            -ms-transition: all .1s ease-in-out;
            -o-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out;
            background-color: #d9d9d9 !important;
        }

    input::-webkit-input-placeholder {
        color: #a6a6a6 !important;
    }

    input:-ms-input-placeholder {
        color: #a6a6a6 !important;
    }

    input::placeholder {
        color: #a6a6a6 !important;
    }


    input[type='checkbox']:after {
        line-height: 1.5em;
        content: '';
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-top: -2px;
        margin-left: -2px;
        border-radius: 50%;
        background: rgb(224,224,224);
        -webkit-transition: all .1s ease-in-out;
        -moz-transition: all .1s ease-in-out;
        -ms-transition: all .1s ease-in-out;
        -o-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out;
    }


    input[type='checkbox']:checked:after {
        background-color: #3ED715;
    }

    .file-upload {
        margin: 0 auto;
    }


/***
* CUSTOM SELECT CLASS
***/

.select2-chosen,
.select2-choice {
    background-color: #f2f2f2;
    margin: 0 -2px 0 0 !important;
}

.select2-container .select2-choice {
    border: none;
    background-color:transparent;
}

    .select2-container .select2-choice .select2-arrow { /* left border overflow parent element fix */
        height: 90%;
    }

.select2-input {
    margin: 0 -10px !important; /* fixes new line if longer than container */
}

.select2-drop-active {
    border: none !important;
    box-shadow: none !important;
}

.select2-drop.select2-drop-above.select2-drop-active {
    background-color: #f2f2f2;
    border: none !important;
    box-shadow: none !important;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    background-color: #f2f2f2;
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

.select2-drop,
.select2-choice,
.select2-choice:focus {
    background-color: #d9d9d9;
    border-radius: 8px;
    border: none;
    box-shadow: none;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 0;
}

.select2-drop-active > .select2-search {
    margin: 4px 0 4px 10px
}

input.disable-input {
    opacity: 0.6;
    pointer-events: none !important;
}

input.display-data {
    background-color: transparent !important;
}