/**Personlaized dimensions*/

.w-16 {
    width: 16.66666%
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-15 {
    width: 25%;
}

.w-33 {
    width: 33.333333%;
}

.absolute {
    position: absolute;
}

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

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

.flex-sb {
    justify-content: space-between;
}

.flex-start {
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.flex-end {
     justify-content: flex-end !important;
}

.flex-col {
    flex-direction: column;
}

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


.gap-1 {
    gap: 1rem !important;
}

.gap-15 {
    gap: 1.5rem !important;
}

.gap-20 {
    gap: 2rem !important;
}

.p-0 {
    padding: 0;
}

/*Margins*/

.m-0 {
    margin: 0;
}

.p-relative {
    position: relative;
}

 .mt-1 {
    margin-top: 1rem !important;
 }

 .mt-15 {
     margin-top: 1.5rem !important;
 }


 .mt-20 {
    margin-top: 2rem !important;
 }

 .ml-1 {
    margin-top: 1rem !important;
 }

 .ml-15 {
     margin-top: 1.5rem !important;
 }
 

 .ml-20 {
    margin-top: 2rem !important;
 }

 .mr-1 {
    margin-top: 1rem !important;
 }

 .mr-15 {
     margin-top: 1.5rem !important;
 }
 

 .mr-20 {
    margin-top: 2rem !important;
 }

 .mb-1 {
    margin-bottom: 1rem !important;
 }

 .mb-15 {
    margin-bottom: 1.5rem !important;
 }

 .mb-20 {
    margin-bottom: 2rem !important;
 }

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


 .d-block {
    display: block;
 }