﻿/***********************************************************************/
/*TextBox Control*/

.textBox {
    width: 100%;
    border: 1px solid #cacaca;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    text-indent: 7px;
    color: #656565;
    /*height:28px;
    line-height:28px;*/
    
    padding: 9px 0px 9px;
    font-size: 12px;
    margin-bottom: 10px;
}
.textBox::-webkit-input-placeholder {
    color: #cacaca;
    font-family: 'Rockwell W01 Bold', Georgia, serif;
}
.textBox:-moz-placeholder {
    color: #cacaca;
    font-family: 'Rockwell W01 Bold', Georgia, serif;
}
.textBox::-moz-placeholder {
    color: #cacaca;
    font-family: 'Rockwell W01 Bold', Georgia, serif;
}
.textBox:-webkit-input-placeholder {
    color: #cacaca;
    font-family: 'Rockwell W01 Bold', Georgia, serif;
}
.textBox::-webkit-input-placeholder {
    color: #cacaca;
    font-family: 'Rockwell W01 Bold', Georgia, serif;
}
.textBox:-ms-input-placeholder {
    color: #cacaca;
    font-family: 'Rockwell W01 Bold', Georgia, serif;
}
/***********************************************************************/
/***********************************************************************/
/*Label Control*/

.label {
    /*color:#1a1a1a;*/
    
    font-size: 11px;
    font-weight: bold;
    text-align: left;
    display: inline-block;
    margin-left: 2px;
}
/***********************************************************************/
/***********************************************************************/
/*Button Control*/

.button {
    max-width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    padding: 2px 10px 2px 10px;
    text-decoration: none;
}
.buttonPopup {
    width: 70px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    display: block;
    position: relative;
    text-align: center;
    padding: 3px 10px 3px 10px;
    display: inline-block;
    text-decoration: none;
}
/***********************************************************************/
/***********************************************************************/
/*Dropdown Control*/

.wrapper-dropdown-2 {
    /* Size and position */
    
    position: relative;
    /* Enable absolute positionning for children and pseudo elements */
    
    width: 200px;
    margin: 0 auto;
    padding: 10px 15px !Important;
    /* Styles */
    
    background: #fff;
    border-left: 5px solid grey;
    cursor: pointer;
    outline: none;
}
.wrapper-dropdown-2:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: grey transparent;
}
.wrapper-dropdown-2 .dropdown {
    /* Size & position */
    
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    padding-left: 0px;
    max-height: 300px;
    overflow-y: scroll;
    /* Styles */
    
    background: white;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    list-style: none;
    /* Hiding */
    
    opacity: 0;
    pointer-events: none;
}
.wrapper-dropdown-2 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    border-left: 5px solid;
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.wrapper-dropdown-2 .dropdown li:nth-child(1) a {
    border-left-color: #00ACED;
}
.wrapper-dropdown-2 .dropdown li:nth-child(2) a {
    border-left-color: #4183C4;
}
.wrapper-dropdown-2 .dropdown li:nth-child(3) a {
    border-left-color: #3B5998;
}
.wrapper-dropdown-2 .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}
/* Hover state */

.wrapper-dropdown-2 .dropdown li:hover a {
    color: grey;
}
/* Active state */

.wrapper-dropdown-2.active:after {
    border-width: 0 6px 6px 6px;
}
.wrapper-dropdown-2.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}
/* No CSS3 support */

.no-opacity .wrapper-dropdown-2 .dropdown,
.no-pointerevents .wrapper-dropdown-2 .dropdown {
    display: none;
    opacity: 1;
    /* If opacity support but no pointer-events support */
    
    pointer-events: auto;
    /* If pointer-events support but no pointer-events support */
}
.no-opacity .wrapper-dropdown-2.active .dropdown,
.no-pointerevents .wrapper-dropdown-2.active .dropdown {
    display: block;
}
/***********************************************************************/

