/* Small devices (landscape phones, 576px and up)*/
/* Medium devices (tablets, 768px and up)*/
/* Large devices (desktops, 992px and up)*/
/* Extra large devices (large desktops, 1200px and up)*/
/* Extra Extra large devices (large desktops, 1500px and up)*/
/* Small devices (landscape phones, 576px and up)*/
/* Medium devices (tablets, 768px and up)*/
/* Large devices (desktops, 992px and up)*/
/* Extra large devices (large desktops, 1200px and up)*/
/* Extra Extra large devices (large desktops, 1500px and up)*/
.portal-buttons {
  height: 3rem;
  margin: 15px;
  display: flex;
  margin-left: auto;
}
.portal-buttons > .button {
  display: inline-block;
  margin: 0 5px;
}
.portal-buttons > .button.inactive {
  cursor: default;
}
.portal-buttons > .toggle-wrapper {
  width: 60px;
  height: 30px;
}
.portal-buttons > .toggle-wrapper > .toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  padding: 2px;
  background-color: #CCC;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: background-color 0.1s ease-out;
  -moz-transition: background-color 0.1s ease-out;
  -ms-transition: background-color 0.1s ease-out;
  transition: background-color 0.1s ease-out;
}
.portal-buttons > .toggle-wrapper > .toggle > .background {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.portal-buttons > .toggle-wrapper > .toggle > .background > .handle {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #FFF;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.portal-buttons > .toggle-wrapper.true > .toggle {
  background-color: #60BD68;
}
.portal-buttons > .toggle-wrapper.false > .toggle {
  background-color: #F15854;
}
.portal-buttons > .toggle-wrapper.true > .toggle > .background > .handle {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.portal-buttons > .toggle-wrapper.false > .toggle > .background > .handle {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
