* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
a { text-decoration: none }
h1,h2,h3,h4,h5 {
    margin-bottom: 20px;
}

.w100 {
    width: 100%;
}
.btn {
    transition: .3;
    padding: 8px 15px;
    /* border-radius: 10px; */
    display: block;
    width: fit-content;
    transition: .3;
    cursor: pointer;
}
.btn:hover {
    background: rgba(138, 138, 138, 0.479);
}

.btn-primary {
    background: transparent;
    color: rgb(0, 140, 255);
    border: 2px solid rgb(0, 140, 255);
    padding: 8px 15px;
}
.btn-primary:hover {
    background: rgb(0, 140, 255);
    color: white;
    opacity: .7;
}
.btn-link {
    background: rgb(0, 140, 255);
    color: white;
    padding: 8px 15px;
}
.btn-danger {
    background: red;
    color: white;
}


.btn-create {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 140, 255);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    padding: 20px;
}

.z-depth-1 {
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
.z-depth-2 {
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 30%);
}

.card {
    position: relative;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}
/* Toasters */
.toaster {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 6px;
    max-width: 400px;
    font-weight: 600;
    transition: 1s;
}

.toaster-success {
    background: #30d330;
}
.toaster-error {
    background: #ff3b3b;
}

.toaster.hide {
    right: -700px;
    display: block;
}

/* forms */
label, input, textarea, select {
    width: 100%;
    display: block;
}

input, textarea, select {
    padding: 6px;
    border-radius: 8px;
    border: 1px solid whitesmoke;
    background-color: whitesmoke;
    font-size: 17px;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 2px 0 rgb(0 0 0 / 20%);
    margin-bottom: 8px;
}




/* Helpers space */
.pa-1 {padding: .5rem;}
.pa-2 {padding: 1rem;}
.pa-3 {padding: 1.5rem;}
.pt-2 {padding-top: 1rem;}
.pt-3 {padding-top: 1.5rem;}
.pl-2 {padding-left: 1rem;}
.pl-3 {padding-left: 1.5rem;}
.pr-2 {padding-right: 1rem;}
.pr-3 {padding-right: 1.5rem;}

.pb-1 {padding-bottom: .5rem;}
.pb-2 {padding-bottom: 1rem;}
.pb-3 {padding-bottom: 1.5rem;}
.pb-4 {padding-bottom: 2rem;}
.pb-5 {padding-bottom: 2.5rem;}

.ma-1 {margin: .5rem;}
.ma-2 {margin: 1rem;}
.ma-3 {margin: 1.5rem;}
.mt-2 {margin-top: 1rem;}
.mt-3 {margin-top: 1.5rem;}
.ml-2 {margin-left: 1rem;}
.ml-3 {margin-left: 1.5rem;}
.mr-2 {margin-right: 1rem;}
.mr-3 {margin-right: 1.5rem;}

.mb-1 {margin-bottom: .5rem;}
.mb-2 {margin-bottom: 1rem;}
.mb-3 {margin-bottom: 1.5rem;}
.mb-4 {margin-bottom: 2rem;}
.mb-5 {margin-bottom: 2.5rem;}

/* tables */

table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
}

thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
    color: rgba(0,0,0,0.6);
}

td, th {
    padding: 12px 10px;
}

tr {
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

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

.container {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 1000px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}


.col-md-4 { width: 33.32% }
.col-md-6  { width: 50%  }
.col-md-12 { width: 100% }

.col-xs-6  { width: 50%  }
.col-xs-12 { width: 100% }

@media only screen and (min-width: 601px)  {
    .col-md-4 { width: 33.32% !important}
    .col-md-6  { width: 50% !important;  }
    .col-md-12 { width: 100% !important; }
}

@media only screen and (max-width: 600px) {
    .col-xs-6  { width: 50% !important;  }
    .col-xs-12 { width: 100% !important; }
}



/* COLORs */
.text-danger { color: red; }
.text-white { color: white; }


/* Helpers display */

.hide { display: none; }
.bg-img-center {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}
.bg-img-center * {
    z-index: 4;
    position: relative;
}

.bg-img-center::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .4;
    z-index: 1;

}

.page-title {
    font-size: 34px;
}

.title-container {
    display: flex;
    height: 33vh;
    align-items: center;
}

.title-container div {
    width: 100%;
}
.title-container a { color: white  ;}

.capitalize {
    text-transform: capitalize;
}