﻿body {
}

.myLoading {
    position: fixed;
    top: 0;
    background-color: rgba( 255, 255, 255, .8 );
    z-index: 99;
    width: 100%;
    height: 100%;
}

input[type=radio]{
    transform: scale(1.5);
}

input[type=checkbox] {
    transform: scale(1.5);
}

.my-dropdown {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: all 0.5s;
    z-index: 10;
    overflow: auto;
    max-height: 10rem;
    position: absolute;
    width: 48%;
    visibility: hidden;
}
.my-dropdown__item {
    cursor: pointer;
    width: 100%;
}
.my-dropdown__item :hover {
    background-color: #f5faff;
}
.my-dropdown__input {
    position: relative;
}
.my-dropdown__input:focus + .my-dropdown {
    visibility: visible;
}
.my-dropdown__label {
    padding: 10px;
}

.filter-white {
    filter: invert(98%) sepia(63%) saturate(6448%) hue-rotate(183deg) brightness(123%) contrast(100%);
}