﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comfortaa', sans-serif;
}

:root {
    --bg-color: #F5F5F5;
    --dark-color: #061F26;
    --light-color: #4D4C7D;
    --button-color: #99d5d5;
}

.tdclass {
    cursor: pointer;
}

.headerQ {
    /*background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('~/Content/assets/img/background.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    padding: 20px 8%;
    position: relative;
}

.header-player {
    height: 75vh;
    width: 100%;
}

.header-quiz {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../Content/assets/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    width: 100%;
    padding: 20px 2%;
    position: relative;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.quiz-mainlayout {
    height: calc(100vh - 100px);
    width: 100%;
}

#entWordQA {
}

.answer-box input[type=text]:focus {
    border: 1px solid var(--dark-color);
}

.greetings {
    color: #fff !important;
    text-align: center;
    position: relative;
}

    .greetings p {
        color: #fff;
        margin-bottom: 10px;
    }

.quiz-cards {
    top: 60px;
    /*left: 50%;*/
    /* transform: translate(-50%, -50%);*/
    /*margin: 0 30px;*/
    margin: auto;
    height: 75vh;
    /* top: 35%;
    left: 50%;*/
    /*transform: translate(-50%, -35%);*/
}

.quiz {
    /* background: linear-gradient( 45deg, #999 5%, #fff 10%, #ccc 30%, #ddd 50%, #ccc 70%, #fff 80%, #999 95% );*/
    /*background-color: #FEE140;*/
    /*background-image: linear-gradient(90deg, #FEE140 0%, #FA709A 100%);*/
    /*background-color: #08AEEA;*/
    /*background-image: linear-gradient(0deg, #4F6F52 0%, #86A789 100%);*/
    /* background-color: #21D4FD;*/
    /*background-image: linear-gradient(19deg, #4A8966 0%, #1D5C39 33%, #2C6B48 66%, #3B7A57 100% );*/
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../../Content/assets/img/gr_bg.jpg);
    background-size: 100% 100%;
    /*background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);*/
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 5px;
    overflow-x: auto;
    border-radius: 30px;
    box-shadow: 2px 2px 25px #000;
}

    .quiz h1 {
        font-size: 40px;
    }

.answers {
    width: 100%;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    opacity: 0.8;
    border-radius: 30px;
    box-shadow: 2px 2px 25px #000;
    height: 500px;
}

    .answers button {
        font-size: 15px;
        padding: 15px 20px;
        margin-top: 10px;
        background: #948437;
        color: #fff;
        border: 0;
        outline: 0;
        text-transform: uppercase;
        cursor: pointer;
        width: 145px;
        border-radius: 15px;
    }

        .answers button:hover {
            background: var(--light-color);
        }

.answers-data {
    flex: 1;
    background: #fff;
    padding: 10px;
    position: relative;
    border-radius: 30px;
    height: 425px;
    margin-bottom: 10px;
}

    .answers-data ul {
        height: 300px;
        overflow-y: auto;
        position: absolute;
        top: 110px;
        width: 90%;
    }

.score {
    position: absolute;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    gap: 20px;
    width: calc(100% - 20px);
    height: 100px;
}

