* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: white;
}

.body {
    overflow: auto;
}

.side-bar {
    float: left;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #46445a;
    width: 14%;
    height: 100vh;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px #212121;
    padding-top: 40vh;
    padding-left: 1.5vw;
}

.list-section {
    padding-left: 10%;
    height: 10%;
}

.expand-icon {
    float: left;
    transition: all 0.3s ease;
}

.expand-icon i {
    cursor: pointer;
    color: white;
    padding-top: 8vh;
    padding-left: 5vw;
    transition: all 0.3s ease;
}

.row {
    overflow: auto;
}

.row i {
    color: white;
    float: left;
    size: 1vmax;
    font-size: 1vmax;
    padding-right: 4px;
    transition: all 0.3s ease;
}

.row h3 {
    float: left;
    font-size: 1.1vmax;
    padding-left: 4px;
    margin-top: -2.3px;
    color: white;
    transition: all 0.3s ease;
}


/* Side bar styling ends */


/* Main container styling */

.main-container {
    float: right;
    width: 86%;
    transition: all 0.3s ease;
}

.expand-container {
    width: 95% !important;
    transition: all 0.3s ease;
}


/* Main container styling ends*/


/* Top nav bar styling */

.top-nav-bar {
    transition: all 0.3s ease;
    overflow: auto;
    background-color: #46445a;
    padding: 1.5%;
    padding-bottom: 0% !important;
    position: relative;
}

.top-nav-bar .main-ques {
    color: white;
    float: left;
}

.top-nav-bar a .home-icon {
    vertical-align: middle;
    float: right;
    color: white;
    font-size: 32px;
    margin-top: 2px;
    transition: all 0.3s ease;
}


/* Top nav bar styling ends */


/* Sticky nav bar */

.nav {
    transition: all 0.3s ease;
    list-style: none;
    background-color: #46445a;
    margin: 0;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    text-align: center;
    position: relative;
}

.nav li {
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.2em;
}

.nav a {
    display: inline-block;
    color: lightgrey;
}

.nav :hover {
    color: white;
}

#nav-bar {
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #46445a;
    box-shadow: 0px 100px 1000px #212121;
}


/* Sticky nav bar ends */

.main-box {
    min-height: 60vh;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
}

