/*! Frow CSS | MIT License | frowcss.com */

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

.frow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.frow > * {
    max-width: 100%
}

.frow.centered,
.frow.centered-column {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.frow.centered-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.frow.row-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.frow.row-center,
.frow.row-start {
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.frow.row-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.frow.row-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.frow.row-between,
.frow.row-end {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.frow.row-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.center-important {
    justify-content: center !important
}

.frow.row-around {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.frow.column-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.frow.column-center,
.frow.column-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.frow.column-center {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.frow.column-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.frow.inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.frow.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.frow.wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse
}

.frow.nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.frow.direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.frow.direction-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.frow.direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.frow.direction-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.frow.justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.frow.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.frow.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.frow.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.frow.justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.frow.items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.frow.items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.frow.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.frow.items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.frow.items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.frow.content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.frow.content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end
}

.frow.content-center {
    -ms-flex-line-pack: center;
    align-content: center
}

.frow.content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.frow.content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around
}

.frow.gutters {
    margin-left: -15px;
    margin-right: -15px
}

.frow.gutters > [class*=col-lg],
.frow.gutters > [class*=col-md],
.frow.gutters > [class*=col-sm],
.frow.gutters > [class*=col-xs] {
    padding-left: 15px;
    padding-right: 15px
}

.frow [class*=col-lg],
.frow [class*=col-md],
.frow [class*=col-sm],
.frow [class*=col-xs] {
    width: 100%
}

@media (min-width:0px) {
    .frow .col-xs-1-1 {
        width: 100%
    }
    .frow .col-xs-1-2 {
        width: 50%
    }
    .frow .col-xs-2-2 {
        width: 100%
    }
    .frow .col-xs-1-3 {
        width: 33.33333%
    }
    .frow .col-xs-2-3 {
        width: 66.66667%
    }
    .frow .col-xs-3-3 {
        width: 100%
    }
    .frow .col-xs-1-4 {
        width: 25%
    }
    .frow .col-xs-2-4 {
        width: 50%
    }
    .frow .col-xs-3-4 {
        width: 75%
    }
    .frow .col-xs-4-4 {
        width: 100%
    }
    .frow .col-xs-1-5 {
        width: 20%
    }
    .frow .col-xs-2-5 {
        width: 40%
    }
    .frow .col-xs-3-5 {
        width: 60%
    }
    .frow .col-xs-4-5 {
        width: 80%
    }
    .frow .col-xs-5-5 {
        width: 100%
    }
    .frow .col-xs-1-6 {
        width: 16.66667%
    }
    .frow .col-xs-2-6 {
        width: 33.33333%
    }
    .frow .col-xs-3-6 {
        width: 50%
    }
    .frow .col-xs-4-6 {
        width: 66.66667%
    }
    .frow .col-xs-5-6 {
        width: 83.33333%
    }
    .frow .col-xs-6-6 {
        width: 100%
    }
    .frow .col-xs-1-7 {
        width: 14.28571%
    }
    .frow .col-xs-2-7 {
        width: 28.57143%
    }
    .frow .col-xs-3-7 {
        width: 42.85714%
    }
    .frow .col-xs-4-7 {
        width: 57.14286%
    }
    .frow .col-xs-5-7 {
        width: 71.42857%
    }
    .frow .col-xs-6-7 {
        width: 85.71429%
    }
    .frow .col-xs-7-7 {
        width: 100%
    }
    .frow .col-xs-1-8 {
        width: 12.5%
    }
    .frow .col-xs-2-8 {
        width: 25%
    }
    .frow .col-xs-3-8 {
        width: 37.5%
    }
    .frow .col-xs-4-8 {
        width: 50%
    }
    .frow .col-xs-5-8 {
        width: 62.5%
    }
    .frow .col-xs-6-8 {
        width: 75%
    }
    .frow .col-xs-7-8 {
        width: 87.5%
    }
    .frow .col-xs-8-8 {
        width: 100%
    }
    .frow .col-xs-1-9 {
        width: 11.11111%
    }
    .frow .col-xs-2-9 {
        width: 22.22222%
    }
    .frow .col-xs-3-9 {
        width: 33.33333%
    }
    .frow .col-xs-4-9 {
        width: 44.44444%
    }
    .frow .col-xs-5-9 {
        width: 55.55556%
    }
    .frow .col-xs-6-9 {
        width: 66.66667%
    }
    .frow .col-xs-7-9 {
        width: 77.77778%
    }
    .frow .col-xs-8-9 {
        width: 88.88889%
    }
    .frow .col-xs-9-9 {
        width: 100%
    }
    .frow .col-xs-1-10 {
        width: 10%
    }
    .frow .col-xs-2-10 {
        width: 20%
    }
    .frow .col-xs-3-10 {
        width: 30%
    }
    .frow .col-xs-4-10 {
        width: 40%
    }
    .frow .col-xs-5-10 {
        width: 50%
    }
    .frow .col-xs-6-10 {
        width: 60%
    }
    .frow .col-xs-7-10 {
        width: 70%
    }
    .frow .col-xs-8-10 {
        width: 80%
    }
    .frow .col-xs-9-10 {
        width: 90%
    }
    .frow .col-xs-10-10 {
        width: 100%
    }
    .frow .col-xs-1-11 {
        width: 9.09091%
    }
    .frow .col-xs-2-11 {
        width: 18.18182%
    }
    .frow .col-xs-3-11 {
        width: 27.27273%
    }
    .frow .col-xs-4-11 {
        width: 36.36364%
    }
    .frow .col-xs-5-11 {
        width: 45.45455%
    }
    .frow .col-xs-6-11 {
        width: 54.54545%
    }
    .frow .col-xs-7-11 {
        width: 63.63636%
    }
    .frow .col-xs-8-11 {
        width: 72.72727%
    }
    .frow .col-xs-9-11 {
        width: 81.81818%
    }
    .frow .col-xs-10-11 {
        width: 90.90909%
    }
    .frow .col-xs-11-11 {
        width: 100%
    }
    .frow .col-xs-1-12 {
        width: 8.33333%
    }
    .frow .col-xs-2-12 {
        width: 16.66667%
    }
    .frow .col-xs-3-12 {
        width: 25%
    }
    .frow .col-xs-4-12 {
        width: 33.33333%
    }
    .frow .col-xs-5-12 {
        width: 41.66667%
    }
    .frow .col-xs-6-12 {
        width: 50%
    }
    .frow .col-xs-7-12 {
        width: 58.33333%
    }
    .frow .col-xs-8-12 {
        width: 66.66667%
    }
    .frow .col-xs-9-12 {
        width: 75%
    }
    .frow .col-xs-10-12 {
        width: 83.33333%
    }
    .frow .col-xs-11-12 {
        width: 91.66667%
    }
    .frow .col-xs-12-12 {
        width: 100%
    }
}

@media (min-width:768px) {
    .frow .col-sm-1-1 {
        width: 100%
    }
    .frow .col-sm-1-2 {
        width: 50%
    }
    .frow .col-sm-2-2 {
        width: 100%
    }
    .frow .col-sm-1-3 {
        width: 33.33333%
    }
    .frow .col-sm-2-3 {
        width: 66.66667%
    }
    .frow .col-sm-3-3 {
        width: 100%
    }
    .frow .col-sm-1-4 {
        width: 25%
    }
    .frow .col-sm-2-4 {
        width: 50%
    }
    .frow .col-sm-3-4 {
        width: 75%
    }
    .frow .col-sm-4-4 {
        width: 100%
    }
    .frow .col-sm-1-5 {
        width: 20%
    }
    .frow .col-sm-2-5 {
        width: 40%
    }
    .frow .col-sm-3-5 {
        width: 60%
    }
    .frow .col-sm-4-5 {
        width: 80%
    }
    .frow .col-sm-5-5 {
        width: 100%
    }
    .frow .col-sm-1-6 {
        width: 16.66667%
    }
    .frow .col-sm-2-6 {
        width: 33.33333%
    }
    .frow .col-sm-3-6 {
        width: 50%
    }
    .frow .col-sm-4-6 {
        width: 66.66667%
    }
    .frow .col-sm-5-6 {
        width: 83.33333%
    }
    .frow .col-sm-6-6 {
        width: 100%
    }
    .frow .col-sm-1-7 {
        width: 14.28571%
    }
    .frow .col-sm-2-7 {
        width: 28.57143%
    }
    .frow .col-sm-3-7 {
        width: 42.85714%
    }
    .frow .col-sm-4-7 {
        width: 57.14286%
    }
    .frow .col-sm-5-7 {
        width: 71.42857%
    }
    .frow .col-sm-6-7 {
        width: 85.71429%
    }
    .frow .col-sm-7-7 {
        width: 100%
    }
    .frow .col-sm-1-8 {
        width: 12.5%
    }
    .frow .col-sm-2-8 {
        width: 25%
    }
    .frow .col-sm-3-8 {
        width: 37.5%
    }
    .frow .col-sm-4-8 {
        width: 50%
    }
    .frow .col-sm-5-8 {
        width: 62.5%
    }
    .frow .col-sm-6-8 {
        width: 75%
    }
    .frow .col-sm-7-8 {
        width: 87.5%
    }
    .frow .col-sm-8-8 {
        width: 100%
    }
    .frow .col-sm-1-9 {
        width: 11.11111%
    }
    .frow .col-sm-2-9 {
        width: 22.22222%
    }
    .frow .col-sm-3-9 {
        width: 33.33333%
    }
    .frow .col-sm-4-9 {
        width: 44.44444%
    }
    .frow .col-sm-5-9 {
        width: 55.55556%
    }
    .frow .col-sm-6-9 {
        width: 66.66667%
    }
    .frow .col-sm-7-9 {
        width: 77.77778%
    }
    .frow .col-sm-8-9 {
        width: 88.88889%
    }
    .frow .col-sm-9-9 {
        width: 100%
    }
    .frow .col-sm-1-10 {
        width: 10%
    }
    .frow .col-sm-2-10 {
        width: 20%
    }
    .frow .col-sm-3-10 {
        width: 30%
    }
    .frow .col-sm-4-10 {
        width: 40%
    }
    .frow .col-sm-5-10 {
        width: 50%
    }
    .frow .col-sm-6-10 {
        width: 60%
    }
    .frow .col-sm-7-10 {
        width: 70%
    }
    .frow .col-sm-8-10 {
        width: 80%
    }
    .frow .col-sm-9-10 {
        width: 90%
    }
    .frow .col-sm-10-10 {
        width: 100%
    }
    .frow .col-sm-1-11 {
        width: 9.09091%
    }
    .frow .col-sm-2-11 {
        width: 18.18182%
    }
    .frow .col-sm-3-11 {
        width: 27.27273%
    }
    .frow .col-sm-4-11 {
        width: 36.36364%
    }
    .frow .col-sm-5-11 {
        width: 45.45455%
    }
    .frow .col-sm-6-11 {
        width: 54.54545%
    }
    .frow .col-sm-7-11 {
        width: 63.63636%
    }
    .frow .col-sm-8-11 {
        width: 72.72727%
    }
    .frow .col-sm-9-11 {
        width: 81.81818%
    }
    .frow .col-sm-10-11 {
        width: 90.90909%
    }
    .frow .col-sm-11-11 {
        width: 100%
    }
    .frow .col-sm-1-12 {
        width: 8.33333%
    }
    .frow .col-sm-2-12 {
        width: 16.66667%
    }
    .frow .col-sm-3-12 {
        width: 25%
    }
    .frow .col-sm-4-12 {
        width: 33.33333%
    }
    .frow .col-sm-5-12 {
        width: 41.66667%
    }
    .frow .col-sm-6-12 {
        width: 50%
    }
    .frow .col-sm-7-12 {
        width: 58.33333%
    }
    .frow .col-sm-8-12 {
        width: 66.66667%
    }
    .frow .col-sm-9-12 {
        width: 75%
    }
    .frow .col-sm-10-12 {
        width: 83.33333%
    }
    .frow .col-sm-11-12 {
        width: 91.66667%
    }
    .frow .col-sm-12-12 {
        width: 100%
    }
}

@media (min-width:992px) {
    .frow .col-md-1-1 {
        width: 100%
    }
    .frow .col-md-1-2 {
        width: 50%
    }
    .frow .col-md-2-2 {
        width: 100%
    }
    .frow .col-md-1-3 {
        width: 33.33333%
    }
    .frow .col-md-2-3 {
        width: 66.66667%
    }
    .frow .col-md-3-3 {
        width: 100%
    }
    .frow .col-md-1-4 {
        width: 25%
    }
    .frow .col-md-2-4 {
        width: 50%
    }
    .frow .col-md-3-4 {
        width: 75%
    }
    .frow .col-md-4-4 {
        width: 100%
    }
    .frow .col-md-1-5 {
        width: 20%
    }
    .frow .col-md-2-5 {
        width: 40%
    }
    .frow .col-md-3-5 {
        width: 60%
    }
    .frow .col-md-4-5 {
        width: 80%
    }
    .frow .col-md-5-5 {
        width: 100%
    }
    .frow .col-md-1-6 {
        width: 16.66667%
    }
    .frow .col-md-2-6 {
        width: 33.33333%
    }
    .frow .col-md-3-6 {
        width: 50%
    }
    .frow .col-md-4-6 {
        width: 66.66667%
    }
    .frow .col-md-5-6 {
        width: 83.33333%
    }
    .frow .col-md-6-6 {
        width: 100%
    }
    .frow .col-md-1-7 {
        width: 14.28571%
    }
    .frow .col-md-2-7 {
        width: 28.57143%
    }
    .frow .col-md-3-7 {
        width: 42.85714%
    }
    .frow .col-md-4-7 {
        width: 57.14286%
    }
    .frow .col-md-5-7 {
        width: 71.42857%
    }
    .frow .col-md-6-7 {
        width: 85.71429%
    }
    .frow .col-md-7-7 {
        width: 100%
    }
    .frow .col-md-1-8 {
        width: 12.5%
    }
    .frow .col-md-2-8 {
        width: 25%
    }
    .frow .col-md-3-8 {
        width: 37.5%
    }
    .frow .col-md-4-8 {
        width: 50%
    }
    .frow .col-md-5-8 {
        width: 62.5%
    }
    .frow .col-md-6-8 {
        width: 75%
    }
    .frow .col-md-7-8 {
        width: 87.5%
    }
    .frow .col-md-8-8 {
        width: 100%
    }
    .frow .col-md-1-9 {
        width: 11.11111%
    }
    .frow .col-md-2-9 {
        width: 22.22222%
    }
    .frow .col-md-3-9 {
        width: 33.33333%
    }
    .frow .col-md-4-9 {
        width: 44.44444%
    }
    .frow .col-md-5-9 {
        width: 55.55556%
    }
    .frow .col-md-6-9 {
        width: 66.66667%
    }
    .frow .col-md-7-9 {
        width: 77.77778%
    }
    .frow .col-md-8-9 {
        width: 88.88889%
    }
    .frow .col-md-9-9 {
        width: 100%
    }
    .frow .col-md-1-10 {
        width: 10%
    }
    .frow .col-md-2-10 {
        width: 20%
    }
    .frow .col-md-3-10 {
        width: 30%
    }
    .frow .col-md-4-10 {
        width: 40%
    }
    .frow .col-md-5-10 {
        width: 50%
    }
    .frow .col-md-6-10 {
        width: 60%
    }
    .frow .col-md-7-10 {
        width: 70%
    }
    .frow .col-md-8-10 {
        width: 80%
    }
    .frow .col-md-9-10 {
        width: 90%
    }
    .frow .col-md-10-10 {
        width: 100%
    }
    .frow .col-md-1-11 {
        width: 9.09091%
    }
    .frow .col-md-2-11 {
        width: 18.18182%
    }
    .frow .col-md-3-11 {
        width: 27.27273%
    }
    .frow .col-md-4-11 {
        width: 36.36364%
    }
    .frow .col-md-5-11 {
        width: 45.45455%
    }
    .frow .col-md-6-11 {
        width: 54.54545%
    }
    .frow .col-md-7-11 {
        width: 63.63636%
    }
    .frow .col-md-8-11 {
        width: 72.72727%
    }
    .frow .col-md-9-11 {
        width: 81.81818%
    }
    .frow .col-md-10-11 {
        width: 90.90909%
    }
    .frow .col-md-11-11 {
        width: 100%
    }
    .frow .col-md-1-12 {
        width: 8.33333%
    }
    .frow .col-md-2-12 {
        width: 16.66667%
    }
    .frow .col-md-3-12 {
        width: 25%
    }
    .frow .col-md-4-12 {
        width: 33.33333%
    }
    .frow .col-md-5-12 {
        width: 41.66667%
    }
    .frow .col-md-6-12 {
        width: 50%
    }
    .frow .col-md-7-12 {
        width: 58.33333%
    }
    .frow .col-md-8-12 {
        width: 66.66667%
    }
    .frow .col-md-9-12 {
        width: 75%
    }
    .frow .col-md-10-12 {
        width: 83.33333%
    }
    .frow .col-md-11-12 {
        width: 91.66667%
    }
    .frow .col-md-12-12 {
        width: 100%
    }
}

@media (min-width:1200px) {
    .frow .col-lg-1-1 {
        width: 100%
    }
    .frow .col-lg-1-2 {
        width: 50%
    }
    .frow .col-lg-2-2 {
        width: 100%
    }
    .frow .col-lg-1-3 {
        width: 33.33333%
    }
    .frow .col-lg-2-3 {
        width: 66.66667%
    }
    .frow .col-lg-3-3 {
        width: 100%
    }
    .frow .col-lg-1-4 {
        width: 25%
    }
    .frow .col-lg-2-4 {
        width: 50%
    }
    .frow .col-lg-3-4 {
        width: 75%
    }
    .frow .col-lg-4-4 {
        width: 100%
    }
    .frow .col-lg-1-5 {
        width: 20%
    }
    .frow .col-lg-2-5 {
        width: 40%
    }
    .frow .col-lg-3-5 {
        width: 60%
    }
    .frow .col-lg-4-5 {
        width: 80%
    }
    .frow .col-lg-5-5 {
        width: 100%
    }
    .frow .col-lg-1-6 {
        width: 16.66667%
    }
    .frow .col-lg-2-6 {
        width: 33.33333%
    }
    .frow .col-lg-3-6 {
        width: 50%
    }
    .frow .col-lg-4-6 {
        width: 66.66667%
    }
    .frow .col-lg-5-6 {
        width: 83.33333%
    }
    .frow .col-lg-6-6 {
        width: 100%
    }
    .frow .col-lg-1-7 {
        width: 14.28571%
    }
    .frow .col-lg-2-7 {
        width: 28.57143%
    }
    .frow .col-lg-3-7 {
        width: 42.85714%
    }
    .frow .col-lg-4-7 {
        width: 57.14286%
    }
    .frow .col-lg-5-7 {
        width: 71.42857%
    }
    .frow .col-lg-6-7 {
        width: 85.71429%
    }
    .frow .col-lg-7-7 {
        width: 100%
    }
    .frow .col-lg-1-8 {
        width: 12.5%
    }
    .frow .col-lg-2-8 {
        width: 25%
    }
    .frow .col-lg-3-8 {
        width: 37.5%
    }
    .frow .col-lg-4-8 {
        width: 50%
    }
    .frow .col-lg-5-8 {
        width: 62.5%
    }
    .frow .col-lg-6-8 {
        width: 75%
    }
    .frow .col-lg-7-8 {
        width: 87.5%
    }
    .frow .col-lg-8-8 {
        width: 100%
    }
    .frow .col-lg-1-9 {
        width: 11.11111%
    }
    .frow .col-lg-2-9 {
        width: 22.22222%
    }
    .frow .col-lg-3-9 {
        width: 33.33333%
    }
    .frow .col-lg-4-9 {
        width: 44.44444%
    }
    .frow .col-lg-5-9 {
        width: 55.55556%
    }
    .frow .col-lg-6-9 {
        width: 66.66667%
    }
    .frow .col-lg-7-9 {
        width: 77.77778%
    }
    .frow .col-lg-8-9 {
        width: 88.88889%
    }
    .frow .col-lg-9-9 {
        width: 100%
    }
    .frow .col-lg-1-10 {
        width: 10%
    }
    .frow .col-lg-2-10 {
        width: 20%
    }
    .frow .col-lg-3-10 {
        width: 30%
    }
    .frow .col-lg-4-10 {
        width: 40%
    }
    .frow .col-lg-5-10 {
        width: 50%
    }
    .frow .col-lg-6-10 {
        width: 60%
    }
    .frow .col-lg-7-10 {
        width: 70%
    }
    .frow .col-lg-8-10 {
        width: 80%
    }
    .frow .col-lg-9-10 {
        width: 90%
    }
    .frow .col-lg-10-10 {
        width: 100%
    }
    .frow .col-lg-1-11 {
        width: 9.09091%
    }
    .frow .col-lg-2-11 {
        width: 18.18182%
    }
    .frow .col-lg-3-11 {
        width: 27.27273%
    }
    .frow .col-lg-4-11 {
        width: 36.36364%
    }
    .frow .col-lg-5-11 {
        width: 45.45455%
    }
    .frow .col-lg-6-11 {
        width: 54.54545%
    }
    .frow .col-lg-7-11 {
        width: 63.63636%
    }
    .frow .col-lg-8-11 {
        width: 72.72727%
    }
    .frow .col-lg-9-11 {
        width: 81.81818%
    }
    .frow .col-lg-10-11 {
        width: 90.90909%
    }
    .frow .col-lg-11-11 {
        width: 100%
    }
    .frow .col-lg-1-12 {
        width: 8.33333%
    }
    .frow .col-lg-2-12 {
        width: 16.66667%
    }
    .frow .col-lg-3-12 {
        width: 25%
    }
    .frow .col-lg-4-12 {
        width: 33.33333%
    }
    .frow .col-lg-5-12 {
        width: 41.66667%
    }
    .frow .col-lg-6-12 {
        width: 50%
    }
    .frow .col-lg-7-12 {
        width: 58.33333%
    }
    .frow .col-lg-8-12 {
        width: 66.66667%
    }
    .frow .col-lg-9-12 {
        width: 75%
    }
    .frow .col-lg-10-12 {
        width: 83.33333%
    }
    .frow .col-lg-11-12 {
        width: 91.66667%
    }
    .frow .col-lg-12-12 {
        width: 100%
    }
}

.frow-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%
}

@media (min-width:768px) {
    .frow-container {
        max-width: 750px
    }
}

@media (min-width:992px) {
    .frow-container {
        max-width: 970px
    }
}

@media (min-width:1200px) {
    .frow-container {
        max-width: 1170px
    }
}

.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
    display: none !important
}

