*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    /* background: #130f40; */
    /* background-color: #22a6b3; */
    background: #4b4b4b;
    /* background-image: -webkit-radial-gradient(black 15%, transparent 16%), -webkit-radial-gradient(black 15%, transparent 16%), -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%), -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%);
    background-image: -moz-radial-gradient(black 15%, transparent 16%), -moz-radial-gradient(black 15%, transparent 16%), -moz-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%), -moz-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%);
    background-image: -ms-radial-gradient(black 15%, transparent 16%), -ms-radial-gradient(black 15%, transparent 16%), -ms-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%), -ms-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%);
    background-image: -o-radial-gradient(black 15%, transparent 16%), -o-radial-gradient(black 15%, transparent 16%), -o-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%), -o-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%);
    background-image: radial-gradient(black 15%, transparent 16%), radial-gradient(black 15%, transparent 16%), radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%), radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%);
    background-position: 0 0px, 8px 8px, 0 1px, 8px 9px;
    background-size: 16px 16px; */
}
header {
    height: 90px;
    width: 100%;
    background-color: #1e3799;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 5px 5px 10px #000;
}
@media only screen and (max-height: 720px) {
    header {
        height: 40px;
    }
}
.logo {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}
@media only screen and (max-height: 720px) {
    .logo {
        font-size: 25px;
    }
    .details {
        font-size: 12px;
    }
}
.details span {
    display: block;
    color: #fff;
}
/* #logoutBtn {
    padding: 0.7rem 1.2rem;
    background-color: red;
    cursor: pointer;
    box-shadow: 5px 10px 10px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #000;
    text-align: center;
    color: #000;
} */
.update {
    height: 30px;
    /*display: flex;*/
    align-items: center;
    background: #25CCF7;
    display: none;
}
@media only screen and (max-height: 720px) {
    .update {
        height: 20px;
        font-size: 12px;
    }
}
.infoBar {
    display: flex;
    justify-content: space-evenly;
    margin-top: 1rem;
}
.infoBar div {
    padding: 0 15px;
    height: 30px;
    border: 1px solid #fff;
    box-shadow: 0 0 5px #000 inset;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: wheat;
    font-size: 18px;
}
.infoBar div p span {
    color: lightseagreen;
}
footer {
    width: 100%;
    height: 20px;
    background-color: #1e3799;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    opacity: .8;
}
.main-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 770px;
    gap: 3rem;
}
@media only screen and (max-width: 1280px) {
    .main-container {
        gap: 0;
    }
    
}
@media only screen and (max-height: 720px) {
    .main-container {
        height: 700px;
    }
    
}
.controller {
    height: 560px;
    width: auto;
    position: relative;
    top: -1rem;
    
}
.controller .myClockDisplay {
    width: 100%;
    height: 80px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    outline: gray solid 5px;
    box-shadow: 0 0 20px #000;
}
.controller .myClockDisplay #digitalClock {
    color: #EA2027;
    font-size: 18px;
    font-family: Orbitron;
    letter-spacing: 7px;
}
.controller .sys_status_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2d98da;
    height: 50px;
    margin-bottom: 1rem;
    padding: 0 1rem;
    font-weight: 900;
    box-shadow: 0 0 10px #000;
}
.sys_status {
    background: gray;
    border-radius: 50%;
    opacity: .7;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 29px;
}
.sys_status i {
    color: #fff;
}
.sys_status_container #off.active{
    background-color: #7e1f1f;
    opacity: 1;
    box-shadow: 0 0 10px;
    animation: onOF 1s ease-in-out infinite;
}
.sys_status_container #on.active{
    background-color: #086e3f;
    opacity: 1;
    box-shadow: 0 0 10px;
    animation: onOF .8s ease infinite;
}
@keyframes onOF {
    0%{transform: scale(1.0);}
    100%{transform: scale(1.2);}
}
.sys_status_container .statusText {
    font-size: 25px;
    font-weight: 700;
}
table {
    box-shadow: 5px 10px 10px;
    background: #22a6b3;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-spacing: 0;
    border-collapse: collapse;
}
table thead {
    background: #2f3542;
    color: #fff;
    position: sticky;
    top: 0;
}
table thead th {
    padding: 10px;
}
table tr td {
    padding: 5px 20px;
    font-weight: 600;
}
table tr td input[type=checkbox] {
    width: 17px;
    height: 17px;
}
table tbody tr:nth-child(odd) {
    background-color: rgb(190, 203, 243);
}

.proccess__log {
    height: 400px;
    background-color: #000;
    box-shadow: 0 0 20px #000;
    width: 250px;
}
.proccess__log .procces__Head {
    color: #fff;
    width: 100%;
    padding: 0.8rem 20px;
    background: darkslategray;
}
.processLog_data {
    width: 100%;
    padding: 10px;
    height: calc(100% - 43px);
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}
/* width */
.processLog_data::-webkit-scrollbar {
    width: 2px;
  }
  
  /* Track */
