.box-shadow-none {
    box-shadow: none;
}

.border-none {
    border: none;
}

.border-black {
    border: 1px solid black;
}

.border-666 {
     border: 1px solid #666666;
}

.border-radius-4 {
    border-radius: 4px;
}
.box-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box-shadow-none {
    box-shadow: none;
}

.min-width-40 {
    min-width: 40px;
}

.min-width-70 {
    min-width: 70px;
}
.min-width-80 {
    min-width: 80px;
}

.min-width-100 {
    min-width: 100px;
}
.min-width-200 {
    min-width: 200px;
}

.min-width-400 {
    min-width: 400px;
}

.max-width-40 {
    max-width: 100px;
}

.max-width-100 {
    max-width: 100px;
}

.max-width-200 {
    max-width: 200px;
}

.width-80 {
    width: 80px;
}

.width-full {
    width: 100%;
}

.bold {
    font-weight: bold;
}

.color-green {
    color: #38973d;
}

.color-999 {
    color: #999999;
}

.color-666 {
    color: #666666;
}

.color-white {
    color: white;
}


.background-color-eee {
    background-color:#eee;
}

.justify-items-center {
    justify-items: center
}
.justify-items-left {
   justify-items: left;
}

.justify-items-right {
    justify-items: right;   
  
}

.justify-text-center {
    text-justify: center;
}

.justify-text-left {
    text-justify: left;
}
.justify-text-right {
    text-justify: right;
}

.text-align-left {
    text-align: left;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.align-items-center {
    align-items:center;
}
.align-items-bottom {
    align-items: end;
}

.image-option {
    height: 60px;
    width: 30px;
    border:none;
    background-color: black;
}


.image-icon {
    height: 30px;
    width: 30px;
    border:none;
}

.image-tiny {
    height: 70px;
    width: 70px;
    border:none;
}

.image-small {
    height: 450px;
    width: 450px;
    border:none;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-right {
    display: flex;
    justify-content: right;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 2rem;
}

.flex-end {
    display: flex;
    align-items: flex-end;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
  
}

.padding-top-30 {
    padding-top: 30px;
}


.width-140 {
    width: 140px;
}

.width-200 {
    width: 200px;
}

.width-250 {
    width: 250px;
}

.font-size-16 {
    font-size: 16px;
}