.thumb-64 {
    width: 64px;
    height: 64px;
}

.thumb-50 {
    width: 50px;
    height: 50px;
}

.thumb-20 {
    width: 30px;
    height: 30px;
}

.width-150 {
    width: 150px;
    height: auto;
}

.margin-0 {
    margin: 0 !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-0 {
    margin-top: 0 !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-left-0 {
    padding-left: 0 !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-5 {
    padding: 5px !important;
}

.max-height-450 {
    max-height: 450px;
    overflow-y: hidden;
}

.max-height-250 {
    max-height: 250px;
    overflow-y: hidden;
}

.width-full {
    width: 100%;
}

.underline {
    text-decoration: underline;
}

.text-3-lines {
    line-height: 1.5em;
    height: 4.5em;
    overflow: hidden;
}

.text-2-lines {
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
}

.text-1-lines {
    line-height: 1.5em;
    height: 1.5em;
    overflow: hidden;
}

.img-height-250 {
    height: 250px !important;
    width: auto;
    object-fit: cover;
    -o-object-fit: cover;
}

.img-height-20 {
    height: 20px !important;
    width: auto;
    object-fit: cover;
    -o-object-fit: cover;
}

.loader {
    display: block;
    margin-right: auto;
    margin-left: auto;
    border: 7px solid #f3f3f3;
    border-top: 7px solid #a2a2a2;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}