
/* Widget
-------------------------------------------------------------- */
.widget {
    margin-top: 0px;
}

.widget-title {
	color:#000;
	font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    text-transform: uppercase;
}

.widget-title:after {
	content: "";
    height: 2px;
    left: 10px;
    width: 70px;
    position: absolute;
    bottom: -5px;
    background-color: #e86a1e;
}


.widget.widget-categories ul li {
	padding: 13px 0 12px 18px;
	border-bottom: 1px solid #e86a1e;
	position: relative;
}

.widget.widget-categories ul li:after {
	position: absolute;
	font-family: 'FontAwesome';
	content: "\f0da";
	top: 13px;;
	left: 0;
}

.widget.widget-categories ul li:first-child {
	padding-top: 0;
}

.widget.widget-categories ul li:first-child:after {
	top: 0;
}

/*widget search*/

.widget.widget-search {
	margin-bottom: 27px;
}

.widget.widget-search .search-form input[type="search"]  {
	background-color: #ffffff;
	border: 1px solid #e8e8e8;
}

.widget.widget-search .search-form input[type="search"]:focus {
	border: 1px solid #e86a1e;
}

.widget.widget-search .search-form {
	position: relative;
}

.widget.widget-search .search-form input::-webkit-input-placeholder {
	font-style: italic;
}

.widget.widget-search .search-form .search-submit {
    background-image: url( ../images/search.svg);
    background-color: transparent;
    background-size: 13px 13px;
    background-position: center right;
    background-repeat: no-repeat; 
    width: 24px;
    height: 21px;    
    padding: 5px 0 5px 10px;
    text-indent: -9999px;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 13px; 
    border: none;  
}



button {
	border: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {		
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 24px;
    background-color: #e86a1e;
    -webkit-transition: all 0.3s ease 0s;
       -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
         -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {	
	background-color: #ffffff;
    border: 1px solid #e86a1e;
    height: 40px;
    width: 100%;
    padding-left: 20px;
    font-size: 14px;
    outline: none;
    margin-bottom: 11px;
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
	border: 1px solid #e86a1e;
			box-shadow: 0px 1px 5px rgba(41, 176, 195, 0.51);
}

textarea {
	width: 100%;
	height: 150px;
	padding: 8px 20px;
}

input[type="checkbox"] {
	display: inline;
}

textarea:-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder {		
	color: #6a6a6a;
	opacity: 1;
}

input:-ms-input-placeholder {
	color: #6a6a6a;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #6a6a6a;
	opacity: 1;
}

/* bootstrap resetting elements */
.btn {
	background-image: none;
}

textarea, 
input[type="text"],
input[type="submit"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input,
.dropdown-menu,
.navbar .nav > .active > a, 
.navbar .nav > .active > a:hover, 
.navbar .nav > .active > a:focus {
	-webkit-appearance: none;
	text-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	     -o-box-shadow: none;
	        box-shadow: none;
	color: #000;
}

.blog-single .entry p {
	margin-bottom: 30px;
}


.widget.widget_instagram ul {
	margin-left: -4px;
    margin-right: -4px;
    padding-top: 7px;
}

.widget.widget_instagram ul li {
    width:50%;
    float: left;
    padding: 0 5px;
    margin-bottom: 10px;
}

.widget.widget_instagram ul li .thumb {
	position: relative;
	overflow: hidden;
}

.widget.widget_instagram ul li .thumb:before {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(255,255,255,0.3);
    z-index: 99;
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    content: '';
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}

.widget.widget_instagram ul li .thumb:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
}

.widget.widget-link ul.links {
	margin-left: -15px;
}

/* .widget.widget-link ul.links li { */
    /* display: inline-block; */
    /* width: 49%; */
/* } */

.widget.widget-link ul.links li a {
	border-bottom: 1px solid rgba(51, 51, 51, 0.29);	
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 0px;
    margin-left: 20px;
    display: block;
    opacity: 0.5;
	filter: alpha(opacity=50);
}

.widget.widget-link ul.links li a:hover {
	color: #e86a1e;
	opacity: 1;
	filter: alpha(opacity=100);
}

.widget.widget_letter p {
	opacity: 0.5;
	filter: alpha(opacity=50);
	margin-bottom: 10px;
    line-height: 18px;	
	color: #ffffff;
}
 
.input-wrap{
	position: relative;

}

.input-wrap input[type="text"],
#new_letter .input-wrap input[type="email"] {
	background-color: #ffffff;
	border: 1px solid #e86a1e;
}

.input-wrap input[type="text"]:focus,
#new_letter .input-wrap input[type="email"]:focus {
	border: 1px solid #e86a1e;
}

