/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 , .wrap-input100-error{
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.wrap-input100{
    background-color: #fff;
    border: 1px solid #e6e6e6;
}

.wrap-input100-error {
    /*background-color: #d82c2e;*/
    border: 1px solid #c7254e;
}

.slides-sm{
    height: 150px;
}

.slides-md{
    height: 400px;
}

.wrap-input100-error .input100{
    /*color: white;*/
}
.error-message{
    display: block;
    /* margin-top: 5px;
     margin-bottom: 10px;*/
    color: #d82c2e;
}

input,select,textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus ,select:focus{
    border-color: transparent !important;
}

/*---------------------------------------------*/
textarea.input100,input.input100,select.input100 {
    /**/
    /*font-family: "Raleway-Regular";*/
    color: #555555;
    line-height: 1.2;
    /*font-size: 12px;*/
    display: block;
    width: 100%;
    /*background: transparent;*/
    padding: 0 15px 0 15px;
    border-radius: 5px;
}

textarea.input100{
    height: auto;
}

input.input100 , select.input100{
    height: 40px;
}
/*------------------------------------------------------------------
[ Focus Input ]*/
.focus-input100,  .focus-input100-error{
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;

    border-radius: 5px;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}
.focus-input100-error{
    border: 1px solid #d82c2e;
}

.focus-input100 {
    border: 1px solid #57b846;
}

.input100:focus + .focus-input100,.input100:focus + .focus-input100-error {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


.eff-focus-selection {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
    display: none;
}

.label-checkbox100 {

    font-size: 13px;
    color: #999999;
    line-height: 1.4;

    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

.label-checkbox100::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 13px;
    color: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #e6e6e6;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
    color: #57b846;
}

.txt1 {
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
    text-transform: uppercase;
}

.btn-show-pass{
    top: 0; right: 5px;
}
