.container {
    height: auto;
    min-height: 100%;
    /* padding-top: 160px; */
    /* padding-bottom: 130px; */
    position: relative;
}

.wrapper {
    height: 100%;
    position: relative;
    padding-top: 160px;
    padding-bottom: 130px;
}

.wrap-campaign{
    display: flex;
    flex-direction:row;
}

.w-700 {
    width: 700px !important;
    margin: 0 auto;
}

.w-1100 {
    width: 1100px !important;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-betw{
    justify-content: space-between;
}

.flex-just-ali-c{
    display:flex;
    justify-content: center;
    align-items: center;
}

.flex-ali-c{
    display:flex;
    align-items: center;
}

.ta-c{
    text-align: center;
}

.fs12 {
    font-size: 12px;
}

.fs15 {
    font-size: 15px;
}

.fs16 {
    font-size: 16px;
}

.fs20 {
    font-size: 20px;
}

.fs24 {
    font-size: 24px;
}
.fs32 {
    font-size: 32px;
}

.fw500{
    font-weight: 500;
}

.fwbold{
    font-weight: bold;
}

.mt2 {
    margin-top: 2px !important;
}

.mt4 {
    margin-top: 4px !important;
}

.mt6 {
    margin-top: 6px !important;
}

.mt8 {
    margin-top: 8px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt12 {
    margin-top: 12px !important;
}

.mt14 {
    margin-top: 14px !important;
}

.mt16 {
    margin-top: 16px !important;
}


.mt24 {
    margin-top: 24px !important;
}

.mt32 {
    margin-top: 32px !important;
}

.mt48 {
    margin-top: 48px !important;
}


.mt60 {
    margin-top: 60px !important;
}

.mt100 {
    margin-top: 100px !important;
}
.mb20{
    margin-bottom: 20px !important;
}
.mb24{
    margin-bottom: 24px !important;
}
.mb40{
    margin-bottom: 40px !important;
}
.mb100{
	margin-bottom: 100px !important;
}

.mr8{
    margin-right: 8px !important;
}

.mr14{
    margin-right: 14px !important;
}

.pt40{
    padding-top: 40px;
}


.panel-loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index : 40000;
}
.panel-loader-circular {
    -webkit-animation: animateloader 1.5s linear infinite;
    -o-animation: animateloader 1.5s linear infinite;
    animation: animateloader 1.5s linear infinite;
    clip: rect(0, 80px, 80px, 40px);
    height: 80px;
    width: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -40px;
    margin-left: -40px;
}
.panel-loader-circular:after {
    -webkit-animation: animateloader2 1.5s ease-in-out infinite;
    -o-animation: animateloader2 1.5s ease-in-out infinite;
    animation: animateloader2 1.5s ease-in-out infinite;
    clip: rect(0, 80px, 80px, 40px);
    content: '';
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
}
@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}