/*
CONTROLS
*/

.stv-nosel {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
}

input.stv {
    margin: 0px;
    font-family: inherit;
}

label.stv {
    display: inline-block;
    color: #666;
    line-height: 21px;
    margin-right: 5px;
}


/*label::after {*/


/*content: ':'*/


/*}*/

label.stv-btn::after {
    content: none;
}

div.stv-lbl,
div.stv-txt {
    display: block;
    float: left;
    box-sizing: border-box;
    line-height: 21px;
    border: 1px solid #ccc;
    padding: 0px 5px;
    background-color: #f2f2f2;
    /*font-size: inherit;*/
}

div.stv-txt {
    border-color: transparent;
    background-color: transparent;
}

label.stv-btn > input[type=radio],
label.stv-btn > input[type=checkbox] {
    display: none;
}

input.stv {
    width: 100%;
}

.stv-btn,
input.stv[type=text],
input.stv[type=email],
input.stv[type=password],
input.stv[type=file],
input.stv[type=number],
input.stv[type=color],
label.stv-btn > input[type=radio] + span,
label.stv-btn > input[type=checkbox] + span {
    display: block;
    position: relative;
    outline: transparent solid 0px;
    box-sizing: border-box;
    line-height: 21px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0px 5px;
    background-color: #fff;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    height: 23px;
}

input.stv[type=text],
input.stv[type=email],
input.stv[type=password],
input.stv[type=file],
input.stv[type=number],
input.stv[type=color]{
    height: auto;
}

input.stv[type=number] {
    padding-right: 0px;
}

input.stv[type=color] {
    padding: 0px;
}

.stv-btn {
    cursor: pointer;
}
.stv-btn.stv-blue {
    background-color: #188ead !important;
    color: #fff !important;
}
.stv-btn.stv-red {
    background-color: #bd1a1a !important;
    color: #fff !important;
}

.stv-btn:hover {
    background-color: #f5f5f5;
}
.stv-btn.stv-blue:hover {
    background-color: #20aed4 !important;
}
.stv-btn.stv-red:hover {
    background-color: #db1e1e !important;
}

.stv-btn.stv-btn-shdw {
    text-align: center;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s;
}

.stv-btn.stv-btn-big {
    height: 50px;
    line-height: 50px;
    padding: 0px 50px;
}

.stv-btn.stv-btn-shdw:hover {
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
}

.stv-btn:active {
    background-color: #ebebeb;
}
.stv-btn.stv-blue:active {
    background-color: #1e7d96 !important;
}
.stv-btn.stv-red:active {
    background-color: #ac2222 !important;
}

.stv-btn:disabled {
    background-color: #D3D3D3;
}

.stv-btn[data-checked],
label.stv-btn > input[type=radio]:checked + span,
label.stv-btn > input[type=checkbox]:checked + span {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    background-color: #ebebeb;
}

label.stv-btn > input[type=radio] + span:hover,
label.stv-btn > input[type=checkbox]:hover + span:hover {
    background-color: #ebebeb;
}

input.stv[type=text],
input.stv[type=email],
input.stv[type=number],
input.stv[type=color],
input.stv[type=password] {
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

textarea.stv,
input.stv[type=text]:-moz-ui-invalid,
input.stv[type=email]:-moz-ui-invalid,
input.stv[type=number]:-moz-ui-invalid,
input.stv[type=color]:-moz-ui-invalid,
input.stv[type=password]:-moz-ui-invalid {
    box-shadow: none;
}

textarea.stv:focus,
input.stv[type=text]:focus,
input.stv[type=email]:focus,
input.stv[type=number]:focus,
input.stv[type=color]:focus,
input.stv[type=password]:focus {
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

textarea.stv:invalid,
input.stv[type=text]:invalid,
input.stv[type=email]:invalid,
input.stv[type=number]:invalid,
input.stv[type=color]:invalid,
input.stv[type=password]:invalid {
    border-color: rgb(232, 155, 52);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(232, 155, 52, .6);
}

input.stv[type=text]:invalid:focus,
input.stv[type=email]:invalid:focus,
input.stv[type=number]:invalid:focus,
input.stv[type=color]:invalid:focus,
input.stv[type=password]:invalid:focus {
    border-color: #e32b2b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(227, 43, 43, .6);
}

input.stv[type=text].error,
input.stv[type=email].error,
input.stv[type=number].error,
input.stv[type=color].error,
input.stv[type=password].error {
    border-color: #e32b2b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(227, 43, 43, .6);
}

textarea.stv {
    display: block;
    position: relative;
    outline: 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: inherit;
}

.stv-zoom-bar {
    position: relative;
    width: 120px;
    height: 23px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #FFFFFF;
}

.stv-zoom-bar > div {
    background-color: #BBB;
    box-sizing: border-box;
    height: 100%;
    transition: all 0.2s;
}

.stv-tooltitle {
    text-align: center;
    font-size: 25px;
    color: #666;
    margin-bottom: 10px;
}


/*
    Notes
    <div class="stv-note stv-note-warn">
        <div>
        </div>
        <div>
        </div>
    </div>
*/

.stv-note {
    position: relative;
    padding: 10px 10px 10px 40px;
    border-left: 5px solid transparent;
    color: #444;
}

.stv-note::after {
    position: absolute;
    left: 10px;
    top: 10px;
    box-sizing: border-box;
    font-family: FontAwesome;
    font-size: 16px;
}

.stv-note-warn {
    border-left-color: #e9d295;
    background-color: #faf3d7;
}

.stv-note-warn::after {
    content: '\f071';
    color: #bf9947;
}

.stv-note-info {
    border-left-color: #95c9e9;
    background-color: #e6f1f4;
}

.stv-note-info::after {
    content: '\f05a';
    color: #4790bf;
}

.stv-note-error {
    border-left-color: #e99595;
    background-color: #f4e6e6;
}

.stv-note-error::after {
    content: '\f06a';
    color: #bf4747;
}

.stv-note-tip {
    border-left-color: #959595;
    background-color: #e4e4e4;
}

.stv-note-tip::after {
    content: '\f249';
    color: #474747;
}
.stv-note-step {
    border-left-color: #959595;
    background-color: #e4e4e4;
}

.stv-note-step::after {
    content: '\f024';
    color: #474747;
}


/*
    Top Message
*/

.stv-msg-hidden {
    position: fixed;
    z-index: 50000;
    background: white;
    border: 1px solid #333;
    margin: 5px;
    min-width: 150px;
    max-width: 200px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
    /*top: -200px;*/
    top: 0px;
    opacity: 0;
    transition: opacity 0.4s;
}

.stv-msg-hidden>:first-child {
    padding: 5px;
    color: white;
    background-color: #333;
}

.stv-msg-hidden>:last-child {
    padding: 7px;
    color: #333;
    background-color: white;
}

.stv-msg-shown {
    /*top: 0px;*/
    opacity: 1;
    transition: opacity 1s;
}
