* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: medium;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important;
}


/*----------Definition-----*/

.definition {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
    text-align: left;
    border-left: 5px solid cyan;
    padding: 10px 15px;
    background-color: rgba(0, 255, 255, 0.2);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.main {
    margin-bottom: 60px;
}


/*------------Button----------------*/

.shadow {
    border-radius: 20px !important;
    padding: 0px 25px !important;
}

.custom-btn {
    background-color: #66ffb5 !important;
    padding: 5px 25px !important;
    width: 120px !important;
}

.custom-btn-lg {
    background-color: #ff3333 !important;
    padding: 5px 25px !important;
    width: 220px !important;
    color: #fafafa !important;
}

.custom-btn:hover {
    background-color: #ff3333 !important;
    transition: 0.5s ease-in;
    color: #fafafa !important;
}

.custom-btn-lg:hover {
    background-color: #66ffb5 !important;
    transition: 0.5s ease-in;
    color: #0f0f0f !important;
}


/*------------Navigation----------------*/

.navbar {
    background-color: #ccffdd;
}

.navbar-nav {
    text-align: center;
}

.nav-link {
    box-sizing: border-box;
}


/*------------Icon-with-Text----------------*/

.icon-container {
    display: flex;
}

.icon-text {
    padding: 20px 10px;
    margin: auto;
    text-align: center;
}

.icon {
    width: 45vw;
    box-sizing: border-box;
    padding: 20px;
    margin: 10px auto;
    animation: motion 2s ease-in-out infinite alternate-reverse both
}


/*------------Main---------------*/

.main h1 {
    text-align: center;
}

.chart {
    box-sizing: border-box;
    width: 90vw;
    height: 40vw;
    margin: 10px auto;
    border: 2px outset #66ffb5;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #000000;
    display: flex;
    overflow: hidden;
    background-color: #272727;
}

.chart-btn .custom-btn {
    width: 100px !important;
    margin: 5px 25px;
}

.chart-bar,
.chart-bar1,
.chart-bar2,
.chart-bar3,
.chart-bar4,
.chart-bar5 {
    box-sizing: border-box;
    border-radius: 3px;
    /*width:0.9rem*/
    /*height:95%;*/
    margin-top: 2px;
    margin-bottom: 0;
    background-color: #66ffb5;
    color: #fafafa;
    text-shadow: 1px 1px 2px black;
    animation: glow 2s ease-in-out infinite alternate-reverse both;
}


/*-----------------CODE-Screen-----------------*/

#code-screen {
    width: 80%;
    height: 35vw;
    overflow: auto;
}

#options #language #lang {
    border-radius: 5px;
    width: 100px !important;
}

#fetch-code {
    padding-left: 15px;
}

#fetch-code div {
    font-size: 1.5vw !important;
}

.copy-alert {
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 1;
    padding: 2px 4px;
    border-radius: 4px;
    background-color: #292929;
    color: #fafafa;
}

.sorry-alert {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 2;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #292929;
    color: #fafafa;
    border: 5px #fafafa outset;
    box-shadow: 5px 5px 15px #000000;
}

.appear {
    display: block
}

.disappear {
    display: none;
}


/*----------RANGE SLIDER----------------*/

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00ffb3;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00ffb3;
    cursor: pointer;
}


/*--------------HOVER-----------------*/

.nav-link:hover {
    border-bottom: 2px solid #ff3333;
    padding-bottom: 6px;
}


/*----------Keyframes---------------*/

@keyframes motion {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes motion {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0px 0px 2.5px #ae02fd;
    }
    33% {
        box-shadow: 0px 0px 7.5px white;
    }
    66% {
        box-shadow: 0px 0px 5px#ae02fd;
    }
}


/*--------------MEDIA QUERY-----------------*/

@media screen and (max-width:300px) {
    .navbar-brand-name {
        display: none !important;
    }
    .icon-text h3 {
        font-size: 1.3rem !important;
        font-weight: 900;
    }
    .icon-text p {
        font-size: 1rem !important;
    }
}

@media screen and (max-width:576px) {
    .icon {
        width: 120vw;
    }
    #fetch-code div {
        font-size: 2.5vw !important;
    }
    /*-----------Line-----------------*/
    .hr {
        width: 80%;
        height: 3px;
        border-radius: 3px;
        background-color: #c4c4c4;
        margin: 10px auto;
    }
}

@media screen and (max-width:768px) {
    .icon-container {
        display: block;
    }
    .icon {
        width: 80vw;
    }
    #code-screen {
        height: 350px;
    }
}

@media screen and (max-width:992px) {
    .navbar-nav {
        background-color: #e6fff3;
    }
    .definition {
        font-size: 15px;
    }
}

@media screen and (min-width:1200px) {
    .icon-text h3 {
        font-size: 3rem !important;
    }
    .icon-text p {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width:385px) {
    .footer-link-items {
        margin: 15px auto;
    }
}