body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.box {
    position: relative;
    margin: auto;
    margin-top: 4%;
    width: 600px;
    height: 600px;
    border: 10px solid 	#855146;
    border-radius: 50%;
    background: #be8864;
    overflow: hidden;
}
.trans-box{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
}
.slice-up {
    position: absolute;
    top: 0;
    left: 222px;
    border-style: solid;
    border-width: 300px 78px 0 78px;
    border-color: #bcb892 transparent transparent transparent;
}
.slice-down {
    position: absolute;
    top: 50%;
    left: 222px;
    border-style: solid;
    border-width: 300px 78px 0 78px;
    border-color: #bcb892 transparent transparent transparent;
    transform: rotate(180deg);
}
.trans-box-two {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
    transform: rotate(30deg);
}
.trans-box-three {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
    transform: rotate(60deg);
}
.trans-box-four {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
    transform: rotate(90deg);
}
.trans-box-five {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
    transform: rotate(120deg);
}
.trans-box-six {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: none;
    transform: rotate(150deg);
}
.two {
    border-color: #eed7a5 transparent transparent transparent;
}
.three {
    border-color: #dea789 transparent transparent transparent;
}
.four {
    border-color: #ad9f62 transparent transparent transparent;
}
.five {
    border-color: #e1c76a transparent transparent transparent;
}
.six {
    border-color: #97868c transparent transparent transparent;
}
.inner-circle {
    position: absolute;
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
    background: #edd99a;
    border: 5px solid #855146;
    border-radius: 50%;
}
.twelve-up {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 5%;
    left: 43%;
    background: none;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
}
.twelve-down {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 5%;
    left: 43%;
    background: none;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    transform: rotate(180deg);
}
.inner-circ {
    position: absolute;
    width: 6px;
    height: 6px;
    top: 282px;
    left: 282px;
    border: 15px solid black;
    border-radius: 50%;
    background: white;
}
.arrow-hours {
    position: absolute;
    width: 6%;
    height: 80%;
    top: 10%;
    left: 47%;
    background: none;

}
.arrow-hours-1 {
    position: absolute;
    width: 80%;
    height: 35%;
    top: 12%;
    left: 10%;
    background: black;
    border-radius: 5px;
}
.arrow-minutes {
    position: absolute;
    width: 2%;
    height: 80%;
    top: 10%;
    left: 49%;
    background: none;

}
.arrow-minutes-1 {
    position: absolute;
    width: 80%;
    height: 47%;
    top: 0;
    left: 10%;
    background: black;
    border-radius: 5px;
}
.arrow-seconds {
    position: absolute;
    width: 1%;
    height: 80%;
    top: 10%;
    left: 49.5%;
    background: none;
    animation: seconds 60s infinite;
    animation-timing-function: linear;
}
.arrow-seconds-1 {
    position: absolute;
    width: 80%;
    height: 47%;
    top: 0;
    left: 10%;
    background: red;
    border-radius: 5px;
}


@keyframes seconds {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}