body {
    font-family: Arial, sans-serif;

    margin: 0;
    padding: 0;
}

.inline-box{
    display: inline-block;
}

.floating-center {
    margin: 0 auto;
}

.flex-box {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-direction-row {
    flex-direction: row;
}

.flex-box-horizontal-center {
    justify-content: center;
}

.flex-box-vertical-center {
    align-items: center;
}

.flex-box-center {
    align-items: center;
    justify-content: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-evenly{
    justify-content: space-evenly;
}

.box-center{
    margin: auto;
}

.no-shrink {
    flex-shrink: 0;
}

.relative-box {
    position: relative;
}
.absolute-box {
    position: absolute;
}
.is-bold {
    font-weight: bold;
}

.is-striked {
    text-decoration: line-through;
}

.is-uppercased {
    text-transform: uppercase;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 50%;
}

.third-width {
    width: 33.3333%;
}

.quarter-width {
    width: 33%;
}

.full-height {
    height: 100%;
}

.box {
    padding: 20px;
    box-sizing: border-box;
}

.box-small {
    padding: 10px;
    box-sizing: border-box;
}

.box-vertical {
    padding: 20px 0;
    box-sizing: border-box;
}
.box-vertical-big {
    padding: 27px 0 22px 0;
    box-sizing: border-box;
}
.box-wide {
    padding: 0 20px;
    box-sizing: border-box;
}

.box-vertical-small {
    padding: 10px 0;
    box-sizing: border-box;
}

.box-horizontal-small {
    padding: 0 10px;
    box-sizing: border-box;
}
.box-horizontal {
    padding: 0 20px;
    box-sizing: border-box;
}

.bg-fix {
    background-size: cover;
    background-position: center;
}

.hidden {
    display: none;
}

.transparent {
    opacity: 0;
}

/* растягиваемая на весь элемент кликабельность ссылки */
.fully-clickable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scrolled-y {
    overflow-y: auto;
    overflow-x: hidden;
}

.hover-grow-small {
    transition: all 0.5s ;
}

.hover-grow-small:hover {
    transform: scale(1.2);
}

.disabled {
    opacity: 0.2;
    pointer-events: none;
}

@media(max-width: 500px) {
    .mobile-full-width {
        width: 100%;
    }
    .mobile-direction-reverse{
        flex-direction: column-reverse;
    }
    .mobile-direction-column{
        flex-direction: column;
    }

    .mobile-hidden {
        display: none;
    }

    .mobile-center {
        justify-content: center;
    }
}