@font-face {
  font-family: grotesc;
  src: url(ClashGrotesk-Regular.woff);
}

input:focus {
  outline: none;
}

.treem-select{
  width: 90%;
  height: 30px;
  border: none;
  border-bottom: 1px solid gray;
  font-size: 15px;
  text-align-last: left;
  font-family: grotesc;
}

button{
  cursor: pointer;
  transition: all 0.3s;
}

.hidden {
  display: none;
}

i {
  margin-right: 2px;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #164387;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0f3369;
}

html > ::-webkit-scrollbar {
  width: 0px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  border: 3px solid #ffffff;
  border-radius: 15px;
  background: #eeeeee;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  height: 40px;
}
.toggleContainer::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  border-radius: 15px;
  background: #1f53a3;
  transition: all 0.3s;
}
.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}
.toggleContainer div {
  padding: 6px;
  text-align: center;
  z-index: 1;
}
.toggleCheckbox {
  display: none;
}
.toggleCheckbox:checked + .toggleContainer div:first-child {
  color: black;
  transition: color 0.3s;
  align-content: center;
  font-family: grotesc;
}
.toggleCheckbox:checked + .toggleContainer div:last-child {
  color: white;
  transition: color 0.3s;
  align-content: center;
  font-family: grotesc;
}
.toggleCheckbox + .toggleContainer div:first-child {
  color: white;
  transition: color 0.3s;
  align-content: center;
  font-family: grotesc;
}
.toggleCheckbox + .toggleContainer div:last-child {
  color: black;
  transition: color 0.3s;
  align-content: center;
  font-family: grotesc;
}

* {
  padding: 0;
  margin: 0;
}

.float {
  font-family: grotesc;
  position: fixed;
  width: 120px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: #1f53a3;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  align-content: center;
}

.my-float {
  font-family: grotesc !important;
  font-size: 20px;
  margin-top: 22px;
}

.treem-loader{
  background-color: #00000099;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 200;
  align-content: center;
  text-align: -webkit-center;
}

.treem-modal{
  background-color: #00000099;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  align-content: center;
  text-align: -webkit-center;
}

.modal-content{
  background-color: white;
  padding: 15px;
  width: 70%;
  height: 70%;
  border-radius: 20px;
}

.small-modal-content{
  background-color: white;
  width: 50%;
  height: 60%;
  border-radius: 20px;
}

.modal-content > div{
  width: 100%;
}

.modal-title{
  border-radius: 20px 20px 0px 0px;
  height: 15%;
  align-content: center;
  text-align-last: left;
  background-color: #eeeeee;
}

.modal-body{
  height: 85%;
  display: flex;
  max-height: 85%;
  overflow: scroll;
  overflow-x: hidden;
}

.modal-body > div{
  margin-top: 65px;
}

.modal-footer{
  height: 15%;
  display: flex;
  border-radius: 0px 0px 20px 20px;
}

.modal-title-label{
  font-size: 25px;
  font-family: grotesc;
  text-transform: uppercase;
  font-weight: bold;
}

.second-btn-group{
  width: 50%;
  text-align: -webkit-right;
  padding-right: 50px;
}

.confirm{
  max-width: 150px;
  font-size: 15px;
  background-color: #1f53a3;
  border-radius: 5px !important;
}

.edit{
  max-width: 150px;
  font-size: 15px;
  background-color: black;
  border-radius: 5px !important;
}

.img-placeholder{
  width: 300px;
  height: 300px;
  background: white;
  border: 1.5px solid rgba(0, 0, 0, 0.148);
}

.cancel{
  max-width: 100px;
  font-size: 15px;
  background-color: #ffffff;
  border: 1px solid gray;
  border-radius: 5px !important;
  color: black;
}

.confirm:hover, .edit:hover{
  background-color: #164387;
}

.cancel:hover{
  background-color: rgb(171, 171, 171);
}

.left-panel{
  width: 50%;
}

.right-panel{
  width: 50%;
}

.compact{
  width: 250px !important;
  justify-content: normal !important;
}

.compact-select{
  width: 142px !important;
}

.mg-top{
  margin-top: 25px !important;
}