/*!
* Bootstrap - Custom Helper classes
* Copyright 2015 Peter Deak
* Licensed under MIT 
* Use: copy beside style.css and import --> @import url("helper.css"); 
*/

/* Remove focus, active outlines */
a:focus, 
a:active, 
button:focus, 
button:active {
    outline: none !important;
}

/* Remove underline for anchors */
a, a:hover {
    text-decoration: none;
}

/* Ease transition for anchors and buttons */
a, button, a img {
    -webkit-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

/* bold, bolder */
strong, .strong, .bold {
    font-weight: 600;
}
.strongest, .bolder {
    font-weight: 800;
}

/* background colors */
.bg-white {
    background-color: #fff;  
}
.bg-gray {
    background-color: #bbb;  
}
.bg-dark-gray {
    background-color: #6d6d6d;  
}
.bg-light-gray {
    background-color: #f3f3f3;  
}
.bg-black {
    background-color: #000;  
}
.bg-transparent {
    background-color: rgba(0,0,0,0);
}

/* text colors */
.text-white {
    color: #fff;  
}
.text-black {
    color: #000;  
}
.text-gray {
    color: #999;  
}
.text-dark-gray {
    color: #6d6d6d;  
}
.text-light-gray {
    color: #f3f3f3;  
}


/* link colors */
.link-white a,
a.link-white {
    color: #fff;  
}
.link-white a:hover,
a.link-white:hover {
    color: #fff;  
    opacity: 0.5;
}
.link-black a,
a.link-black {
    color: #000;  
}
.link-black a:hover,
a.link-black:hover {
    color: #000;  
    opacity: 0.7;
}
.link-gray a,
a.link-gray {
    color: #bbb; 
}
.link-gray a:hover,
a.link-gray:hover {
    color: #f3f3f3;  
}
.link-light-gray a,
a.link-light-gray {
    color: #f3f3f3;  
}
.link-light-gray a:hover,
a.link-light-gray:hover {
    color: #fff;  
}
.link-dark-gray a,
a.link-dark-gray {
    color: #6d6d6d;  
}
.link-dark-gray a:hover,
a.link-dark-gray:hover {
    color: #4d4d4d;  
}


/* text sizes */
.text-xxs {
    font-size: 10px !important;
}
.text-xs {
    font-size: 11px !important;
}
.text-sm {
    font-size: 13px !important;
}
.text-md {
    font-size: 16px !important;
}
.text-lg {
    font-size: 20px !important;
}
.text-xl {
    font-size: 24px !important;
}
.text-xxl {
    font-size: 28px !important;
}

/* text styles */
.text-italic {
    font-style: italic;
}
.text-underline {
    text-decoration: underline;
}
.text-overline {
    text-decoration: overline;
}
.text-strike {
    text-decoration: line-through;
}
.text-smallcaps {
    font-variant: small-caps;
}


/* text hyphenation */
.text-hyphenate {
    text-align: justify;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}
/* text ellipsis */
.text-ellipsis {
    display: inline-block;
    width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    position: relative;
    top: 5px;
}
.ellipsis-2row {
  display: block;
  display: -webkit-box;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* selection */
::selection {
  background: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}
.bg-black ::selection {
  background: #fff;
  color: #000;
}
.bg-black ::-moz-selection {
  background: #fff;
  color: #000;
}


/* vertical alignment */
.v-top {
    vertical-align: top !important;
}
.v-middle {
    vertical-align: middle !important;
}
.v-bottom {
    vertical-align: bottom !important;
}

/* font awesome half size between default and 2x */
.fa-1x {
    font-size: 1.6em !important;
}

/* placeholder color */
.form-control::-webkit-input-placeholder {
    color: #777;
    opacity: 1;
    font-style: normal;
}
.form-control::-moz-placeholder {
    color: #777;
    opacity: 1;
    font-style: normal;
}
.form-control:focus::-moz-placeholder {
    opacity: 0.5;
}

/* textarea - no resize, resize vertical, resize horizontal */
.no-resize {
    resize: none;
}
.resize-v { 
    resize: vertical; 
    min-height: 50px;
}
.resize-h { 
    resize: horizontal; 
    min-width: 200px;
}

/* form element focus no-highlight */
.form-control:focus {
    border-color: inherit;
    box-shadow: none;
    outline: 0 none;
}

/* Remove the Gutter Padding from Columns */
.no-gutter {
    margin-left: 0;
    margin-right: 0;
}
.no-gutter > [class*='col-'] {
   padding-right: 0;
   padding-left: 0;
}

/* Half Gutter */
.half-gutter {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.half-gutter > [class*='col-'] {
   padding-right: 7.5px;
   padding-left: 7.5px;
}

/* Gutter 20 */
.gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}
.gutter-20 > [class*='col-'] {
   padding-right: 10px;
   padding-left: 10px;
}

/* unstyled list */
.list-unstyle {
    list-style-type: none;
    padding: 0;
}


/* Gutter 10 */
.gutter-10 {
    margin-left: -5px;
    margin-right: -5px;
}
.gutter-10 > [class*='col-'] {
   padding-right: 5px;
   padding-left: 5px;
}

/* unstyled list */
.list-unstyle {
    list-style-type: none;
    padding: 0;
}

/* Custom Container Sizes */
.container-small, 
.container-large {
   max-width: 100%;
}
@media (min-width: 768px) {
   .container-small {
      width: 300px;
   }
   .container-large {
      width: 970px;
   }
}
@media (min-width: 992px) {
   .container-small {
      width: 500px;
   }
   .container-large {
      width: 1170px;
   }
}
@media (min-width: 1200px) {
   .container-small {
      width: 700px;
   }
   .container-large {
      width: 1500px;
   }
}

/* Five columns */
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}



/* padded, bordered, box-shadow */

.padded {
   padding: 15px;
}

.padded-xs {
    padding: 5px;
}
.padded-sm {
    padding: 10px;
}
.padded-md {
    padding: 20px;
}
.padded-lg,
.padded-2x {
    padding: 30px;
}

/* padding vertical */
.pv15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.pv20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.pv30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.pv40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.pv50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* padding horizontal */
.ph15 {
    padding-left: 15px;
    padding-right: 15px;
}
.ph20 {
    padding-left: 20px;
    padding-right: 20px;
}
.ph30 {
    padding-left: 30px;
    padding-right: 30px;
}
.ph40 {
    padding-left: 40px;
    padding-right: 40px;
}
.ph50 {
    padding-left: 50px;
    padding-right: 50px;
}

/* padding bottom */
.pb15 {
    padding-bottom: 15px !important;
} 
.pb20 {
    padding-bottom: 20px !important;
}   
.pb25 {
    padding-bottom: 25px !important;
} 
.pb30 {
    padding-bottom: 30px !important;
}  
.pb40 {
    padding-bottom: 40px !important;
}  
.pb50 {
    padding-bottom: 50px !important;
}   

/* padding top */
.pt15 {
    padding-top: 15px !important;
} 
.pt20 {
    padding-top: 20px !important;
}   
.pt25 {
    padding-top: 25px !important;
} 
.pt30 {
    padding-top: 30px !important;
}  
.pt40 {
    padding-top: 40px !important;
}  
.pt50 {
    padding-top: 50px !important;
} 

/* padding right */
.pr15 {
    padding-right: 15px !important;
} 
.pr20 {
    padding-right: 20px !important;
}   
.pr25 {
    padding-right: 25px !important;
} 
.pr30 {
    padding-right: 30px !important;
}  
.pr40 {
    padding-right: 40px !important;
}  
.pr50 {
    padding-right: 50px !important;
}  

/* padding left */
.pl15 {
    padding-left: 15px !important;
} 
.pl20 {
    padding-left: 20px !important;
}   
.pl25 {
    padding-left: 25px !important;
} 
.pl30 {
    padding-left: 30px !important;
}  
.pl40 {
    padding-left: 40px !important;
}  
.pl50 {
    padding-left: 50px !important;
}  


/* margin */
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb25 {
    margin-bottom: 25px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}

.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt35 {
    margin-top: 35px !important;
}
.mt40 {
    margin-top: 40px !important;
}

.mv30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}
.mv40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