.input-wrap input[type="submit"] {
    font-size: 22px;
    color: #cccccc;
    padding: 0 20px;
    position: absolute;
    right: 0px;
    top: 8px;
    font-family: "FontAwesome";
    background-color: transparent;
}

.textarea-wrap textarea:hover,
.input-wrap input:hover {
	color: #000000;
	border: 1px solid #000000;
}

.subscribe .button {
font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    border: 1px solid #ffffff;
    width: 100%;
    padding: 10px 0 10px 0;
    margin-bottom: 0px;
}

.subscribe .button:hover {
	border: 1px solid #e86a1e;
	background-color: #e86a1e; 
}

/*style1*/
.subscribe.style1 .button {
	border: none;
	margin-top:-10px;
	font-size: 16px;
}

.subscribe.style1 .button:hover {
	background-color: #ffffff;
	box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.2);
    color: #e86a1e;
}

.widget.widget_letter p span  {
	color: #e86a1e;
}

/*Bottom
-----------------------------------------------------------------*/
.bottom {
    border-top: 1px solid rgba(51, 51, 51, 0.41);
    text-align: right;
    padding: 10px 0;
}

.bottom span,
.bottom a  {
	color: #ffffff;
	opacity: 0.5;
	font-size:12px;
}

.bottom i {
	opacity: 1;
	color: #e86a1e;
}

.bottom a:hover {
	opacity: 1;
	color: #e86a1e;
}



/*About Us
--------------------------------------------------------*/
.widget.widget-overview ul li {
    border-bottom: 2px solid #ffffff;
    background: #f1f1f1;
}

.widget.widget-overview ul li:hover{
    color: #ffffff;	
	background-color: #e86a1e;
    padding-left: 20px;
}

.widget.widget-overview ul li a {
    display: block;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    padding: 10px 0 10px 20px;
}

.widget.widget-overview ul li.active a {
	background-color: #e86a1e;
}

.widget.widget-overview ul li a:hover{
    color: #ffffff;	
	background-color: #e86a1e;
    padding: 10px 0 10px 20px;	
}

/*widget widget-quote*/
.widget.widget-quote {
	margin-bottom: 25px;
}

.widget.widget-quote .widget-title {
	margin-bottom: 30px;
}

.form-select {
	width: 100%;
	margin-top: -11px;	
}

.form-select select {
	padding-left: 17px;	
	position: relative;
}

.form-select input[type="text"] {
	background-color: #ffffff;
	border: 1px solid #e8e8e8;
}

.form-select input[type="text"]:focus {
	border: 1px solid #e86a1e;
}

label.form-select input[type="submit"] {
	width: 100%;
	font-size: 14px;
	background-color: #ffffff;
	border: 1px solid #414141 ;
	padding: 15px 0 15px 0;
	font-family: 'Montserrat', sans-serif;
	color: #002e5b;
}

label.form-select input[type="submit"]:hover {
	border: 1px solid #e86a1e;
	background-color: #e86a1e;
}

label.form-select select:after {
	font-family: 'FontAwesome';
	content: "\f0d7";
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 11px;
    line-height: 40px;
    color: red;
}



/************************** 
* Cart Page styles 
***************************/
.cart-section {
  position: relative;
}
.cart-section ul {
  margin: 0;
  padding: 0;
}
.cart-section ul li {
  list-style: none;
}
.cart-section .thm-btn {
  line-height: 40px;
}
.cart-section .sec-pad {
  padding-bottom: 40px;
}
.cart-section .sec-title.medium {
  padding-bottom: 25px;
}

.cart-section .cart-outer {
  position: relative;
}

.cart-section .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.cart-section .cart-table {
  width: 100%;
  min-width: 900px;
}

.cart-table .cart-header {
  position: relative;
  width: 100%;
  text-transform: capitalize;
  font-size: 18px;
  font-family: "Roboto Slab", serif;
  border-radius: 7px;
  color: #ffffff;
  background: #414141;
}

.cart-table thead tr th {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 15px 15px;
    min-width: 120px;
    border-bottom: 5px solid #fff;
	border-left: 5px solid #fff;
    font-family: sans-serif;	
}

