.orderform {
    overflow: visible;
    position: relative;
    /* max-width: 250px; */
    margin: 0 auto;
}

.orderform input {
    /* height: 30px; */
    border: 1px solid #1F9DD3;
    padding: 3px;
    /* width: 97%; */
    margin: 0 auto 10px;
    display: block;
    padding-left: 10px;
}

.orderform input:focus {
    box-shadow: 0 0 5px red;
    -webkit-box-shadow: 0 0 5px red;
    -moz-box-shadow: 0 0 5px red;
    border: 1px solid red;
}

.tip {
    position: absolute !important;
    width: 150px;
    z-index: 999;
}

.toolTip {
    background: red;
    border: thin solid red;
    color: #fff;
    left: 0px;
    margin-top: 42px;
    padding: 5px;
    position: absolute;
    text-align: center;
    width: 150px;
    z-index: 10;
    border-radius: 4px;
    font: bold 11px 'verdana';
}

.toolTipArrow,
.toolTipArrow:before {
    border-color: transparent transparent red transparent;
    border-style: solid;
    border-width: 11px;
    height: 0px;
    width: 0px;
    position: absolute;
    top: -20px;
    left: 20px;
    display: block;
    content: "\00a0";
}

.toolTipArrow:before {
    border-width: 12px;
    top: -11px;
    left: -12px;
}


/*//////////////////////////////////////////////// PRICES ////////////////////////////////////////////////////*/

.prices {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 300px;
    padding: 5px;
    display: table;
    margin: 10px auto;
    text-align: center;
}

.prices .red {
    color: red;
    font-weight: bold;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.prices .green {
    color: green;
    font-weight: bold;
    font-size: 1.5em;
}

.prices p {
    margin: 0 auto;
    line-height: 1.4em;
}


/*///////////////////////////////////////// END PRICES /////////////////////////////////////////*/