/* Available block */
.available-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 30px;
    gap: 30px;

    width: 330px;
    min-width: 330px;
    height: fit-content;

    background: #3C486B;
}

.available-header {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* TODO: Пересмотреть почему вместо 42 нужно 52 указывать */
    min-height: 52px;
}

.available-header__bg {
    min-height: 42px;
    min-width: 192px;
    height: 42px;
    width: 192px;

    /* TODO */
    width: 100%;
    height: 100%;
    max-width: 241px;
    max-height: 52px;
}

.available-header__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;

    color: #524218;

    margin: 0px;
    margin-top: -34px;
}

.available-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 30px;

    width: 100%;
    height: fit-content;
}

.available-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    gap: 8px;

    width: 100%;
    height: fit-content;
}

.available-element__icon-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    border-radius: 100px;

    position: relative;
}

.available-element__icon-circle {
    min-width: 60px;
    min-height: 60px;

    margin: auto;
}

.available-element__icon {
    width: 30px;
    height: 30px;
    margin: auto;

    position: absolute;
}

.available-element__title {
    width: fit-content;

    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: center;

    color: #F5F5F5;
}
