.p-links {
    color: gray;
    font-size: 15px;
    font-weight: 300;
}
.p-links:hover {
    color: rgb(87, 85, 85);
    text-decoration: underline;
}

/* Other
   * =============================== */

.btn {
    cursor: pointer;
    background: #27ae60;
    display: inline-block;
    padding: .5em 1em;
    color: #fff;
    border-radius: 3px;
}

.btn:hover,
.btn:focus {
    background: #2ecc71;
}

.btn:active {
    background: #27ae60;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2) inset;
}

.btn--blue {
    background: #2980b9;
}

.btn--blue:hover,
.btn--blue:focus {
    background: #3498db;
}

/* COPY TO CLIPBOARD */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    /* If you want dots under the hoverable text */
}

/* BOTÕES OUTLINE */
.botao {
    border: 2px solid black;
    background-color: rgba(0, 0, 0, 0);
    color: black;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* Green */
.success {
    border-color: #04AA6D;
    color: #70ff70;
}

.success:hover {
    background-color: #04AA6D;
    color: white;
}

/* Blue */
.info {
    border-color: #2196F3;
    color: dodgerblue;
}

.info:hover {
    background: #2196F3;
    color: white;
}

/* Orange */
.warning {
    border-color: #ff9800;
    color: orange;
}

.warning:hover {
    background: #ff9800;
    color: white;
}

/* Red */
.danger {
    border-color: #f44336;
    color: #ff5757;
}

.danger:hover {
    background: #f44336;
    color: white;
}

/* Gray */
.default {
    border-color: #e7e7e7;
    color: white;
}

.default:hover {
    background: #e7e7e7;
    color: black;
}

/* BOTÕES INLINE */
.botoes {
    border-bottom: transparent;
    border-color: transparent;
    background-color: #000000;
    color: rgb(255, 255, 255);
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* Green */
.sucesso {
    background-color: #04AA6D;
    color: #000000;
}

.sucesso:hover {
    background-color: #000000;
    color: #04AA6D;
}

/* Blue */
.infor {
    background-color: #2196F3;
    color: rgb(2, 2, 2);
}

.infor:hover {
    background-color: #1a4467;
    color: white;
}

/* Orange */
.aviso {
    background-color: #ff9800;
    color: rgb(0, 0, 0);
}

.aviso:hover {
    background: #54380f;
    color: white;
}

/* Red */
.perigo {
    background-color: #f44336;
    color: #000000;
}

.perigo:hover {
    background: #8e221a;
    color: white;
}

/* Gray */
.padrao {
    background-color: #e7e7e7;
    color: rgb(13, 13, 13);
}

.padrao:hover {
    background: #313131;
    color: rgb(255, 255, 255);
}


/* LABELS */
#show {
    padding: 1em;
}

#show ul {
    list-style: none
}

#show ul li {
    margin: .4em auto
}

.label {
    font-size: .8em;
    font-weight: 500;
    color: #fff;
    padding: .2em .4em;
    margin: auto .2em;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.10);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
    background: #ccc;
    border-radius: 3px;
}

.label.label--cursor {
    cursor: pointer
}

.label.label--cool {
    background: #2ecc71;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.label.label--warning {
    background: #f4d871;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.label.label--error {
    background: #f47771;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.label.label--blue {
    background: #3498db;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.label.label--black {
    background: #2c3e50;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .8);
}

.filters {
    position: fixed;
    left: 250px;
    top: 60px;
    width: calc(100% - 250px);
    height: 60px;
    background: #fff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
}

.filters::-webkit-scrollbar {
    display: none;
}

.filter-options {
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: 50px;
    background: #f0f0f0;
    border: 1px solid transparent;
    margin-right: 10px;
    color: #1b1b1b;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.filter-options.gray {
    background-color: rgb(255, 255, 255, 0.35);
    color: #ffffff;
}

.filter-options.gray:hover {
    background-color: rgb(255, 255, 255, 0.90);
    color: #000000;
}

.filter-options.active {
    color: #ffffff;
    background: #000000;
}

.filter-options.s-active {
    color: #ffffff;
    background: #1b000d;
}

.filter-options.a-active {
    color: #ffffff;
    background: #1d1100;
}

/* ICONS SIZE */
.icon-sizenormal {
    padding: 20px;
}

.icon-sizesmall {
    padding: 10px;
}

.icon-sizehigh {
    padding: 50px;
}

