/* put your own styles to customize and override the theme */

.btn_change {
    background-color: #b0b0b0;
    border: none;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10%;
  }
  .btn_change_green {
      padding: 12px 16px;
      font-size: 16px;
      border-radius: 10%;
      background-color: #00a28a;
      border-color: #007c69;
    }
  
  .buttongroup label{
    border: 1px solid #fff;
    padding: 6px 12px;  
    cursor: pointer;
    color: #fff;
    background-color: #777;
    transition: all 0.2s;
  }

  .buttongroup label:not(:first-of-type){
    border-left: 0;
  }

  .buttongroup label:hover{
    background-color: #333;
  }

  /* Hide the radio button */
  input[name='market']{ 
    display:none;
  }

  /* The checked buttons label style */
  input[name='market']:checked+label{
    background-color: #346CB0;
  } 

  .wrappert{
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    align-items: center;  
  }




