/**
 * Description: CSS for backend.
 *
 * CSS version 3
 *
 * @category   webrtc2-backend.css
 * @package    WP-WebRTC2
 * @author     Oleg Klenitskiy <klenitskiy.oleg@mail.ru>
 * @version    1.4.0
 * @license    GPLv2 or later
 */

/* for Profile*/
#your-profile legend {
  font-size:14px;
}
.fielfset_profile {
  width: 500px;
  height: 210px;
  display: flex;
  flex-basis: 100%;
  flex-flow: row nowrap;
  justify-content: space-between;
  border: 1px groove;
  border-color: black;
}
.div_users {
    border-top: 1px solid black;
    border-right: 1px solid black;
  }
.div_contact {
  border-top: 1px solid black;
  border-left: 1px solid black;
}
.div_users {
  display: flex;
  text-align: center;
  flex-direction: column;
  background-color: #C1C1C1;
  flex-basis: 45%;
}
.div_btns {
  display: flex;
  align-items: center;
  background-color: #F0F0F1;
  justify-content: center;
  flex-basis: 9.5%;
  flex-flow: row wrap;
}
.div_contact {
  display: flex;
  text-align: center;
  flex-direction: column;
  background-color: #C1C1C1;
  flex-basis: 45%;
}
.btn_tbl_profile {
  font-size: 12px;
  height: 30px;
  flex-basis: 90%;
  background-color: #E0E0E0;
  border: 1px solid silver;
  border-radius: 4px;
}
.caption_tbl h4, .head_tbl h4 {
  margin: 0;
}
.caption_tbl h4 {
  background-color: #E0E0E0;
}
.head_tbl {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #E0E0E0;
}
.body_tbl {
  /*display: flex;*/
  flex-direction: column;
  text-align: center;
  justify-content: center;
  max-height: 145px;
  height: 145px;
  overflow-y: auto;
}
.foot_tbl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
}
.foot_tbl input, .foot_tbl button {
  display: block;
  height: 20px;
  min-height: 20px;
}
.body_fields {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E0E0E0;
  height: 26px;
  padding: 0;
}
@media screen and (max-width: 782px) {
  .form-table tr td fieldset {
    width: 100%;
    height: 200px;
    display: flex;
    flex-basis: 100%;
    flex-flow: row nowrap;
    justify-content: space-between;
    max-width: none;
    box-sizing: border-box;
    border-color: blue;
  }
  .div_users {
    border-top: 1px solid blue;
    border-right: 1px solid blue;
  }
  .div_contact {
    border-top: 1px solid blue;
    border-left: 1px solid blue;
  }
  input[type=checkbox], input[type=radio] {
    height: 1rem;
    width: 1rem;
  }
}
