@charset "utf-8";
/*  This is an css comment tag and is used to help guide you */

* {
  box-sizing: border-box;
}

  body {
    width: 100%;
    top:0;
    bottom:0;
    left:0;
    right:0;
    position: relative;
    margin: 0;
    border: 0px solid DarkViolet ;  /* colour of the body border (the whole page)  0 by default (off ) */
    border-radius: 0px;  /*  0 by default (off)  */
    background-color: transparent; 
    font-family: Arial;   /*font style */ 
    line-height: 1.0;
    font-size: calc(2.5vw + 0.5vh + 1vmin); 
    font-weight: 400; 
    color : #fff;  /* colour of the text on the page */
    line-height: 100%;
    text-align: left; 
    overflow: hidden;
    float: left
  }

img {    
    vertical-align: middle;
  }

  .wrapper {
    position:relative;
    min-width: 100%;
    z-index: 0;
    background-color: #53575d;
    padding: 0px; /* suggest 8px for rounded corners, 0 by default */
    border: 0px solid #1e2b3a; /* colour of the main border suggest 4px for rounded corners,  0 by default (off ) */
    border-radius: 12px; /*  suggest 0px for straight corners 12 by default (on), if used be sure not to set a radius for the top of the heading section (line 54) and the bottom of the info section (line 183) change both to border-radius: 0; to give an inner squared effect  */
    overflow: hidden;
  }

  .heading{   /* background top brushed metal effect */
    background-image: linear-gradient(90deg, rgba(62, 68, 74, 0.5), 
    rgba(192, 192, 192, 0.4), rgba(91, 96, 105, 0.5)), 
    repeating-linear-gradient(0deg, rgba(1, 5, 8, 0.26), 
    rgba(189, 189, 189, 0.4) 2.5px), repeating-linear-gradient(0deg, rgba(2, 23, 38, 0.32), 
    rgba(192, 192, 192, 0.4) 2.7px), repeating-linear-gradient(0deg, rgba(58, 65, 71, 0.6), 
    rgba(224, 226, 227, 0.3) 3.0px), repeating-linear-gradient(0deg, rgba(91, 95, 98, 0.5), 
    rgba(55, 170, 233, 0.26) 4.5px);
    padding: 3% 0% 0% 3%;
     border-radius: 10px 10px 0px 0px;   
     /* 12px 12px 0 0 creates a radius for the top of this section, used only if there is a border radius for the wrapper line 40 */
    -moz-border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
  } 

  .name {
    background-color:  inherit;  /*  background colour of the server name text */  
    width: 100%;
    padding: 0%;
    font-size: 130%;
    font-weight: 700; 
    border: 0px solid Pink ;  /* colour of the server name border  0 by default (off ) */
  }

  .debossed:before{
    content:"RAW recruits"; /* This is the server's name. *NOTE for this effect to work, content:"name" below must match exactly that of <span class="debossed">"name"</span>; in line 32 of the php file */
    position:absolute;
    color: rgba(0,0,0,.3)
  }

  .debossed {
    margin: 50px auto;
    text-align: center;
    text-shadow: -1px 1px 0px rgba(255,255,255,0.2), 1px -1px 0px rgba(0,0,0,0.6);
    color: #0d3888;
    opacity: 0.4;
    font: 700 150% 'Arial';
  }

  .location {  /*  where to display the number of users on the server */  
    position: absolute; 
    top: 9.5em; 
    right: 1.5em; 
    color: #fff; /* number of users online */
    font-size: 80%;
    font-weight: bold;
  }

  .discord-icon {
    width: 8%;
    vertical-align: middle;
  }

  .channels {
    background-color: transparent;  /* background colour of Discord Voice Channels text */
    font-size: 120%;
    font-weight: 600; 
    font-style: italic;
    text-shadow: 1px 1px 0px #000000;
    padding: 3% 1% 3% 3%;
  }

  .join {
    background-color: inherit;  /* background colour of the join button */
    color: #fff; /* Join button text */
    font-size: 100%;
    font-weight:  500;
    width: 7em;
    padding: 0%;
    text-align: center;
    margin-left: auto; 
    margin-right: 3%;
  }

  .join:hover {
    background-color: #253f58;  /* View button hover background */
  }

  .join a{ 
    text-decoration: none;
    color: #fff;  /* Join Server button hover text */
  }

  .join a:hover{ 
    text-decoration: none;
    color: #768ea0; /* Join Server hover text */
  }

  .btn { /* background join server button brushed metal effect */
    background-image: linear-gradient(90deg, rgba(62, 68, 74, 0.5), 
    rgba(192, 192, 192, 0.4), rgba(91, 96, 105, 0.5)), 
    repeating-linear-gradient(0deg, rgba(1, 5, 8, 0.26), 
    rgba(189, 189, 189, 0.4) 2.5px), repeating-linear-gradient(0deg, rgba(2, 23, 38, 0.32), 
    rgba(192, 192, 192, 0.4) 2.7px), repeating-linear-gradient(0deg, rgba(58, 65, 71, 0.6), 
    rgba(224, 226, 227, 0.3) 3.0px), repeating-linear-gradient(0deg, rgba(91, 95, 98, 0.5), 
    rgba(55, 170, 233, 0.26) 4.5px);
    float: right;
    cursor:pointer;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    text-shadow: 1px 1px 0px #474147;
    -webkit-box-shadow: 2px 2px 7px #171517;
    -moz-box-shadow: 2px 2px 7px #171517;
    box-shadow: 2px 2px 7px #171517;
    font-family: Arial;
    color: #555e69; /* Join Server button text */
    font-size: 80%;
    font-weight: bold;
    padding: 0.1em 0.3em;
    border: solid #080808 2px; /* border join server button */
    text-decoration: none;
  }