/* width control */
.w200 {
    width:200px !important;
}
.w150 {
    width: 150px !important;
}
.w100 {
    width: 100px !important;
}
.w80 {
    width: 80px !important;
}
.w50 {
    width: 50px !important;
}
.w40 {
    width: 40px !important;
}
.w30 {
    width: 30px !important;
}
.w20 {
    width: 20px !important;
}
  
.bordered {
   border: 1px solid #ddd;
}
.box-shadow {
   -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
   -moz-box-shadow:    0px 2px 4px 0px rgba(0, 0, 0, 0.2);
   box-shadow:         0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.box-shadow-inset {
   -webkit-box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
   -moz-box-shadow:    inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
   box-shadow:         inset 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}


/* Remove margins */
.no-margin {
   margin: 0 !important;
}
.no-margin-top {
   margin-top: 0 !important;
}
.no-margin-right {
   margin-right: 0 !important;
}
.no-margin-bottom {
   margin-bottom: 0 !important;
}
.no-margin-left {
   margin-left: 0 !important;
}
@media only screen and (max-width : 480px) {
    .no-margin-xs {
       margin: 0 !important;
    }
    .no-margin-top-xs {
       margin-top: 0 !important;
    }
    .no-margin-right-xs {
       margin-right: 0 !important;
    }
    .no-margin-bottom-xs {
       margin-bottom: 0 !important;
    }
    .no-margin-left-xs {
       margin-left: 0 !important;
    }
}

/* Remove paddings */
.no-padding {
   padding: 0 !important;
}
.no-padding-top {
   padding-top: 0 !important;
}
.no-padding-right {
   padding-right: 0 !important;
}
.no-padding-bottom {
   padding-bottom: 0 !important;
}
.no-padding-left {
   padding-left: 0 !important;
}
@media only screen and (max-width : 480px) {
    .no-padding-xs {
       padding: 0 !important;
    }
    .no-padding-top-xs {
       padding-top: 0 !important;
    }
    .no-padding-right-xs {
       padding-right: 0 !important;
    }
    .no-padding-bottom-xs {
       padding-bottom: 0 !important;
    }
    .no-padding-left-xs {
       padding-left: 0 !important;
    }
}

/* Remove borders */
.no-border {
   border: 0 none !important;
}
.no-border-top {
   border-top: 0 none !important;
}
.no-border-right {
   border-right: 0 none !important;
}
.no-border-bottom {
   border-bottom: 0 none !important;
}
.no-border-left {
   border-left: 0 none !important;
}

/* Remove table borders */
.table-no-border,
.table-no-border td,
.table-no-border th {
    border: 0 none !important;
}


/* XXS and XXL buttons */
.btn-xxs, 
.btn-group-xxs > .btn { 
   font-size: 10px;
   padding: 1px 5px;
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
   border-radius: 2px;
}
.btn-xxl,
.btn-group-xxl > .btn {
   font-size: 35px;
   padding: 20px 26px;
   -webkit-border-radius: 8px;
   -moz-border-radius: 8px;
   border-radius: 8px;
}

/* Button block */
@media only screen and (max-width: 480px) {
    .btn-block-xs {
        width: 100%;
    }
}

/* Flat buttons and elements */
.btn-flat, 
.flat,
.flat * {
   -webkit-border-radius: 2px !important;
   -moz-border-radius: 2px !important;
   border-radius: 2px !important;
}

.rounded {
    border-radius: 3px !important;
}

/* Gray buttons */
.btn-light-gray {
  background: rgba(239, 239, 239, 1);
  color: #999;
  border: 1px solid rgba(239, 239, 239, 1);
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn-light-gray:hover, 
.btn-light-gray:focus, 
.btn-light-gray:active {
  background: rgba(239, 239, 239, 0.7);
  border: 1px solid rgba(239, 239, 239, 0.7);
  color: #999;
}

.btn-gray {
  background: rgba(143, 143, 143, 1);
  color: #fff;
  border: 1px solid rgba(143, 143, 143, 1);
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn-gray:hover, 
.btn-gray:focus, 
.btn-gray:active {
  background: rgba(143, 143, 143, 0.7);
  border: 1px solid rgba(143, 143, 143, 0.7);
  color: #fff;
}
.btn-dark-gray {
  background: rgba(47, 47, 47, 1);
  color: #ccc;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn-dark-gray:hover, 
.btn-dark-gray:focus, 
.btn-dark-gray:active {
  background: rgba(47, 47, 47, 0.7);
  color: #ccc;
}


/* Outline buttons */
.btn-outline-light {
  background: rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn-outline-light:hover, 
.btn-outline-light:focus, 
.btn-outline-light:active {
  background: rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
}


/* Hover zoom for image */
.hzoom-img {
  display: block;
  overflow: hidden;
  text-align: center;
  width: 100%;
}
.hzoom-img img {
  margin: 0 auto;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
a:hover .hzoom-img img,
div:hover > div > a .hzoom-img img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

/* Hover zoom+rotate for image */
.hzoom-rotate-img {
    display: block;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.hzoom-rotate-img img {
    margin: 0 auto;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
a:hover .hzoom-rotate-img img {
    -webkit-transform: scale(1.2) rotate(-5deg);
    -moz-transform: scale(1.2) rotate(-5deg);
    -ms-transform: scale(1.2) rotate(-5deg);
    -o-transform: scale(1.2) rotate(-5deg);
    transform: scale(1.2) rotate(-5deg);
}

/* hover slide up title fx */
.sd-fx.img-title {
    bottom: 25px;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    font-size: 13px;
    margin: 0 auto;
    opacity: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    text-transform: none;
    transform: translateY(0px);
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
}
a:hover .sd-fx.img-title {
    opacity: 1;
    transform: translateY(-100%);
}

/* Justified Nav */
.nav-justified > li {
   float: none !important; 
}

/* Responsive text alignment & centered block */

.text-left-not-xs, 
.text-left-not-sm, 
.text-left-not-md, 
.text-left-not-lg {
    text-align: left;
}
.text-center-not-xs, 
.text-center-not-sm, 
.text-center-not-md, 
.text-center-not-lg {
    text-align: center;
}
.text-right-not-xs, 
.text-right-not-sm, 
.text-right-not-md, 
.text-right-not-lg {
    text-align: right;
}
.text-justify-not-xs, 
.text-justify-not-sm, 
.text-justify-not-md, 
.text-justify-not-lg {
    text-align: justify;
}
.center-block {
    margin: 0 auto;
    float: inherit;
}

@media (max-width: 767px) {
    .text-left-not-xs, 
    .text-center-not-xs, 
    .text-right-not-xs, 
    .text-justify-not-xs {
        text-align: inherit;
    }
    .text-left-xs {
        text-align: left;
    }
    .text-center-xs {
        text-align: center;
    }
    .text-right-xs {
        text-align: right;
    }
    .text-justify-xs {
        text-align: justify;
    }
    .center-block-xs {
        margin: 0 auto;
        float: inherit;
    }
    .no-padding-xs {
        padding: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .text-left-not-sm, 
    .text-center-not-sm, 
    .text-right-not-sm, 
    .text-justify-not-sm {
        text-align: inherit;
    }
    .text-left-sm {
        text-align: left;
    }
    .text-center-sm {
        text-align: center;
    }
    .text-right-sm {
        text-align: right;
    }
    .text-justify-sm {
        text-align: justify;
    }
    .center-block-sm {
        margin: 0 auto;
        float: inherit;
    }
    .no-padding-sm {
        padding: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .text-left-not-md, 
    .text-center-not-md, 
    .text-right-not-md, 
    .text-justify-not-md {
        text-align: inherit;
    }
    .text-left-md {
        text-align: left;
    }
    .text-center-md {
        text-align: center;
    }
    .text-right-md {
        text-align: right;
    }
    .text-justify-md {
        text-align: justify;
    }
    .center-block-md {
        margin: 0 auto;
        float: inherit;
    }
    .no-padding-md {
        padding: 0;
    }
}
@media (min-width: 1200px) {
    .text-left-not-lg, 
    .text-center-not-lg, 
    .text-right-not-lg, 
    .text-justify-not-lg {
        text-align: inherit;
    }
    .text-left-lg {
        text-align: left;
    }
    .text-center-lg {
        text-align: center;
    }
    .text-right-lg {
        text-align: right;
    }
    .text-justify-lg {
        text-align: justify;
    }
    .center-block-lg {
        margin: 0 auto;
        float: inherit;
    }
    .no-padding-lg {
        padding: 0;
    }
}

/* gaps */
.gap {
    clear: both;
    display: block;
    height: 15px;
    width: 100%;
}
.gap20 {
    clear: both;
    display: block;
    height: 20px;
    width: 100%;
}
.gap30 {
    clear: both;
    display: block;
    height: 30px;
    width: 100%;
}
.gap40 {
    clear: both;
    display: block;
    height: 40px;
    width: 100%;
}

/* responsive table */
@media only screen and (max-width: 800px) {
    
    /* Force table to not be like tables anymore */
	.no-more-tables table, 
	.no-more-tables thead, 
	.no-more-tables tbody, 
	.no-more-tables th, 
	.no-more-tables td, 
	.no-more-tables tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	.no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	.no-more-tables tr { border: 1px solid #ccc; }
 
	.no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:left;
	}
	
	.no-more-tables td.full { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 8px; 
		padding-top: 30px;
		white-space: normal;
		text-align:left;
	}
 
	.no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	.no-more-tables td:before { content: attr(data-title); }
}

.cell-top {
    vertical-align: top !important;
}
.cell-middle {
    vertical-align: middle !important;
}
.cell-bottom {
    vertical-align: bottom !important;
}

/* borderless table */
table.no-border,
table.no-border tbody,
table.no-border tr, 
table.no-border td, 
table.no-border th {
    border: 0 none !important;
}
table.no-border {
    margin-left: -6px !important;
}

/* Multiple column list */
ul.multi-col-list {
	overflow: hidden;
	margin-left: -5px;
	margin-right: -5px;
}
ul.multi-col-list li{
	line-height: 1.5em;
	float: left;
	display: inline;
	padding-left: 5px;
	padding-right: 5px;
}
ul.multi-col-list.list-1 li	{ 
    width: 100%;
}
ul.multi-col-list.list-2 li	{ 
    width: 50%;
}
ul.multi-col-list.list-3 li	{ 
    width: 33.333%; 
}
ul.multi-col-list.list-4 li	{ 
    width: 25%; 
}
ul.multi-col-list.list-5 li	{ 
    width: 20%; 
}
ul.multi-col-list.list-6 li	{ 
    width: 16.666%; 
}


/* multiple columns */
.multi-column-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-column-gap: 15px;
    -moz-column-column-gap: 15px;
    column-gap: 15px;
    -moz-column-fill: balance;
    column-fill: balance;
}
.multi-column-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-column-gap: 15px;
    -moz-column-column-gap: 15px;
    column-gap: 15px;
    -moz-column-fill: balance;
    column-fill: balance;
}
.multi-column-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-column-gap: 15px;
    -moz-column-column-gap: 15px;
    column-gap: 15px;
    -moz-column-fill: balance;
    column-fill: balance;
}



/* Mega menu */
.mega-menu .nav, 
.mega-menu .collapse, 
.mega-menu .dropup, 
.mega-menu .dropdown {
    position: static;
}
.mega-menu .container {
    position: relative;
}
.mega-menu .dropdown-menu {
    left: auto;
    border-top-color: #ededed;
    -webkit-box-shadow: 0 10px 12px rgba(0,0,0,.175);
    box-shadow: 0 10px 12px rgba(0,0,0,.175);
}
.mega-menu .mega-menu-content {
    padding: 20px;
}
.mega-menu .dropdown.mega-menu-fw .dropdown-menu {
    left: 0;
    margin: -1px 15px 0 15px !important;
    right: 0;
}
.mega-menu .dropdown.no-mega-menu .dropdown-menu {
    left: inherit !important;
    margin: inherit !important;
    right: inherit !important;
    max-width: 300px;
    min-width: 250px;
}
.mega-menu .dropdown.no-mega-menu-r .dropdown-menu {
    left: unset !important;
    margin: 0 !important;
    right: unset !important;
    max-width: 300px;
    min-width: 250px;
}
.mega-menu .dropdown.no-mega-menu-l .dropdown-menu {
    left: unset !important;
    margin: 0 !important;
    right: unset !important;
    max-width: 300px;
    min-width: 250px;
}

.mega-menu .dropdown.mega-menu-wide .dropdown-menu {
    left: -50%;
    right: -50%;
}


/* flat color alerts */
.alert-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}
.alert-warning {
    background-color: #e67e22;
    border-color: #e67e22;
    color: #fff;
}
.alert-info {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
}
.alert-success {
    background-color: #1abc9c;
    border-color: #1abc9c;
    color: #fff;
}
.alert-gray {
    background-color: #d3dbe2;
    border-color: #d3dbe2;
    color: #72879a;
    font-size: 16px;
}


/* alert sizes */
.alert-sm {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.alert-xs {
    font-size: 11px;
    padding: 2px 4px;
    margin-bottom: 8px;
}


/* nav justified xs */
@media only screen and (max-width: 480px) {
    .nav-justified-xs {
        width: 100%;
    }
    .nav-justified-xs li {
        width: 33.3333%; 
    }
    .nav-justified-xs > li > a {
        margin-right: 0 !important;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
}

/* grayscale img */
img.grayscale {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}


/* list styles */
.list-style-square {
    list-style-type: square;
}
.list-style-disc {
    list-style-type: disc;
}
.list-style-circle {
    list-style-type: circle;
}

/* list striped */
.list-striped {
    margin-bottom: 0;
}
.list-striped li {
    border-bottom: 1px solid #ededed;
    
}
.list-striped li:last-child {
    border-bottom: 0 none;
}


hr {
    border-top: 1px solid #ddd;
}

hr.thin {
    margin: 10px 0;
}
hr.thick {
    margin: 15px 0;
}

blockquote {
    font-size: 16px;
    font-style: italic;
}

/* tooltip z-index hack */
.tooltip {
    position: fixed;
}

/* boxed center */
.boxed {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.boxed-50 {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.boxed-70 {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.boxed-80 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}


/* link underline animation */
a.h-fx {
    position: relative;
}
a.h-fx:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a.h-fx:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* absolute centered grid item */
.center-grid {
    display: grid;
    align-content: center;
    justify-content: center;
}


/* responsive object */
.responsive-object {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 60px; overflow: hidden;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}