body{
    
  font-family: 'HK Grotesk', sans-serif !important;
  text-rendering: optimizeLegibility;

}
span.gbp {
    float: left;
    text-align: left;
}

span.gbp::before {
    float: left;
    content: "\00a3"; /* £ */
    padding: 3px 4px 3px 3px;
}

span.gbp input {
    width: 280px !important;
}
strong {
  font-weight: 800 !important;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  color: black;
  padding : 10px;
}

.span_overflow {
  position: absolute;
  background: unset;
  z-index: 10;
  border: unset;
  padding: 8px !important;
}

.input-span-overflow{
  padding: 8px 0px 0px 35px !important;
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.header-color{
  background: #FFFFFF ;
}

.header-color-options{
  color : #000 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.circle-span-orange{
    background:#ff5252;
    border-radius:50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    margin-right: 6px;
}

.circle-span-black{
    background: #000;
    border-radius:50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    margin-right: 6px;
}

.circle-span-purple{
    background: #5d1b97;
    border-radius:50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    margin-right: 6px;
}

.card-pointer {
  cursor: pointer;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-family: 'HK Grotesk' !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    font-size: 16px;
}

.form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn, .input-group-sm>.input-group-prepend>.input-group-text {
    padding: 0.25rem 0.5rem;
    /* font-size: .875rem; */
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0.2rem;
}

/* Tables */
.table-container,
.table_responsive {
  overflow-x: auto;
}
table td{
  max-width: 550px;
  min-width: 120px;
}

td p{
  width: 100%;
  white-space: normal;
}

/* tables style */
.table_responsive{
  display: none;
  width: 100%;
}

.table-column{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(136, 136, 136, 0.5);
}
.table-row{
  margin-bottom: 15px;
  border-top: 1px solid rgba(136, 136, 136, 0.5);
  border-bottom: 1px solid rgba(136, 136, 136, 0.5);
}

.column__header,
.column__container{  
  padding: 5px;
}

.column__header{
  /* width: 40%; */
  color: #888;
  font-weight: bold;
}

.column__container{
  /* width: 60%; */
  white-space: normal;
}

/*Table Responsive a 540 px version :v 2*/
@media (  max-width: 540px ){
  .table-container{
    display: none;    
  }
  .table_responsive{
    display: block;
  }
  @media (  max-width: 280px ){
    .column__header{
      width: 95px;
    }

    .column__container{
      width: 160px;
    }
  }
}

summary{
  list-style: none;
  font-weight: bold;
  padding: 2px 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

summary::-webkit-details-marker{
  display: none;
}


summary i{
  transition: transform 0.5s;
}

details[open] i{  
  transform: rotateZ(90deg);
}