.custom-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh
}

#centered-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center
}

#centered-li {
    flex: 1 0 calc(20%);
    margin: 5px
}

.custom-input {
    width: 75%;
    height: 27px
}

.custom-label {
    margin-top: 5px
}

.custom-div {
    float: none;
    padding-right: 0;
    padding-left: 0;
    width: 100%
}

#loadingOverlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center
}

#loadingElement {
    background-color: white;
    text-align: center;
    padding: 20px
}

.loadingElementPara {
    margin-top: 10px
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.stacked-span{
    display : block;
}


.custom-lines-OR {
    margin-left: 162px !important;
}

.custom-flex-parent-div {
    display: flex;
    width: 220px;
    height: 20px;
    align-items: center;
}

.custom-flex-child-div-edge {
    flex-grow: 2;
    height: 1px;
    background-color: #000;
    border: 1px #ffb1bb solid;
}

.custom-flex-child-div-text {
    flex-basis: auto;
    flex-grow: 0;
    margin: 0px 5px 0px 5px;
    text-align: center;
}


.custom-checkbox-text {
    font-size: 11px;
    margin-top: -12px;
}

.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Create a custom checkbox */
.custom-checkbox-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-container:hover input ~ .custom-checkbox-mark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox-container input:checked ~ .custom-checkbox-mark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox-mark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .custom-checkbox-mark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .custom-checkbox-mark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-error-text-red-color {
    color: red;
}

@@media (max-width:800px) {
    .custom-file-select-width {
        width: 266px;
    }

    .custom-lines-OR {
        margin-left: 41px !important;
    }
}

