﻿
/*-------------------------------------------------<button>Device Button</button>-------------------------------------------------*/

.deviceManagement_button {
    appearance: button;
    backface-visibility: hidden;
    background-color: #405cf5;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
    font-size: 10px;
    height: 20px;
    line-height: 1.15;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s,box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

    .deviceManagement_button:disabled {
        cursor: default;
    }

    .deviceManagement_button:focus {
        box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
    }

    .deviceManagement_button:hover {
        background-color: darkblue;
    }

.deviceManagement_button1 {
    appearance: button;
    backface-visibility: hidden;
    background-color: blueviolet;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
    font-size: 10px;
    height: 20px;
    line-height: 1.15;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s,box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

    .deviceManagement_button1:disabled {
        cursor: default;
    }

    .deviceManagement_button1:focus {
        box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
    }

    .deviceManagement_button1:hover {
        background-color: rgb(91, 8, 102);
    }


.deviceManagement_buttonMargin1{
    margin: 2px;
}

.deviceManagement_buttonMargin2 {
    margin: 0px auto 30px auto;
    width: 70%;
}





/*-------------------------------------------------<div>Pop-up Window</div>-------------------------------------------------*/



.deviceManagement_PopUpWindow {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background-color: white;
    color: black;
    opacity: 1;
    z-index: 10;
}



/*-------------------------------------------------<div>Blurring Background</div>-------------------------------------------------*/



.deviceManagement_BlurBackground {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid black;
    width: 100%;
    height: 100%;
    background-color: black;
    border: 2px solid black;
    color: black;
    opacity: 0.5;
    z-index: 10;
}


/*-------------------------------------------------<div>DeviceSegment</div>-------------------------------------------------*/



.deviceManagement_deviceSegment {
    height: 230px;
    width: 170px;
    margin: 10px 10px 10px 10px;
    box-shadow: 2px -1px 22px -16px rgba(0,0,0,0.75);
    border-radius: 25px;
    background-color: rgb(247, 247, 247)
}

.deviceManagement_deviceIcon {
    height: 40px;
    width: 40px;
    display: flex;
    justify-items: center;
}




/*--------------------------------------------------------------------------------------------*/

.loader_deviceIcon {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 10%;
    height: 10%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.spinner_deviceIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.onlinebutton_deviceIcon {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid red;
    margin-right: 30px;
    background-color: green;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 300px;
        background-color: black;
        color: #fff;
        text-align: left;
        border-radius: 6px;
        padding: 10px;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 0%;
        margin-top: 10px;
        margin-left: -200px;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }