:root{
    --font-family: 'Georgia', serif;
    --color-azul: #61BDBB;
    --color-white: #fff;
    --color-border: rgba(223, 223, 223, 0.925);
    --color-light: rgba(132, 139, 200, 0.30);
    --color-background: #f6f6f9;

    --ggpadding: 1rem;

    --box-shadow: 0 0.4rem 0.8rem var(--color-light);

}

body{
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    user-select: none;
    line-height: 1rem;
    font-weight: normal;
}

.azul{
    color: var(--color-azul);
}

/* ---------- MENU --------- */
.navbar{
    padding: 0;
    background-color: var(--color-background);
    border-bottom-style: solid;
    border-bottom-width: 1.8px;
    border-color: var(--color-border);
    display: flex;
}

.navbar-brand{
    display: flex;
    align-items: flex-start;
    width: 90%;
    @media (max-width: 600px) {
    width: 60%;
  }
}

.nav-link{
    display: flex;
}

.logo{
    width: 4rem;
}

h2{
    margin-left: 0.5rem;
    margin-top: 1.2rem;
    font-weight: revert-layer;
    font-size: 25px;
}

div.menu {
    margin-left: 1rem;
    padding: 0.2rem;
    border-radius: 5px;
    background: #686767;
    color: #f6f6f9;
    cursor: pointer;
    line-height: 0.5rem;
}

.nav-item {
    margin: 10px;
    position: relative;
}

.nav-item a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 7px;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-item:hover .opcoes {
    display: block;
}

.nav-item a:hover {
    border-bottom: 2px solid var(--color-azul);
    opacity: 0.5;
}

.opcoes {
    display: none;
    position: absolute;
    top: 155%;
    background-color: var(--color-background);
    border: 1px solid #ddd;
    padding: 5px;
    z-index: 50;
}

.opcoes a {
    display: block;
    padding: 10px;
}

/* BARRA LATERAL */

.left-bar{
    background: var(--color-background);
    width: 0;
    border-right-width: 1.8px;
    border-right-style: solid;
    border-color: var(--color-border);
    transition: 1s;
    display: none;
}

.left-bar h3{
    padding: var(--ggpadding);
    font-size: 16.4736px;
    font-weight: bold;
    padding-top: 25.5px;
}

.left-bar button{
    padding: 0;
    margin: 0;
    border: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.left-bar span{
    margin-top: 1.5rem;
    color: black;
}

.left-bar .controles{
    display: flex;
    cursor: pointer;
}

/* ---------- PRINCIPAL --------- */

.bar-main{
    display: flex;
    height: 100%;
}

.main{
   background: var(--color-white);
   display: grid;
}

.maior-quadrado{

}

.vis{
    display: flex;
}

.main .quadrado-principal {
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
  margin-left: 15px;
  margin-top: 3rem;
}

.bar{
    max-width: 100vw;
    min-height: 310px;
    padding-top: 2.5rem;
}

.maior{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2%;
    position: relative;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    margin: 10px 0;
    padding-left: 0px;
    background-color: #d6d6d6;
}

.range-slider input {
    position: absolute;
    background: none;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #FFF;
    background: #5291ff;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #FFF;
    background: #5291ff;
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
}

.sliderValue {
    position: absolute;
    width: 100%;
    top: 0px;
}

.sliderValue span {
    position: absolute;
    height: 110px;
    width: 40px;
    transform: translateY(10%) scale(0);
    font-weight: 600;
    line-height: 100px;
    z-index: 2;
    color: #fff;
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
}

.sliderValue span.show {
    transform: translateY(-20%) scale(1) rotate(0deg);
}

.sliderValue span:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #5291ff;
    border: 3px solid #fff;
    z-index: -1;
    left: 50%;
    transform: translateX(10%) rotate(90deg);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.meumodal {
    display: none;
    background-color: rgb(253, 253, 253);
    border-radius: 20px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    width: 50vw;
    height: 50vh;
    opacity: 0.5;
}

#girador {
    margin-top: 80px;
}