*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background-color:black;
}
a{
  text-decoration: none;
  color: inherit;
}
.header{
    position:fixed;
    height: 180px;
    width: 100%;
    top: 0px;
    z-index: 12000;
    background-color: rgb(0, 0, 0);
}
.header .compdetails{
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .compdetails .compname, .slogan{
    font-size: 44px;
    color: white;
    font-weight: bold;
    position: absolute;
}
.header .compdetails .compname{
    left: 0px;
}
.header .compdetails .slogan{
    font-size: 18px;
    right: 30px;
}
.header .actionbtns{
    position: relative;
    background-color:rgb(43, 43, 43);
    width: 100%;
    height: 120px;
    padding: 10px;
    font-size: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}
.header .actionbtns .actionbtn{
    height: 40px;
    width: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    justify-content: center;
}
.header .actionbtn.withdraw{
    top:5px;
    right: 2px;
    position: absolute;
    background-color: rgb(185, 185, 6);
    color: black;
}
.header .actionbtn.transactions{
    left: calc(50% - 50px);
    position: absolute;
    top: 5px;
}
.header .actionbtn.logout{
  left: calc(50% - 50px);
  position: absolute;
  background-origin: 5px;
}
.header .actionbtn.mywallet{
    bottom:5px;
    right: 2px;
    position: absolute;
}
.header .actionbtn.deposit{
    top:5px;
    left: 2px;
    position: absolute;
    background-color: rgb(185, 185, 6);
    color: black;
}
.header .actionbtn.profile{
    bottom:5px;
    left: 2px;
    position: absolute;
}
.main{
    position:relative;
    height: 100%;
    min-height: 400px;
    margin-top: 180px;
    width: 100%;
    background-color:transparent;
}
.main .currencycont{
    height: 300px;
    width: 100%;
    background-color:transparent;
    position: relative;
    color: white;
}

.transaction-wrapper {
    position: absolute;
    width:100%;
    left: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .transaction-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .pipe {
    height: 40px;
    width: 100px;
    background:#121212;
    border-radius:0px;
    border:2px solid white;
    border-right:0px;
    border-left:0px;
    position: absolute;
    z-index: 1;
  }

  .pipe.inlet {
  z-index:3;
    left: -98px;
    top: 50%;
    transform: translateY(-50%);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 80px;
  }

  .pipe.outlet {
    right: -98px;
    top: 50%;
    z-index:3;
    transform: translateY(-50%);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .currency {
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    animation: moveCurrency 5s linear infinite;
    opacity: 0.8;
    z-index: 0;
    color: white;

  }

  @keyframes moveCurrency {
    0% {
      transform: translate(-100px, -100px);
      opacity: 1;
    }
    50% {
      transform: translate(100px, 100px);
      opacity: 0.5;
    }
    100% {
      transform: translate(-100px, -100px);
      opacity: 1;
    }
  }

  .processing-bar {
    width: 90%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    left: 5%;
    overflow: hidden;
    z-index: 3;
  }

  .progress {
    width: 0;
    height: 100%;
    background: gray;
    border-radius: 10px;
    opacity:1;
    animation: process 3s linear infinite;
  }

  @keyframes process {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
  }

  .coin {
    position: absolute;
    font-size: 26px;
    color: white;
    z-index: 10;
    font-weight:bold;
    top:48%;
    left:-40px;
  }



  .main .explainer{
    padding: 12px 20px;
    width: 100%;
    position: relative;
    color: white;
    font-weight: bold;
  }
  .slotcont{
    position: relative;
    width: 100%;
    min-height: 400px;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(400px, 0.1fr));
    grid-template-rows:repeat(auto-fit, minmax(250px, 0.1fr));
    column-gap: 0.5em;
    row-gap: 0.5em;
    background-color:transparent;
  }
  .slotcont .slot{
    height:250px;
    width: 400px;
    position: relative;
    border-radius: 30px;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px 10px 10px hsla(0, 10%, 100%, .4), 0 0.5em 0em rgba(0, 0, 0, 0.5);
  }

  #slotcontainer {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow: hidden;
    position: absolute;
    background-color: transparent;
    filter:brightness(0.2);
  }
  #container {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow: hidden;
    position: absolute;
    background-color: transparent;
    filter:brightness(0.2);
  }


  .chain {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: grind 2s infinite alternate ease-in-out;
  }

  .link {
    width: 30px;
    height:30px;
    border: 2px solid #ccc;
    border-radius: 30%;
    margin: 2px 0;
    background-color:gold;
    transform:rotateX(180deg);
    display:flex;
    font-weight:300;
    color:rgb(61, 60, 60);
    align-items:center;
    justify-content:center;
  }
  .link:nth-child(odd){
  background-color:white;
  color: black;
  }
  @keyframes grind {
    0% { 

    transform:rotateX(180deg); 
    }
    100% { 
    transform:rotateY(180deg);
    }
  }

  #slotcontainer1 {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow: hidden;
    position: absolute;
    background-color:transparent;
  }
  #slotcontainer1 .processcircle{
    height: 140px;
    width: 140px;
    background-color:black;
    border-radius: 50%;
    position:absolute;
    right: 10px;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 8px;
    border-top:8px solid yellow;
    border-bottom:8px solid green;
    border-left:8px solid rgb(173, 28, 35);
    border-right:8px solid blue;
    animation: spin 2s infinite linear;
  }
  #slotcontainer1 .processcircle2{
    height: 140px;
    width: 140px;
    background-color:black;
    border-radius: 50%;
    position:absolute;
    right: 10px;
    top: 2px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    border: 8px;
    border-top:8px solid yellow;
    border-bottom:8px solid green;
    border-left:8px solid rgb(173, 28, 35);
    border-right:8px solid blue;
   
  }
  @keyframes spin {
    from{ 
    transform:rotate(0turn); 
    }
    to{ 
      transform:rotate(1turn);
      }
  }
  .slotname{
    position: absolute;
    height: 30px;
    width: 120px;
    background-color:rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    top:0px;
    left: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight:500;
    cursor: pointer;
    z-index: 4;
    color:gold;
    display: flex;
    align-items: center;
    justify-content:left;
    border-radius:5px;
  }
  #slotcontainer1 button{
    position: absolute;
    height: 40px;
    width: 120px;
    background-color:rgb(85, 84, 84);
    border: none;
    outline: none;
    top: 52px;
    left: 1px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    border-radius: 10px;
  }
  #slotcontainer1 .info{
    position: absolute;
    height: 40px;
    width: 95%;
    left: 5%;
    background-color:rgb(85, 84, 84);
    border: none;
    outline: none;
    bottom: 10px;
    left: 1px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:gold;
    box-shadow: inset 0px 0px 10px hsla(10, 0%, 100%, .6), 0 0.5em 0 rgba(0, 0, 0, 0.6);
  }
  .embeding {
    height: 300px;
    margin-top: 60px;
    position: relative;
    bottom:0px;
    width: 100%;
    background-color: white;
  }
  .embeding span{
    position: absolute;
    padding:5px 8px;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0px;
    left: 0px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    color: white;
    font-weight: bold;
    z-index: 2;
  }
  .embeding embed{
    height: 100%;
    width: 100%;
    position: absolute;
  }



  @media only screen and (max-width: 680px) {
    .main .currencycont{
      height: 250px;
    }
    .currency {
      font-size:30px;
  
    }
    .slotcont{
      position: relative;
      width: 100%;
      min-height: 400px;
      display: grid;
      justify-content: center;
      grid-template-columns: repeat(auto-fit, minmax(350px, 0.1fr));
      grid-template-rows:repeat(auto-fit, minmax(250px, 0.1fr));
      column-gap: 0.5em;
      row-gap: 0.5em;
      background-color:transparent;
    }
    .slotcont .slot{
      height:250px;
      width: 350px;
      position: relative;
      border-radius: 20px;
      display: flex;
      z-index: 2;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0px 10px 10px hsla(0, 10%, 100%, .4), 0 0.5em 0em rgba(0, 0, 0, 0.5);
    }
  
  }