.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-direction {
    flex-direction: column;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.gsw_card {
    background-color: hsla(0deg, 0%, 100%, 0.054);
    /*color: hsl(0deg, 0%, 16%);*/
}

.text-gray-600 {
    color: hsl(0deg, 0%, 64%) !important;
}

.text-gray-700 {
    color: hsl(0deg, 0%, 64%) !important;
}

.text-gray-900 {
    color: hsl(0deg, 0%, 64%) !important;
}

.bg-gray-100 {
    background-color: hsl(0deg, 0%, 24%) !important;
}

.response{
    width: 100%;
}