.hidden-lg,
.hidden-md,
.hidden-sm,
.hidden-xs {
    display: block !important
}

.frow.hidden-lg,
.frow.hidden-md,
.frow.hidden-sm,
.frow.hidden-xs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

@media (max-width:767px) {
    .visible-xs {
        display: block !important
    }
    .frow.visible-xs {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .frow.hidden-xs,
    .hidden-xs {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important
    }
    .frow.visible-sm {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .frow.hidden-sm,
    .hidden-sm {
        display: none !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important
    }
    .frow.visible-md {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .frow.hidden-md,
    .hidden-md {
        display: none !important
    }
}

@media (min-width:1200px) {
    .visible-lg {
        display: block !important
    }
    .frow.visible-lg {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
    .frow.hidden-lg,
    .hidden-lg {
        display: none !important
    }
}

@media (max-width:767px) {
    .direction-row-xs {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .direction-reverse-xs {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .direction-column-xs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .direction-column-reverse-xs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

@media (min-width:768px) and (max-width:991px) {
    .direction-row-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .direction-reverse-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .direction-column-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .direction-column-reverse-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .direction-row-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .direction-reverse-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .direction-column-md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .direction-column-reverse-md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

@media (min-width:1200px) {
    .direction-row-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .direction-reverse-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .direction-column-lg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .direction-column-reverse-lg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.m-0 {
    margin: 0 !important
}

.m-5 {
    margin: 5px !important
}

.m-10 {
    margin: 10px !important
}

.m-15 {
    margin: 15px !important
}

.m-20 {
    margin: 20px !important
}

.m-25 {
    margin: 25px !important
}

.m-30 {
    margin: 30px !important
}

.m-40 {
    margin: 40px !important
}

.m-50 {
    margin: 50px !important
}

.m-60 {
    margin: 60px !important
}

.m-70 {
    margin: 70px !important
}

.m-80 {
    margin: 80px !important
}

.m-90 {
    margin: 90px !important
}

.m-100 {
    margin: 100px !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important
}

.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important
}

.mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important
}

.mx-25 {
    margin-left: 25px !important;
    margin-right: 25px !important
}

.mx-30 {
    margin-left: 30px !important;
    margin-right: 30px !important
}

.mx-40 {
    margin-left: 40px !important;
    margin-right: 40px !important
}

.mx-50 {
    margin-left: 50px !important;
    margin-right: 50px !important
}

.mx-60 {
    margin-left: 60px !important;
    margin-right: 60px !important
}

.mx-70 {
    margin-left: 70px !important;
    margin-right: 70px !important
}

.mx-80 {
    margin-left: 80px !important;
    margin-right: 80px !important
}

.mx-90 {
    margin-left: 90px !important;
    margin-right: 90px !important
}

.mx-100 {
    margin-left: 100px !important;
    margin-right: 100px !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.my-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.my-5 {
    margin-bottom: 5px !important;
    margin-top: 5px !important
}

.my-10 {
    margin-bottom: 10px !important;
    margin-top: 10px !important
}

.my-15 {
    margin-bottom: 15px !important;
    margin-top: 15px !important
}

.my-20 {
    margin-bottom: 20px !important;
    margin-top: 20px !important
}

.my-25 {
    margin-bottom: 25px !important;
    margin-top: 25px !important
}

.my-30 {
    margin-bottom: 30px !important;
    margin-top: 30px !important
}

.my-40 {
    margin-bottom: 40px !important;
    margin-top: 40px !important
}

.my-50 {
    margin-bottom: 50px !important;
    margin-top: 50px !important
}

.my-60 {
    margin-bottom: 60px !important;
    margin-top: 60px !important
}

.my-70 {
    margin-bottom: 70px !important;
    margin-top: 70px !important
}

.my-80 {
    margin-bottom: 80px !important;
    margin-top: 80px !important
}

.my-90 {
    margin-bottom: 90px !important;
    margin-top: 90px !important
}

.my-100 {
    margin-bottom: 100px !important;
    margin-top: 100px !important
}

.my-auto {
    margin-bottom: auto !important;
    margin-top: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-5 {
    margin-top: 5px !important
}

.mt-10 {
    margin-top: 10px !important
}

.mt-15 {
    margin-top: 15px !important
}

.mt-20 {
    margin-top: 20px !important
}

.mt-25 {
    margin-top: 25px !important
}

.mt-30 {
    margin-top: 30px !important
}

.mt-40 {
    margin-top: 40px !important
}

.mt-50 {
    margin-top: 50px !important
}

.mt-60 {
    margin-top: 60px !important
}

.mt-70 {
    margin-top: 70px !important
}

.mt-80 {
    margin-top: 80px !important
}

.mt-90 {
    margin-top: 90px !important
}

.mt-100 {
    margin-top: 100px !important
}

.mt-auto {
    margin-top: auto !important
}

.mr-0 {
    margin-right: 0 !important
}

.mr-5 {
    margin-right: 5px !important
}

.mr-10 {
    margin-right: 10px !important
}

.mr-15 {
    margin-right: 15px !important
}

.mr-20 {
    margin-right: 20px !important
}

.mr-25 {
    margin-right: 25px !important
}

.mr-30 {
    margin-right: 30px !important
}

.mr-40 {
    margin-right: 40px !important
}

.mr-50 {
    margin-right: 50px !important
}

.mr-60 {
    margin-right: 60px !important
}

.mr-70 {
    margin-right: 70px !important
}

.mr-80 {
    margin-right: 80px !important
}

.mr-90 {
    margin-right: 90px !important
}

.mr-100 {
    margin-right: 100px !important
}

.mr-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-5 {
    margin-bottom: 5px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-15 {
    margin-bottom: 15px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-25 {
    margin-bottom: 25px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-70 {
    margin-bottom: 70px !important
}

.mb-80 {
    margin-bottom: 80px !important
}

.mb-90 {
    margin-bottom: 90px !important
}

.mb-100 {
    margin-bottom: 100px !important
}


.mb-140 {
    margin-bottom: 140px !important
}



.mb-auto {
    margin-bottom: auto !important
}

.ml-0 {
    margin-left: 0 !important
}

.ml-5 {
    margin-left: 5px !important
}

.ml-10 {
    margin-left: 10px !important
}

.ml-15 {
    margin-left: 15px !important
}

.ml-20 {
    margin-left: 20px !important
}

.ml-25 {
    margin-left: 25px !important
}

.ml-30 {
    margin-left: 30px !important
}

.ml-40 {
    margin-left: 40px !important
}

.ml-50 {
    margin-left: 50px !important
}

.ml-60 {
    margin-left: 60px !important
}

.ml-70 {
    margin-left: 70px !important
}

.ml-80 {
    margin-left: 80px !important
}

.ml-90 {
    margin-left: 90px !important
}

.ml-100 {
    margin-left: 100px !important
}

.ml-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-5 {
    padding: 5px !important
}

.p-10 {
    padding: 10px !important
}

.p-15 {
    padding: 15px !important
}

.p-20 {
    padding: 20px !important
}

.p-25 {
    padding: 25px !important
}

.p-30 {
    padding: 30px !important
}

.p-40 {
    padding: 40px !important
}

.p-50 {
    padding: 50px !important
}

.p-60 {
    padding: 60px !important
}

.p-70 {
    padding: 70px !important
}

.p-80 {
    padding: 80px !important
}

.p-90 {
    padding: 90px !important
}

.p-100 {
    padding: 100px !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important
}

.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important
}

.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important
}

.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important
}

.px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important
}

.px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important
}

.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important
}

.px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important
}

.px-70 {
    padding-left: 70px !important;
    padding-right: 70px !important
}

.px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important
}

.px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important
}

.px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important
}

.py-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.py-5 {
    padding-bottom: 5px !important;
    padding-top: 5px !important
}

.py-10 {
    padding-bottom: 10px !important;
    padding-top: 10px !important
}

.py-15 {
    padding-bottom: 15px !important;
    padding-top: 15px !important
}

.py-20 {
    padding-bottom: 20px !important;
    padding-top: 20px !important
}

.py-25 {
    padding-bottom: 25px !important;
    padding-top: 25px !important
}

.py-30 {
    padding-bottom: 30px !important;
    padding-top: 30px !important
}

.py-40 {
    padding-bottom: 40px !important;
    padding-top: 40px !important
}

.py-50 {
    padding-bottom: 50px !important;
    padding-top: 50px !important
}

.py-60 {
    padding-bottom: 60px !important;
    padding-top: 60px !important
}

.py-70 {
    padding-bottom: 70px !important;
    padding-top: 70px !important
}

.py-80 {
    padding-bottom: 80px !important;
    padding-top: 80px !important
}

.py-90 {
    padding-bottom: 90px !important;
    padding-top: 90px !important
}

.py-100 {
    padding-bottom: 100px !important;
    padding-top: 100px !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-5 {
    padding-top: 5px !important
}

.pt-10 {
    padding-top: 10px !important
}

.pt-15 {
    padding-top: 15px !important
}

.pt-20 {
    padding-top: 20px !important
}

.pt-25 {
    padding-top: 25px !important
}

.pt-30 {
    padding-top: 30px !important
}

.pt-40 {
    padding-top: 40px !important
}

.pt-50 {
    padding-top: 50px !important
}

.pt-60 {
    padding-top: 60px !important
}

.pt-70 {
    padding-top: 70px !important
}

.pt-80 {
    padding-top: 80px !important
}

.pt-90 {
    padding-top: 90px !important
}

.pt-100 {
    padding-top: 100px !important
}

.pr-0 {
    padding-right: 0 !important
}

.pr-5 {
    padding-right: 5px !important
}

.pr-10 {
    padding-right: 10px !important
}

.pr-15 {
    padding-right: 15px !important
}

.pr-20 {
    padding-right: 20px !important
}

.pr-25 {
    padding-right: 25px !important
}

.pr-30 {
    padding-right: 30px !important
}

.pr-40 {
    padding-right: 40px !important
}

.pr-50 {
    padding-right: 50px !important
}

.pr-60 {
    padding-right: 60px !important
}

.pr-70 {
    padding-right: 70px !important
}

.pr-80 {
    padding-right: 80px !important
}

.pr-90 {
    padding-right: 90px !important
}

.pr-100 {
    padding-right: 100px !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-5 {
    padding-bottom: 5px !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.pb-15 {
    padding-bottom: 15px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.pb-25 {
    padding-bottom: 25px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.pb-60 {
    padding-bottom: 60px !important
}

.pb-70 {
    padding-bottom: 70px !important
}

.pb-80 {
    padding-bottom: 80px !important
}

.pb-90 {
    padding-bottom: 90px !important
}

.pb-100 {
    padding-bottom: 100px !important
}

.pl-0 {
    padding-left: 0 !important
}

.pl-5 {
    padding-left: 5px !important
}

.pl-10 {
    padding-left: 10px !important
}

.pl-15 {
    padding-left: 15px !important
}

.pl-20 {
    padding-left: 20px !important
}

.pl-25 {
    padding-left: 25px !important
}

.pl-30 {
    padding-left: 30px !important
}

.pl-40 {
    padding-left: 40px !important
}

.pl-50 {
    padding-left: 50px !important
}

.pl-60 {
    padding-left: 60px !important
}

.pl-70 {
    padding-left: 70px !important
}

.pl-80 {
    padding-left: 80px !important
}

.pl-90 {
    padding-left: 90px !important
}

.pl-100 {
    padding-left: 100px !important
}

.width-100 {
    width: 100% !important
}

.width-auto {
    width: auto !important
}

.height-100 {
    height: 100% !important
}

.height-auto {
    height: auto !important
}

.clickable:not([disabled]),
[onclick]:not([disabled]) {
    cursor: pointer !important
}

.not-clickable,
.not-clickable[onclick] {
    cursor: default !important
}

.letsGo-hide {
    display: none !important
}

.shadow-light {
    -webkit-box-shadow: 0 1px 3px 0 #a0a0a0 !important;
    box-shadow: 0 1px 3px 0 #a0a0a0 !important
}

.shadow-dark {
    -webkit-box-shadow: 0 1px 3px 0 #1b1b1b !important;
    box-shadow: 0 1px 3px 0 #1b1b1b !important
}

.text-left {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-right {
    text-align: right !important
}

.text-justify {
    text-align: justify !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}
