/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/* (A) CONTAINER */
#stopwatch {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

/* (B) TIME */
#sw-time {
  width: 100%;
  padding: 20px 0;
  font-size: 78px;
  font-weight: normal;
  text-align: center;
  border: 0;
  color: #1F365C;
}

/* (C) BUTTONS */
#sw-rst, #sw-go {
  box-sizing: border-box;
  width: 48%;
  cursor: pointer;
  padding: 20px 0;
  border: 0;
  color: #fff;
  font-size: 28px;
}
#sw-rst { background-color: #DD4554; margin-right: 2px; }
#sw-go { background-color: #7CC31F; margin-left: 2px;}

/* (X) DOES NOT MATTER */
/* PAGE & BODY */
body {
  display: flex;
  align-items: center; justify-content: center;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
* { font-family: arial, sans-serif; }

/* WIDGET */
.widget-wrap {
  min-width: 450px;
  padding: 5px;
  border-radius: 0px;
  
  
}

