@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&display=swap");

* {
	box-sizing: border-box;
	font-family: "Ubuntu", sans-serif;
	font-weight: 500;
	color: #333;
	padding: 0;
	margin: 0;
	user-select: none;
}

:root {
    --color00: #f8f8f8;
    --color01: #333;
    --color02: #5199b9;
    --color03: #eee;
    --color04: #71a3e1;
}

html {
    font-size: 16px;
    position: relative;
}

h1, h2, h3, p {
	cursor: default;
}

body {
    background-color: var(--color00);
}

a {
    text-decoration: none;
}

::-moz-selection {
    color: var(--color02);
    background: var(--color03);
}

::selection {
    color: var(--color02);
    background: var(--color03);
}

.header {
	border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -20px 20px 30px #1f4c8425;
}

.main-container {
    width: 100%;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 28px;
    padding-left: 28px;
}

.navbar {
    display: flex;
    position: relative;
    height: 70px;
    min-height: 70px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    width: unset;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
	padding-right: 1rem;
	width: 10rem;
	vertical-align: middle;
	object-fit: cover;
}

.nav-tools {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;

    margin-right: auto;
    margin-left: auto;
    padding: 10px 14px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: .3rem;
}

.nav-tools:hover {
	background-color: rgba(255,255,255,.1);
}

.nav-tools img {
	vertical-align: middle;
	margin-left: 4px;
	object-fit: cover;
}

.dropdown-nav {
    display: none;
}

.dropdown {
    transform: translateY(-10px);
    opacity: 0;
    display: block;
    width: 40vw;
    max-width: 800px;
    position: absolute;
    background-color: #000;
    border-radius: .3rem;
    border: 1px solid rgba(255,255,255,.2);
    overflow: hidden;
    text-align: left;
    transition: all .2s;
    z-index: 3;
    pointer-events: none;
}

.dropdown-grid {
    display: grid;
    padding: .8rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    background-color: rgba(255,255,255,.1);
}

.dropdown-link {
    display: block;
    position: relative;
    padding: .8rem;
    width: 100%;
    border-radius: .3rem;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(255,255,255,0);
    transition: background-color .2s;
}

.dropdown-link:hover {
    background-color: rgba(255,255,255,.1);
}

.tool-dropdown-link .lock {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.85);
}

.tool-dropdown-link img {
    display: block;
    width: 50px;
}

.icon-title {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: .5rem;
}

.icon-title h6 {
    font-size: inherit;
    font-weight: 500;
    margin-left: .8rem;
}

.dropdown-tool-description {
    font-size: .8rem;
    color: rgba(255,255,255,.8);
}

