﻿/*General styles*/
.fancy-textbox-wrapper
{
    position: relative;
    /*margin: 30px 10px;*/
}


/* textbox */
label.label
{
    position: absolute;
    display: inline-block;
    padding: 7px 10px !important;
    font-size: 14px;
    font-weight: bold;
    background: #81dad8;
	 background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3);
	border: 2px solid #fff;
    color: #fff;
    outline: 0;
    top: 0;
    left: 86px;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -moz-transition: all linear .3s;
    -o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
    transition: all linear .3s;
	
    -webkit-text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
    -moz-text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
    -o-text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
    text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
}

/**************************************
    gate
/**************************************/
.fancy-textbox-wrapper.gate label
{
    -webkit-transform-origin: left bottom;
    -moz-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    -o-transform-origin: left bottom;
    transform-origin: left bottom;
    z-index: 100;
}

