.w-100 {
    width: 100%;
}

.m-0 {
    margin: 0;
}

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


.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mr-1 {
    margin-right: 0.5rem !important;
}

.mr-2 {
    margin-right: 1rem !important;
}

.ml-1 {
    margin-left: 0.5rem !important;
}

.ml-2 {
    margin-left: 1rem !important;
}

.ml-3 {
    margin-left: 1.5rem !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.pr-1 {
    padding-right: 0.5rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}


.pl-1 {
    padding-left: 0.5rem !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.d-flex {
    display: flex;
}

.d-flex-responsive {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.items-center {
    align-items: center;
}

.relative {
    position: relative;
}

.text-xs {
    font-size: 0.6rem;
}

.text-sm {
    font-size: 0.8rem;
}

.text-md {
    font-size: 0.9rem;
}

.text-xl {
    font-size: 1.2rem;
}

.text-black {
    color: #555;
}

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

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

label {
    /* display: inline-block;
    max-width: 100%;
    margin-bottom: 5px; */
    font-weight: normal;
}

input[type="radio"],
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

input[disabled] {
    opacity: 0.2;
}

select {
    margin-bottom: 5px;
    padding: 5px;
}

option {
    padding: 5px 10px;
}

.bg-light-blue {
    background-color: #f0f8fc;
}

.bg-light-green {
    background-color: #9ec758;
    color: white;
}

.bg-light-green {
    background-color: #9ec758;
    color: white;
}

.btn.bg-light-green a {
    text-decoration: none;
    color: #fff;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: #ececec;
}

.bg-light-gray {
    background-color: #fdfdfd;
}

table.table>tbody>tr>td.bg-light-gray {
    vertical-align: middle;
}

.off {
    opacity: 0.5;
}

.left-line-blue {
    border-left: 5px solid #a9cad4;
    padding-left: 10px;
}

.info-red {
    color: #f68687;
}

.info-green {
    color: #64aa64;
}

.shadow {
    box-shadow: 0 0 2px 1px #a9cad4;
}

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

.table-fixed {
    table-layout: fixed !important;
    width: auto;
}

.table td {
    /* background-color: #fff; */
}

.table td.bg-gray {
    background-color: #fdfdfd;
}

.rounded {
    border-radius: 8px;
}

.alert-sm {
    padding: 7px 15px;
}

.valign-middle {
    vertical-align: middle !important;
}

input[type="file"] {
    border: 0px;
}

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


@media screen and (max-width: 1100px) {
    .d-flex-responsive {
        display: block;
    }

}