.processLog_data::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
.processLog_data::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
.processLog_data::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.processLog_data p {
    display: block;
    color: blue;
    font-size: 18px;
}
.processLog_data p span {
    color: green;
}
.processLog_data .red {
    color: red;
}
.processLog_data .blue {
    color: blue;
}
.processLog_data .green {
    color: green;
}
.ctrl-btn {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;

}
.ctrl-btn .btn {
    padding: 1.2rem;
    background-color: #dfe4ea;
    cursor: pointer;
    box-shadow: 5px 10px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #000;
    color: #000;
    text-align: center;
}
.ctrl-btn .btn.btn-red {
    background-color: #b71540;
}
.ctrl-btn .btn.btn-red span {
    color: #fff;
    text-transform: uppercase;
}
.ctrl-btn .btn:hover {
    background: #22a6b3;
}
.ctrl-btn .btn.btn-green {
    background-color: #086e3f;
}
.ctrl-btn .btn.btn-green span {
    color: #fff;
}

.view {
    width: 900px;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 1360px) {
    .view {
        width: 800px;
    }
    
}
.canvas {
    width: 90%;
    height: 90%;
    border: 10px solid #CCCCCC;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    /* background: #30336b; */
    padding: 2rem;
    box-shadow: 0 0 10px #000, 0 0 10px #000 inset;
}
.tank-container {
    width: 100%;
    height: 80%;
    position: absolute;
    left: -20.1%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
}
.tank-holder {
    display: flex;
    width: 150px;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tank-holder:after {
    content: "";
    position: absolute;
    height: 504px;
    width: 10px;
    background-color: #CCCCCC;
    z-index: -1;
}
.tank-holder:first-child:after {
    background: transparent;
}
.tank {
    width: 150px;
    height: 220px;
    border-radius: 50% 50% 0% 0% / 20% 20% 0% 0%;
    background-color: #fff;
    border: 2px solid #000;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5), 27px 11px 10px #130f40 inset;
}
.tank-name {
    text-align: center;
}
.tank .tank-upper {
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 39px;
}
.tank .tank-lavel {
    margin-top: 1rem;
    font-size: 25px;
    color: goldenrod;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}
.tank .tank-lower {
    position: absolute;
    width: 100%;
    border-top: 1px solid #000;
    bottom: 0;
    animation: wave 4s linear infinite;
    transition: 5s;
}
 @keyframes wave{
    0%, 100% {
        clip-path: polygon(0 8%, 7% 6%, 14% 5%, 21% 5%, 28% 6%, 34% 8%, 40% 12%, 46% 17%, 50% 20%, 54% 23%, 60% 25%, 66% 26%, 70% 26%, 77% 25%, 83% 23%, 89% 21%, 95% 19%, 100% 17%, 100% 100%, 0% 100%);
    }
    
    50% {
        clip-path: polygon(0 15%, 9% 21%, 14% 23%, 18% 25%, 21% 26%, 30% 28%, 32% 28%, 40% 27%, 46% 26%, 52% 23%, 57% 19%, 62% 15%, 68% 11%, 73% 8%, 79% 6%, 86% 5%, 93% 5%, 100% 6%, 100% 100%, 0% 100%);
    }
}
.first-tank-lower {
    /* height: 60%; */
    background-color: rgba(64, 45, 210, .6);
}
.middle-tank-lower {
    /* height: 70%; */
    background-color: rgba(24, 172, 180, 0.5);
}
.third-tank-lower {
    /* height: 20%; */
    background-color: rgba(255, 235, 153, 0.8);
}
.tank-holder .indicator {
    width: 50px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.tank-holder .indicator::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: red;
    left: 10px;
}
.tank-holder .indicator .lamp-name {
    width: 15px;
    height: 15px;
    background-color: rgb(190, 203, 243);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
}
.tank-holder .indicator span {
    transform: rotate(-90deg);
    color: #000;
}
.tank-holder .indicator .variable-name {
    width: 15px;
    height: 30px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
.tank-holder .indicator .lamp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tank-holder .indicator .lamp .lamp-first{
    background: rgb(190, 203, 243);
    width: 25px;
    height: 15px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.tank-holder .indicator .lamp .lamp-second{
    background: rgb(190, 203, 243);
    width: 25px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
.tank-circle-indic-holder {
    position: absolute;
    left: -40px;
}
.tank-circle-indic-holder::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 10px;
    background: #CCCCCC;
}
.tank-circle-indic-holder::after {
    content: "";
    position: absolute;
    height: 97px;
    width: 10px;
    background: #CCCCCC;
    bottom: 0px;
}
.circle-indic {
    position: absolute;
    bottom: 95px;
    left: -20px;
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.circle-indic.tr1 {
    background-color: #cbf0f3;
}
.circle-indic.tr2 {
    background-color: #effeff;
}
.circle-indic .tr-val {
    height: 48%;
    width: 100%;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle-indic hr {
    width: 100%;
    border-top: 2px solid #000;
}
.circle-indic .tr-name {
    text-transform: uppercase;
    position: absolute;
    left: -12px;
    bottom: -18px;
    color: yellow;
}
.pump {
    position: absolute;
    width: 60px;
    height: 60px;
    background: green;
    top: -30px;
    right: -30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid #CCCCCC;
    box-shadow: 0 0 50px;
}
.pump::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}
.pump::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}
.pump span {
    position: absolute;
    bottom: 0px;
    left: -50px;
    color: yellow;
    font-weight: 900;
}
.mBotm {
    position: absolute;
    width: 55px;
    height: 60px;
    background: #f2f2f2;
    bottom: -35px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #CCCCCC;
}
.mBotm::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 5px;
    background: #CCCCCC;
    right: -40px;
    bottom: 5px;
}
.mBotm::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: 0;
    width: 15px;
    height: 15px;
    background: #CCCCCC;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.view-circle-indic-holder.tempIndic {
    right: 40px;
}
.view-circle-indic-holder.tempIndic:before{
    content: "";
    position: absolute;
    height: 10px;
    width: 45px;
    background: #CCCCCC;
    bottom: -168px;
}
.view-circle-indic-holder.tempIndic:after{
    content: "";
    position: absolute;
    height: 65px;
    width: 10px;
    background: #CCCCCC;
    bottom: -168px;
}
.view-circle-indic-holder.tempIndic .circle-indic {
    background: #bdf4ee;
    bottom: -110px;
}
.view-circle-indic-holder.tempIndic .circle-indic .tr-name {
    left: -20px;
    bottom: -32px;
    transform: rotate(-90deg);
}
.flowIndic {
    position: absolute;
    width: 60px;
    height: 37px;
    background: #f2f2f2;
    bottom: -9px;
    right: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #CCCCCC;
}
/* .flowIndic .flowValue {

} */
.flowIndic .flowName {
    position: absolute;
    top: -25px;
    font-weight: 700;
    color: yellow;
}
.main-indic-holder {
    position: absolute;
    right: -75px;
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.indic-holder .indicator {
    width: 50px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.main-indic-holder.indic-holder .indicator {
    transform: rotate(90deg);
}
.indic-holder .indicator .lamp-name {
    width: 15px;
    height: 15px;
    background-color: rgb(190, 203, 243);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
}
.indic-holder .indicator .lamp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.indic-holder .indicator .lamp .lamp-first {
    background: rgb(190, 203, 243);
    width: 25px;
    height: 15px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.indic-holder .indicator .lamp .lamp-second {
    background: rgb(190, 203, 243);
    width: 25px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
.indic-holder .indicator .variable-name {
    width: 15px;
    height: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
.main-indic-holder::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: #CCCCCC;
}
.main-indic-holder::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #CCCCCC;
    right: -10px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.second-indic-holder {
    position: absolute;
    right: -45px;
    width: 74px;
    top: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.view-circle-indic-holder {
    position: absolute;
}
.view-circle-indic-holder.first-holder {
    top: 80px;
    right: 60%;
}
.view-circle-indic-holder.first-holder .circle-indic {
    background: #fbf4d0;
    bottom: 110px;
}
.view-circle-indic-holder.first-holder:after {
    content: "";
    position: absolute;
    height: 40px;
    width: 10px;
    background: #CCCCCC;
    top: -122px;
}   
.view-circle-indic-holder.second-holder {
    top: 80px;
    right: 50%;
}
.view-circle-indic-holder.second-holder:after {
    content: "";
    position: absolute;
    height: 45px;
    width: 10px;
    background: #CCCCCC;
    top: -133px;
}
.view-circle-indic-holder.second-holder .circle-indic {
    background: #bdf4ee;
    bottom: 130px;
}
.view-circle-indic-holder.second-holder .circle-indic .tr-name {
    transform: rotate(-90deg);
    font-size: 13px;
    bottom: -27px;
    left: -10px;
}

.member-login-container{
	height: 100%;
    width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
	box-shadow: 0 0 20px;
    position: relative;
    background-color: #12CBC4;
}
.member-login-container.disabled::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
}
.member-login-container.disabled::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 2;
    border: 5px solid rgb(152, 152, 152);
    border-right-color: transparent;
    border-radius: 50%;
    animation: loading .8s ease-in infinite;
}
@keyframes loading {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}    
}
.member-login-container .form-sec{
	width: 40%;
	height: 500px;
	background: var(--blue-color-static);
}
.member-login-container .form-sec h1{
	margin-top: 2rem;
	text-align: center;
	font-size: 25px;
	color: #fff;
	font-weight: 400;
}
.member-login-container .form-sec span{
    display: block;
	text-align: center;
	color: #fff;
	margin-top: 0.5rem;
	letter-spacing: 3px;
	opacity: .7;
}
.member-login-container .form{
	display: block;
	width: 320PX;
	margin:  0 auto;
	margin-top: 2rem;
	color: #fff;
}
.member-login-container .field-holder{
	margin-top: 2rem;
}
.member-login-container .field-holder label{
	font-size: 16px;
	font-weight: 600;
}
.member-login-container .field{
	margin-top: 1rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	height: 40px;
	padding: 0 15px;
	border-radius: 5px;
}
.member-login-container .field input{
	width: calc(100% - 40px);
	height: 100%;
	background: transparent;
	outline: none;
	border: none;
	color: var(--static-pink);
	font-size: 14px;
	letter-spacing: 1px;
}
.member-login-container .field input::placeholder{
	color: #fff;
	opacity: .5;
	font-size: 12px;
}

.member-login-container .btn{
	padding: .8rem 0;
	width: 100%;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0 1px 5px #000;
	cursor: pointer;
	text-transform: uppercase;
	color: #000;
}
.member-login-container .loginBtn{
	margin-top: 3rem;
	background: #f5daa5;
}
.member-login-container .loginBtn:hover {
    box-shadow: 0 0 20px #000;
}
.log-ctrl{
    position: absolute;
    right: 7rem;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.log-ctrl .btn {
    padding: 1.2rem;
    background-color: yellow;
    cursor: pointer;
    box-shadow: 5px 10px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #000;
    color: #000;
    text-align: center;
}
.main-container.log_data {
    padding: 0 4rem;
    display: block;
    margin: 2rem 0;
    margin-top: 8rem;
}
@media only screen and (max-width: 650px) {
    .main-container.log_data {
        overflow-x: scroll;
    }
}

#datalogTable_filter {
    margin: 10px 0;
    color: #fff;
}
#datalogTable_info {
    color: #fff;
}
.centeredEl {
    display: flex;
    justify-content: center;
    align-items: center;
}
.action_btn {
    position: fixed;
    bottom: 4rem;
    right: 3rem;    
}
.setBTn {
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: .2s;
}
.setBTn:hover {
    transform: scale(1.1);
    /* box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.3); */
}
.setBTn img {
    width: 100%;
    height: 100%;
}
.settings_btn{
    /* background: #01a3a4; */
    background-color: #4834d4;
    z-index: 1;
}
.settings_btn:hover img {
    animation: spinner 1s ease-in-out;
}
@keyframes spinner {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.setTimer_btn {
    background: #F79F1F;
    position: absolute;
    top: -5.5rem;
    transform: translateX(150px);
}
.setTimer_btn img {
    opacity: .7;
}
.logData_btn {
    background: #fff;
    position: absolute;
    top: -16.5rem;
    transition-delay: .200s;
    transform: translateX(150px);
}
.logout_btn {
    background: #fff;
    position: absolute;
    top: -22rem;
    transition-delay: .100s;
    transform: translateX(150px);
}
.saveData_btn {
    background: #fff;
    position: absolute;
    top: -11rem;
    transition-delay: .100s;
    transform: translateX(150px);
}
.action_btn:hover {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
}
.action_btn:hover .setTimer_btn, .action_btn:hover .logout_btn,.action_btn:hover .logData_btn,.action_btn:hover .saveData_btn {
    position: unset;
    transform: translateX(0px);
}

.popUp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 0.9);
    z-index: 9999;
}
.popUp.close{
    display: none;
}
.modal-box {
    width: 500px;
    height: 300px;
    background-color: #fff;
    /* box-shadow: 0 0 5px 5px #000; */
    position: relative;
    border: 4px solid #16a085;
}
.modal-box.close {
    display: none;    
}
.modal-box.open {
    display: block;    
}
.modal-box .form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
}
.modal-box .form .field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.modal-box .form .field label {
    font-size: 20px;
}
.modal-box .form .field select, .modal-box .form .field input {
    padding: 0.5rem 10px;
    font-size: 16px;
    border: 2px solid #000;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
}
.popBtn{
    position: absolute;
    bottom: 0.8rem;
    padding: 0.7rem 1.8rem;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    outline: none;
    border: 2px solid #000;
    box-shadow: 0 0 10px #000;
    cursor: pointer;
    transition: .2s;
}
.modalClose {
    right: 2rem;
    background-color: red;
}
.setTimerBTnPopUp{
    left: 2rem;
    background-color: #1289A7;
}
.popBtn:hover {
    box-shadow: 0 0 40px #000;   
    transform: scale(1.1); 
}
    
