/* Backgrounds */

.bg-grey {
    background: #aaa;
}

.bg-no {
    background: none;
}

.tbg-dark {
    background: rgba(0, 0, 0, 0.5);
}

.tbg-dark-soft {
    background: rgba(0, 0, 0, 0.3)
}


/* Colors */

.col-white {
    color: #fff;
}

.col-dark {
    color: #333;
}

.col-gray {
    color: #666;
}


/* Borders */

.bor-no {
    border: 0;
}

.bor-x-no {
    border-right: 0;
    border-left: 0;
}

.bor-rad-no {
    border-radius: 0;
}

.bor-rad-circle,
.img-circle {
    border-radius: 10000000px;
}

.bor-left {
    border-left: 2px solid;
}

.bor-color-primary {
    border-color: #d17100;
}


/* Colors */

.c-white {
    color: #fff;
}

.c-light-2 {
    color: rgba(255, 255, 255, 0.7);
}


/* Shadows */

.sha-no {
    box-shadow: 0;
    text-shadow: 0;
}

.sha-box {
    box-shadow: 0 0 40px #000;
}

.sha-box-soft {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sha-hover-no {
    transition: box-shadow 0.3s ease-in-out;
}

.sha-hover-no:hover {
    box-shadow: none;
}


/* Spaces */

.s-pad {
    padding: 50px;
}

.s-mar {
    margin: 50px;
}

.s-pad-hard {
    padding: 100px;
}

.s-mar-hard {
    margin: 100px;
}

.s-pad-soft {
    padding: 20px;
}

.s-mar-soft {
    margin: 2px;
}

.s-pad-top {
    padding-top: 50px;
}

.s-mar-top {
    margin-top: 50px;
}

.s-mar-top-no {
    margin-top: 0;
}

.s-pad-top-hard {
    padding-top: 100px;
}

.s-mar-top-hard {
    margin-top: 100px;
}

.s-pad-y {
    padding-top: 50px;
    padding-bottom: 50px;
}

.s-mar-y {
    margin-top: 50px;
    padding-bottom: 50px;
}

.s-pad-y-hard {
    padding-top: 100px;
    padding-bottom: 100px;
}

.s-mar-y-hard {
    margin-top: 100px;
    padding-bottom: 100px;
}

.s-pad-top-soft {
    padding-top: 20px;
}

.s-mar-top-soft {
    margin-top: 20px;
}

.s-pad-bottom {
    padding-bottom: 50px;
}

.s-mar-bottom {
    margin-bottom: 50px;
}

.s-pad-bottom {
    padding-bottom: 50px;
}

.s-mar-bottom-soft {
    margin-bottom: 20px;
}

.s-mar-bottom-no {
    margin-bottom: 0;
}

.s-pad-bottom-soft {
    padding-bottom: 20px;
}

.s-pad-bottom-hard {
    padding-bottom: 100px;
}

.s-mar-bottom-hard {
    margin-bottom: 100px;
}

.s-pad-x {
    padding-left: 50px;
    padding-right: 50px;
}

.s-pad-x-hard {
    padding-left: 80px;
    padding-right: 80px;
}

.s-mar-x-hard {
    margin-left: 80px;
    margin-right: 80px;
}

.s-pad-y {
    padding-top: 50px;
    padding-bottom: 50px;
}

.s-pad-y-soft {
    padding-top: 20px;
    padding-bottom: 20px;
}

.s-mar-y-soft {
    margin-top: 20px;
    margin-bottom: 20px;
}

.s-mar-y-no {
    margin-top: 0;
    margin-bottom: 0;
}

.s-mar-left-soft {
    margin-left: 10px;
}

.s-mar-right-soft {
    margin-right: 10px;
}

.s-mar-left-no {
    margin-left: 0;
}

.s-pad-left-no {
    padding-left: 0;
}

.s-pad-left {
    padding-left: 15px;
}

.s-mar-left {
    margin-left: 15px;
}

.s-mar-no {
    margin: 0;
}

.s-pad-no {
    padding: 0;
}

.s-pad-right-no {
    padding-right: 0;
}

.s-pad-right-soft {
    padding-right: 10px;
}

.s-pad-left-soft {
    padding-left: 10px;
}

.s-mar-child-no * {
    margin: 0;
}


/* Opacities */

.o-no {
    opacity: 1 !important;
}

.o-fade {
    opacity: 0.5;
}

.o-fade-soft {
    opacity: 0.75;
}

.o-fade-hard {
    opacity: 0.25;
}


/* Displays */

.dis-b {
    display: block;
}

.dis-ib {
    display: inline-block;
}

.dis-if {
    display: inline-flex;
}


/* Shorties */

.s-full {
    width: 100% !important;
}

.s-max-full {
    max-width: 100%;
}


/* Bootstrap overrides */

.img-rounded {
    border-radius: 4px;
}


/* Texts */

.t-master {
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
}

h1.t-master {
    font-size: 5em;
    letter-spacing: 2px;
    line-height: 1.3em;
    margin-bottom: 40px;
}

h2.t-master {
    font-size: 3em;
    line-height: 1.4em;
    padding-left: 10px;
}

h3.t-master {
    font-size: 2em;
    line-height: 1.5em;
    padding-left: 10px;
}

h4.t-master {
    font-size: 1.5em;
    line-height: 1.5em;
    padding-left: 10px;
}

.t-letter-spacing {
    letter-spacing: 1px;
}

.t-line {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.t-light {
    font-weight: 100;
}

.t-line-height {
    line-height: 25px;
}

.t-line-height-hard {
    line-height: 1.2em;
}

.t-large {
    font-size: large;
}

.t-shadow {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.t-shadow-soft {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.t-bold {
    font-weight: bold;
}

.t-unbold {
    font-weight: normal;
}

.text-justify {
    text-align: justify;
}

.page-header-border {
    border-left: 3px solid #d17100;
    padding: 2px 15px;
    color: #333;
}

.t-upper {
    text-transform: uppercase;
}


/* HR */

hr[dark] {
    border-color: rgba(0, 0, 0, 0.1);
}

hr[light] {
    border-color: rgba(255, 255, 255, 0.2);
}


/* Media */

@media(max-width:767px) {
    /* Spaces  */
    .s-pad-x,
    .s-pad-x-hard {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .s-pad,
    .s-pad-hard {
        padding: 25px;
    }
    /* Text */
    h1.t-master {
        font-size: 3.5em;
    }
}


/* Font-awesome */

.fa-6x {
    font-size: 6em;
}

.fa-7x {
    font-size: 7em;
}

.fa-8x {
    font-size: 8em;
}


/* Positions */

.pos-r {
    position: relative;
}


/* Cursors */

.cur-def {
    cursor: default;
}

.cur-p {
    cursor: pointer;
}


/* Media */

@media(max-width:991px) {
    /* Mobile */
    .mobile-text-center {
        text-align: center;
    }
}
