.button-platform {
    transition: .3s;
}

.button-platform:hover {
    background-color: #00e1ff;
    transition: .3s;
}


.italicized {
  font-style: italic;
}

.games-menu:hover {
    color: #ffffff;
}

.games-menu:hover {
    color: #ed1fe6;
}

.mobile-menu {
    transition: .3s;
}

.discord-button {
    background-color: #5d6af2;
    color: #ffffff;
    transition: .3s;
}

.discord-button svg {
    fill: #ffffff;
    transition: .3s;
}

.discord-button:hover {
    background-color: #ffffff;
    color: #5d6af2;
    transition: .3s;
}

.discord-button:hover svg {
    fill: #5d6af2;
    transition: .3s;
}

.button-social svg {
    fill: #ffffff;
    transition: .3s;
}

.button-social:hover svg {
    fill: #ed1fe6;
    transition: .3s;
}

.magenta-button {
    background-color: #ed1fe6;
    color: #ffffff;
    transition: .3s;
}

.magenta-button:hover {
    background-color: #00e1ff;
    color: #000000;
    transition: .3s;
}

.navbar-item {
    position: relative;
    transition: .3s;
}

.navbar-item svg {
    fill: #ffffff;
    transition: .3s;
}

.navbar-item:hover {
    color: #00e1ff;
    transition: .3s;
}

.navbar-item:hover svg {
    fill: #00e1ff;
    transition: .3s;
}

.navbar-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #00e1ff;
    opacity: 0;
    transition: .3s;
}

.navbar-item:hover:before {
    opacity: 1;
    transition: .3s;
}

.navbar-item-selected {
    color: #00e1ff;
}

.navbar-item-selected svg {
    fill: #00e1ff;
}

.navbar-item-selected:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #00e1ff;
    opacity: 1;
    transition: .3s;
}

@keyframes e-marker-expand {
    0% {
        opacity: 1;
        transform: scale(.5)
    }

    to {
        opacity: 0;
        transform: scale(2.0)
    }
}

/* Spinner */
.loader {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  display: block;
  animation: rotate 1s linear infinite
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
  0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
  25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
  50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
  100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
    
/* Location */
.location {
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
}
.location::after,
.location::before {
  content: '';  
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00e1ff;
  position: absolute;
  left: 0;
  top: 0;
  animation: locationanimloader 2s linear infinite;
}
.location::after {
  animation-delay: 1s;
}

@keyframes locationanimloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}