.block{display:block!important;}
.cursor-pointer{cursor: pointer;}


/* position */
/* .fixed{position:fixed;}   */
.absolute{position:absolute;}  
.relative{position: relative;} 
.top-0{top:0;} 
.top-10{top:10px;} 
.top-20{top:20px;} 
.top-30{top:30px;} 
.left-0{left:0;}
.left-10{left:10px;}
.left-20{left:20px;}

/* flex */
.flex{display: flex;} 
.inline-flex{display: inline-flex;} 
.flex-col{flex-flow: column;}
.flex-wrap{flex-wrap:wrap;}
.items-center{align-items: center;} 
.items-baseline{align-items: baseline;} 
.self-baseline{align-self: baseline;} 
.justify-end{justify-content: end;}  
.justify-center{justify-content: center;}  
.justify-between{justify-content: space-between;}
.justify-around{justify-content: space-around;}

/* grid */
.grid{display: grid;}
.grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr)); gap:20px} 
.grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));column-gap: 20px;} 
.grid-cols-12{grid-template-columns: repeat(12, minmax(0, 1fr));} 
.col-span-3{grid-column: span 3 / span 3;}
.col-span-4{grid-column: span 4 / span 4;}
.col-span-6{grid-column: span 6 / span 6;}
.col-span-8{grid-column: span 8 / span 8;}
.col-span-9{grid-column: span 9 / span 9;}
.col-span-12{grid-column: span 12 / span 12;}
.gap-0{gap: 0;}
.gap-4{gap: 4px;}
.gap-8{gap: 8px;}
.gap-10{gap: 10px;}
.gap-12{gap: 12px;}
.gap-15{gap: 15px;}
.gap-20{gap: 20px;}

@media (min-width: 768px) {
 .md-col-span-8{grid-column: span 8 / span 8;}
}


@media (max-width: 768px) {
    .md-grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr)); gap:20px;} 
}
/* height */
.h-0{height: 0!important;}
.h-12{height: 3rem;} 
.h-24{height: 6rem;} 
.h-48{height: 12rem;}
.h-screen{height: 100vh;} 
.min-h-screen{min-height: 100vh;}

/* width */
.w-12{width:3rem;}
.w-24{width:6rem;}
.w-48{width:12rem;}
.w-1-3{width: 33.333333%;}
.w-1-2{width:50%;}
.w-2-3{width:75%;}
.w-3-4{width:85%;}
.w-full{width:100%;} 

/* zindex */
.z-20{z-index: 20!important;} 
.z-50{z-index: 50!important;} 

/* padding */
.p-0{padding: 0!important;} 
.p-3{padding: 0.75rem;} 
.p-5{padding: 1.25rem;} 
.px-3{padding-left: 0.75rem;padding-right: 0.75rem;} 
.px-5{padding-left: 1.25rem;padding-right: 1.25rem;} 
.py-3{padding-top: 0.75rem;padding-bottom: 0.75rem;}
.py-5{padding-top: 1.25rem;padding-bottom: 1.25rem;}
.py-10{padding-top:2.5rem;padding-bottom: 2.5rem;}



/* margin */
.m-auto{margin: auto;} 
.m-0{margin: 0;} 
.mt-0{margin-top: 0;} 
.mt-3{margin-top: 0.75rem;}
.mt-5{margin-top: 1.25rem;}
.mt-10{margin-top: 2.5rem;}
.mb-0{margin-bottom: 0;}
.mb-3{margin-bottom: 0.75rem;}
.mb-5{margin-bottom: 1.25rem;}
.mb-10{margin-bottom: 2.50rem;}
.mr-2{margin-right: 0.5rem;} 
.mr-3{margin-right: 1rem;} 
.ml-0{margin-left: 0;}
.ml-5{margin-left: 1.25rem;}

.overflow-hidden{
  overflow: hidden;
}
/* text */
.text-center{text-align: center!important;}

.text-light{color:#fff;}
.text-red{color:red;}

/* font */
.font-light{font-weight: 300} 
.font-semibold{font-weight: 600} 
.text-xs{font-size: 0.75rem;}
.text-sm{font-size: .9rem;}
.text-md{font-size: 1rem;}

.text-xl{font-size: 1.25rem!important;}
.text-2xl{font-size: 1.5rem!important;}
.text-3xl{font-size: 1.875rem;}

.space-x-2 > * + * {margin-left: 0.5rem;}
.space-x-4 > * + * {margin-left: 1rem;}
.space-y-2 > * + * {margin-bottom: 0.5rem;}
.space-y-4 > * + *,
.space-y-4 > * {margin-bottom: 1rem;}
.space-y-6 > * + * {margin-bottom: 1.5rem;}
.space-y-8 > * + *,
.space-y-8 > * {margin-bottom: 3rem;}
.space-y-7 > * {margin-bottom: 2rem;}

.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide{
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all .4s;
}

.show{
  opacity: 1;
  visibility: visible;
  height: auto;
}

.d-none{display: none;}

.flex-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.responsive{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.opz-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opz-popup__card {
    width: 50vw;
    padding: 15px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 2px 10px #222222;
}
.opz-btn-container {
    display: flex;
    justify-content: end;
    align-items: center;
}
.opz-btn {
    background-color: #7c0101;
    border-radius: 3px;
    border: 1px solid #7c0101;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 20px;
    display: inline-block;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.opz-btn:hover {
    color: #7c0101;
    background-color: #fff;
}