﻿body {
    margin: 0;
    -webkit-tap-highlight-color: transparent; /* transparent with keyword */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* transparent with rgba */
    -webkit-tap-highlight-color: hsla(0,0,0,0); /* transparent with hsla */
    -webkit-tap-highlight-color: #00000000; /* transparent with hex with alpha */
    -webkit-tap-highlight-color: #0000; /* transparent with short hex with alpha */
    -webkit-tap-highlight-color: none; /* none keyword */
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

a:focus {
    outline: none !important;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    list-style-type: none;
}

li {
    list-style-type: none;
}

.outer {
    width: 500px;
    height: 40px;
    white-space: nowrap;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .outer div {
        width: 18.5%;
        background-color: #000;
        color: #fff;
        float: none;
        height: 90%;
        margin: 0 0.25%;
        display: inline-block;
        zoom: 1;
        border-radius: 8px;
        font-family: 'Gotham', sans-serif;
        font-size: 12px;
        text-align: center;
    }

.outer::-webkit-scrollbar {vertical-align: middle;
    display: inline-block;
    display: none; /* Older Safari and Chromium */
}

.gridText {
    font-family: 'Gotham', sans-serif;
    font-size: 12px;
}

.gridTextUnica {
    font-family: 'Unica', sans-serif;
    font-size: 15px;
}

.gridTextSearch {
    font-family: 'Gotham', sans-serif;
    font-size: 12px;
}

.tablestyle {
    font-family: arial;
    font-size: small;
    border: solid 1px #7f7f7f;
}

.altrowstyle {
    background-color: #edf5ff;
}

.headerstyle th {
    /*background: url(img/sprite.png) repeat-x 0px 0px;*/
    border-color: #989898 #cbcbcb #989898 #989898;
    border-style: solid solid solid none;
    border-width: 1px 1px 1px medium;
    color: #000;
    padding: 4px 5px 4px 10px;
    text-align: center;
    vertical-align: bottom;
    border: hidden;
    font-family: 'Gotham';
}

    .headerstyle th a {
        font-weight: normal;
        text-decoration: none;
        text-align: center;
        color: #000;
        display: block;
        padding-right: 10px;
        border: hidden;
    }

.rowstyle .sortaltrow, .altrowstyle .sortaltrow {
    /*background-color: #edf5ff;*/
    border: hidden;
}

.rowstyle .sortrow, .altrowstyle .sortrow {
    /*background-color: #dbeaff;*/
    border: hidden;
}

.rowstyle td, .altrowstyle td {
    padding: 4px 10px 4px 10px;
    border-right: solid 1px #cbcbcb;
    border: hidden;
    background-color: #fff;
}

.headerstyle .sortascheader {
    /*background: url(img/sprite.png) repeat-x 0px -100px;*/
    border: hidden;
}

    .headerstyle .sortascheader a {
        /*background: url(img/dt-arrow-up.png) no-repeat right 50%;*/
        border: hidden;
    }

.headerstyle .sortdescheader {
    /*background: url(img/sprite.png) repeat-x 0px -100px;*/
    border: hidden;
}

    .headerstyle .sortdescheader a {
        /*background: url(img/dt-arrow-dn.png) no-repeat right 50%;*/
        border: hidden;
    }


.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0.5rem;
    background-color: #EEE;
    box-sizing: border-box;
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
    padding: 0.25rem;
    width: 300px;
    font-size: 14px;
    font-family: 'Gotham';
}

    .radio-inputs .radio {
        flex: 1 1 auto;
        text-align: center;
    }

        .radio-inputs .radio input {
            display: none;
        }

        .radio-inputs .radio .name {
            display: flex;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            border: none;
            padding: .5rem 0;
            color: rgba(51, 65, 85, 1);
            transition: all .15s ease-in-out;
        }

        .radio-inputs .radio input:checked + .name {
            background-color: #fff;
            font-weight: 600;
        }

.input[type="checkbox"] {
    display: none;
}

/* Style for the custom checkbox */
.custom-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

    /* Style for the custom checkmark */
    .custom-checkbox::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background-color: #333;
        border-radius: 2px;
        opacity: 0;
    }

/* Show the checkmark when checkbox is checked */
.input[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
}

.textoForms {
    font-family: 'Gotham', sans-serif;
    width: 100%;
    height: 40px;
    padding-left: 10px;
}

.comboForms {
    font-family: 'Gotham', sans-serif;
    width: 96%;
    height: 45px;
    padding-left: 10px;
}

.table {
    display: table;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
}

.paddingTop10 {
    padding-top: 10px;
}