body, html {
  margin:0;
  padding:0;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-font-smoothing:antialiased;
  -moz-font-smoothing:antialiased;
  -o-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  height: 100%;
  width: 100%;
 /* overflow: hidden;*/
}
@font-face {
  font-family: 'Poppins';
  src: url('Poppins-Regular.woff') format('woff'),
  url('Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Chatlong';
  src: url('Chatlong.woff') format('woff'),
      url('Chatlong.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
   background-color: #101b32;
    background-repeat: no-repeat;
    background-position: center center;
    background-size:105% 105%;
    font:500 12px/1.625 "Poppins","Arial", Helvetica, Muli, sans-serif;
  }
  .rightTools {
    position: absolute;
    left: -12%;
    top: 2px;
    width: 12%;
    height: calc(100% - 52px);
    background-color: rgba(128, 128, 128, 0.5);
    border: 2px solid grey;
    border-radius: 8px;
    padding: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
  }
  .rightButtons{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    padding-left: 2px;
  }
  .divTitle{
    margin-top: 0.5px;
    display: flex;
    cursor: pointer;
    writing-mode: vertical-lr;
    text-orientation: upright;
    width: 36px;
    border-radius: 5px;
    background-color: black;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .divTitle img{
    max-width: 24px;
    margin-left: 6px;
  }
  .selectedBt{
    border: 2px solid red ;
  }
  .nonSelectedBt{
    border: 2px solid grey ;
  }
  .title{
    margin: 0;
    font-size: 1vh;
    font-weight: bold;
    color: white;
    margin-left: 6px;
  }
  .colorp{
    margin-top: 2px;
    margin-bottom: 10px;
    text-align: center;
  }
  .colorp p{
    color: white;
    font-size: 1.2vw;
    line-height: 1.2vw;
    margin-bottom: 2px;
  }
  .bottomTools {
    position: fixed;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48px;
    background-color: rgba(128, 128, 128, 0.5);
    border: 2px solid grey;
    border-radius: 8px;
    padding: 5px;
  }
  #bt_rotateC {
    transform: rotate(180deg);
  }
  #bt_rotateCX {
    transform: rotate(90deg);
  }
  #bt_rotateACX {
    transform: rotate(-90deg);
  }
  .clickable{
    cursor: pointer;
    max-width: 100%;
    max-height: 100%;
  }
  .clickableIcons{
    cursor: pointer;
    height: 42px;
    width: auto;
    margin-top: 6px;
  }
  .flipped {
    transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -webkit-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    -khtml-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
}

#loaderImg{
  animation: rotation 2s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.line{
  width: 100%;
  height: 2px;
  background-color: aliceblue;
  margin-top: 16px;
  margin-bottom: 16px;
}
.half{
  text-align: center;
  position: absolute;
  width: 48%;
  height: 48px;
  left: 0;
  top: 0;
}

.half .clr-field{
  position: absolute;
  top: 37%;
}



#equipmentsC , #pitchesC{
margin-left: 0px;
}

.playerClothes{
  max-width: 80%;
  height: auto;
  margin-left: 20%;
  background-color: #cccccc;
  margin-top: 1%;
  margin-bottom: 1%;
  border: 6px solid white;
  border-radius: 4px;
  padding: 2px;
}


.label {
  color: #FFF;
  font-family: sans-serif;
  padding: 2px;
  background: rgba( 0, 0, 0, .6 );
}


.popup{
    display: none;
    text-align: center;
    width: 400px;
    border: #101b32 2px solid;
    height: auto;
    background-color: yellow;
    position: absolute;
    z-index:4;
    padding: 10px;
    box-shadow: 2px 5px rgba( 0, 0, 0, .6 );
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
}
.buttonUI{
   margin-top: 5px;
    width: 64px;
    height: 32px;
    font-size: 1.2rem;
}
.labelUI, .inputUI{
  font-size: 1.2rem;
}
.infoUI{
display: none;
color: red;
font-weight: bold;
}
.checkmark {
  display: block;
  position: relative;
  font-size: 1.2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkmark input{
  width: 24px;
  height: 24px;
}
.checkmark span{
  
}


.AlertBorder{
  border: red 2px solid;
}
.blackLayer{
  cursor: pointer;
  display: none;
  z-index:3;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba( 0, 0, 0, .4 );
}
.textcase{
  font-weight: bold;
  text-align: center;
  background-color: #FFF;
  font-size: 1.1rem;
}
#userText{
  font-weight: bold;
  color: black;
  font-size: 1.1rem;
}