/*
Theme Name: Base Theme
Version: 1.0
*/

body {
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    border: 1px solid #d9d7d5;
    border-radius: 0;
    padding: 8px 15px;
    line-height: normal;
    min-width: 200px;
    -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #555;
}

.btn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    padding: 6px 12px;
    margin: 0;
    background-color: #EEE;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    color: #333;
    text-decoration: none;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: none;
    color: #333;
    text-decoration: none;
    background-color: #e6e6e6;
    border-color: #555;
}

.container {
    width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}


/*----- Custom Checkbox & Radio Start -----*/
.custom-radio,
.custom-check {
    position: relative;
    display: inline-block;
}
.custom-radio [type="radio"],
.custom-check [type="checkbox"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
}
.custom-radio label,
.custom-check label {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 0;
    padding-left: 36px;
    line-height: 22px;
    font-weight: normal;
}
.custom-radio label::before,
.custom-check label::before,
.custom-radio label::after,
.custom-check label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    text-align: center;
    color: #AAA;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.custom-radio label::before,
.custom-check label::before {
    border: 1px solid #b7b7b7;
}
.custom-check label::after {
    /*content: "^";*/
    /*font-family: 'FontAwesome';*/
    /*font-size: 15px;*/
    width: 12px;
    height: 12px;
    background-color: #AAA;
    top: 5px;
    left: 5px;
}
.custom-radio label::after {
    width: 12px;
    height: 12px;
    background-color: #AAA;
    top: 5px;
    left: 5px;
}
.custom-radio label::before,
.custom-radio label::after {
    border-radius: 50%;
}
.custom-radio [type="radio"]:not(:checked) + label::after,
.custom-check [type="checkbox"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}
.custom-radio [type="radio"]:checked + label::after,
.custom-check [type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}
.custom-radio [type="radio"]:disabled + label::before,
.custom-check [type="checkbox"]:disabled + label::before {
    background-color: #9e0039;
    box-shadow: inset 0 0 8px 0 #640024;
}
.custom-radio [type="radio"]:focus + label::before,
.custom-check [type="checkbox"]:focus + label::before {
    border-color: #555 !important;
}

/*----- Custom Checkbox & Radio End -----*/


/*----- Custom Select Start -----*/
select {
    background-image: url(images/caret.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.ie-browser select {
    background-image: none;
}
/*----- Custom Select End -----*/

/*----- Custom Upload Start -----*/
label.lbl-upload input[type="file"] {
    position: absolute;
    left: -9999px;
}
.lbl-upload {
    display: inline-block;
    background-color: #EAEAEA;
    cursor: pointer;
}
.lbl-upload :invalid + span {
    color: #000;
}
.lbl-upload :valid + span {
    color: #4A4;
}
.upload-file {
    margin-top: 10px;
}
/*----- Custom Upload End -----*/


.list-unstyled {
    list-style: none;
    padding-left: 0;
}


/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
    color: #AAA;
}

:-moz-placeholder {
    color: #AAA;
}

::-moz-placeholder {
    color: #AAA;
}

:-ms-input-placeholder {
    color: #AAA;
}

