.ksp-header {
    background-color: #033f9e;
    margin-bottom: 0;
}
.ksp-container {
    display: flex;
    justify-content: center;
    position: relative;
    color: white;
}
.check-icon {
    display: inline-block;
    margin-right: 8px;
}
.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
#play-button, #pause-button {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 10px;
}
#play-button {
    display: none;
}
#pause-button {
    display: inline;
}
.f1 {
    display: block;
}
@media screen and (min-width: 768px) {
    #play-button, #pause-button {
        display: none;
    }
    .ksp-container {
        display: inline;
    }
    .f1 {
        display: none;
    }
}
@media screen and (min-width: 992px) {
    .f1 {
        display: block;
    }
}