﻿#div1 {
    margin: 20px 20%;
    padding: 20px;
    backdrop-filter: blur(20px) brightness(160%) saturate(80%);
    border-radius: 10px;
    width: -webkit-fill-available;
}

input {
    position: relative;
    border: 0;
    border-radius: 3px;
}

    input[type=checkbox] {
        position: relative;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

        input[type=checkbox]:hover {
            box-shadow: 0px 0px 3px 3px lightblue;
            transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        }

        input[type=checkbox]:after {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            background: lightblue;
            border-radius: 3px;
        }

        input[type=checkbox]:checked:after {
            content: "";
            background-image: url('/img/CheckedICON.png');
            background-repeat: no-repeat;
            background-size: 100%;
            background-color: lightpink;
            border: none;
        }

        input[type=checkbox]:checked:hover {
            box-shadow: 0px 0px 3px 3px lightpink;
            transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        }

.TUnderline {
    position: relative;
    float: left;
}

    .TUnderline::after {
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        transform: scaleX(0);
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform-origin: center;
    }

    .TUnderline:hover::after {
        transform: scaleX(1);
    }



.inputStyle input:not(.clearBtn) {
    width: 350px;
}

.TipBKG {
    margin-top: -10px;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0.5;
    background-color: lightgray;
    z-index: 1;
}

.optionTD {
    max-width: 550px;
    border-radius: 5px;
    display: inherit;
    backdrop-filter: blur(20px) brightness(160%) saturate(80%);
    margin-top:10px;
}

.TopBKG2 {
    background-color: skyblue;
    margin: 20px 20%;
    width: 700px;
    text-align: center;
    z-index: 2;
    position: absolute;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 5px #888888;
}

.ConfigList {
    background-color: lightblue;
    border: solid lightblue 4px;
    outline: none;
}

.coTable {
    border: 1px solid dodgerblue;
}

    .coTable tr {
        vertical-align:baseline;
    }
    .coTable input[type=checkbox] {
        margin: 10px 5px;
    }

.opsm {
    font-size: 0.8em;
    color: dodgerblue;
    margin-bottom: 0;
}

.TopBkgText {
    font-size: 1.2em;
    margin-top: 30px;
    margin-right: 10px;
    color: white;
    text-wrap: normal;
}

.rcBtn input {
    background-color: lightpink;
    width: 100px;
    height: 30px;
    margin: 10px 0 10px 10px;
}

#ResultTable
{
    margin-top:5px;
}
#ResultTable input {
    width: 400px;
    background-color: transparent;
    border: dashed 1px;
    border-radius: 5px;
}

#ActiveCount, .countStyle {
    color: green;
}

.BOKBtn {
    height: 45px;
    width: 70px;
    background-image: url('../img/OKBtn.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 5px;
    background-color: lightyellow;
}

.BCancelBtn {
    height: 45px;
    width: 70px;
    background-image: url('../img/CancelBtn.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 5px;
    background-color: lightyellow;
    margin-left: 20px;
}

.ConnPanel {
    height: 260px;
}

.ConnPanel2 {
    margin-top: -50px;
}

.SettingPanel {
    margin-top: -200px;
    margin-bottom: 60px;
    margin-right: 10px;
}
#ShareNameT {
    background-color:lightyellow;
    outline: none;
}
.UpdateOptBtn {
    float: right;
    background-color: skyblue;
    border: solid 2px dodgerblue;
    height: 30px;
    width: 100px;
}


.RightBtn {
    position: relative;
    vertical-align: top;
}

.keybox {
    border-radius: 3px 0 0 3px;
    outline: none;
}
.clearBtn {
    width: 20px;
    background-color: lightyellow;
    border-radius: 0 3px 3px 0;
}

.MoreBtn {
    float: left;
    background-color: lightblue;
    height: 30px;
    width: 100px;
    border: 0px;
    margin-left: 20px;
    margin-top: 10px;
}

.ShareBtn {
    background-image: url('../img/Share.png');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: lightyellow;
    margin-left: 5px;
    margin-top: 10px;
    height: 30px;
    width: 40px;
}

#CKResult {
    resize: none;
    background-color: lightblue;
    border-radius: 10px;
    border: none;
    display: none;
    outline: none;
    width: 100%;
    height: 333px;
}

.hover-lightblue:hover {
    box-shadow: 0px 0px 3px 3px lightblue !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.hover-lightpink:hover {
    box-shadow: 0px 0px 3px 3px lightpink !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.hover-lightyellow:hover {
    box-shadow: 0px 0px 3px 3px lightyellow !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.focus-white:focus {
    box-shadow: 0px 0px 3px 3px white !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.focus-lightpink:focus {
    box-shadow: 0px 0px 3px 3px lightpink !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.focus-lightblue:focus {
    box-shadow: 0px 0px 3px 3px lightblue !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.focus-lightskyblue:focus {
    box-shadow: 0px 0px 3px 3px lightskyblue !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