.animation {
    transition: all 0.3s ease;
    float: right;
    background-color: #46445a;
    max-height: 75vh;
    min-height: 75vh;
    width: 48%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.code {
    transition: all 0.3s ease;
    float: left;
    background-color: #46445a;
    width: 48%;
    max-height: 75vh;
    min-height: 75vh;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.code-text {
    color: white;
    padding-top: 1.2%;
    font-size: 140%;
}

.stepExecutionDisplay {
    padding-top: 6vh;
    padding-left: 11vw;
}

.temp-container {
    width: 100%;
    text-align: center;
    padding-top: 7%;
    padding-bottom: 5%;
    padding-left: 35%;
    padding-right: 35%;
}

.original-container {
    width: 100%;
    padding-top: 5%;
    padding-bottom: 10%;
}

.temp-container .box {
    border: 2px dashed #212121;
}

.box {
    border: 2px solid #212121;
    min-height: 20vh;
}

.original-container .out-box {
    float: left;
    text-align: center;
    min-width: 50%;
    padding-left: 10%;
    padding-right: 10%;
}

.input-field {
    background-color: #403e4e;
    padding: 3.5% !important;
    font-size: 120%;
    margin-top: 5%;
    margin-bottom: 5%;
    color: #fff;
    width: 11vw;
    height: 3.5vh;
}

.below-box-text{
  color:#fff;
}

label {
    color: white;
}

.button-style {
    cursor: pointer;
    padding: 3%;
    font-size: 115%;
    padding-left: 6%;
    padding-right: 6%;
    background-color: aliceblue;
    margin-top: 2%;
    border: 2px solid #46445a;
    border-radius: 20px;
    outline: none;
}

.button-style:hover {
    background-color: #46445a;
    border: 2px solid white;
    color: #fff;
}

.head {
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: #403e4e;
    box-shadow: 0px 5px 15px #212121;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.yellow {
    background-color: darkorange;
}

.green {
    background-color: green;
}

.user-text {
    color: #fff;
    padding-top: 30%;
}

.bottom-input {
    display: none !important;
}

@media only screen and (max-width: 800px) {
    .main-box{
        margin-top: 12vh;
        margin-bottom: 18vh;
    }
    .main-container {
        width: 100%;
        transition: all 0.3s ease;
    }
    .side-bar {
        transition: all 0.3s ease;
        width: 0%;
        display: none;
        visibility: hidden;
    }
    .top-nav-bar {
        padding-top: 2%;
        padding-left: 3%;
        padding-right: 3%;
        transition: all 0.3s ease;
    }
    .top-nav-bar .main-ques {
        font-size: 30px;
        transition: all 0.3s ease;
    }
    .top-nav-bar a .home-icon {
        transition: all 0.3s ease;
        padding-top: 1px;
        font-size: 30px;
    }
    .nav {
        transition: all 0.3s ease;
        padding-top: 3%;
        padding-bottom: 3%;
    }
    .bottom-input {
        transition: all 0.3s ease;
        padding-top: 1vh;
        padding-bottom: 1vh;
        display: inline-block !important;
        width: inherit;
        background-color: #46445a;
        position: absolute;
        padding-left: 10%;
    }
    .sticky{
        position: fixed !important;
        top: 0;
    }
    .input-bottom-box {
        transition: all 0.3s ease;
        float: left;
        width: 30%;
    }
    .input-bottom-box input {
        transition: all 0.3s ease;
        margin-left: 10%;
        height: 3.5vh;
    }
    .input-bottom-button {
        transition: all 0.3s ease;
        margin-top: 0.5vh;
        float: right;
        width: 40%;
    }
    .input-bottom-button div {
        transition: all 0.3s ease;
        float: right;
        width: 40%;
    }
}

@media only screen and (max-width: 658px) {
    .main-box{
        margin-top: 5vh;
    }
    .sticky{
        box-shadow: 5px 0px 15px #212121;
    }
    .top-nav-bar {
        padding-top: 2%;
        padding-left: 5%;
        padding-right: 5%;
        transition: all 0.3s ease;
    }
    .top-nav-bar .main-ques {
        font-size: 24px;
        transition: all 0.3s ease;
    }
    .top-nav-bar a .home-icon {
        transition: all 0.3s ease;
        font-size: 22px;
    }
    .nav {
        transition: all 0.3s ease;
        padding-top: 4%;
        padding-bottom: 4%;
    }
    .bottom-input {
        padding-top: 0.2vh;
    }
    .input-bottom-box {
        padding-left: 0px;
    }
    .input-bottom-box input {
        margin-left: 5%;
        width: 60%;
        height: 3.5vh;
    }
    .input-bottom-box label {
        font-size: 3vw;
    }
    .input-bottom-button {
        margin-top: 2.5vh;
    }
    .bottom-button {
        font-size: 80%;
        padding-left: 8%;
        padding-right: 8%;
    }
    .animation {
        transition: all 0.3s ease;
        margin-top: 10%;
        width: 100%;
    }
    .code {
        transition: all 0.3s ease;
        margin-top: 10%;
        width: 100%;
    }
}


/* for js */

.hide {
    visibility: hidden;
}

.A,
.B {
    width: 15%;
    height: 10vh;
    border: 1px solid #000;
    margin: 10%;
    float: left;
    text-align: center;
}

.temp {
    width: 15%;
    height: 10vh;
    border: 1px solid #000;
    margin: 10%;
    margin-left: 25%;
    float: left;
    text-align: center;
}

.show {
    display: block;
}

.codeLayout {
    text-align: left;
}

.showDivInRed {
    display: block;
    color: red;
    text-align: left;
}

.line {
    display: block;
    color: #fff;
    text-align: left;
}
.validation{
    color: #fddb3a;
    font-weight: bold;
}
