/*********************** Custom CSS for WooCommerce plugin ***********************/

/*Forms*/
.woocommerce form .form-row {
    padding: 0;
    margin: 0px 0px 25px 0px;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    padding: 8px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #ddd;
    background-color: #fff;

}

/*Select 2*/
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0px;
    height: auto;
    margin: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 8px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #231f20;
    font-weight: 300;
    ;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #231f20;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    top: 0px;
    right: 0px;
    bottom: 0;
    margin: auto;
    width: 30px;
}


/*Butons*/
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-family: 'Roboto Slab', sans-serif;
    outline: 0;
    text-align: center;
    padding: 10px 26px;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    z-index: 2;
    border: 0;
    text-transform: lowercase;
    font-weight: 400;
    display: inline-block;
    position: relative;
    text-decoration: none;
    -webkit-appearance: none;
    background-color: #231f20;
    color: #fff;

    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;


}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #d19c4a;
    color: #fff;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

/*Validations*/
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 20px 20px 20px 55px;
    margin: 0px 0px 25px 0px;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: 3px solid #ca9648;
}

.woocommerce-error {
    border-top-color: #db0000;
}

.woocommerce-info {
    border-top-color: #3498db;
}

.woocommerce-message {
    border-top-color: #2ecc71;
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
    font-size: 14px;
    line-height: 18px;
    padding: 4px 0px;
}

.woocommerce-error li:first-child,
.woocommerce-info li:first-child,
.woocommerce-message li:first-child {
    padding-top: 0px;
}

.woocommerce-error li:last-child,
.woocommerce-info li:last-child,
.woocommerce-message li:last-child {
    padding-bottom: 0px;
}


.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    content: '';
    font-family: inherit;
    display: block;
    top: 15px;
    left: 15px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.woocommerce-error::before {
    background-image: url(../images/icons/icn-alert-error.png);
}

.woocommerce-info::before {
    background-image: url(../images/icons/icn-alert-info.png);
}

.woocommerce-message::before {
    background-image: url(../images/icons/icn-alert-success.png);
}
