/* *************************** UTILITY CLASSES *************************** */

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

.border-collapse {
    border-collapse: collapse;
}
.clear-left {
    clear: left;
}
.clear-both {
    clear: both;
}
.cursor-not-allowed {
    cursor: not-allowed !important;
}
.cursor-pointer {
    cursor: pointer !important;
}
.opacity-0 {
    opacity: 0;
}
.opacity-25 {
    opacity: .25;
}
.overflow-x-auto {
    overflow-x: auto;    
}


/* Borders */

.border  {
  border-width: 1px;
}
.border-t  {
  border-top-width: 1px;
}

.border-solid {
  border-style: solid;
} 

.border-site-sep {
  border-color: #f0f0f0;
}

.border-body-200 {
  border-color: #d0d0d1;
}

.border-gray-600 {
  border-color: #4b5563;
}

.hover-border-transparent:hover {
  border-color: transparent;
}

.rounded {
  border-radius: 0.25rem !important;
}

/* Colour */

/* https://maketintsandshades.com/#141617 */

.bg-body {
    background-color: #141617;
}
.hover-bg-body:hover {
    background-color: #141617;
}
.bg-white {
    background-color: #fff;
}
.hover-bg-gray-700:hover {
    background-color: #374151 !important;
}
.bg-gray-600 {
    background-color: #4b5563 !important;
}
.bg-gray-f5 {
    background-color: #f5f5f5 !important;
}
.hover-bg-gray-f5:hover {
    background-color: #f5f5f5 !important;
}
.bg-orange-200 {
    background-color: rgb(254 215 170);
}
.bg-red-200 {
    background-color: rgb(254 202 202);
}

.text-body {
    color: #141617;
}
.text-white {
    color: #fff;
}
.hover-text-white:hover {
    color: #fff;
}
.text-red {
    color: #e10707;
}
.hover-text-red:hover {
    color: #e10707;
}

/* Floats */

.float-left {
    float: left !important;
}
.float-none {
    float: none !important;
}
.float-right {
    float: right;
}

/* Flex */

.flex {
    display: flex;
}

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

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

/* Font Family */

.font-family-inherit {
    font-family: inherit;    
}

/* Font Sizes */

.text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
}
.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.text-4xl { 
  font-size: 2.25rem !important;
}

/* Font Weights */

.font-medium {
    font-weight: 500;    
}
.font-semibold {
    font-weight: 600 !important;    
}
.font-bold {
    font-weight: 700;    
}

/* Grids */

.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}
.column-gap-4pc {
    column-gap: 4%;
}

.grid {
    display: grid;
}

/* Heights */

.h-auto {
    height: auto !important;
}
.h-full {
    height: 100% !important;
}


/* Line Heights */

.leading-4 {
    line-height: 1rem;
}
.leading-6 {
    line-height: 1.5rem;
}

/* Lists */

.list-none {
  list-style-type: none;
}

/* Position */

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.top-2 {
  top: 0.5rem;
}
.right-2 {
  right: 0.5rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.left-2 {
  left: 0.5rem;
}

.top-4 {
  top: 1rem;
}
.right-4 {
  right: 1rem;
}
.bottom-4 {
  bottom: 1rem;
}
.left-4 {
  left: 1rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.right-60px {
  right: 60px;
}

/* Text Align */

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

/* Text Decoration */

.no-underline {
    text-decoration-line: none;
}
.hover-underline:hover {
    text-decoration-line: underline;
}

/* Text Transform */

.uppercase {
    text-transform: uppercase;
}

/* Transition */

.transition-all {
  transition: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Spacing */

.m-auto {
    margin: auto;
}
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mt-3 {
    margin-top: 0.75rem !important;
}
.mb-3 {
    margin-bottom: 0.75rem !important;
}
.mt-4 {
    margin-top: 1rem !important;
}
.mr-4 {
    margin-right: 1rem !important;
}
.mb-4 {
    margin-bottom: 1rem !important;
}
.ml-4 {
    margin-left: 1rem !important;
}
.mt-5 {
    margin-top: 1.25rem !important;
}
.mb-5 {
    margin-bottom: 1.25rem !important;
}
.mt-6 {
    margin-top: 1.5rem !important;
}
.mr-6 {
    margin-right: 1.5rem !important;
}
.mb-6 {
    margin-bottom: 1.5rem !important;
}
.ml-6 {
    margin-left: 1.5rem !important;
}
.my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.mr-7 {
    margin-right: 1.75rem !important;
}
.mt-8 {
    margin-top: 2rem !important;
}
.ml-8 {
    margin-left: 2rem !important;
}
.mt-24 {
    margin-top: 6rem !important;
}

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

.pl-0 {
    padding-left: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}
.pr-2 {
    padding-right: 0.5rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.p-2-5 {
    padding: 0.625rem !important;
}
.p-3 {
    padding: 0.75rem !important;
}
.px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}
.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}
.p-4 {
    padding: 1rem !important;
}
.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.p-5 {
    padding: 1.25rem !important;
}
.px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}
.p-6 {
    padding: 1.5rem !important;
}
.pt-16 {
    padding-top: 4rem !important;
}

/* Widths */

.w-full {
    width: 100%;
}
.w-100px {
    width: 100px;
}
.w-145px {
    width: 145px;
}
.w-400px {
    width: 400px;
}
.w-708px {
    width: 708px;
}
.whitespace-nowrap {
    white-space: nowrap;
}

/* Z-Index */

.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-30 {
    z-index: 30;
}


/***** Responsive *****/

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .lg-grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media (min-width: 1021px) {
  .header-desktop-flex {
    display: flex;
  }
}
