/* Colors list
    color: #5C9146;
    color: #5177A8;
    color: #E6B325;
    color: #D14B4B;
    color: #ff7f50;
    color: #737373
    color: #2D2D2D
    color: #FFFFFF
*/

* {
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    font-family: Segoe UI, sans-serif;
    color: #2D2D2D;
    user-select: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 7px;
    background-color: #ff7f50;
}

::-webkit-scrollbar-button {
    width: 15px;
    height: 20px;
    border-radius: 7px
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background-color: #ff7f50;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #333;
}

::-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 7px;
    background-color: #ff7f50;
}

::-scrollbar-button {
    width: 15px;
    height: 20px;
    border-radius: 7px
}

::-scrollbar-track {
    background: #eee;
}

::-scrollbar-thumb {
    background-color: #ff7f50;
}

::-scrollbar-thumb:hover {
    background-color: #ccc;
}

::-scrollbar-thumb:window-inactive {
    background: #333;
}

html {
    width: 100vw;
    height: 100vh;
    display: flex;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    background-color: #737373;
}

textarea {
    outline: none;
    border: 1px solid #ccc;
}

textarea:focus {
    outline: none;
    box-shadow: none;
}

.white {
    background-color: #FFFFFF;
}

.hidden {
    visibility: hidden !important;
}

.detach {
    padding-left: 2.5px;
    border-left: 1.8px solid #ff7f50;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.hide {
    display: none;
}

.development {
    display: flex;
    justify-content: center;
    align-items: center;
}

.development::before {
    content: "Em desenvolvimento...";
    color: #ff7f50;
    font-size: 60px;
    font-weight: 500;
}

/* Depreciado */
.pressets_div-img {
    width: 100%;
    height: 390px;
    margin-top: 15px;
    text-align: center;
}

.pressets_img {
    margin-top: 15px;
    width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 5%;
    cursor: pointer;
    padding: 35px 5px 15px 5px;
}