﻿.content {
    max-width: 1320px;
}

/*.table thead {
    color: white;
    background-color: #14589B !important;
}*/

.inputGroup {
    background-color: rgb(224, 217, 217);
    display: block;
    margin: 10px 0;
    position: relative;
}

    .inputGroup label {
        padding: 12px 30px;
        width: 100%;
        display: block;
        text-align: left;
        color: #3c454c;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: color 200ms ease-in;
        overflow: hidden;
    }

        .inputGroup label:before {
            width: 50px;
            height: 10px;
            border-radius: 50%;
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            z-index: -1;
        }

        .inputGroup label:after {
            width: 32px;
            height: 32px;
            content: "";
            border: 2px solid #d1d7dc;
            background-color: #fff;
            background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
            background-repeat: no-repeat;
            background-position: 2px 3px;
            border-radius: 50%;
            z-index: 2;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            transition: all 200ms ease-in;
        }

        .inputGroup input:checked:disabled ~ label:before, input:checked:disabled ~ label:after {
            opacity: .65;
            cursor: default;
        }

        .inputGroup input:checked ~ label {
            color: #fff;
        }

        .inputGroup input:checked ~ label:before {
            transform: translate(-50%, -50%) scale3d(56, 56, 1);
            opacity: 1;
        }

        .inputGroup input:checked ~ label:after {
            background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23006833' fill-rule='nonzero'/%3E%3C/svg%3E ");
            background-color: white;
            border-color: white;
        }

    .inputGroup input {
        width: 32px;
        height: 32px;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        /*visibility: hidden;*/
        opacity: 0;
    }
        .inputGroup input:focus + label {
            outline: 2px solid #000; /* required to enable keyboard access */
        }

body {
    /* background-color: #d1d7dc; */
    font-family: "Fira Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

code {
    background-color: #9aa3ac;
    padding: 0 8px;
}

p {
    text-align: justify;
}

div.legalese p {
    color: black;
}

.MuiSvgIcon-root {
    width: 20px;
}

/*.dropdown-menu {
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
}*/



@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes transitionIn {
    0% {
        width: 0%;
    }

    100% {
        width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    }
}

@keyframes transitionOut {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@-moz-keyframes transitionIn {
    0% {
        width: 0%;
    }

    100% {
        width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    }
}

@-moz-keyframes transitionOut {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@-webkit-keyframes transitionIn {
    0% {
        width: 0%;
    }

    100% {
        width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    }
}

@-webkit-keyframes transitionOut {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@-o-keyframes transitionIn {
    0% {
        width: 0%;
    }

    100% {
        width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    }
}

@-o-keyframes transitionOut {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@-ms-keyframes transitionIn {
    0% {
        width: 0%;
    }

    100% {
        width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    }
}

@-ms-keyframes transitionOut {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}