.play-controls {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.fa-chevron-left, .fa-chevron-right {
    font-size: 36px;
}

.fa-play-circle {
    font-size: 80px;
}

.fa-pause-circle {
    font-size: 80px;
}

.play-controls {
    margin: 40px 0 10px 0;
}

.answer-box {
    position: relative;
    margin: auto;
    width: 400px;
    max-width: 100%;
    text-align: center;
    /*display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 20px;*/
}

    .answer-box input {
        padding: 6px 60px 6px 20px;
        color: var(--dark-color);
        border-radius: 30px;
        width: 100%;
        font-size: 24px;
    }

    .answer-box button {
        height: 100%;
        border-radius: 50%;
        margin-left: 5px;
        background: var(--dark-color);
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
        position: absolute;
        right: 0;
        aspect-ratio: 1;
    }

.hints {
    margin: 20px 0;
}


.pos, .def, .etym, .sent {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
    padding: 10px 10px;
}

h4 {
    margin-top: 12px;
}

.divcor, .divincor {
    height: 200px;
}

.pos {
    border: 1px solid var(--dark-color);
    border-top: 0;
    border-left: 0;
    padding-right: 20px;
    text-align: right;
    justify-content: flex-end;
}

.def {
    border: 1px solid var(--dark-color);
    border-top: 0;
    border-right: 0;
    padding-left: 20px;
    text-align: left;
    justify-content: flex-start;
}

.etym {
    border: 1px solid var(--dark-color);
    border-bottom: 0;
    border-left: 0;
    border-top: 0;
    padding-right: 20px;
    text-align: right;
    justify-content: flex-end;
}

.sent {
    border: 1px solid var(--dark-color);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    padding-left: 20px;
    text-align: left;
    justify-content: flex-start;
}

.hint-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hint-data {
    text-align: left;
    margin: auto;
    width: 90%;
    padding: 0 30px;
}

    .hint-data h4 {
        margin-bottom: 10px;
    }



.score h1 {
    font-size: 80px;
    font-weight: 700;
}

li {
    line-height: 30px;
}

.scrore-line {
    width: 100%;
    height: 20px;
    position: absolute;
    top: 95px;
}

.scrore-line2 {
    width: 100%;
    height: 20px;
    position: relative;
}

.scrore-line h2 {
    width: 100%;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 2px 0 5px;
}

.scrore-line2 h2 {
    width: 100%;
    font-size: 25px;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 2px 0 5px;
}

.scrore-line h2 span {
    background: #fff;
    padding: 0 10px;
}

.scrore-line2 h2 span {
    background: #F5F5F5;
    padding: 0 5px;
    border: 0.1px solid #808080;
    border-radius: 10px;
    font-size: 20px;
}

.buttons-div {
    width: 100%;
    display: inline-flex;
}

    .buttons-div button {
        width: 100%;
    }

.score h1 {
    font-size: 80px;
    font-weight: 700;
}

li {
    line-height: 30px;
}

.buttons-div {
    display: flex;
    justify-content: space-between;
}

.saved-quizzes {
    position: absolute;
    height: 70vh;
    overflow-x: scroll;
    margin-top: 30px;
    width: 60%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .saved-quizzes::-webkit-scrollbar {
        display: none;
    }

.saved-quiz {
    background: #fff;
    width: 650px;
    height: 120px;
    border: 1px solid rgb(60 64 67 / 30%);
    border-radius: 60px;
    margin: 10px auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.75;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.progress-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-color);
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sq-separator {
    border: 1px solid var(--light-color);
    height: 80px;
    width: 3px;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
}

.sq-content {
    width: 400px;
    text-align: center;
}

    .sq-content h3 {
        cursor: pointer;
    }

.sq-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    justify-content: space-between;
    gap: 10px;
    font-size: 24px;
    color: var(--light-color);
}

.sq-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.sq-green {
    background: green;
    color: #fff;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 10px;
}

.sq-red {
    background: red;
    color: #fff;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 10px;
}

.sq-blue {
    background: royalblue;
    color: #fff;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 10px;
}


/*Search Word CSS*/
.search-main {
    position: absolute;
    width: 70%;
    height: 80vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.search-pane {
    width: 30%;
    color: var(--dark-color);
    height: 100%;
    overflow-x: auto;
    margin-right: 20px;
    background: #fff;
    padding: 10px;
    font-size: 18px;
    line-height: 28px;
}

.search-word input {
    min-width: 300px;
    border-radius: 30px;
    background: #f9f9f9;
    border: 1px solid #000;
}

.results-pane {
    width: 100%;
    color: var(--light-color);
    height: 90%;
    overflow-x: auto;
    background: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 20px;
    opacity: 0.9;
}

#wordSpecifications {
    margin: auto;
}

.search {
    width: 95%;
    margin: 3px;
    font-size: 24px;
    padding: 3px;
    margin-bottom: 20px;
}

/*User Profile CSS*/
.user-profile {
    position: absolute;
    height: 70vh;
    width: 500px;
    background: var(--bg-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow-x: auto;
}


/*Mobile Screen*/
@media (max-width: 400px) {
    .user-profile {
        width: 300px;
    }

    .header-quiz {
        overflow-x: auto;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .quiz-player {
        border: 0px;
    }

    .quiz-cards {
        top: 60px;
    }
}

.user-profile img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 30px;
}

.user-profile form {
    margin: 10px 40px;
    text-align: left;
    padding-bottom: 40px;
}

    .user-profile form .form-group {
        margin-bottom: 10px;
    }

.user-profile button {
    /*background: #293242;*/
    padding: 6px 10px;
    /* color: #fff;*/
    border-radius: 6px;
    cursor: pointer;
    float: right;
    margin-bottom: 10px;
    outline: none;
    border: none;
}

/*User Feedback*/

.user-feedback {
    position: relative;
    height: 70vh;
    width: 500px;
    background: var(--bg-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 10px;
    overflow-x: auto;
}

@media (max-width: 400px) {
    .user-feedback {
        width: 300px;
    }
}

.user-feedback form {
    margin: 10px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

    .user-feedback form .form-group {
        margin-bottom: 10px;
    }

.user-feedback button {
    background: var(--dark-color);
    padding: 6px 10px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    float: right;
    margin: 10px 0;
    outline: none;
    border: none;
}

.user-feedback h5 {
    margin: 30px 0;
}

.user-feedback textarea {
    padding: 5px;
}

#questionnum {
    margin: 20px 0;
}

#blanksquestion {
    margin: 30px;
}


.submit-choice button {
    font-size: 20px;
    margin: 30px;
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 25px;
    height: 50px;
    border: none;
    color: #fff;
}

/*.options-box{
    text-align: left;
    margin-left: 80px;
}

.options-box label{
    font-size: 18px;
    margin-left: 10px;
    text-align: center;
}*/

.user-image {
    text-align: center;
}

.pencil-icon {
    transform: translate(40px, -130px);
    font-size: 30px;
    color: #fff;
    text-shadow: 2px 2px 15px #000;
}

.profile-pic {
    width: 36px;
    height: 36px;
    position: center;
    object-fit: cover;
    border-radius: 50%;
}

.end-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

button:active {
    transform: translate(2px,2px);
}


i:active {
    transform: translate(2px,2px);
}

i:hover {
    color: #fff;
}



.quiz-cats-1 {
    height: 250px;
    overflow-x: auto;
    padding: 10px;
    -ms-overflow-style: none;
    margin-bottom: 10px;
}

    

    .quiz-cats-1 a:not(:last-child):after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #808080;
        margin: 2px 5px 8px 0;
    }

    .quiz-cats-1 .active {
        background: var(--light-color);
        border-radius: 10px;
    }



.quiz-cats-2 {
    height: 240px;
    overflow-x: auto;
    padding: 10px;
    -ms-overflow-style: none; /* IE and Edge */
  
    margin-top: 5px;
}


.quiz-player {
    height: calc(90vh - 50px);
    padding: 10px;
}


.subcats {
    height: calc(90vh - 120px);
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .subcats::-webkit-scrollbar {
        display: none;
    }

.subcat {
}

.quiz-numbers {
    padding: 2px;
    width: 100%;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 10px;
    text-align: center;
}

    .quiz-numbers:after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #808080;
        margin: 8px 5px 8px 0;
    }

    .quiz-numbers h6 {
        color: #fff;
        text-align: left;
    }

.float-child {
    background: #fff;
    height: 20px;
    width: 20px;
    margin: 0 5px 5px 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


    /*.float-child:hover {
    background: #000;
    height: 20px;
    width: 20px;
    padding:10px;
    margin: 0 5px 5px 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

    .float-child a {
        color: var(--dark-color);
        float: left;
    }

.quiz-cats {
    text-align: center;
    cursor: pointer;
}

    .quiz-cats a img {
        width: 60px;
        height: 60px;
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 50%;
        outline: 1px solid #fff;
        outline-offset: 3px;
    }

.demo-section {
    min-height: 100vh;
    padding: 20px 30px;
}

.read-data-controls {
    margin-bottom: 20px;
}

#tableWordData {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    height: 75vh;
    overflow-x: auto;
}

#wordinfo {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    height: 75vh;
    overflow-x: auto;
}


.wordbuttons {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    height: 75vh;
    overflow-x: auto;
}
/*  Loader Spinner*/
.LoaderSpinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.Demo-forms {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

    .Demo-forms input[type=button] {
        margin-right: 5px;
    }

/*#divQuizCatId{
    display: flex;
    justify-content: space-around;
    align-items: center;
}*/

.subcat-heading {
    display: flex;
    align-items: center;
}

.quiz-bullet {
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
    border: 3px solid #fff;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
}

    .quiz-bullet a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.quiz-bullet-1 {
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
    border: 3px solid #000;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
}

    .quiz-bullet-1 a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }



.radio-group {
    text-align: center;
    display: flex;
}

    .radio-group label {
        display: inline-block;
        cursor: pointer;
        text-align: start;
        white-space: nowrap; /* Ensure label stays on single line */
        padding: 10px 20px;
        border: 1px solid rgb(60 64 67 / 50%);
        border-radius: 20px;
    }

    .radio-group input[type="radio"]:checked + label {
        background-color: #232323; /* Change background color when selected */
    }

.nav-link:hover:after, .nav-link.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #09A247;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-container {
    margin: auto;
    margin-top: 40px;
    min-width: 500px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
}

.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2 {
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
    padding: 0.5rem 0 0 0;
}

.main-controls {
    padding: 0.5rem 0;
}

.sound-clips {
    flex: 1;
    overflow: auto;
}

section, article {
    display: block;
}

.clip {
    padding-bottom: 1rem;
}

audio {
    width: 50%;
    display: block;
    margin: 1rem auto 0.5rem;
}

.clip p {
    display: inline-block;
    font-size: 1rem;
}

.clip input {
    font-size: 1rem;
}

.clip button {
    font-size: 1rem;
    float: right;
}

button.delete {
    background: #f00;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
}

/* Checkbox hack to control information box display */



input[type=checkbox] {
    position: center;
    top: -100px;
}

aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: 0.3s all ease-out;
    background-color: #efefef;
    padding: 1rem;
}

    aside p {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    aside a {
        color: #666;
    }



.clip p {
    cursor: pointer;
}

.chkbox {
    height: 25px;
    width: 25px;
    float: left;
}

.button-17 {
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #3c4043;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "Google Sans",Roboto,Arial,sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform,opacity;
    z-index: 0;
}

    .button-17:hover {
        background: #F6F9FE;
        color: #174ea6;
    }

    .button-17:active {
        box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
        outline: none;
    }

    .button-17:focus {
        outline: none;
        border: 2px solid #4285f4;
    }

    .button-17:not(:disabled) {
        box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
    }

        .button-17:not(:disabled):hover {
            box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
        }

        .button-17:not(:disabled):focus {
            box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
        }

        .button-17:not(:disabled):active {
            box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
        }

    .button-17:disabled {
        box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
    }

.centered-div {
    background-color: lightblue;
    padding: 20px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.mbscinput {
    width: 100%;
    margin: 0 0 5px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: arial, verdana, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.mbsc-page {
    padding: 1em;
}


.pulse {
    position: absolute;
    top: 83px;
    left: 40%;
    transform: translate(-505, -50%);
    width: 15px;
    height: 15px;
    background: #CD5C5C;
    border: 2px solid #CD5C5C;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0 0 0 10px #45237a, 0 0 0 10px #56ff00;
}

    .pulse:before,
    .pulse:after {
        content: '';
        position: absolute;
        left: -5px;
        top: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px solid #CD5C5C;
        border-radius: 50%;
        animation: animate 2s linear infinite
    }

    .pulse:after {
        animation-delay: 1s;
    }

@keyframes animate {
    0% {
        transform: scale(2.0);
    }

    100% {
        transform: scale(0.7);
    }
}

.ctl-selections {
    display: flex;
    align-items: center;
    gap: 10px;
}

#btnSubmit {
    background: var(--dark-color);
    color: #fff;
    border-color: #fff;
}

.borderbox {
    border: 1px solid #fff;
    border-radius: 6px;
    margin-bottom: 10px;
    height: 250px;
}

.borderbox2 {
    margin-bottom: 10px;
    height: 400px;
}

.openmargin {
    padding: 20px 8%;
    position: relative;
}

.rotateable {
    transition: all 100ms;
}
