/* @import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900'); */

*
{
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
}

:root
{
    --circle_bg: #c4c; 
}

body 
{
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
}
.container
{
    width: 100%;
    height: 100vh;

    background: #c5c4c5a0;
    /* background: #b1af30a0; */

    display: flex;
    justify-content: center;
    align-items: center;

}

.container .containerSVG 
{
    position: relative;

    width: 750px;
    height: 750px;



    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;


}

.container svg 
{
    position: relative;

    width: 48px;
    height: 48px;    
}

.container svg circle:nth-child(1) 
{
    width: 100%;
    height: 100%;
    fill: var(--circle_bg); 

    transform: translate(3px, 3px);
}



.container svg circle:nth-child(2) 
{
    width: 100%;
    height: 100%;
    fill: none; 
    stroke: #fff;
    stroke-width: 3px;

    transform: translate(1px, 1px);

    stroke-dashoffset: 440px; 
    stroke-dasharray: 81px;

}

.container svg circle:nth-child(3) 
{
    width: 100%;
    height: 100%;
    fill: none; 
    stroke: #000; 
    stroke-width: 3px;
    transform: translate(1px, 1px);

    stroke-dashoffset: 460px; 
    stroke-dasharray: 73px; 
}

/* Left Control Panel  */
.container .control 
{
    position: relative;

    width: 20%;
    height: 750px;

    float: right;
    margin-top: 10px;

    background: #000;

    margin-left: 80px;
}

.container .control .row 
{
    position: relative;

    width: 100%;


    margin: 10px 0;
    padding: 0 20px;
}

.container .control .row input
{
    position: relative;
    
    display: inline-block;
    width: 100%;
    height: 40px;

    margin-bottom: 5px;
    padding-left: 3px;

    font-size: 1.1em;

}

.container .control .row input[type="Submit"]
, .container .control .row input[type="button"]:first-child
{
    background-color: #c4c;
    color: #fff; 
    font-weight: bold;
    letter-spacing: 1px;
}








