/*
1. Title
2. Accordions & Toggles
3. Tabs
4. Carousels
5. Featured Box
6. Piegraph
7. Flip Boxes
8. Skills Bar
9. Numeric Statistic
10. Buttons
*/
/* Title
====================================*/
/* FONT FAMILY */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOkCnqEu92Fr1MmgVxIIzc.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmYUtfBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/cairo/v10/SLXLc1nY6Hkvalrub46L59M.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/cairo/v10/SLXLc1nY6HkvalqKbI6L59M.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/cairo/v10/SLXGc1nY6HkvalIhTp4.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/cairo/v10/SLXLc1nY6Hkvalr-ao6L59M.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/cairo/v10/SLXLc1nY6Hkvalqaa46L59M.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/cairo/v10/SLXLc1nY6HkvalqiaY6L59M.ttf) format('truetype');
}
/*--PREDEFINED COLOURS--*/
/*--RESPONSIVE BREAKPOINTS--*/
/* PHONE MEDIA QUERY */
/* TABLET MEDIA QUERY */
/* DESKTOP MEDIA QUERY */
/*----------------------- MIXINS -----------------------*/
/*
.animation(@animation, @duration, @timing-function, @count) {
  -o-animation: @animation;
  -moz-animation: @animation;
  -webkit-animation: @animation;
  animation: @animation;
  animation-duration: @duration;
  animation-timing-function: @timing-function;
  animation-iteration-count: @count;
}*/
/*----------------------- ANIMATION -----------------------*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@-webkit-keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes up-and-down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.dexp-builder-title .dexp-title {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  padding-right: 10px;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}
.dexp-builder-title .dexp-title:after {
  position: absolute;
  bottom: -10px;
  content: " ";
  width: 22px;
  height: 3px;
  background-color: #ECEEF0;
  left: 0;
}
.dexp-builder-title.st1 .dexp-title {
  font-size: 26px;
  font-weight: 300;
  color: #2d3237;
  padding: 0;
  letter-spacing: normal;
  text-transform: capitalize;
  margin-bottom: 0px;
}
.dexp-builder-title.st1 .dexp-title:after {
  display: none;
}
.dexp-builder-title.st1 .dexp-subtitle {
  font-size: 13px;
  text-align: center;
  line-height: 18px;
  color: #b9bec3;
  margin-bottom: 30px;
}
/* Accordions & Toggles
====================================*/
.panel-group .panel {
  border-radius: 0;
  border: none;
}
.panel-group .panel-heading {
  padding: 0;
}
.panel-group .panel-heading a.collapsed {
  display: block;
  cursor: pointer;
  padding: 13px 16px;
  border: 1px solid #ECEEF0;
  color: #848688;
}
.panel-group .panel-heading a {
  display: block;
  cursor: pointer;
  padding: 13px 16px;
  border: 1px solid #009fda;
  color: #fff;
  text-decoration: none;
  transition-duration: 600ms;
  transition-property: background-color, background;
  transition-timing-function: ease;
}
.panel-group .panel-heading a:hover {
  text-decoration: none;
}
.panel-group.default .panel-heading a.collapsed {
  background: url("../images/accordion-toggle.png") no-repeat 100% 0 #fff;
}
.panel-group.question .panel-heading a.collapsed {
  background-color: #fff;
}
.panel-group.question .panel-heading a.collapsed:before {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f059";
  color: #AFB9C3;
  padding-right: 10px;
}
.panel-group.default .panel-heading a {
  background: url("../images/accordion-toggle.png") no-repeat 100% 100% #009fda;
}
.panel-group.question .panel-heading a {
  background-color: #009fda;
}
.panel-group.question .panel-heading a:before {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f059";
  color: #FFF;
  padding-right: 10px;
}
.panel-group .in {
  border-right: 1px solid #ECEEF0;
  border-left: 1px solid #ECEEF0;
}
/* Accordions & Toggles
====================================*/
.dexp-builder-accordions .card {
  border-radius: 0;
  border: none;
  margin-bottom: 5px;
}
.dexp-builder-accordions .panel-collapse {
  margin-bottom: 0;
}
.dexp-builder-accordions .card-header {
  padding: 0;
  border-bottom: none;
}
.dexp-builder-accordions .card-header a.collapsed {
  display: block;
  cursor: pointer;
  padding: 13px 16px;
  border: 1px solid #ECEEF0;
  color: #848688;
  background: url("../images/accordion-toggle.png") no-repeat 100% 0 #fff;
}
.dexp-builder-accordions .card-header a {
  display: block;
  cursor: pointer;
  padding: 13px 16px;
  border: 1px solid #009fda;
  color: #fff;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: url("../images/accordion-toggle.png") no-repeat 100% 100% #009fda;
}
.dexp-builder-accordions .card-header a:hover {
  color: #fff;
  border: 1px solid #009fda;
  background-color: #009fda;
}
.dexp-builder-accordions .card-header a:hover {
  text-decoration: none;
}
.dexp-builder-accordions.question .card-header a.collapsed {
  background-color: #fff;
}
.dexp-builder-accordions.question .card-header a.collapsed:before {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f059";
  color: #AFB9C3;
  padding-right: 10px;
}
.dexp-builder-accordions.question .card-header a {
  background-color: #009fda;
}
.dexp-builder-accordions.question .card-header a:hover {
  color: #fff;
  border: 1px solid #009fda;
  background-color: #009fda;
}
.dexp-builder-accordions.question .card-header a:hover::before {
  color: #fff;
}
.dexp-builder-accordions.question .card-header a:before {
  font-family: FontAwesome;
  font-size: 20px;
  content: "\f059";
  color: #FFF;
  padding-right: 10px;
}
.dexp-builder-accordions .in {
  border-right: 1px solid #ECEEF0;
  border-left: 1px solid #ECEEF0;
}
/*Block Tab
============================================*/
.dexp_tab_wrapper .nav-tabs li {
  margin-right: 0px;
  overflow: hidden;
  padding: 0;
}
.dexp_tab_wrapper .nav-tabs li.active a {
  background-color: #fff !important;
}
.dexp_tab_wrapper .nav-tabs li a {
  background-color: #F2F4F6;
  border-radius: 2px 2px 0 0;
  color: #848688;
  display: block;
  font-weight: 500;
  letter-spacing: 0;
  outline: medium none;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
  line-height: 38px;
}
.dexp_tab_wrapper .tab-content {
  border-bottom: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  padding: 10px;
}
@media (max-width: 480px) {
  .dexp_tab_wrapper ul.nav-tabs {
    border: none;
  }
  .dexp_tab_wrapper ul.nav-tabs li {
    width: 100%;
  }
  .dexp_tab_wrapper ul.nav-tabs li a {
    border: solid 1px #ddd !important;
    margin: 0;
  }
  .dexp_tab_wrapper ul.nav-tabs li:last-child {
    border-right: none !important;
  }
}
/* Tabs
============================================*/
.dexp-tab-wrapper .nav-tabs li {
  margin-right: 0px;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.dexp-tab-wrapper .nav-tabs li:last-child {
  border-right: 1px solid #ddd;
}
.dexp-tab-wrapper .nav-tabs li a {
  background-color: #F2F4F6;
  border-radius: 2px 2px 0 0;
  color: #848688;
  display: block;
  font-weight: 500;
  letter-spacing: 0;
  outline: medium none;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
  line-height: 38px;
}
.dexp-tab-wrapper .nav-tabs li a.active {
  background-color: #fff !important;
}
.dexp-tab-wrapper .tab-content {
  border-bottom: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  padding: 10px;
}
@media (max-width: 480px) {
  .dexp-tab-wrapper ul.nav-tabs {
    border: none;
  }
  .dexp-tab-wrapper ul.nav-tabs li {
    width: 100%;
  }
  .dexp-tab-wrapper ul.nav-tabs li a {
    border: solid 1px #ddd !important;
    margin: 0;
  }
  .dexp-tab-wrapper ul.nav-tabs li:last-child {
    border-right: none !important;
  }
}
/* Carousels
============================================*/
div.dexp_carousel .carousel-inner img {
  width: 100%;
  height: auto;
}
div.dexp_carousel .carousel-control {
  text-shadow: white;
  z-index: 99;
}
div.dexp_carousel .carousel-control span {
  top: 50%;
  position: absolute;
  margin-top: -21px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
div.dexp_carousel .carousel-control.right {
  background: none;
}
div.dexp_carousel .carousel-control.right span {
  right: 0;
}
div.dexp_carousel .carousel-control.right:hover span {
  opacity: 1;
  right: 20px;
}
div.dexp_carousel .carousel-control.left {
  background: none;
}
div.dexp_carousel .carousel-control.left span {
  left: 0;
}
div.dexp_carousel .carousel-control.left:hover span {
  opacity: 1;
  left: 20px;
}
div.dexp_carousel:hover .right span {
  opacity: 1;
  right: 20px;
}
div.dexp_carousel:hover .left span {
  opacity: 1;
  left: 20px;
}
/* Featured Box
================================================== */
.dexp-builder-box {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .dexp-builder-box {
    margin-bottom: 30px;
  }
  .dexp-builder-box.style04 .box-icon,
  .dexp-builder-box.style05 .box-icon,
  .dexp-builder-box.style06 .box-icon,
  .dexp-builder-box.style07 .box-icon,
  .dexp-builder-box.style08 .box-icon,
  .dexp-builder-box.style09 .box-icon {
    float: left;
  }
  .dexp-builder-box.style04 .box-title,
  .dexp-builder-box.style05 .box-title,
  .dexp-builder-box.style06 .box-title,
  .dexp-builder-box.style07 .box-title,
  .dexp-builder-box.style08 .box-title,
  .dexp-builder-box.style09 .box-title,
  .dexp-builder-box.style04 .box-content,
  .dexp-builder-box.style05 .box-content,
  .dexp-builder-box.style06 .box-content,
  .dexp-builder-box.style07 .box-content,
  .dexp-builder-box.style08 .box-content,
  .dexp-builder-box.style09 .box-content {
    margin-right: 0px;
    margin-left: 70px;
    text-align: left;
  }
}
.dexp-builder-box.style01 .box-title,
.dexp-builder-box.style02 .box-title,
.dexp-builder-box.style03 .box-title {
  margin: 30px 10px 0;
}
.dexp-builder-box.style01 .box-content,
.dexp-builder-box.style02 .box-content,
.dexp-builder-box.style03 .box-content {
  margin: 10px;
}
/* Piegraph
================================================== */
.dexp-pie-chart-wrapper {
  background-color: #009fda;
  border-radius: 100%;
  height: 200px;
  line-height: 1;
  margin: 0 auto 50px;
  position: relative;
  width: 200px;
  padding: 1px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dexp-pie-chart-wrapper:hover {
  background-color: #0ebeff;
}
.dexp-pie-chart {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: solid 5px #AFC6DA;
  position: relative;
}
.dexp-pie-chart.gt-50 {
  border: solid 5px #fff;
}
.ppc-progress {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 90px);
  top: calc(50% - 90px);
  width: 180px;
  height: 180px;
  clip: rect(0, 180px, 180px, 90px);
}
.ppc-progress .ppc-progress-fill {
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 90px);
  top: calc(50% - 90px);
  width: 180px;
  height: 180px;
  clip: rect(0, 90px, 180px, 0);
  transform: rotate(60deg);
  border: solid 5px #fff;
}
.gt-50 .ppc-progress {
  clip: rect(0, 90px, 180px, 0);
}
.gt-50 .ppc-progress .ppc-progress-fill {
  clip: rect(0, 180px, 180px, 90px);
  border: solid 5px #AFC6DA;
}
.ppc-percents {
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 170px/2);
  top: calc(50% - 170px/2);
  width: 170px;
  height: 170px;
  text-align: center;
  display: table;
}
.ppc-percents span {
  display: block;
  font-family: "raleway";
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #fff;
  z-index: 999;
}
.pcc-percents-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.dexp-pie-chart {
  margin: 0 auto;
  margin-top: 10px;
}
.dexp-pie-chart-title {
  color: #333333;
  font-family: "raleway";
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
.dexp-pie-chart-content {
  text-align: center;
}
/* Flip Boxes
================================================== */
.flip-box {
  overflow: hidden;
  margin-bottom: 15px;
}
.flip-box .inner {
  position: relative;
  margin: 1px;
  height: 250px;
}
.flip-box .inner:after {
  clear: both;
}
.flip-box .inner .front,
.flip-box .inner .back {
  text-align: center;
  border: 1px solid #eceef0;
  border-radius: 3px;
  padding: 30px 10px;
}
.flip-box .inner .front .fa,
.flip-box .inner .back .fa {
  font-size: 80px;
}
.flip-box .inner .front {
  height: inherit;
  width: 100%;
  position: absolute;
  opacity: 1;
  top: 0;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.flip-box .inner .back {
  background: #009fda;
  color: #fff;
  height: inherit;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.flip-box .inner .back h3 {
  color: #fff;
}
.flip-box .inner:hover .front {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  opacity: 0;
}
.flip-box .inner:hover .back {
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
}
/* Skills Bar
================================================== */
.skill-bar {
  position: relative;
}
.skill-bar .progress {
  border: 1px solid #ECEEF0;
  border-radius: 100px;
  margin-top: 40px;
  overflow: visible;
  background-color: transparent;
  background: transparent;
  height: 10px;
  box-shadow: none;
  padding: 2px;
}
.skill-bar .progress .progress-bar {
  -webkit-transition: width 3s ease;
  -moz-transition: width 3s ease;
  -o-transition: width 3s ease;
  -ms-transition: width 3s ease;
  transition: width 3s ease;
  background-color: #009fda !important;
  border-radius: 300px;
  display: block;
  height: 4px;
  width: 0;
  position: relative;
}
.skill-bar .progress .progress-bar .progress-text {
  position: absolute;
  top: -30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
  left: 0;
}
.skill-bar .progress .progress-bar .progress-percent {
  background-color: #232D37;
  border-radius: 2px;
  color: #FFFFFF;
  display: block;
  font-size: 10px !important;
  line-height: 12px !important;
  padding: 4px 7px !important;
  position: absolute;
  right: 0;
  top: -25px;
}
.skill-bar .progress .progress-bar .progress-percent:after {
  border-color: #232D37 rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 5px 5px 0;
  bottom: -4px;
  content: "";
  display: block;
  left: 12px;
  position: absolute;
  width: 0;
}
.skill-bar span.background {
  -webkit-transition: width 1.8s linear;
  -moz-transition: width 1.8s linear;
  -o-transition: width 1.8s linear;
  -ms-transition: width 1.8s linear;
  transition: width 1.8s linear;
  background-color: #009fda !important;
  border-radius: 300px;
  display: block;
  height: 4px;
  width: 0;
  position: relative;
}
/* Numeric Statistic
================================================== */
.dexp-stats {
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .dexp-stats {
    padding: 30px 0;
  }
}
.dexp-stats .stats-icon i {
  font-size: 40px;
  color: #009fda;
  margin-bottom: 20px;
}
.dexp-stats .stat-count {
  color: #232d37;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}
.dexp-stats .stat-title {
  color: #c3cdd7;
  font-size: 11px !important;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dexp-stats .stat-title.white {
  color: #fff;
}
.dexp-stats .color-white .stat-title {
  color: #fff;
}
.dexp-stats .stats-description {
  margin-top: 0;
}
.dexp-stats.stats-alt {
  padding: 10px 0px 10px 0px;
  text-align: center;
  border-right: 1px solid #eff4f7;
  width: 100%;
}
.dexp-stats.stats-alt.brddark {
  padding: 10px 0px 10px 0px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.dexp-stats.stats-alt.last {
  border-right: 0px solid #eff4f7;
}
.dexp-stats.stats-alt .num {
  color: #232d37;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.dexp-stats.stats-alt .type {
  color: #c3cdd7;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 2px;
  line-height: 12px;
}
.dexp-stats.stats-alt .type.white {
  color: #fff;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 2px;
}
.dexp-stats .brddark .stats-description {
  color: #c3cdd7;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 2px;
}
.small-stats .dexp-stats {
  padding: 10px 0px 10px 0px;
}
.small-stats .dexp-stats .stat-count {
  font-size: 20px;
}
.small-stats .dexp-stats .stat-title {
  font-weight: 200;
  font-size: 8px !important;
  letter-spacing: 2px;
  line-height: 12px;
}
.stats {
  padding: 50px 30px 50px 0px;
  text-align: center;
  width: 100%;
}
.stats.brddark {
  padding: 50px 30px 50px 0px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.stats.last {
  border-right: 0px solid #eff4f7;
}
.stats .num {
  color: #232d37;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}
.stats .type {
  color: #c3cdd7;
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 2px;
}
.stats .type.white {
  color: #fff;
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 2px;
}
.stats.stats-alt {
  padding: 10px 0px 10px 0px;
  text-align: center;
  border-right: 1px solid #eff4f7;
  width: 100%;
}
.stats.stats-alt.brddark {
  padding: 10px 0px 10px 0px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.stats.stats-alt.last {
  border-right: 0px solid #eff4f7;
}
.stats.stats-alt .num {
  color: #232d37;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.stats.stats-alt .type {
  color: #c3cdd7;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 2px;
  line-height: 12px;
}
.stats.stats-alt .type.white {
  color: #fff;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 2px;
}
/* Pie Chart Skills
================================================== */
.pie-graph {
  text-align: center;
}
.pie-graph .percent_loader {
  border-radius: 50%;
  background-color: #009fda;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pie-graph .percent_loader:hover {
  background: #74d9ff;
}
.pie-graph h3 {
  color: #333333;
  font-family: 'raleway';
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
/* Buttions
================================================== */
a.button,
.btn {
  border-radius: 2px;
  text-decoration: none;
  background: #009fda;
  border: solid 1px #009fda;
  color: #fff;
  padding: 8px 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.button.fa span,
.btn.fa span {
  margin-left: 5px;
  font-family: "Open Sans" !important;
}
a.button:hover,
.btn:hover {
  text-decoration: none;
  background: #a0a5aa !important;
  border: solid 1px #a0a5aa !important;
  color: #fff;
}
a.button.gray,
.btn.gray {
  color: #fff;
  background: #a0a5aa;
  border: solid 1px #a0a5aa;
}
a.button.gray:hover,
.btn.gray:hover {
  background: #009fda !important;
  border: solid 1px #009fda !important;
}
a.button.light-gray,
.btn.light-gray {
  color: #a0a5aa;
  background: #f2f4f6;
  border: solid 1px #f2f4f6 !important;
}
a.button.light-gray:hover,
.btn.light-gray:hover {
  color: #fff;
  background: #009fda !important;
  border: solid 1px #009fda !important;
}
a.button.line-color,
.btn.line-color {
  background: transparent;
  border: 1px solid #009fda !important;
  color: #009fda;
}
a.button.line-color:hover,
.btn.line-color:hover {
  background: none repeat scroll 0 0 #009fda !important;
  border: 1px solid #009fda !important;
  color: #FFFFFF;
}
a.button.line,
.btn.line {
  color: #000 !important;
  border: 1px solid #000 !important;
  background: #fff !important;
}
a.button.line:hover,
.btn.line:hover {
  color: #000 !important;
  background: #fff !important;
  border: 1px solid #fff !important;
}
a.button.line-white,
.btn.line-white {
  color: #fff !important;
  border: 1px solid #fff !important;
  background: transparent !important;
}
a.button.line-white:hover,
.btn.line-white:hover {
  color: #fff !important;
  opacity: 0.7 !important;
  background: transparent !important;
  border: 1px solid #fff !important;
}
a.button.line-gray,
.btn.line-gray {
  color: #b9bec3 !important;
  border: 1px solid #eceef0 !important;
  background-color: #fff !important;
}
a.button.line-gray:hover,
.btn.line-gray:hover {
  border: 1px solid #b9bec3 !important;
  background-color: #fff !important;
}
a.button.btn-inline,
.btn.btn-inline {
  display: inline-block;
}
a.button.btn-center,
.btn.btn-center {
  display: table;
}
a.button.icon-right i,
.btn.icon-right i {
  line-height: 22px;
}
a.button.btn-link,
.btn.btn-link {
  border: none;
  background-color: transparent;
  color: #009fda;
}
/* Social Icons
====================================*/
.social-icons {
  /*.xing i, .xing:before {
        margin: 13px 0 0 12px;
    }*/
  /*.android i, .android:before {
        margin: 13px 0 0 10px;
    }*/
  /*.html5 i, .html5:before {
        margin: 13px 0 0 10px;
    }*/
  /*.renren i, .renren:before {
        margin: 13px 0 0 10px;
    }*/
  /*.dropbox i, .dropbox:before {
        margin: 13px 0 0 10px;
    }*/
  /*.github i, .github:before {
        margin: 13px 0 0 10px;
    }*/
  /*.css3 i, .css3:before {
        margin: 13px 0 0 10px;
    }*/
  /*.tumblr i, .tumblr:before {
        margin: 13px 0 0 12px;
    }*/
  /*.instagram i, .instagram:before {
        width:100%;
                text-align:center;
                line-height:40px;
    }*/
}
.social-icons ul {
  padding: 0;
}
.social-icons li {
  display: inline;
  float: left;
  margin-right: 4px;
}
.social-icons li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: left !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.social-icons li a i {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 20;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
}
.social-icons .twitter:before,
.social-icons .wordpress:before,
.social-icons .facebook:before,
.social-icons .linkedin:before,
.social-icons .renren:before,
.social-icons .tumblr:before,
.social-icons .github:before,
.social-icons .maxcdn:before,
.social-icons .instagram:before,
.social-icons .xing:before,
.social-icons .html5:before,
.social-icons .dropbox:before,
.social-icons .css3:before,
.social-icons .gplus:before,
.social-icons .yahoo:before,
.social-icons .pinterest:before,
.social-icons .dribbble:before,
.social-icons .flickr:before,
.social-icons .reddit:before,
.social-icons .vimeo:before,
.social-icons .rss:before,
.social-icons .youtube:before,
.social-icons .linux:before,
.social-icons .appstore:before,
.social-icons .heart:before,
.social-icons .envelope:before,
.social-icons .fivehundredpx:before,
.social-icons .btc:before,
.social-icons .stumbleupon:before,
.social-icons .dribbble:before,
.social-icons .stack-exchange:before,
.social-icons .android:before,
.social-icons .instagram:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 16px;
  color: #a0a5aa;
  -webkit-transition: all 0.15s ease-in-out 0.5s linear;
  -moz-transition: all 0.15s ease-in-out 0.5s linear;
  -o-transition: all 0.15s ease-in-out 0.5s linear;
  -ms-transition: all 0.15s ease-in-out 0.5s linear;
  transition: all 0.15s ease-in-out 0.5s linear;
  position: absolute;
  left: 0;
  z-index: 20;
  width: 100%;
  text-align: center;
  line-height: 40px;
}
.social-icons li a:hover,
.social-icons li a i {
  color: #fff;
}
.social-icons li a i {
  top: -30px;
  opacity: 0;
}
.social-icons li a:hover i {
  top: 0;
  opacity: 1;
}
.social-icons .facebook i,
.social-icons .facebook:before {
  text-align: center;
  width: 100%;
  display: block;
}
.social-icons .facebook:before {
  content: "\f09a";
  top: 0;
  opacity: 1;
}
.social-icons .facebook:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .facebook:hover {
  background-color: #4a6d9d;
}
.social-icons .twitter:before {
  font-size: 18px;
}
.social-icons .twitter i,
.social-icons .twitter:before {
  text-align: center;
  width: 100%;
  display: block;
}
.social-icons .twitter:before {
  content: "\f099";
  top: 0;
  opacity: 1;
}
.social-icons .twitter:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .twitter:hover {
  background-color: #3bc1ed;
}
.social-icons .gplus i,
.social-icons .gplus:before {
  text-align: center;
  width: 100%;
  display: block;
}
.social-icons .gplus:before {
  content: "\f0d5";
  top: 0;
  opacity: 1;
}
.social-icons .linkedin i,
.social-icons .linkedin:before {
  text-align: center;
  width: 100%;
  display: block;
}
.social-icons .linkedin:before {
  content: "\f0e1";
  top: 0;
  opacity: 1;
}
.social-icons .linkedin:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .linkedin:hover {
  background-color: #0b7bb5;
}
.social-icons .gplus:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .gplus:hover {
  background-color: #d53824;
}
.social-icons .maxcdn i,
.social-icons .maxcdn:before {
  /*margin: 13px 0 0 10px;*/
}
.social-icons .maxcdn:before {
  content: "\f136";
  top: 0;
  opacity: 1;
}
.social-icons .maxcdn:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .maxcdn:hover {
  background-color: #3274d1;
}
.social-icons .pinterest i,
.social-icons .pinterest:before {
  /*margin: 13px 0 0 12px;*/
}
.social-icons .pinterest:before {
  content: "\f0d2";
  top: 0;
  opacity: 1;
}
.social-icons .pinterest:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .pinterest:hover {
  background-color: #cb1f25;
}
.social-icons .btc i,
.social-icons .btc:before {
  /*margin: 13px 0 0 12px;*/
}
.social-icons .btc:before {
  content: "\f15a";
  top: 0;
  opacity: 1;
}
.social-icons .btc:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .btc:hover {
  background-color: #40833e;
}
.social-icons .heart i,
.social-icons .heart:before {
  /*margin: 13px 0 0 10px;*/
}
.social-icons .heart:before {
  content: "\f004";
  top: 0;
  opacity: 1;
}
.social-icons .heart:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .heart:hover {
  background-color: #205685;
}
.social-icons .stack-exchange i,
.social-icons .stack-exchange:before {
  /*margin: 13px 0 0 10px;*/
}
.social-icons .stack-exchange:before {
  content: "\f18d";
  top: 0;
  opacity: 1;
}
.social-icons .stack-exchange:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .stack-exchange:hover {
  background-color: #6ca405;
}
.social-icons .appstore i,
.social-icons .appstore:before {
  /*margin: 13px 0 0 10px;*/
}
.social-icons .appstore:before {
  content: "\f179";
  top: 0;
  opacity: 1;
}
.social-icons .appstore:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .appstore:hover {
  background-color: #c0c0c0;
}
.social-icons .linux i,
.social-icons .linux:before {
  /*margin: 13px 0 0 12px;*/
  font-size: 14px !important;
}
.social-icons .linux:before {
  content: "\f17c";
  top: 0;
  opacity: 1;
}
.social-icons .linux:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .linux:hover {
  background-color: #ff6501;
}
.social-icons .dribbble i,
.social-icons .dribbble:before {
  /*margin: 13px 0 0 10px;*/
}
.social-icons .dribbble:before {
  content: "\f17d";
  top: 0;
  opacity: 1;
}
.social-icons .dribbble:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .dribbble:hover {
  background-color: #ef5a92;
}
.social-icons .envelope i,
.social-icons .envelope:before {
  /*margin: 13px 0 0 12px;*/
}
.social-icons .envelope:before {
  content: "\f003";
  top: 0;
  opacity: 1;
}
.social-icons .envelope:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .envelope:hover {
  background-color: #6bb130;
}
.social-icons .flickr i,
.social-icons .flickr:before {
  /*margin: 13px 0 0 10px;*/
}
.social-icons .flickr:before {
  content: "\f16e";
  top: 0;
  opacity: 1;
}
.social-icons .flickr:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .flickr:hover {
  background-color: #136dd5;
}
.social-icons .rss i,
.social-icons .rss:before {
  /*margin: 13px 0 0 12px;*/
  font-size: 14px !important;
}
.social-icons .rss:before {
  content: "\f09e";
  top: 0;
  opacity: 1;
}
.social-icons .rss:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .rss:hover {
  background-color: #fe8f00;
}
.social-icons .youtube i,
.social-icons .youtube:before {
  /*margin: 13px 0 0 12px;*/
  font-size: 18px !important;
}
.social-icons .youtube:before {
  content: "\f167";
  top: 0;
  opacity: 1;
}
.social-icons .youtube:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .youtube:hover {
  background-color: #bf2f29;
}
.social-icons .vimeo i,
.social-icons .vimeo:before {
  /*margin: 13px 0 0 10px;*/
  font-size: 14px !important;
}
.social-icons .vimeo:before {
  content: "\f194";
  top: 0;
  opacity: 1;
}
.social-icons .vimeo:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .vimeo:hover {
  background-color: #4c8ab0;
}
.social-icons .xing:before {
  content: "\f168";
  top: 0;
  opacity: 1;
}
.social-icons .xing:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .xing:hover {
  background-color: #036568;
}
.social-icons .android:before {
  content: "\f17b";
  top: 0;
  opacity: 1;
}
.social-icons .android:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .android:hover {
  background-color: #9251a2;
}
.social-icons .html5:before {
  content: "\f13b";
  top: 0;
  opacity: 1;
}
.social-icons .html5:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .html5:hover {
  background-color: #2f3842;
}
.social-icons .renren:before {
  content: "\f18b";
  top: 0;
  opacity: 1;
}
.social-icons .renren:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .renren:hover {
  background-color: #383838;
}
.social-icons .dropbox:before {
  content: "\f16b";
  top: 0;
  opacity: 1;
}
.social-icons .dropbox:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .dropbox:hover {
  background-color: #2c92dd;
}
.social-icons .github:before {
  content: "\f09b";
  top: 0;
  opacity: 1;
}
.social-icons .github:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .github:hover {
  background-color: #5c7381;
}
.social-icons .css3:before {
  content: "\f13c";
  top: 0;
  opacity: 1;
}
.social-icons .css3:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .css3:hover {
  background-color: #d21309;
}
.social-icons .tumblr:before {
  content: "\f173";
  top: 0;
  opacity: 1;
}
.social-icons .tumblr:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .tumblr:hover {
  background-color: #3d658d;
}
.social-icons .instagram:before {
  content: "\f16d";
  top: 0;
  opacity: 1;
}
.social-icons .instagram:hover:before {
  top: 30px;
  opacity: 0;
}
.social-icons .instagram:hover {
  background-color: #3f6f94;
}
/*Message box
============================================*/
.merror,
.merror strong {
  background-color: #FFE9E9;
  border: 1px solid #FBC4C4;
  color: #DE5959;
}
.msuccess,
.msuccess strong {
  background-color: #EBF6E0;
  border: 1px solid #B3DC82;
  color: #5F9025;
}
.mwarning,
.mwarning strong {
  background-color: #FBFADD;
  border: 1px solid #DED58A;
  color: #8F872E;
}
.mnotice,
.mnotice strong {
  background-color: #E9F7FE;
  border: 1px solid #B6D7E8;
  color: #5091B2;
}
.alert strong {
  border: none;
}
/*======= Icon =======*/
.dexp-icon {
  padding-right: 5px;
}
.dexp-box-shortcode .box-icon {
  text-align: center;
  -webkit-transform: rotate(0deg) scale(1) skew(0) translate(0);
  -moz-transform: rotate(0deg) scale(1) skew(0) translate(0);
  -o-transform: rotate(0deg) scale(1) skew(0) translate(0);
  -ms-transform: rotate(0deg) scale(1) skew(0) translate(0);
  transform: rotate(0deg) scale(1) skew(0) translate(0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dexp-box-shortcode.box-background .box-icon {
  background-color: #009fda;
  border: 1px #009fda solid;
  color: #fff;
}
.dexp-box-shortcode:not(.box-background) .box-icon {
  color: #009fda;
}
.dexp-box-shortcode.box-left .box-icon,
.dexp-box-shortcode.box-right .box-icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 21px;
  position: relative;
  overflow: hidden;
}
.dexp-box-shortcode.box-left .box-icon span,
.dexp-box-shortcode.box-right .box-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: -49px;
  -webkit-transition: top 0.3s linear;
  -moz-transition: top 0.3s linear;
  -o-transition: top 0.3s linear;
  -ms-transition: top 0.3s linear;
  transition: top 0.3s linear;
}
.dexp-box-shortcode.box-left.box-none .box-icon,
.dexp-box-shortcode.box-right.box-none .box-icon {
  font-size: 30px;
}
.dexp-box-shortcode.box-left.box-none .box-icon span,
.dexp-box-shortcode.box-right.box-none .box-icon span {
  top: -53px;
}
.dexp-box-shortcode.box-left h3.box-title,
.dexp-box-shortcode.box-right h3.box-title {
  font-size: 18px;
  font-weight: 300;
}
.dexp-box-shortcode.box-left .box-content,
.dexp-box-shortcode.box-right .box-content {
  font-size: 13px;
}
.dexp-box-shortcode.box-left:not(.box-none):hover .box-icon span,
.dexp-box-shortcode.box-right:not(.box-none):hover .box-icon span {
  top: 0px;
}
.dexp-box-shortcode.box-left.box-background:hover .box-icon,
.dexp-box-shortcode.box-right.box-background:hover .box-icon {
  background: #FFF;
  color: #009fda;
}
.dexp-box-shortcode.box-left.box-background:hover .box-icon span,
.dexp-box-shortcode.box-right.box-background:hover .box-icon span {
  top: 0px;
}
.dexp-box-shortcode.box-left .box-icon {
  float: left;
}
.dexp-box-shortcode.box-left .box-title,
.dexp-box-shortcode.box-left .box-content {
  margin-left: 70px;
}
.dexp-box-shortcode.box-right .box-icon {
  float: right;
}
.dexp-box-shortcode.box-right .box-title,
.dexp-box-shortcode.box-right .box-content {
  margin-right: 70px;
  text-align: right;
}
.dexp-box-shortcode.box-circle .box-icon {
  border-radius: 50%;
  border: 1px #009fda solid;
}
.dexp-box-shortcode.box-square .box-icon {
  border-radius: 5%;
  border: 1px #009fda solid;
}
.dexp-box-shortcode.box-center:not(.box-none) .box-icon {
  width: 100px;
  height: 100px;
  font-size: 40px;
  line-height: 101px;
  margin: 0 auto;
}
.dexp-box-shortcode.box-center:not(.box-none):hover .box-icon {
  background: #009fda;
  color: #fff;
}
.dexp-box-shortcode.box-center:not(.box-none) h3.box-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.dexp-box-shortcode.box-center .box-title {
  text-align: center;
  margin: 30px 30px 0;
}
.dexp-box-shortcode.box-center .box-content {
  text-align: center;
  margin: 10px 30px;
}
.dexp-box-shortcode.box-center.box-none .box-icon {
  font-size: 95px;
  height: 102px;
}
.dexp-box-shortcode.box-center.box-none h3.box-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.dexp-box-shortcode.box-center:hover .box-icon {
  -webkit-transform: rotate(360deg) scale(1.1) skew(0) translate(0);
  -moz-transform: rotate(360deg) scale(1.1) skew(0) translate(0);
  -o-transform: rotate(360deg) scale(1.1) skew(0) translate(0);
  -ms-transform: rotate(360deg) scale(1.1) skew(0) translate(0);
  transform: rotate(360deg) scale(1.1) skew(0) translate(0);
}
/*Buttons
=============================================*/
.dexp-shortcodes-button {
  border-radius: 2px;
  text-decoration: none;
  /*    &.btn-primary:hover{
      background: #a0a5aa !important;
      border: solid 1px #a0a5aa !important;
  }*/
}
.dexp-shortcodes-button:hover {
  text-decoration: none;
}
.dexp-shortcodes-button.btn {
  background: #009fda;
  border: solid 1px #009fda;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.dexp-shortcodes-button.btn:hover {
  background: #a0a5aa !important;
  border: solid 1px #a0a5aa !important;
}
.dexp-shortcodes-button.gray {
  color: #fff;
  background: #a0a5aa;
  border: solid 1px #a0a5aa;
}
.dexp-shortcodes-button.gray:hover {
  background: #009fda !important;
  border: solid 1px #009fda !important;
}
.dexp-shortcodes-button.light-gray {
  color: #a0a5aa;
  background: #f2f4f6;
  border: solid 1px #f2f4f6 !important;
}
.dexp-shortcodes-button.light-gray:hover {
  color: #fff;
  background: #009fda !important;
  border: solid 1px #009fda !important;
}
.dexp-shortcodes-button.line-color {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #009fda;
  color: #009fda;
}
.dexp-shortcodes-button.line-color:hover {
  background: none repeat scroll 0 0 #009fda;
  border: 1px solid #009fda;
  color: #FFFFFF;
}
.dexp-shortcodes-button.line {
  color: #000 !important;
  border: 1px solid #000 !important;
  background: #fff !important;
}
.dexp-shortcodes-button.line:hover {
  color: #000 !important;
  background: #fff !important;
  border: 1px solid #fff !important;
}
.dexp-shortcodes-button.line-white {
  color: #fff !important;
  border: 1px solid #fff !important;
  background: transparent !important;
}
.dexp-shortcodes-button.line-white:hover {
  color: #fff !important;
  opacity: 0.7 !important;
  background: transparent !important;
  border: 1px solid #fff !important;
}
.dexp-shortcodes-button.line-gray {
  color: #b9bec3 !important;
  border: 1px solid #eceef0 !important;
  background-color: #fff !important;
}
.dexp-shortcodes-button.line-gray:hover {
  border: 1px solid #b9bec3 !important;
  background-color: #fff !important;
}
.dexp-shortcodes-button.btn {
  padding: 8px 10px;
}
/*Tables
====================================*/
.table tr th {
  background-color: #F5F5F5;
}