.icon-sizehighest {
    padding: 100px;
}

/* ALERT MESSAGE BOX */
.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    border-radius: 20px;
}

.alert.success {
    background-color: #04AA6D;
}

.alert.info {
    background-color: #2196F3;
}

.alert.warning {
    background-color: #ff9800;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/* FAQ */
.accordion {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}

.accordion-item {
    background-color: #232323;
    color: #fff;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: #fff;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, #4e4e4e, #4e4e4e, #4e4e4e) 1;
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
}

/* LETRAS INVISÍVEIS */
.a-invisivel {
    color: #0e0e0e;
    background-color: #0e0e0e;
}

#searchbar {
    margin-left: 15%;
    padding: 15px;
    border-radius: 10px;
}

input[type=text] {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
input[type=text]:focus {
    width: 70%;
}

.input-searchbar.a {
    color: #fff;
}

.saldacoes h1 {
    background: -webkit-linear-gradient(#ffffff, #d1d1d0);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.upload-button {
    border: solid 2px;
    border-bottom-color: transparent;
    border-top-color: rgb(37, 37, 37);
    border-left-color: rgb(37, 37, 37);
    border-right-color: rgb(37, 37, 37);
    text-align: left;
    padding: 10px 112.2px;
    background-color: transparent;
    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: 400;
    cursor: pointer;
}

.upload-button:hover {
    background-color: rgb(37, 37, 37);
}

.upload-button2 {
    border: solid 2px;
    border-left-color: rgb(37, 37, 37);
    border-right-color: rgb(37, 37, 37);
    border-top-color: rgb(37, 37, 37);
    border-bottom-color: transparent;
    text-align: left;
    padding: 10px 50px;
    background-color: transparent;
    color: white;
    font-weight: 400;
    cursor: pointer;
}

.upload-button2:hover {
    background-color: rgb(37, 37, 37);
}

.upload-button3 {
    border: solid 2px;
    border-color: rgb(37, 37, 37);
    text-align: left;
    padding: 10px 116.5px;
    background-color: transparent;
    color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: 400;
    cursor: pointer;
}

.upload-button3:hover {
    background-color: rgb(37, 37, 37);
}

.profile-photo {
    width: 80px;
    border-radius: 100px;
}

.profile-p {
    color: rgb(167, 167, 167);
}

.profile-a {
    color: #8aa7ff;
    text-decoration: none;
}

.profile-a:hover {
    color: #4271ff;
    text-decoration: underline;
}

.profile-a-del {
    color: #ff8a8a;
    text-decoration: none;
}

.profile-a-del:hover {
    color: #ff4242;
    text-decoration: underline;
}

.profile-p-onclick {
    cursor: pointer;
}

.profile-a-gr {
    color: #8affbf;
    text-decoration: none;
}

.profile-a-gr:hover {
    color: #42ff6b;
    text-decoration: underline;
}

/* HR (LINHA) COM CORES */
/* Red border */
hr.new1 {
    border-top: 1px solid #2a2a2a;
    border-color: #2a2a2a;
    border-bottom: #2a2a2a;
}

/* Dashed red border */
hr.new2 {
    border-top: 1px dashed #2a2a2a;
    border-color: #2a2a2a;
    border-bottom: #2a2a2a;
}

/* Dotted red border */
hr.new3 {
    border-top: 1px dotted #2a2a2a;
    border-color: #2a2a2a;
    border-bottom: #2a2a2a;
}

/* Thick red border */
hr.new4 {
    border: 1px solid #2a2a2a;
    border-color: #2a2a2a;
    border-bottom: #2a2a2a;
}

/* Large rounded green border */
hr.new5 {
    border: 10px solid #2a2a2a;
    border-color: #2a2a2a;
    border-bottom: #2a2a2a;
    border-radius: 5px;
}

.explicit-tag {
    background-color: red;
    color: white;
    padding: 2px 3px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 1px;
    width: 72px;
}

.explicito {
    display: none;
}

.bkg-es {
    background-color: #000000;
}

/* SUBMIT */
input[type=submit] {
    width: 30%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 3px solid #4f4f4f;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    background-color: #4f4f4f;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

input[type=submit]:hover {
    border: 3px solid #3f3e3e;
    background-color: #3f3e3e;
}

input[type=submit]:focus {
    border: 3px solid #1f1f1f;
}

input[type=submit] {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
input[type=submit]:focus {
    width: 30%;
}

/* INPUT TEXTO */
input[type=text] {
    width: 30%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 3px solid #2c2c2c;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    background-color: #2c2c2c;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

input[type=text]:hover {
    border: 3px solid #3f3e3e;
    background-color: #3f3e3e;
}

input[type=text]:focus {
    border: 3px solid #202020;
    background-color: #202020;
}

input[type=text] {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
input[type=text]:focus {
    width: 30%;
}

/* INPUT SELECTOR */
.textarea {
    width: 30%;
    height: 190px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 3px solid #2c2c2c;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    background-color: #2c2c2c;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.textarea:hover {
    border: 3px solid #3f3e3e;
    background-color: #3f3e3e;
}

.textarea:focus {
    border: 3px solid #202020;
    background-color: #202020;
}

.textarea {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
.textarea:focus {
    width: 30%;
}

/* INPUT TEXTO */
.selectr {
    width: 30%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 3px solid #2c2c2c;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    background-color: #2c2c2c;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.selectr:hover {
    border: 3px solid #3f3e3e;
    background-color: #3f3e3e;
}

.selectr:focus {
    border: 3px solid #202020;
    background-color: #202020;
}

.selectr {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
.selectr:focus {
    width: 30%;
}

/* INPUT EMAIL */
input[type=email] {
    width: 30%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 3px solid #2c2c2c;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    background-color: #2c2c2c;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

input[type=email]:hover {
    border: 3px solid #3f3e3e;
    background-color: #3f3e3e;
}

input[type=email]:focus {
    border: 3px solid #202020;
    background-color: #202020;
}

input[type=email] {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
input[type=email]:focus {
    width: 30%;
}

.p-form {
    font-size: 14px;
    font-weight: 300;
    color: gray;
}

.p-form2 {
    font-size: 14px;
    font-weight: 300;
    color: rgb(167, 167, 167);
}

@media (max-width: 900px) {
    /* INPUTS */
    input[type=text] {
        width: 100%;
    }
    input[type=email] {
        width: 100%;
    }
    .textarea {
        width: 100%;
    }
    .selectr {
        width: 100%;
    }
    input[type=submit] {
        width: 100%;
    }

    /* FOCUS (QUANDO CLICA) */
    input[type=text]:focus {
        width: 100%;
    }
    input[type=email]:focus {
        width: 100%;
    }
    .textarea:focus {
        width: 100%;
    }
    .selectr:focus {
        width: 100%;
    }
    input[type=submit]:focus {
        width: 100%;
    }
}

/* VERIFIED BADGES */
.verified-artist {
    color: rgb(121, 121, 255);
}

.verified-youtuber {
    color: rgb(255, 126, 121);
}

.verified-profile {
    color: rgb(121, 255, 181);
}

.verified-especial {
    color: gold;
}

/* TAGS */
.clip-tag {
    background-color: rgb(101, 14, 151);
    color: white;
    padding: 2px 3px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 1px;
    width: 55px;
}

/* PREMIUM PAGE */
.premium-container {
    text-align: justify;
}

/* CARDS */
.premium-card {
    justify-content: space-between;
    background-color: #000000;
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    width: 250px;
    margin-top: 20px;
    text-align: justify;
}
.premium-card p {
    color: gray;
    margin-bottom: 2.90px;
}
.premium-card a {
    color: #5e86ff;
    text-decoration: none;
}
.premium-card a:hover {
    color: #2b7cbe;
    text-decoration: underline;
}
.premium-card h2 {
    text-align: center;
}
.txtcenter {
    text-align: center;
}
.spacement {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* CONTEÚDO DO CARD */
.premium-price-basic {
    color: #2894be;
}
.premium-price-standard {
    color: #04AA6D;
}
.premium-price-utimate {
    color: #ff5757;
}

.premium-offers {
    font-size: 14px;
    margin-top: 10px;
    width: 14em;
    word-break: normal;
}
.premium-offers i {
    color: rgb(175, 173, 173);
}
.premium-offers p {
    color: rgb(175, 173, 173);
}
.premium-offers .p-off {
    color: rgb(68, 68, 68);
}

.premium-button {
    text-align: center;
    text-align: justify;
}

.premium-button .basic {
    background-color: #2894be;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    width: 230px;
    margin-top: 2.40px;
}
.premium-button .basic:hover {
    background-color: #030e18;
    color: #2894be;
}