.cart-table tbody tr td.first {
	font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    padding-left: 20px;
    background: #414141;
    border-bottom: 2px solid #fff;
}

.cart-table tbody tr td {
  line-height: 24px;
  padding: 15px 10px;
  min-width: 100px;
  font-size: 16px;
  font-weight: bold;
  color: yellow;
}

.cart-table tbody tr .qty {
  width: 120px;
  padding-right: 20px;
}

.cart-table tbody tr .qty .quantity-spinner {
  background: black;
  font-weight: bold;
}

.cart-table tbody tr .prod-column .column-box {
  position: relative;
  min-height: 90px;
  padding-left: 85px;
  padding-top: 20px;
  text-align: left;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb {
  position: absolute;
  left: 0px;
  top: 11px;
  background: yellow;
  padding: 0px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img {
  display: block;
  max-width: 100%;
}

.cart-table tbody tr .prod-column .column-box h3 {
  font-size: 18px;
  color: yellow;
  font-weight: 700;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #1f1f1f;
  text-transform: capitalize;
  font-family: "Roboto Slab", serif;
}

.cart-table tbody tr .sub-total {
  font-weight: 400;
  color: #414141;
}

.cart-table tbody tr .remove-btn {
  position: relative;
  font-size: 16px;
  color: yellow;
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cart-table tbody tr .remove-btn .fa {
  position: relative;
  top: 2px;
  padding-right: 10px;
  font-size: 24px;
  line-height: 30px;
}

.cart-table tbody tr .remove-btn:hover {
  color: yellow;
}

.cart-table tbody tr {
  border-bottom: 1px solid #F7F7F7;
}

.cart-table tbody tr td {
  vertical-align: middle;
}

.cart-table tbody tr td .quantity-spinner {
  padding: 5px 0px 5px 20px;
  line-height: 24px;
  height: 43px;
  display: block;
  width: 100%;
  font-size: 20px;
  font-family: "Roboto Slab", serif;
  position: relative;
  font-weight: bold;
  color: #1f1f1f;
}

.cart-table tbody .available-info {
  position: relative;
  padding-left: 50px;
  color: #9e9e9e;
  font-size: 14px;
}

.cart-table tbody .available-info .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  border-radius: 50%;
}

.cart-table .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.cart-table .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  background: #fff;
  border-color: #f7f7f7;
  padding: 10.3px 10px;
}

.cart-table .bootstrap-touchspin .input-group-btn-vertical i {
  color: green;
  left: 6px;
}

.cart-table tbody tr .qty .quantity-spinner {
  background: #fff;
  border: 1px solid #F7F7F7;
  border-right: 0;
}

.cart-section .apply-coupon {
  position: relative;
}

.cart-section .apply-coupon .form-group {
  position: relative;
  float: left;
  margin-right: 20px;
}

.cart-section .apply-coupon .form-group input[type="text"] {
  display: block;
  line-height: 24px;
  padding: 9px 15px;
  border: 1px solid yellow;
  border-radius: 3px;
  width: 230px;
  background: none;
  font-weight: 500;
  outline: none;
  height: 44px;
}

.cart-section .estimate-form {
  position: relative;
}

.cart-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: yellow;
  margin-bottom: 30px;
}

.cart-section .estimate-form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.cart-section .estimate-form .row .form-group {
  padding: 0px 7px !important;
  margin-bottom: 31px;
}

.cart-section .totals-table {
  position: relative;
  border: 1px solid #f8f8f8;
}

.cart-section .totals-table .col {
  position: relative;
  display: block;
  float: left;
  padding: 10px 15px;
  line-height: 24px;
  width: 50%;
}

.cart-section .totals-table .col-title {
  font-size: 14px;
  color: #1f1f1f;
  border-right: 1px solid #f8f8f8;
  font-weight: 400;
  font-family: "Roboto Slab", serif;
}

.cart-section .totals-table li {
  position: relative;
  border-bottom: 1px solid #f8f8f8;
}

.cart-section .totals-table li:last-child {
  border-bottom: none;
}

.cart-section .update-cart-box {
  padding-top: 40px;
}