.nav-right {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.nav-right > div {
    display: flex;
    align-items: center;
    height: 32px;
}

.lang-select {
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    padding: 3px;
    margin-right: 4rem;
    border-radius: .3rem;
    display: none;
}

.lang-select img {
    cursor: pointer;
    height: 24px;
}

.lang-box {
    position: absolute;
    opacity: 0;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: .3rem;
    padding: 3px;
    background-color: #111;
    left: 0;
    display: block;
    top: 0;
    transition: all .2s;
    z-index: 3;
    pointer-events: none;
}

.langs {
    display: grid;
    grid-row-gap: 3px;
    grid-template-columns: 1fr;
}

.lang-box img {
    display: block;
    filter: saturate(0.4);
    cursor: pointer;
    transition: all .2s ease-in-out;
    height: 24px;
}

.lang-box img:hover {
    filter: saturate(1);
}



.profile-buttons {
	display: flex;
}

.button {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: .3rem;
    background-color: rgba(255,255,255,.3);
    box-shadow: inset 0 800px 3px 0 transparent;
    -webkit-transition: box-shadow .2s;
    text-align: center;
    min-width: 7rem;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all .2s;
}

.button:hover {
    background-color: rgba(255,255,255,.5);
}

.button:not(:first-child) {
	margin-left: .75rem;
}

.button-s {
	padding: 10px 14px;
}

.button-blue {
    background-color: var(--color02);
}

.button-blue:hover {
    background-color: var(--color04);
}

.button-blue * {
    color: var(--color03);
}

.profile-data {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.profile {
    display: block;
    position: relative;
    width: 50px;
}

.profile-pic {
    display: block;
    width: 100%;
    border-radius: 999999px;
    cursor: pointer;
}

.profile-arrow {
    display: block;
    position: absolute;
    width: 30%;
    bottom: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
}

.profile-pic:hover ~ .profile-arrow {
    opacity: 1;
}

.profile-modal {
    display: grid;
    position: absolute;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    transform: translateY(-10px);
    right: 0;
    margin-top: 5px;
    opacity: 0;
    min-width: 12vw;
    max-width: 400px;
    background-color: #111;
    border-radius: .3rem;
    border: 1px solid rgba(255,255,255,.2);
    overflow: hidden;
    text-align: left;
    transition: all .2s;
    z-index: 3;
    pointer-events: none;
}

.profile-modal > div:first-child {
    border-bottom: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255,255,255,.075);
}

.profile-modal > div {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 5px;
    padding: 10px;    
}

.user-options .dropdown-link {
    padding: .4rem;
}

.user-option {
    /*
    display: grid;
    grid-template-columns: 1fr 9fr;
    grid-column-gap: 5px;
    */
}

.section {
	margin: 50px 0;
}

.large-center-text-container {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.title-text {
    margin-bottom: 20px;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -.02em;
}

.description-text {
	font-size: 1.3rem;
	font-weight: 400;
}

.cards-grid {
    display: grid;
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.card {
    display: flex;
    padding: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: .3rem;
    background-color: var(--color02);
}

.card * {
    color: var(--color00) !important;
}

.icon {
    display: flex;
    padding: 7px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: .3rem;
    background-color: #eee;
}

.icon img {
    width: 2rem;
}

.tool-name {
    font-size: 1.5rem;
    margin: .8rem 0;
}

.tool-description {
    font-weight: 400;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card-button {
    display: flex;
    height: 45px;
    margin-top: 1.8rem;
}

.tool-button img{
    display: block;
    width: 30px;
}

.footer {
    padding: 80px 0 70px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    background-color: var(--color01);
}

.footer-tools-area {
    display: none;
}

.footer-grid {
    display: grid;
    margin-bottom: 56px;
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 50%;
    vertical-align: middle;
    object-fit: cover;
}

.footer-header {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-tools {
    display: grid;
    justify-items: start;
    grid-row-gap: 14px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.link-hover {
    color: rgba(255,255,255,.5);
    transition: color .2s;
}

.link-hover:hover {
    color: rgba(255,255,255,1);
}

.list-highlight {
    color: #8a99a7;
}

.footer-last {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-last div {
    color: rgba(255,255,255,.5);
}

.link-hover-2 {
    color: rgba(255,255,255,1);
    transition: color .2s;
}

.link-hover-2:hover {
    color: rgba(255,255,255,.75);
}

.fade {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;
    top: 0;
    opacity: 0;
    transition: all .2s;
    pointer-events: none;
    z-index: 2;
}


.loading {
    opacity: 0;
    pointer-events: none;
}

.msg-box-container {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transform: scale(.9,.9);
    opacity: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: transparent;
    position: fixed;
    z-index: 4;
    pointer-events: none;
}

.msg-box {
    display: block;
    width: 33vw;
    max-width: 630px;
    background-color: #111;
    border-radius: .3rem;
    border: 1px solid rgba(255,255,255,.2);
    overflow: hidden;
    text-align: left;
    transition: all .2s;
    z-index: 4;    
}

.msg-header {
    display: grid;
    position: relative;
    width: 100%;
    height: 2rem;
    background-color: #eee;
    padding: 0 .4rem;
    grid-column-gap: .4rem;    
    -ms-grid-columns: 9fr 1fr;
    grid-template-columns: 9fr 1fr;
}

.msg-header-text {
    display: flex;
    width: 100%;
    justify-content: left;
    align-items: center;
}

.msg-ico {
    display: block;
    position: absolute;
    width: auto;
    height: 80%;
    right: .4rem;
    align-self: center;
}

.msg-body {
    display: block;
    width: 100%;
    padding: 0 1.5rem;
    margin: 1.5rem 0;
    white-space: pre-line;
}

.msg-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.opc {
    opacity: .8 !important;
}

.p-ev {
    pointer-events: auto;
}

@media screen and (max-width: 991px) {
    .cards-grid, .footer-grid{
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .cards-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 479px) {
    .footer-grid{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

/*============== Texto Crypto ================*/

.container {
    display: grid;
    width: 60vw;
    max-width: 800px;
    margin: 0 auto;
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.container-h {
    display: grid;
    position: relative;
    width: 75vw;
    max-width: 1700px;
    margin: 0 auto;
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
}

.fr1-1 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.area {
    display: grid;
    position: relative;
    width: 100%;
    grid-column-gap: 28px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.testados {
    display: grid;
    position: relative;
    width: 100%;
    margin-top: 16px;
    grid-column-gap: 10px;
    -ms-grid-columns: minmax(10px, 1fr) minmax(10px, 1fr) minmax(10px, 1fr) minmax(10px, 1fr);
    grid-template-columns: minmax(10px, 1fr) minmax(10px, 1fr) minmax(10px, 1fr) minmax(10px, 1fr);
}

.testados img {
    width: 100%;
}

ul>*:not(:last-child) {
    margin-bottom: 15px;
}

.row {
    display: flex;
    position: relative;
    align-items: center;
}

.text-input, .text-area {
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.1);
    color: #eee;
    outline: none;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: .3em;
    padding: 10px 10px;
    transition: all .2s;
    resize: none;
}

.text-input:focus, .text-area:focus {
    border-color: rgba(255,255,255,.4);
}

.noto {
    margin: 0 5px;
    font-family: "Noto Sans Symbols 2", sans-serif;
    font-size: 1.4rem;
    transform: translateY(4px);
}

.check {
    position: absolute;
    right: -40px;
    color: green;
    opacity: 0;
}

.check-fade {
    animation: check-fade 1s ease 1s forwards;
}

@keyframes check-fade {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

/*============== Gerador VSL ================*/

.text-area {
    height: 250px;
}

.button-row {
    display: flex;
    align-items: center;
    justify-content: right;
}

/*========= Criativo Indetectável ===========*/

.upload-container {
    position: relative;
    background-color: #eee;
    border-radius: .3rem;
    padding: 20px;
    overflow: hidden;
}

.spinner {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #eee;
    z-index: 1;
    visibility: hidden;
}

.upload-container .description-text, .spinner .description-text, .msg-header-text {
    color: #222;    
    font-weight: 500;
}

.drop-area .description-text {
    font-size: 1.2rem;
    line-height: 2.5rem;
}

.drop-area .description-text.sub {
    color: #555;
}

.drop-area {
    display: flex;
    position: relative;
    margin-top: 10px;
    padding: 3rem;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.drop-area svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.drop-area svg rect {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: #aaa;
    stroke-width: 4;
    stroke-dasharray: 10, 20;
    transition: all .2s;
}

.drop-area:hover svg rect, .active{
    animation: dash-animation 3s linear infinite;
    stroke: #3e68ff !important;
}

@keyframes dash-animation {
    0% {
        stroke-dashoffset: 60;
    }
    100% {
        stroke-dashoffset: 0;
    }    
}

.upload-icon {
    font-size: 3rem;
    color: #222;
}

.img-area {
    display: flex;
    position: relative;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: .3rem;
    padding: 5px;
    align-self: center;
    overflow: hidden;
}

.action-buttons {
    display: flex;
    margin-top: 10px;    
}

.visible {
    visibility: visible;
}

.noisy-canvas {
    width: 100%;
    pointer-events: none;
}

.controls-area {
    display: grid;
    position: relative;
    width: 100%;
    grid-row-gap: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    align-self: start;
}

.controls-area>*:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.disable {
    pointer-events: none;
    opacity: .4;
}

.noise-slider {
    display: inline-block;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 15px;
    background-color: rgba(255,255,255,.2);
    outline: none;
    border-radius: .3rem;
    -webkit-transition: all .2s;
    transition: all .2s;
    cursor: pointer;
}

.noise-slider:hover {
    background-color: rgba(255,255,255,.15);
}

.noise-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: .3rem;
    cursor: pointer;
    transition: all .2s;
}

.noise-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: .3rem;
    cursor: pointer;
    transition: all .2s;
}

.noise-slider::-webkit-slider-thumb:hover {
    background: #eee;
}

.noise-slider::-moz-range-thumb:hover {
    background: #eee;
}

.vertical-rows {
    display: grid;
    position: relative;
    width: 100%;
    padding: 20px 0;
    grid-row-gap: 10px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.control-title {
    font-size: 1.2rem;
}

.slider-holder {
    display: grid;
    position: relative;
    width: 100%;
    -ms-grid-columns: 9fr 1fr;
    grid-template-columns: 9fr 1fr;
    align-items: center;
}

.slider-val {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: right;
    transform: translateY(-2px);
}

.control-buttons {
    display: grid;
    position: relative;
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.control-button {
    margin: 0;
    border: 1px solid rgba(255,255,255,0);
}

.control-buttons .button-blue {
    margin: 0;
}

.control-button-group input:checked + label > .control-button {
    box-shadow: inset 0 800px 3px 0 rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.3);
}


/*========= Vídeo Hash ===========*/


.video-player {
    width: 100%;
}

/*========= Multi Img Hash ========*/

.img-grid {
    display: grid;
    position: relative; 
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.img-grid > img {
    width: 100%;
}

.img-grid-item {
    display: grid;
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: .3em;
    background-color: #eee;
    padding: 10px;
    grid-template-columns: min-content 1fr;
    grid-column-gap: 10px;
    align-items: center;
}

.img-grid-item img {
    display: block;
    position: relative;
    max-width: 120px;
    max-height: 80px;
    border: 1px solid #000;
    background-color: #fff;
}

.img-grid-item div {
    display: -webkit-box;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    white-space: normal;
    word-break: break-all;
    color: #222;
}


@keyframes done-anim {
    0% {
        animation-timing-function: cubic-bezier(0.1858,0.2841,0.5834,1.4615);
        transform: rotate(0)
    }

    31% {
        animation-timing-function: cubic-bezier(0.0467,0.1102,0.4803,1.4719);
        transform: rotate(13.540000000000001deg)
    }

    41% {
        animation-timing-function: cubic-bezier(0.0469,0.1108,0.4775,1.4732);
        transform: rotate(-9.48deg)
    }

    51% {
        animation-timing-function: cubic-bezier(0.0478,0.1131,0.4723,1.4819);
        transform: rotate(6.640000000000001deg)
    }

    61% {
        animation-timing-function: cubic-bezier(0.0506,0.1192,0.4639,1.4818);
        transform: rotate(-4.640000000000001deg)
    }

    71% {
        animation-timing-function: cubic-bezier(0.0581,0.1374,0.457,1.4901);
        transform: rotate(3.2600000000000002deg)
    }

    81% {
        animation-timing-function: cubic-bezier(0.0765,0.1813,0.4542,1.4923);
        transform: rotate(-2.2800000000000002deg)
    }

    91% {
        animation-timing-function: cubic-bezier(0.1747,0.3181,0.341,0.878);
        transform: rotate(1.6deg)
    }

    100% {
        transform: rotate(-1.6400000000000001deg)
    }
}

.done-anim {
    animation: done-anim 1s infinite linear;
    width: 50px;
    height: 50px;
}

/*======== checkout checker =======*/


.checkout-loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid rgb(10, 110, 189);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fr1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    font-size: 20px;
}

.fr1 input {
    color: #111;
    text-align: center;
    height: 25px;
    font-size: 16px;
}

.fr1 input::placeholder {
    color: #ccc;
    opacity: 1;
}

.co-btn {
  margin-top: 40px;
  background-color: rgb(3, 177, 102);
  transition: background-color .75s ease-in-out;
  color: white;
  font-size: 1.3em;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 7px;
  border: 0px;
}

.co-btn:hover{
  cursor: pointer;
}

.produto {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

.url {
  font-size: 20px;
  color: rgb(10, 110, 189)
}

.url:visited {
  color: rgb(10, 110, 189)
}

/*============ Forms ==============*/

.form-container {
    display: block;
    width: 33vw;
    max-width: 800px;
    background-color: #1a1a1a;
    margin: 0 auto;
    padding: 20px;
    border-radius: .3em;
    border: 1px solid rgba(255,255,255,.2);
}

.form-container a {
    display: block;    
}

.form-container a:not(:last-child) {
    margin-bottom: 10px;  
}

.form-button {
    width: 15%;
}

.just-r {
    justify-content: right;
}

.disabled {
    opacity: .3;
    pointer-events: none;
}

.disabled .form-button {
    background-color: rgba(255,255,255,.2);
}


/*============ Profile Modal ==============*/

.bold-text {
    font-weight: 700;
}

.very-small-text {
    font-size: .8rem;
    font-weight: 400;
}

.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.gone {
    display: none;
}

/*============ Scroll Bar ==============*/

::-webkit-scrollbar {
    background-color: #111;
    width: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 999px;
  border: 4px solid #333;  
}
::-webkit-scrollbar-thumb:hover {
  background-color: #656565;      
}

::-webkit-scrollbar-track {
  background-color: #333;
  border-radius: 999px;
}
/* Buttons */
::-webkit-scrollbar-button:single-button {
  border-style: solid;
  border-radius: 999px;
  height: 1rem;
}
/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: .125rem .125rem .2rem .125rem;
  border-color: #333;
  background: conic-gradient(at 50% 0%, #333 0%, #333 42.5%, #555 42.5%, #555 57.5%, #333 57.5%);
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    background: conic-gradient(at 50% 0%, #333 0%, #333 42.5%, #656565 42.5%, #656565 57.5%, #333 57.5%);    
}

/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: .2rem .125rem .125rem .125rem;
  border-color: #333;
  background: conic-gradient(at 50% 100%, #555 0%, #555 7.5%, #333 7.5%, #333 92.5%, #555 92.5%);
}

::-webkit-scrollbar-button:vertical:single-button:vertical:increment:hover {
    background: conic-gradient(at 50% 100%, #656565 0%, #656565 7.5%, #333 7.5%, #333 92.5%, #656565 92.5%);  
}