@font-face {
  font-family: GT Walsheim Pro;
  src: local("GT Walsheim Pro Regular"),local("GTWalsheimProRegular"),url(GTWalsheimProRegular.woff2) format("woff2"),url(GTWalsheimProRegular.woff) format("woff"),url(GTWalsheimProRegular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: GT Walsheim Pro;
  src: local("GT Walsheim Pro Bold"),local("GTWalsheimProBold"),url(GTWalsheimProBold.woff2) format("woff2"),url(GTWalsheimProBold.woff) format("woff"),url(GTWalsheimProBold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal
}

/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap'); */

*{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body{
  /* background: #7fc469; */
  color: #565e6b;
}

.wrapper{
  /* width: 500px;
  height: 100%;
  background: #fff; */
  margin: 15px auto 0;
}

.wrapper .title{
  padding: 30px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid #ebedec;
}

.wrapper .tabs_wrap{
  padding: 20px;
  /* border-bottom: 1px solid #ebedec; */
}

.wrapper .tabs_wrap ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrapper .tabs_wrap ul li{
  width: 135px;
    text-align: center;
    background: #e9ecf1;
    border-right: 1px solid #c1c4c9;
    padding: 13px 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wrapper .tabs_wrap ul li:first-child{
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.wrapper .tabs_wrap ul li:last-child{
  border-right: 0px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.wrapper .tabs_wrap ul li:hover,
.wrapper .tabs_wrap ul li.active{
  background: #203864;
  color: #fff;
}

.wrapper .container .item_wrap{
  padding: 10px 20px;
  border-bottom: 1px solid #ebedec;
  cursor: pointer;
}

.wrapper .container .item_wrap:hover{
  background: #e9ecf1;
}


/* 3 */
.btn-3 {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 10px;
  border-radius: none;
  
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover{
   color: rgba(2,126,251,1);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}


.wrapper .container .item{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item_wrap .item .item_left{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item_wrap .item_left img{
  width: 40px;
  height: 40px;
  display: block;
}

.item_wrap .item_left .data{
  margin-left: 20px;
}

.item_wrap2 .item_left2 .data2{
  /* margin-left: 20px; */
}

.item_wrap .item_left .data .name{
  font-weight: 600;
  font-size:12px;
  padding:10px;
  color:#203864;
}

.item_wrap .item_left .data .distance{
  color: #000000;
  font-size: 14px;
  padding: 0 10px;
}

.item_wrap .item_right .status{
  position: relative;
  color: #77818d;
}

.item_wrap .item_right .status:before{
  content: "";
  position: absolute;
  top: 5px;
    left: -12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b3bbc8;
}

.item_wrap.offline .item_right .status{
  color: #b3bbc8; 
}

.item_wrap.online .item_right .status:before{
  background: #7fc469;
}

.text-divider {
  display: flex;
  font-size:18px;
  font-weight:500;
  align-items: center;
color: #203864; 
 
}

.button {
  background-color: #203864; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
  font-weight:600;
}

.text-divider::before,
.text-divider::after {
  content: '';
  height: 2px;
  background-color: silver;
  flex-grow: 1; /* // both lines will expand to occupy the available space */
}

