@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
* {
    box-sizing: border-box;
    list-style: none;
    outline: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    outline: 0;
}

a:active,
a:focus {
    outline: 0;
    -moz-outline-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    outline: 0;
}

blockquote,
q {
    quotes: none;
    outline: 0;
}

a {
    text-decoration: none !important;
    outline: 0;
    color: var(--light-gray-color);
}
cat a {
	font-size:13px;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
    outline: 0;
}

button {
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    user-select: none;
    outline: 0;
}

button:focus {
    outline: 0 none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input,
textarea,
select {
    outline: 0;
    border: 0;
    width: 100%;
}

a:focus {
    outline: 0;
}

body:not(.wp-customizer):not(.vc_editor) #wpbody-content,
body:not {
    outline: 0;
}

a:-webkit-any-link:active {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    outline: 0;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

:root {
    --background: #16191f;
    --primary-color: #8976af;
    --secundary-color: #67538f;
    --hover-color: #f7b748;
    --gray-color: #2A3039;
    --gray-color: #2A3039;
    --dark-color: #1f242c;
    --light-gray-color: #c7cbd6;

    --fonts-01: 'Quicksand', sans-serif;
}


.separator {
    height: 0.1em;
    margin: 0 0 2.5em;
}

.flex {
    display: flex;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_top {
    align-items: flex-start;
}

.flex_end {
    align-items: flex-end;
}

.flex_left {
    justify-content: flex-start;
}

.flex_right {
    justify-content: flex-end;
}

.flex_start {
    align-items: flex-start;
    align-content: flex-start;
}

.flex_center {
    align-items: center;
}

.flex_align_center {
    justify-content: center;
}

.flex_space_between {
    justify-content: space-between;
}

.flex_space_around {
    justify-content: space-around;
}

.container_c {
    max-width: 1440px;
    padding: 0 20px;
    margin: auto;
    position: relative;
}

.image_rendering {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

.btn {
    padding: 0 15px;
    display: inline-block;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.user_modal {
    visibility: hidden;
    opacity: 0;
    transition: visible, opacity .3s;
}

.user_modal.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    transition: visible, opacity .3s;
}

.user_modals {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
}

.user_content_modal {
    background: var(--dark-color);
    padding: 20px 25px 35px 25px;
    width: 100%;
    position: relative;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 95%);
}

.top_title_modal {
    padding: 25px 0;
}

.top_title_modal h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--hover-color);
}


.top_title_modal p {
    margin-top: -5px;
    font-size: 13px;
}

.close_user_modal {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 20px;
    transition: all .3s;
    cursor: pointer;
}

.close_user_modal:hover {
    color: #f1514c
}

.form_user_modal {
    position: relative;
    margin-bottom: 15px;
    font-weight: 300;
}

.form_user_modal input {
    width: 100%;
    padding: 10px 35px 10px 10px;
    border: none;
    border-radius: 4px;
    background: rgba(0, 0, 0, .2);
    color: var(--light-gray-color);
}

.form_user_modal i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--light-gray-color);
}

.login_btn {
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--light-gray-color);
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 15px 0;
    transition: all 0.3s;
    cursor: pointer;
}

.login_btn:hover {

    background: var(--secundary-color);

}

.user_footer_modal {
    width: 100%;
    padding: 5px 0;
    color: var(--light-gray-color);
    font-size: 14px;
}


.select_user_modal {

    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(0, 0, 0, .2);
    color: var(--light-gray-color);
    margin-bottom: 15px;
}

.select_user_modal option {
    background: var(--dark-color);
    color: #fff;
}

select:focus {
    outline: none;
}

option:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.alert {
    position: fixed;
    bottom: -500px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999998;
    width: 360px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .5);
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    padding: 30px 25px;
    border-radius: 6px;
}

.alert.show {
    animation: linear .6s nativeNotifyToTop forwards;
}

.alert.hide {
    animation: linear .6s nativeNotifyToDown forwards;
}

@keyframes nativeNotifyToTop {
    to {
        bottom: 25px;
    }
}

@keyframes nativeNotifyToDown {
    from {
        bottom: 0;
    }

    to {
        bottom: -500px;
    }
}

.alert .sucess {
    font-weight: 600;
    background: #0fca8c;
    color: var(--dark-color);
}

.alert .error {
    transition: all 0.4s ease;
    background: #f1514c;
    color: var(--dark-color);
}

.alert .warning {
    transition: all 0.4s ease;
    background: var(--dark-color);
    color: #fff;
}

.alert .rnt {
    -webkit-box-shadow: 0px 0px 17px 0px rgb(0 0 0 / 50%);
    padding: 5px 5px;
    font-weight: 500;
    /* font-size: 14px; */
    border-radius: 50px;
    color: #ccc;
    z-index: 5998;
    margin-right: 15px; 
}

.alert_view {
    transition: all 0.4s;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.alert .rnt i {
    font-size: 20px;
}
.loading-post {
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 1em 0;
}



.loading-post {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--light-gray-color);
    margin-top: 55px;
}

.loading-post .loading-wrapper {
    margin: 0 auto;
}



/********************************************
* Loading
*********************************************/
.loadingsite {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.sk-chase,
.sk-chase-2 {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-2 {
    top: -40px;
}

.sk-chase-2 .sk-chase-dot::before {
    position: absolute;
    bottom: 0;
    right: 0;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: var(--primary-color);
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}


@keyframes sk-chase-dot {

    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%,
    0% {
        transform: scale(0.8);
    }
}