.page { background-color: var(--black); height: 100vh; overflow: auto; } .nav-header { background-color: var(--ash-black); display: flex; align-items: center; padding: 0 5%; height: 60px; position: sticky; position: -webkit-sticky; top: 0; z-index: 1; box-shadow: 0px 0px 5px var(--black); .close-button { border: 0px; background-color: transparent; .icon { width: 16px; height: 16px; fill: var(--light-grey); } } h5 { font-size: 16px; color: white; font-weight: 400; margin-left: 20px; letter-spacing: 1px; .icon { width: 15px; height: 15px; fill: white; margin-right: 3px; vertical-align: middle; position: relative; top: -1px; } } } .question-status { background-color: var(--ash-black); padding: 10px 0% 5px; display: block; width: 100%; overflow: auto; margin-bottom: -10px; position: relative; .container { width: 100%; padding: 0 5%; white-space: nowrap; display: inline-block; overflow: auto; } &::before { content: ''; position: absolute; left: 0; top: 0; width: 10px; height: 100%; box-shadow: 10px 0px 10px 10px var(--ash-black); opacity: 0.8; background-color: var(--ash-black); } &::after { content: ''; position: absolute; right: 0; top: 0; width: 10px; height: 100%; box-shadow: -10px 0px 10px 10px var(--ash-black); opacity: 0.8; background-color: var(--ash-black); } .question-number { width: 17px; height: 17px; background-color: var(--dark-grey); color: white; align-items: center; justify-content: center; display: inline-block; margin-right: 10px; border-radius: 50%; overflow: hidden; border: 1px solid var(--dark-grey); box-sizing: content-box; span { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; } label { font-size: 10px; } .icon { width: 100%; height: 100%; fill: white; display: none; } &.current { border-color: var(--light-grey); background-color: var(--black); &.wrong { background-color: var(--danger-dark); .icon { fill: var(--black) !important; } } &.correct { background-color: var(--green); .icon { fill: var(--black) !important; } } } &.correct { border-color: var(--green); background-color: white; label { display: none; } .icon { fill: var(--green); display: block; } } &.wrong { border-color: var(--danger-dark); background-color: var(--danger-dark); label { display: none; } .icon { fill: white; width: 7px; height: 7px; display: block; } } } } ngx-siema-slide { display: block; .question { line-height: 1.5; color: white; font-size: 13px; background-color: var(--ash-black); padding: 15px 5%; } .timer-holder { background-color: var(--black); height: 70px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; position: relative; &::before { content: ''; width: 200vw; height: 100vw; border-radius: 50%; position: absolute; bottom: 25px; background-color: var(--ash-black); } .timer { width: 60px; height: 60px; border-radius: 50%; background-color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; position: relative; color: var(--ash-black); svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; transform: rotate(-90deg); #progress { stroke: var(--green); } } } } } .option-list { width: 90%; margin: 20px auto; list-style: none; li { display: flex; width: 100%; border: 1px solid var(--light-grey); color: white; border-radius: 15px; align-items: center; min-height: 50px; margin: 20px auto; justify-content: space-between; padding: 0 15px; label { font-size: 14px; } .icon-holder { width: 23px; height: 23px; border: 1px solid var(--light-grey); border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; .icon { width: 100%; height: 100%; fill: white; display: none; } } &.correct { box-shadow: 0px 0px 5px var(--green); border-color: var(--green); label { color: var(--green); } .icon-holder { border-color: var(--green); background-color: white; .icon { fill: var(--green); display: block; } } } &.wrong { box-shadow: 0px 0px 5px var(--danger-dark); border-color: var(--danger-dark); label { color: var(--danger-dark); } .icon-holder { border-color: var(--danger-dark); background-color: var(--danger-dark); .icon { fill: white; width: 10px; height: 10px; display: block; } } } } } .next-button { width: 100px; height: 50px; border-radius: 30px; background-color: var(--teal-green); color: white; font-size: 14px; border: 0px; display: block; position: sticky; position: -webkit-sticky; bottom: 20px; margin: 10px auto 40px; box-shadow: 0px 0px 10px var(--teal-green); }