* {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    color: rgb(55, 55, 55);
    transition: all 0.2s ease-in-out;
}

.p-0 {
    padding: 0px;
}

.p-1 {
    padding: 10px;
}

.p-2 {
    padding: 20px;
}

.p-3 {
    padding: 30px;
}

.p-4 {
    padding: 40px;
}

.p-5 {
    padding: 50px;
}

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

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

.m-0 {
    margin: 0px;
}

.m-1 {
    margin: 10px;
}

.m-2 {
    margin: 20px;
}

.m-3 {
    margin: 30px;
}

.m-4 {
    margin: 40px;
}

.m-5 {
    margin: 50px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}

.table table {
    border-collapse: collapse;
    width: 100%;
}

.table table thead th {
    /* background-color: #04AA6D; */
    background-color: #363636;
    color: white;
    height: 60px;
}

.table table tbody td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.table table th,
.table table td {
    text-align: left;
    padding: 10px;
}

.table table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table table tr:hover {
    background-color: rgba(0, 0, 0, 0.104);
}

input,
select {
    padding: 0px 16px;
    border: 1px solid rgb(125, 125, 125);
    border-radius: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 40px;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.form {
    display: flex;
    flex-direction: row;
    width: 100%;
    row-gap: 20px;
    column-gap: 20px;
    flex-wrap: wrap;
    flex: 1 1 0px
}

.form div>input, .form div>select{
    display: block;
    width: 285px;
    max-width: 285px;
    min-width: 285px;
}
.form div>label{
    display: block;
}

.d-flex {
    display: flex;
}

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

.btn {
    margin: 0px 4px;
    padding: 8px 12px;
    border-radius: 5px;
    /* background-color: #04AA6D; */
    background-color: #0000000f;
    border: none;
    font-size: 13px;
    cursor: pointer;
    color: white;
    /* width: 100%; */
    /* min-width: 110px; */
}

.btn img {
    height: 30px;
}

.btn:hover {
    transform: scale(1.05);
}

.alert{
    padding: 15px 20px;
    color: #fff;
    position: fixed;
    top: 30px;
    right: 30px;
    border-radius: 5px;
    min-width: 300px;
    display: none;
    box-shadow: 0px 3px 5px #0000003d;
}
.alert.success{
    background-color: #04AA6D;
}
.alert.error{
    background-color: #aa2b04;
}
.alert * {
    color: #fff;
}

.alert.show{
    display: block !important;
}

.d-none {
    display: none;
}