﻿/*

    CSS Helpers

*/

/* Text Wraping */

.wrap-none {
    white-space: nowrap;
}

/* Borders */

.bs-1 {
    border: 1px solid #000000;
}

.bs-2 {
    border: 2px solid #000000;
}

.bs-3 {
    border: 3px solid #000000;
}

/* Margin - 0px */

.mt-0, .margin-top-0 {
    margin-top: 0;
}

.mr-0, .margin-right-0 {
    margin-right: 0;
}

.mb-0, .margin-bottom-0 {
    margin-bottom: 0;
}

.ml-0, .margin-left-0 {
    margin-left: 0;
}

/* Margin - 10px */

.mt-10, .margin-top-10 {
    margin-top: 10px;
}

.mb-10, .margin-bottom-10 {
    margin-bottom: 10px;
}

/* Margin - 20px */

.mt-20, .margin-top-20 {
    margin-top: 20px !important;
}

.mb-20, .margin-bottom-20 {
    margin-bottom: 20px;
}

/* Margin - 30px */

.mt-30, .margin-top-30 {
    margin-top: 30px;
}

.mb-30, .margin-bottom-30 {
    margin-bottom: 30px;
}

/* Margin - 40px */

.mt-40, .margin-top-40 {
    margin-top: 40px;
}

.mb-40, .margin-bottom-40 {
    margin-bottom: 40px;
}

/* Padding - 0px */

.pt-0, .padding-top-0 {
    padding-top: 0;
}

.pr-0, .padding-right-0 {
    padding-right: 0;
}

.pb-0, .padding-bottom-0 {
    padding-bottom: 0;
}

.pl-0, .padding-left-0 {
    padding-left: 0;
}