.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-toggle .caret {
  border: none;
  top: 2px;
  right: 20px;
}
.cart-section .estimate-form .select-box .btn-group.bootstrap-select {
  width: 100%;
  outline: none;
}
.cart-section .estimate-form .select-box .btn-group.bootstrap-select .btn {
  background: green;
  font-size: 14px;
  color: red;
  text-transform: capitalize;
  border: none;
  outline: none !important;
  padding: 15px 15px;
  border-radius: 0;
  border: 1px solid yellow;
}
.cart-section .estimate-form .select-box .dropdown-menu {
  padding: 0;
  border-radius: 0;
}
.cart-section .estimate-form .select-box .dropdown-menu > li > a {
  padding: 8px 15px;
  color: green;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-menu li a:hover span.text {
  color: green;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-menu li a span.text {
  font-size: 13px;
  color: red;
}
.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-toggle .caret:before {
  content: '\f107';
  font-family: 'FontAwesome';
  color: red;
  font-size: 14px;
  line-height: 46px;
}

.cart-section .estimate-form h3 {
  text-transform: uppercase;
  font-size: 24px;
  color: yellow;
  margin: 0;
  margin-bottom: 40px;
  margin-top: 80px;
}

.cart-section .cart-total h3 {
  text-transform: uppercase;
  font-size: 24px;
  color: yellow;
  margin: 0;
  margin-bottom: 40px;
  margin-top: 80px;
}

.cart-section .cart-total .thm-btn {
  margin-top: 30px;
}

.cart-section .estimate-form input {
  width: 100%;
  border: 2px solid yellow;
  outline: none;
  height: 52px;
  padding-left: 15px;
  font-family: "Roboto Slab", serif;
}

.cart-section .qty .input-group {
  width: 74px;
  background: #fff;
}

.cart-section .thm-btn.update-cart {
  border: 1px solid black;
  color: yellow;
  background-color: transparent;
}

.cart-table tbody tr td,
.cart-table tbody tr .remove-btn {
  color: #9e9e9e;
  font-weight: normal;
}

.cart-section .thm-btn.update-cart {
  color: #1f1f1f;
  border-color: #F7F7F7;
  text-shadow: none;
}

.cart-section .apply-coupon .form-group input[type="text"] {
  border: 2px solid #F7F7F7;
  text-transform: uppercase;
  font-size: 14px;
}

.cart-section .estimate-form input {
  border-color: #F7F7F7;
}

.cart-section .estimate-form .select-box .btn-group.bootstrap-select .btn {
  background: #fff;
  color: #9f9f9f;
  border-color: #F7F7F7;
  font-family: "Roboto Slab", serif;
}

.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-toggle .caret:before {
  color: #9f9f9f;
}

.cart-table tbody tr .prod-column .column-box {
  margin-left: 15px;
}

.cart-section .thm-btn.update-cart:hover {
  background: #414141;
  color: #fff;
}

.cart-table tbody tr td {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    border-left: 5px solid #fff;
    border-bottom: 2px solid #fff;
    text-align: center;
    padding: 5px 10px 10px;
    background: #ececec;
}

.cart-section .left-text .text-box p {
    font-family: arial;
    margin-bottom: 20px;
    line-height: 16px;
    font-size: 15px;
    text-align: justify;
    color: #555;
}

.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-menu li a span.text {
  color: #999;
}

.cart-section .estimate-form .select-box .bootstrap-select.btn-group .dropdown-menu li a:hover span.text {
  color: #fff;
}

.woocommerce-page {
    margin-bottom: 0px;
}

.woocommerce-page .entry-summary .description {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding-top: 25px;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.woocommerce-page .product_title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: -5px;
    font-size: 20px !important;
	letter-spacing: -2px !important;
} 


/*style 1*/
.cpm-overview.style1 p {
	line-height: 18px;
    margin-bottom: 10px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #eeeeee;	
}

.cpm-overview h4 {
	color: #e86a1e;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 10px;
    font-size: 15px;
    text-transform: capitalize;
}

.cpm-overview {
	margin-top: 10px;
	margin-bottom: 35px;
}

.cpm-overview .promobox {
	margin-top: 50px;
    border-left: 3px solid #e86a1e;
    padding: 26px 30px 26px 37px;
    font-style: italic;
    font-size: 16px;
    background-color: #e8e8e8;
}

.our-mis {
	margin-top: 55px;
	margin-bottom: 30px;
}

.our-mis.mt {
	margin-top: 10px;
}

.our-mis ul {
	margin-bottom: 27px;
}

.our-mis p {
	line-height: 18px;
    margin-bottom: 20px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #eeeeee;
}

.our-mis h4 {
    color: #e86a1e;
    font-size: 15px;
    font-weight: 700;
	padding-bottom: 10px;
    text-decoration: underline;
}

/*style1*/