@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,800;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    color: #fff;
}



body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}


img {
    max-width: 100%;
}

.headerwrapper {
    background: #b72424;
    background: linear-gradient(153deg, rgba(63,81,181,1) 9%, rgba(0,150,136,1) 90%);
}


.feedwrapper {
    background: #141414;
    min-height: 800px;
    height: fit-content;
}
.container {
    width: 80%;
    margin: 0 auto;
    overflow: auto;
}

header {
    padding: 15px 0;
}

header img {
    position: relative;
    top: 7px;
    margin-left: 7px;
}
header .logo, footer .blocks .logo {
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 800;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-top: 17px;
}

header nav ul li {
    display: inline-block;
    
}

header nav ul li a {
    color: #fff;
    border-bottom: 0px solid #b72424;
    transition: border-bottom 200ms ease;
}

header nav ul li.active::after {
    content: '';
    display: block;
    height: 5px;
    background: #b72424;
    border-radius: 10px;
    position: relative;
}

header nav ul li:not(.active):not(.btn) a:hover {
    cursor: pointer;
    border-bottom: 5px solid #b72424;

}

header nav ul li.btn a {
    background: #1a1a1a;
    padding: 9px 17px;
    border-radius: 9px;
    transition: all 500ms ease;
}

header nav ul li.btn a:hover {
    background: #b72424;
}

.displaynone {
    display: none;
}

.displayflex {
    display: flex;
}

.noscroll {
    overflow-y: hidden;
}

.scroll {
    overflow-y: scroll;
}

.block {
    display: flex;
    justify-content: center;
}

.blackredscaling,
.blackredscaling:enabled {
    background: #1a1a1a;
    border-radius: 9px;
    transition: all 500ms ease;
    font-weight: 700;
    padding: 10px 25px;
    cursor: pointer;
    border: none;
}

.blackredscaling:disabled {
    background: #4A4A4A;
    color: #b72424;
    border-radius: 9px;
    font-weight: 700;
    padding: 10px 25px;
    cursor: pointer;
    border: none;
}



.filepathwrapper .blackredscaling:hover {
    background: #b72424;
    transform: scale(1.08);
}

/* Page info */

.feedwrapper .pageinfobackground {

    background: #000;

}

.feedwrapper .container .blocks {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    flex-wrap: wrap;
    justify-content: center;
}

.feedwrapper .pageinfobackground .container .pageinfowrapper {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

/* Footer */

footer {
    background: #000;
    padding: 50px 0;
}

footer .blocks{
    display: flex;
    justify-content: space-between;
}

footer .blocks h4 {
    font-weight: 700;
    font-size: 17px;
}

footer .blocks ul {
    list-style: none;
}

footer .blocks ul li {
    margin-top: 5px;
    opacity: 70%;
}

footer hr {
    margin: 20px;
}

footer p {
    text-align: center;
}

/* Tags styles */

.tagswrapper {
    display: flex;
    padding: 20px 0;
    min-height: 40px;
}

.tagswrapper .tag {
    background-color: #858585;
    padding: 0 10px;
    margin: 0 8px;
    margin-top: 10px;
    margin-bottom: 4px;
    border-radius: 10px;
    display: flex;
}

.tagswrapper .tag button {

    background-color: transparent;
    outline: none;
    border: none;
    width: 20px;
    height: 20px;
    margin: auto 0;
    margin-left: 4px;
    transition: transform 200ms ease;
    transform: scale(1);
}

.tagswrapper .tag button:hover {
    transform: scale(1.3);
}

/* 
    TAGS DROPDOWN MENU
*/


.tagswrapper .dropdown {
    margin: auto 10px;
    transition: transform 150ms ease;
}

.tagswrapper .dropdown button,
.searchwrapper .addtagbutton {
    background-color: transparent;
    outline: none;
    border: none;
    margin: 0 6px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.tagswrapper .dropdown button .addtag,
.searchwrapper .addtagbutton .addtag {
    width: 15px;
    height: 15px;
}

.tagswrapper .dropdown .dropdowncontent {
    position: absolute;
    
    background-color: #4A4A4A;
    border-radius: 6px;
    min-width: 160px;
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: none;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    z-index: 3;
    
    padding: 10px 0;
    transform: scale(0);
    opacity: 0;
    transition:
    transform 0.25s ease,
    opacity 0.25s ease;
    transform-origin: top left;
}

.tagsearch { 
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    display: flex;
    justify-content: center;

    margin: 0 auto;
    z-index: 1;
    color: #000;
    background: #fff;
    outline: none;
    border: 0;
    border-radius: 10px;
    padding: 5px;
}

.tagswrapper .dropdown .dropdowncontent .tag {
    display: flex;
    justify-content: space-between;
}
  
.tagswrapper .dropdown .dropdowncontent .tag a {  
    color: #f1f1f1;
    margin: auto 0;
    padding: 4px 6px;
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.tagswrapper .dropdown .dropdowncontent .tag button {
    margin: auto 0;
}
  
  
.tagswrapper .dropdown:hover .dropdowncontent {
    /* display: table; */
    transform: scale(1.2);
    opacity: 1;
}

.clownnose:not(:active) {
    transition: all 200ms ease;
    transform: scale(1);
}

.clownnose:active {
    transform: scale(0.8);
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #514b82;
    animation:
      l20-1 0.8s infinite linear alternate,
      l20-2 1.6s infinite linear;
  }
  @keyframes l20-1{
     0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
     12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
     25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
     50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
     62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
     75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
     100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
  }
  @keyframes l20-2{ 
    0%    {transform:scaleY(1)  rotate(0deg)}
    49.99%{transform:scaleY(1)  rotate(135deg)}
    50%   {transform:scaleY(-1) rotate(0deg)}
    100%  {transform:scaleY(-1) rotate(-135deg)}
  }