.btn:hover {
  background-image: linear-gradient(90deg, rgba(62, 68, 74, 0.5), 
  rgba(109, 168, 219, 0.6), rgba(91, 96, 105, 0.5)), 
  repeating-linear-gradient(0deg, rgba(1, 5, 8, 0.26), 
  rgba(130, 130, 189, 0.4) 2.5px), repeating-linear-gradient(0deg, rgba(2, 23, 38, 0.32), 
  rgba(192, 192, 192, 0.4) 2.7px), repeating-linear-gradient(0deg, rgba(58, 65, 71, 0.6), 
  rgba(145, 145, 227, 0.3) 3.0px), repeating-linear-gradient(0deg, rgba(91, 95, 98, 0.5), 
  rgba(55, 190, 145, 0.26) 4.5px);
  -webkit-box-shadow: 2px 2px 7px #6da8db;
  -moz-box-shadow: 2px 2px 7px #6da8db;
  box-shadow: 2px 2px 7px #6da8db;
  border: solid #080808 2px; /* border hover join server button */
  text-decoration: none;
  }

  .spacer{
    padding: 0 0 2.3em 0;
  }

  .info{    /* container holding all the information on channels and users */
    width: 100%; 
    background-color: transparent;
    border: 0.5em inset #abafb0;   /* border size and colour */
    padding: 0%;
    border-radius: 0 0 12px 12px;    /* creates a radius for the bottom of this section, used only if there is a border radius for the wrapper line 44 */
    white-space: nowrap;
    overflow: hidden;
  }

   .info:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index:  -1;
    background: url('../images/backdrop_gaming.jpg')no-repeat; /* background image */
    background-size:100% auto;
    opacity: 0.3;
  }

  .channel {
    background-color: transparent;   /* background colour of channel names text */
    text-shadow: 1px 1px 0px #000000;
    font-weight: 600; 
    font-style: italic;
    padding: 0.5% 1% 0.5% 1%;
  }

  .userinfo {
    overflow: hidden!important;
    white-space: nowrap!important;
    text-shadow: 1px 1px 0px #000000;
  }

  .discord-avatar {
   border-radius:100%;
   width: 1.4em;
   border: solid 2px #fff!important;
   border-color: #3a3a3a!important;   
   display: inline;
   margin-bottom: 0px;
   margin-right: 5px!important;
   vertical-align: middle;
  }

  .discord-status {
    border-radius: 100%;
    width: 40%;
    border: solid 0.12em #6a6e70!important;   /*  same colour as the background  */ 
    position: absolute;
    bottom: -20%;
    right: 10%;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
  }

   .user {
    background-color: transparent;  /* background colour of user names text */
    text-shadow: 1px 1px 0px #000000;
    padding: 1% 1% 1% 0%;
  }

