/* paddings */
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.pt-40 {
  padding-top: 44px;
}
.pb-40 {
  padding-bottom: 44px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-15 {
  padding-right: 15px;
}

.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}

.pl-5 {
  padding-left: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}

/* margin */
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.ml-10 {
  margin-left: 10px !important;
}
.mr-10 {
  margin-right: 10px;
}
.mr-15 {
  margin-right: 15px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mt-5 {
  margin-top: 5px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.mr-0 {
  margin-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.mr-auto {
  margin-right: auto;
}
.ml-auto {
  margin-left: auto !important;
}

/* POSITIONS */
.pos-relative {
  position: relative !important;
}
.pos-absolute {
  position: absolute;
}
.pos-static {
  position: static !important;
}
.pos-fixed {
  position: fixed;
}
a:focus,
.no-outline:focus {
  outline: transparent;
}

/* DISPLAY */

.flex {
  display: flex;
}

.flex--space-between {
  justify-content: space-between;
}
.flex--justify-center {
  justify-content: center;
}
.flex--justify-start {
  justify-content: flex-start;
}
.flex--justify-end {
  justify-content: flex-end;
}
.flex--center {
  align-items: center;
}
.flex--stretch {
  align-items: stretch;
}
.flex--no-wrap {
  flex-wrap: nowrap;
}
.flex--wrap {
  flex-wrap: wrap;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block !important;
}
.w-100 {
  width: 100%;
}
.inline {
  display: inline !important;
}

.word-wrap--break-word {
  word-wrap: break-word;
}

.bold {
  font-weight: bold;
}
.cursor-pointer {
  cursor: pointer;
}

/* colors */

.green-background {
  background-color: #005446 !important;
}

.gold-background {
  background-color: #ba9653 !important;
}

.gold-color {
  color: #ba9653 !important;
}

.green-color {
  color: #005446 !important;
}

.red-color {
  color: red !important;
}

.gold-background {
  background-color: #ba9653 !important;
}

.grey-background {
  background-color: #58595b !important;
}
.grey-color {
  color: #58595b !important;
}
.light-grey-background {
  background-color: #ecece3;
}
.white-color {
  color: white !important;
}
.white-background {
  background: white !important;
}

.black-color {
  color: black;
}

.grey-border-bottom {
  border-bottom: 1px solid #cccccc !important;
}

.overflow-hidden {
  overflow: hidden;
}

.black-a:hover,
.black-a:focus,
.black-a:active {
  color: black;
}

.white-a:hover,
.white-a:focus,
.white-a:active {
  color: white;
}
