﻿
/***************** GROUPS *****************/

.centered-group {
    height: -webkit-fill-available;
    width: min-content;
    padding: 8px;
    overflow: auto;
    /*display: flex;*/
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.flex-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-group-no-direction {
    display: flex;
    align-items: center;
    justify-content: center;
}

.double-group {
    display: flex;
    height: min-content;
    width: 832px;
}

.single-group {
    display: flex;
    height: min-content;
    width: 100%;
}

/***************** CONTAINERS *****************/

.single-container {
    width: 416px;
    height: 56px;
    padding: 8px;
}

.double-container {
    width: 832px;
    height: 56px;
}

.flex-container {
    width: 100%;
    display: flex;
    position: relative;
}

.grid-container {
    width: 416px;
    display: grid;
}

/***************** WIDTH *****************/

.left-label-container {
    width: calc(100% - 106px);
}

.middle-label-container {
    width: calc(100% - 212px);
}

.small-button-container {
    width: 106px;
}

.max-width-container {
    width: 100%;
}

.half-width-container {
    width: 50%;
}

.min-width-container {
    width: min-content;
    inline-size: auto;
}

/***************** HEIGHT *****************/

.max-height-container {
    height: 100%;
}

.flex-height {
    height: auto;
}

.double-height-container {
    height: 112px;
}

/***************** RARE *****************/

.half-padding {
    padding: 4px;
    height: 44px;
}

.absolute-container {
    position: absolute;
    width: 100%;
}

.remove-top-padding {
    padding-top: 0px;
}

.remove-side-padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.shadow-button {
    position: absolute;
    height: 1px;
    width: 1px;
    padding: unset;
    margin: unset;
    border: unset;
    outline: none !important;
    background: unset;
    z-index: 100;
}

.normal-icon {
    color: var(--c1Bord);
    line-height: 0;
    top: 3px;
}

.small-icon {
    color: var(--c1Bord);
    font-size: 12px;
    line-height: 0;
}

.small-font-size {
    font-size: 12px;
    padding: unset;
}

/***************** MEDIA *****************/

@media (max-width: 848px) {

    .centered-group, .single-container, .double-container, .grid-container {
        width: 100%;
        display: block;
    }

    .double-group {
        display: grid;
        width: 100%;
    }

    .half-width-container {
        width: 50%;
    }
}

@media (max-width: 416px) {

    .small-button-container {
        width: 65px;
    }

    .left-label-container {
        width: calc(100% - 65px);
    }

    .middle-label-container {
        width: calc(100% - 130px);
    }
}
