/* Styles form page blocks */

.clock-small-bg	{
		background-color:WhiteSmoke;
		}

.clock-small-clockarea	{
		display: flex;
		              align-items: center;
		              justify-content: center;
		              height: 160px;
		}

.clock-small-clock	{
		border-radius: 100%;
		              background: #ffffff;
		              font-family: "Montserrat";
		              border: 5px solid white;
		              box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);
		}

.clock-small-wrap	{
		overflow: hidden;
		              position: relative;
		              width: 100px;
		              height: 100px;
		              border-radius: 100%;
		}

.clock-small-minute,            .clock-small-hour	{
		position: absolute;
		              height: 30px;
		              width: 6px;
		              margin: auto;
		              top: -27%;
		              left: 0;
		              bottom: 0;
		              right: 0;
		              background: black;
		              transform-origin: bottom center;
		              transform: rotate(0deg);
		              box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
		              z-index: 1;
		}

.clock-small-minute	{
		position: absolute;
		              height: 43px;
		              width: 4px;
		              top: -38%;
		              left: 0;
		              box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
		              transform: rotate(90deg);
		}

.clock-small-second	{
		position: absolute;
		              height: 30px;
		              width: 2px;
		              margin: auto;
		              top: -26%;
		              left: 0;
		              bottom: 0;
		              right: 0;
		              border-radius: 4px;
		              background: #FF4B3E;
		              transform-origin: bottom center;
		              transform: rotate(180deg);
		              z-index: 1;
		}

.clock-small-dot	{
		position: absolute;
		              top: 0;
		              left: 0;
		              right: 0;
		              bottom: 0;
		              width: 12px;
		              height: 12px;
		              border-radius: 100px;
		              background: white;
		              border: 2px solid #1b1b1b;
		              border-radius: 100px;
		              margin: auto;
		              z-index: 1;
		}

/* END Styles form page blocks */

