/*  ----------  GENERAL  ----------  */


    input[type="text"], input[type="email"], input[type="password"], input[type="button"], input[type="submit"], input[type="checkbox"], input[type="radio"], select, textarea, button, .Button {
        margin: 0;
        padding: 0;
        outline: 0;
        border: 0;
        font-family: 'PT Sans Narrow', 'Arial', 'Verdana';
        line-height: 1;
        color: #888;
        transition: all 0.25s;
    }


    input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    }

    button { outline: 0 none; }
    button::-moz-focus-inner { border: 0; }

/*  ----------  TEXT & TEXTAREA  ----------  */

    input[type="text"], input[type="email"], input[type="password"], textarea {
        width: 100%;
        height: 44px;
        padding: 0 10px;
        border: 1px solid rgba(255,255,255,0.5);
        border: 1px solid rgba(28, 228, 174, 1);
        background-clip: padding-box;
        border-radius: 3px;
        background-color: #fff;
        font-size: 18px;
    }

    textarea {
        height: 88px;
        padding: 10px;
        line-height: 1.2em;
    }

/*  ----------  SELECT  ----------  */

    select {
        width: 100%;
        height: 44px;
        padding: 0 42px 0 10px;
        border: 1px solid rgba(28, 228, 174, 1);
        background-clip: padding-box;
        border-radius: 3px;
        background-color: #fff;
        font-size: 18px;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-indent: 1px;
        text-overflow: '';
        background-color: #fff;
        background-image: url('image/select.png');
        background-repeat: no-repeat;
        background-position: right 4px center;
        background-size: 35px;
    }

/*  ----------  CHECKBOX  ----------  */

    .Checkbox input[type="checkbox"]{
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        margin: 0;
    }

    .Checkbox {
        display: inline-block;
        position: relative;
        width: 26px;
        height: 26px;
        border: 1px solid #1CE4AE;
        border-radius: 3px;
        margin: 0;
    }

    .Checkbox.Checked{
        background: #1ce4ae url('image/checked.png') no-repeat center;
        background-size: contain;
    }

/*  ----------  BUTTON  ----------  */

    .Button {
        display: inline-block;
        height: 44px;
        min-width: 188px;
        border-radius: 3px;
        line-height: 42px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 24px;
        margin: 0 10px;
        padding: 0 15px;
        cursor: pointer;
        background-clip: padding-box;
        border: 1px solid rgba(28,228,174,0.6);
        background-repeat: no-repeat;
        background-position: right 10px center;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .Button:disabled {
        background-color: #d3d7da !important;
        border: 1px solid #b8bcbf !important;
        cursor: default !important;
    }

    .Button.White {
        background-color: #fff;
        color: #1ce4ae;
    }

    .Button.Green {
        background-color: #1ce4ae;
        color: #fff;
    }
    
    .Button.Blue {
        background: #52c3f5;
        color: #fff;
    }

    .Button.Transparent {
        background-color: transparent;
        border: 1px solid rgba(255,255,255,0.5);
        color: #fff;
    }

    .Button.IconButton {
        min-width: 0;
        text-indent: -9999px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px auto;
        padding: 0;
    }

    .Button.SearchIcon {
        background-image: url("image/button-search.png");
    }
