﻿
.checkbox {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
}

.checkbox-text::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    width: 22px;
    height: 22px;
    background-image: url("../Pictures/cb-unchecked.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.checkbox:checked ~ .checkbox-text::before {
    background-image: url("../Pictures/cb-checked.svg");
}







.input-group {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
  column-gap: 10px;
  align-items: center;
  /*margin: 0.5em;*/    
}

/*.input-group-flex {
    display: flex;
    width: 100%;
}*/


/*.input-hint {
    display: inline-block;            
    vertical-align: middle;
    text-align: left;    
}*/



.input-control:-moz-placeholder {
    color: #999999;
}

.input-control::-moz-placeholder {
    color: #999999;
}

.input-control:-ms-input-placeholder {
    color: #999999;
}

.input-control::-webkit-input-placeholder {
    color: #999999;
}

.input-control {
    display: flex;
    flex: 1 0 auto;
    height: 34px;
    width: 20px;
    padding: 6px 12px;
    font-size: 1.1em;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
            transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.input-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.input-control[disabled],
.input-control[readonly],
fieldset[disabled] .input-control {
    /*cursor: not-allowed;*/
    background-color: #eeeeee;
}




textarea.input-control {
    height: auto;
}

.input-combobox {
    padding: 0 3px 2px 6px;
}



.btn {
    display: inline-block;
          
    font-size: 1em;
    text-decoration: none;
    user-select: none;
    padding: 0.5em 1em;
    outline: none;
          
    color: #333333;
    background-color: #ffffff;

    border: 1px solid rgba(0,0,0,.1);
    border-color: #cccccc;
    border-radius: 5px;
    background: rgb(255,255,255) linear-gradient(#fdfdfd, #fafafa);
    transition: all .218s ease 0s;
}
.btn:hover {
    color: rgb(24,24,24);
    border: 1px solid rgb(198,198,198);
    border-radius: 5px;
    background: #f7f7f7 linear-gradient(#f7f7f7, #f1f1f1);
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.btn:active {
    color: rgb(51,51,51);
    border: 1px solid rgb(204,204,204);
    border-radius: 5px;
    background: rgb(238,238,238) linear-gradient(#f4f4f4, #f0f0f0);
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
}

.btn-add {
    background-image: url("../Pictures/add.gif");
    background-position: center;
    background-repeat: no-repeat;
}
.btn-add:hover {
    background-image: url("../Pictures/add.gif");
    background-position: center;
    background-repeat: no-repeat;
}
.btn-add:active {
    background-image: url("../Pictures/add.gif");
    background-position: center;
    background-repeat: no-repeat;
}

.btn-highlight {
    color: white;
    background: #1a73e8 linear-gradient(#1a73e8, #166fe4);
}
    .btn-highlight:hover {
        color: rgb(230,230,230);
        background: rgb(255,255,255) linear-gradient(#166fe4, #126ae0);
    }
    .btn-highlight:active {
        color: rgb(210,210,210);
        background: rgb(255,255,255) linear-gradient(#126ae0, #0e64dc);
    }

.btn-arrow-left {
    background-image: url("../Pictures/arrow-left.svg");
    padding: 0.5em 1em;
    padding-left: 2em;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

    .btn-arrow-left:hover {
        background-image: url("../Pictures/arrow-left.svg");
        padding: 0.5em 1em;
        padding-left: 2em;
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
    }
    .btn-arrow-left:active {
        background-image: url("../Pictures/arrow-left.svg");
        padding: 0.5em 1em;
        padding-left: 2em;
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
    }

.btn-mail, .btn-filter {
    background-image: url("../Pictures/mail.ico");
    padding: 0.5em 1.5em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

    .btn-mail:hover, .btn-filter:hover {
        background-image: url("../Pictures/mail.ico");
        padding: 0.5em 1.5em;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .btn-mail:active, .btn-filter:active {
        background-image: url("../Pictures/mail.ico");
        padding: 0.5em 1.5em;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }




.btn-filter {
    background-image: url("../Pictures/filter.ico");
}

    .btn-filter:hover {
        background-image: url("../Pictures/filter.ico");
    }
    .btn-filter:active {
        background-image: url("../Pictures/filter.ico");
    }






.radio-group-text::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../Pictures/radio-no-active.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
}

.radio-group-text::before {
    display: inline-block;
    vertical-align: middle;
}

.radio-group-text::before {
    margin-right: 8px;
}

.radio-group {
    display: inline-block;
    font-size: 15px;
}

    .radio-group:nth-of-type(n+2) {
        margin-left: 15px;
    }

.radio:checked ~ .radio-group-text::before {
    background-image: url("../Pictures/radio-active.svg");
}

.radio {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
}















/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        width: 220px;
        background-color: lightyellow;
        color: #333333;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -110px;
    }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: lightyellow transparent transparent transparent;
        }

    /* Toggle this class - hide and show the popup */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
    }

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Toggle this class - hide and show the popup */
.popup .hide {
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}





.dv_modal_combine {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.dv_modal_combine-bg {
    background-color: #ededed;
    opacity: 0.5;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.dv_modal_combine-form {
    position: relative;
    width: 500px;
    height: 280px;
    background-color: lightblue;
    border-color: blue;
    border-width: 5px;
    border-radius: 15px;
    border-style: solid;
    text-align: center;
    padding: 2em;
    /*CENTER ON THE SCREEN*/
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -140px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.div-group-button {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.btn-ask {
    min-width: 100px;
}

.blink-volume {
    animation-name: blink;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    color: red;
    font-weight: 600;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}








.file_link {
    text-decoration: none;
    font-weight: 700;
    color: darkblue;
    padding: 10px 0;
}


.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

    .inputfile + label {
        /*            font-size: 1.25em;
            font-weight: 700;
            
            
            display: inline-block;
            */

        width: 14em;
        /*font-size: 1.25rem;*/
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        padding: 0.625rem 1.25rem;
        color: #f1e5e6;
        background-color: #21aaef;
        border: 1px solid rgba(0,0,0,.1);
        border-color: #cccccc;
        border-radius: 15px;
    }

        .inputfile + label svg {
            fill: #f1e5e6;
        }

        .inputfile:focus + label,
        .inputfile + label:hover {
            background-color: #0099ff;
        }