@import url('https://cdn-uicons.flaticon.com/uicons-thin-rounded/css/uicons-thin-rounded.css');

html {
    height: 100vh;
}

body {
    width: 100vw;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: scale(1.01);
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

.wrapper {
    width: 100%;
    height: 100vh !important;
    background-color: #e4e4e4;
    display: flex;
    margin-right: 0;
}

.content-op {
    background-color: rgb(255, 255, 255) !important;
    width: 75%;
    height: 100%;
    padding-top: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    position: absolute;
    right: 2px;
}

/* Estilize o scrollbar para navegadores WebKit (Chrome, Safari, etc.) */
.content-op::-webkit-scrollbar {
    width: 12px;
    /* Largura do scrollbar vertical */
}

.content-op::-webkit-scrollbar-thumb {
    background-color: orange;
    /* Cor da parte "deslizante" do scrollbar */
    border-radius: 6px;
    /* Borda arredondada */
}

.content-op::-webkit-scrollbar-thumb:hover {
    background-color: orangered;
    /* Cor quando hover sobre o scrollbar */
}

.post1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dropdown-menu.menu {
    width: max-content;
    font-size: 20px;
    text-transform: lowercase !important;
}

.dropdown-menu>li {
    vertical-align: center;
    align-items: center;
    line-height: 100%;
}

.title-help {
    font-size: 40px;
    font-weight: 700;
}

.title-help i {
    color: orange;
}

.fi {
    vertical-align: middle;
}

p {
    font-weight: 400;
}

.desc {
    background-color: #333;
    padding: 10px;
    border-radius: 10px;
    transition: 1s ease-in;
}

.desc:hover {
    background-color: orange;
    cursor: pointer;
    transition: 1s ease-in-out;
    transform: scale(1.2);
}

.comma-title {
    font-size: 35px;
    font-weight: 500;
}

.exclamation {
    color: orange;
}

.command {
    color: white;
    font-size: 25px;
    font-weight: 700;
}

/* Estilo para o HR (linha horizontal) */
hr.degrade-hr {
    width: 100%;
    border: none;
    /* Remova a borda padrão */
    height: 2px;
    /* Altura da linha */
    background: linear-gradient(to right, transparent, #333, transparent);
    /* Gradiente de fundo */
    margin: 20px 0;
    /* Margem superior e inferior para espaçamento */
}