/* Text align
-------------------------------------------- */
.text_left,
.text-left {
  text-align: left;
}
.text_right,
.text-right {
  text-align: right;
}
.text_center,
.text-center {
  text-align: center;
}

/* Text Color
-------------------------------------------- */
.theme-color {
  color: #dc5431;
}

/* Message Box
-------------------------------------------- */
.box {
  position: relative;
  background: #fff;
  border: 1px solid #dcd9d6;
  box-shadow: 2px 4px 2px #c7c2b7;
}
.box i {
  color: #dc5431;
  transition: all 0.8s ease;
}
/* Button.
-------------------------------------------- */
.button, a.button, a.button:visited {
  display: inline-block;
  padding: 6px 10px;
  background: #dc5431;
  color: #ffff;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button:hover, a.button:hover {
  background: #222222 !important;
}
/* column
-------------------------------------------- */
.full, .one_half, .one_three, .one_four,
.one-half, .one-three, .one-four {
  position: relative;
  float: left;
}
.full {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
}
.one_half, .one-half {
  width: 50%;
  margin: 0;
  padding: 10px 1%;
}
.one_three, .one-three {
  width: 33.3%;
  margin: 0;
  padding: 10px 2%;
}
.one_four, .one-four {
  width: 25%;
  margin: 0;
  padding: 10px 2%;
}
.one_four_first {
  width: 25%;
  margin: 0;
  padding: 10px 2%;
}
.one_four_last, .one-four-last {
	width: 25%;
  margin: 0;
  padding: 10px 0 10px 2%;
}

.last {
  padding-right: 0;
}

/* Pricing table.
-------------------------------------------- */
.dropcap:first-letter {
  color: #dc5431;
  float: left;
  font-size: 60px;
  padding: 0 8px 8px 0;
  line-height: 1;
}
/* Pricing table.
-------------------------------------------- */
.pricing {
  position: relative;
}
.plan-name {
  background: #dc5431;
  color: #fff;
  text-align: center;
  padding: 14px 0;
}
.plan-price {
  text-align: center;
  color: #222;
  background: #ddd;
  font-size: 1.6em;
}
ul.plan-details {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.plan-details li {
  border-top: 1px solid #ddd;
}
/* Page Loader
-------------------------------------------- */
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('../images/loader.gif') 50% 50% no-repeat rgb(249,249,249);
  opacity: .8;    visibility:hidden;
}
/* Share Node
-------------------------------------------- */
.share-node {
  position: relative;
  width: 100%;
  border: 2px solid #fff;
  padding: 10px;
  margin: 20px 0;
  border-radius: 4px;
}
h3.share-node-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
}
.share-node-title i {
  color: #dc5431;
}
/* Scroll To Top
-------------------------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  text-align: center;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.scrolltop i {
  font-size: 1.6em;
}
.scrolltop:hover {
  background: #dc5431;
}
/* Cookies Popup message
-------------------------------------------- */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #dc5431;
  color: #fff;
  padding: 10px 0;
  margin: 0 !important;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
}
.cookiealert p {
  margin: 0;
}
.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}
