/* # Padding */

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-13 {
    padding-left: 13px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-13 {
    padding-right: 13px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-8 {
    padding-top: 8px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}


/* # Margin */

.mt-5 {
    margin-top: 5px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-20 {
    margin-right: 20px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.my-20 {
    margin: 20px 0px !important;
}

.my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.no-margin {
    margin: 0px !important;
}


/* # Display */

.hidden {
    display: none;
}


/* # Color */

.text-green {
    color: #4caf50;
}

.text-gray {
    color: #cfcdcd;
}

.text-red {
    color: #900606;
}

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


/* # Background Color */

.bg-gray {
    background: #f0f0f0;
}

.bg-verde {
    background-color: #1f7a23;
}

.bg-laranja {
    background-color: #ff5e00;
}


/* # Font Size */

.f-12 {
    font-size: 12px !important;
}

.f-13 {
    font-size: 13px !important;
}

.f-14 {
    font-size: 14px !important;
}

.f-15 {
    font-size: 15px !important;
}

.f-18 {
    font-size: 18px !important;
}

.f-25 {
    font-size: 25px !important;
}

.f-30 {
    font-size: 30px !important;
}

.f-35 {
    font-size: 35px !important;
}


/* # Border */

.border-left-laranja {
    border-left: 5px solid #ff5e00;
}

.border-left-verde {
    border-left: 5px solid #1f7a23;
}


/* # Flex-box */

.d-flex {
    display: flex;
}

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

.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: left;
}

.justify-content-end {
    justify-content: right;
}