.label-admin {
    margin-left: 5px;
    background-color: #049053;
    color: #fff;
    border-radius: 0.3em;
    padding: 0.3em;
    font-size: 60%;
    text-shadow: 1px 1px 0px #000000;
  }

  .label-bot {
    margin-left: 5px;
    background-color: #7289da;
    color: #fff;
    border-radius: 0.3em;
    padding: 0.3em;
    font-size: 60%;
    vertical-align: middle;
    text-shadow: 1px 1px 0px #000000;
  }

  img.mutedeaf {   
    width: 5%;
    vertical-align: middle;
  }

  .label-game {
    color: #e66f1f;  /* playing game text colour */
    font-size: 60%;
    text-shadow: 1px 1px 0px #000000;
  }

  hr {
    width: 90%;
    display: block;
    margin-top: 0.75em;
    margin-bottom: 0.75em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 0px;   /* set to 1 or more for a spacer bar*/
    background-color: #1c2633; /* background colour of  the spacer above more online */
    color: #1c2633;  /* colour of  the spacer above more online */
  }

  .moreusers {
    background-color: transparent;  /* background colour of more online section */
    padding: 1% 0% 4% 0%;
    white-space: nowrap;
    overflow: hidden;
  }

  input[type='checkbox'] {   /* hides the 'view' button checkbox */  
    display: none;
  }

  input[type='checkbox']:checked ~ div {
    transform: scaleY(1);
}

  #toggle:checked ~ div.hidden {
    display: block;
    overflow: hidden;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
  }

    label {
    background-image: linear-gradient(90deg, rgba(62, 68, 74, 0.5), 
    rgba(192, 192, 192, 0.4), rgba(91, 96, 105, 0.5)), 
    repeating-linear-gradient(0deg, rgba(1, 5, 8, 0.26), 
    rgba(189, 189, 189, 0.4) 2.5px), repeating-linear-gradient(0deg, rgba(2, 23, 38, 0.32), 
    rgba(192, 192, 192, 0.4) 2.7px), repeating-linear-gradient(0deg, rgba(58, 65, 71, 0.6), 
    rgba(224, 226, 227, 0.3) 3.0px), repeating-linear-gradient(0deg, rgba(91, 95, 98, 0.5), 
    rgba(55, 170, 233, 0.26) 4.5px);
    -webkit-border-radius: 4;
    -moz-border-radius: 4;
    border-radius: 4px;
    text-shadow: 1px 1px 0px #474147;
    -webkit-box-shadow: 2px 2px 7px #171517;
    -moz-box-shadow: 2px 2px 7px #171517;
    box-shadow: 2px 2px 7px #171517;
    border: solid #080808 2px;   /* border view more online button */
    color: #fff;     /* View button text */
    text-shadow: 1px 1px 0px #000000;
    cursor: pointer;
    padding: 1px 5px;
    font-family: 'Arial';
    font-size: 80%;
    font-weight: bold;
  }

  label:hover {
     background-color: #808080;   /* View more online button hover background */
    background-image: linear-gradient(90deg, rgba(62, 68, 74, 0.5), 
    rgba(109, 168, 219, 0.6), rgba(91, 96, 105, 0.5)), 
    repeating-linear-gradient(0deg, rgba(1, 5, 8, 0.26), 
    rgba(130, 130, 189, 0.4) 2.5px), repeating-linear-gradient(0deg, rgba(2, 23, 38, 0.32), 
    rgba(192, 192, 192, 0.4) 2.7px), repeating-linear-gradient(0deg, rgba(58, 65, 71, 0.6), 
    rgba(145, 145, 227, 0.3) 3.0px), repeating-linear-gradient(0deg, rgba(91, 95, 98, 0.5), 
    rgba(55, 190, 145, 0.26) 4.5px);
    -webkit-box-shadow: 2px 2px 7px #6da8db;
    -moz-box-shadow: 2px 2px 7px #6da8db;
    box-shadow: 2px 2px 7px #6da8db;
    border: solid #080808 2px;    /* border hover view more online button */
    color: #1c1c1c;    /* View button hover text */
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

.moreonline {
    margin-left: 1em;
    padding: 1% 6% 1% 4%;
    font-weight: 500; 
    text-shadow: 1px 1px 0px #000000; 
  }

  div.hidden {
    display: none;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    padding: 2% 0 0 6%;
    overflow: hidden;
  }

  .main{   /* Minimum height of main viewing area */
    min-height: 16em;
  }

  .face{
    max-width: 10%;
  }

  .face img{
    max-width:100%;
    max-height:100%
  }

 .crisp-edges {
    image-rendering: -webkit-optimize-contrast; /* Chrome, Edge, Opera, and Safari */
  }

    .lh-sm {
    line-height: 1.2 !important;
  }

  .p-1 {
    padding: .25rem !important;
  }

  .ms-1 {
    margin-left: .25rem !important;
  }

  .ps-2 {
    padding-left: .5rem !important;
  }

  .ps-3 {
    padding-left: 6% !important;
  }

  .mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important;
  }

  .avatar-link{
    position: relative;
    display: inline-block;
  }

  .avatar {
    background: rgba(15, 28, 63, 0.125);
    border-radius: 50%;
    height: 1.00em;
    object-fit: cover;
    width: 1.00em;
  }

  .dnd {
    border: 0.12em solid #6a6e70;
    border-radius: 50%;
    height: 0.55em;
    position: absolute;
    right: -0.1em;
    bottom:  -0.05em;
    width: 0.55em;
    background-color: #f5444b;
    line-height: 0.1em;
    text-align: center;
  }

  .dnd:after {
    color: #000;
    content: ' \002D';
    position: absolute;
    right: 0.08em;
    top:  0.05em;
    font-size: calc(1.5vw + 0.5vh + 1vmin); 
  }

  .idle {
    border: 0.12em solid #6a6e70;
    border-radius: 50%;
    height: 0.55em;
    position: absolute;
    right: -0.1em;
    bottom:  -0.05em;
    width: 0.55em;
    background-color: #fda43f;
  }

  .online {
    border: 0.12em solid #6a6e70;
    border-radius: 50%;
    height: 0.55em;
    position: absolute;
    right: -0.1em;
    bottom:  -0.05em;
    width: 0.55em;
    background-color: #32a67c;
  }

  .voice { 
    margin-left: 3%;
  }

  img.voice { 
    width: 5%;
    vertical-align: middle;
  }

 .letter {
        position: relative;
        top: -webkit-calc(50% - 60px);
        top: calc(50% - 60px);
        text-shadow: 0px 0px 3px white;
    }
    .letter:nth-child(1) {
        -webkit-animation: fade 4s infinite 200ms;
        animation: fade 4s infinite 200ms;
    }
    .letter:nth-child(2) {
        -webkit-animation: fade 4s infinite 400ms;
        animation: fade 4s infinite 400ms;
    }
    .letter:nth-child(3) {
        -webkit-animation: fade 4s infinite 600ms;
        animation: fade 4s infinite 600ms;
    }
    .letter:nth-child(4) {
        -webkit-animation: fade 4s infinite 800ms;
        animation: fade 4s infinite 800ms;
    }
 
    @-webkit-keyframes fade {
        50% {
            opacity: 0.02;
        }
    }
 
    @keyframes fade {
        50% {
            opacity: 0.02;
        }
    }

/*  media rules */  
  @media only screen and (max-width: 120px) {
  .moreusers {
    padding: 2% 0% 4% 0%;
  }
}

  @media only screen and (max-width: 160px) {
  .heading {
    padding: 3% 0% 0% 8%;
  }
}

  @media only screen and (max-width: 200px) {
  label {
    text-shadow: 0px 0px 0px;
  }
}