/*Counter JS*/

.cosl-countdown {
    display: flex;
  	position: relative;
  	gap: 10px;
}

.cosl-box {
    width: 28vmin;
    height: 18vmin;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.5);
    color: white;
}

.cosl-box:after {
    content: "";
    position: absolute;
    background-color: rgba(255,255,255,0.12);
    height: 100%;
    width: 50%;
    left: 0;
}

.cosl-box span.num {
    background-color: #202020;
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    font-weight: bold;
  	font-size: 25px;
  	padding: 10px;
}

.cosl-box span.text {
    background-color: #2887e3;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5em 0.5em;
    font-weight: 400;
}