@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,900,700,500,100);
.img-rounded {
  border-radius: 8px!important;
}
.img-circle {
  border-radius: 50%!important;
}
.img-responsive {
  display: block;
  max-width: 100%;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 250ms ease;
  flex-shrink: 0;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border: none;
}
.btn input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.btn.nohover {
  cursor: initial!important;
}
.btn.shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn[disabled] {
  opacity: 0.2!important;
}
.btn[disabled]:hover {
  cursor: initial!important;
  background-color: sorry!important;
}
.btn .icon {
  display: flex;
  align-items: center;
}
.btn .icon svg {
  transition: all 250ms ease;
  height: 20px;
  width: 20px;
}
.btn .icon.emoji {
  width: 16px;
  height: 16px;
  font-size: 16px;
}
.btn .icon.emoji svg {
  width: 16px;
  height: 16px;
}
.btn.border-up {
  border-width: 2px;
}
.btn > div:nth-child(2) {
  margin-left: 5px;
}
.btn .label {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.btn .tooltip {
  display: none;
}
.btn.tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}
.btn.tooltip .tooltip {
  display: flex;
  position: absolute;
  left: 50%;
  z-index: 4;
  transition: all 250ms ease;
  background-color: black;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 5px 10px;
  margin: 0;
  border-radius: 30px;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transform: translate3d(-50%, -10px, 0);
  bottom: 110%;
}
.btn.tooltip-left:hover .tooltip {
  transform: translate3d(-5%, -50%, 0);
}
.btn.tooltip-left .tooltip {
  transform: translate3d(3%, -50%, 0);
  right: 100%;
  left: auto;
  top: 50%;
  bottom: auto;
}
.btn.tooltip-right:hover .tooltip {
  transform: translate3d(5%, -50%, 0);
}
.btn.tooltip-right .tooltip {
  transform: translate3d(-3%, -50%, 0);
  right: -100%;
  left: auto;
  top: 50%;
  bottom: auto;
}
.btn.tooltip-bottom .tooltip {
  bottom: auto;
  top: 110%;
  transform: translate3d(-50%, 10px, 0);
}
.btn.pulse {
  animation: pulse 2s infinite;
}
.btn.lg {
  padding: 11px;
}
.btn.lg .label {
  font-size: 18px;
  font-weight: 700;
}
.btn.lg svg {
  height: 22px;
  width: 22px;
}
.btn.xl {
  padding: 14px;
}
.btn.xl .label {
  font-size: 24px;
}
.btn.xl svg {
  height: 32px;
  width: 32px;
}
.btn.xs {
  padding: 4px;
}
.btn.xs .label {
  font-size: 10px;
}
.btn.xs svg {
  height: 12px;
  width: 12px;
}
.btn.sm {
  padding: 7px;
}
.btn.sm .label {
  font-size: 12px;
}
.btn.sm svg {
  height: 14px;
  width: 14px;
}
.btn.bordered-lighten {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn.bordered-lighten:not(.nohover).btn.bordered-lighten:hover {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn.transparency-bordered-primary {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
}
.btn.transparency-bordered-primary:not(.nohover).btn.transparency-bordered-primary:hover {
  color: #ffffff;
  border-color: #47c4d9;
  background-color: #47c4d9;
}
.btn.bordered-primary-transparency {
  background-color: rgba(71, 196, 217, 0.2);
  border: 1px solid rgba(71, 196, 217, 0.4);
  color: #47c4d9;
}
.btn.bordered-primary-transparency:not(.nohover).btn.bordered-primary-transparency:hover {
  border-color: #47c4d9;
  background-color: #47c4d9;
}
.btn.bordered-primary-transparency:not(.nohover).btn.bordered-primary-transparency:hover svg,
.btn.bordered-primary-transparency:not(.nohover).btn.bordered-primary-transparency:hover .label {
  color: #ffffff;
}
.btn.md {
  padding: 6px;
}
.btn.md .label {
  font-size: 14px;
}
.btn.md svg {
  height: 16px;
  width: 16px;
}
.btn.secondary-primary {
  background-color: transparent;
  color: #071c32;
}
.btn.secondary-primary svg {
  color: #071c32;
}
.btn.secondary-primary:not(.nohover).btn.secondary-primary:hover .icon,
.btn.secondary-primary:not(.nohover).btn.secondary-primary:hover .label,
.btn.secondary-primary:not(.nohover).btn.secondary-primary:hover svg {
  color: #47c4d9;
}
.btn.primary-faded {
  background-color: #e8f8fa;
}
.btn.primary-faded svg {
  color: #ffffff;
}
.btn.primary-faded:not(.nohover).btn.primary-faded:hover {
  background-color: #d7f2f7;
}
.btn.primary {
  color: #ffffff;
  background-color: #47c4d9;
}
.btn.primary.pulse {
  animation: pulseActiveColor 2s infinite;
}
.btn.primary svg,
.btn.primary .label {
  color: #ffffff;
}
.btn.primary:not(.nohover).btn.primary:hover {
  background-color: #32bdd5;
}
.btn.danger {
  background-color: rgba(231, 76, 60, 0.1);
}
.btn.danger svg,
.btn.danger .label {
  color: #e74c3c;
}
.btn.danger:not(.nohover).btn.danger:hover {
  background-color: rgba(231, 76, 60, 0.25);
}
.btn.error {
  background-color: #e74c3c;
}
.btn.error svg,
.btn.error .label {
  color: #ffffff;
}
.btn.error:not(.nohover).btn.error:hover {
  background-color: #e43725;
}
.btn.success {
  background-color: #17BF63;
}
.btn.success.pulse {
  animation: pulseCallSuccess 2s infinite;
}
.btn.success svg,
.btn.success .label {
  color: #ffffff;
}
.btn.success:not(.nohover).btn.success:hover {
  background-color: #14a857;
}
.btn.infos {
  background-color: #007bff;
}
.btn.infos svg,
.btn.infos .label {
  color: #ffffff;
}
.btn.infos:not(.nohover).btn.infos:hover {
  background-color: #006fe6;
}
.btn.warning {
  background-color: #ff6600;
}
.btn.warning svg,
.btn.warning .label {
  color: #ffffff;
}
.btn.warning:not(.nohover).btn.warning:hover {
  background-color: #e65c00;
}
.btn.secondary {
  background-color: #eeeeee;
  color: #071c32;
}
.btn.secondary svg,
.btn.secondary .label {
  color: #071c32;
}
.btn.secondary:not(.nohover).btn.secondary:hover {
  background-color: #e1e1e1;
}
.btn.darken {
  background-color: #121212;
}
.btn.darken svg,
.btn.darken .label {
  color: #ffffff;
}
.btn.darken:not(.nohover).btn.darken:hover {
  background-color: #050505;
}
.btn.darken-faded {
  background-color: rgba(18, 18, 18, 0.35);
}
.btn.darken-faded svg,
.btn.darken-faded .label {
  color: #ffffff;
}
.btn.darken-faded:not(.nohover).btn.darken-faded:hover {
  background-color: rgba(18, 18, 18, 0.55);
}
.btn.lighten {
  background-color: #fafafa;
}
.btn.lighten svg,
.btn.lighten .label {
  color: #000000;
}
.btn.lighten:not(.nohover).btn.lighten:hover {
  background-color: #ededed;
}
.btn.transparency svg,
.btn.transparency .label {
  color: #071c32;
}
.btn.transparency:not(.nohover).btn.transparency:hover {
  background-color: #eeeeee;
}
.btn.transparency.primary {
  background-color: transparent;
  color: #47c4d9;
}
.btn.transparency.primary svg,
.btn.transparency.primary .label {
  color: #47c4d9;
}
.btn.transparency.primary:not(.nohover).btn.transparency.primary:hover {
  background-color: rgba(71, 196, 217, 0.15);
}
.btn.transparency.secondary {
  background-color: transparent;
  color: #071c32;
}
.btn.transparency.secondary svg,
.btn.transparency.secondary .label {
  color: #071c32;
}
.btn.transparency.secondary:not(.nohover).btn.transparency.secondary:hover {
  background-color: rgba(7, 28, 50, 0.15);
}
.btn.transparency.error {
  background-color: transparent;
}
.btn.transparency.error svg,
.btn.transparency.error .label {
  color: #e74c3c;
}
.btn.transparency.error:not(.nohover).btn.transparency.error:hover {
  background-color: rgba(231, 76, 60, 0.2);
}
.btn.transparency.lighten {
  background-color: transparent;
}
.btn.transparency.lighten svg,
.btn.transparency.lighten .label {
  color: #ffffff;
}
.btn.transparency.lighten:not(.nohover).btn.transparency.lighten:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn.transparency.warning {
  background-color: transparent;
}
.btn.transparency.warning svg,
.btn.transparency.warning .label {
  color: #eb144c;
}
.btn.transparency.warning:not(.nohover).btn.transparency.warning:hover {
  background-color: rgba(235, 20, 76, 0.2);
}
.btn.transparency.success {
  background-color: transparent;
}
.btn.transparency.success svg,
.btn.transparency.success .label {
  color: #17BF63;
}
.btn.transparency.success:not(.nohover).btn.transparency.success:hover {
  background-color: rgba(23, 191, 99, 0.2);
}
.btn.transparency.infos {
  background-color: transparent;
}
.btn.transparency.infos svg,
.btn.transparency.infos .label {
  color: #47c4d9;
}
.btn.transparency.infos:not(.nohover).btn.transparency.infos:hover {
  background-color: rgba(71, 196, 217, 0.2);
}
.modal-overlay {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 250ms ease;
}
.modal .editUserForm .avatar {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .editUserForm .avatar img {
  border-radius: 50%;
  max-width: 120px;
}
.modal .edit-area-listing-item {
  background-color: #fafafb;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-top: 20px;
}
.modal .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: all 250ms ease;
  padding: 15px 20px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  flex-shrink: 0;
  border: none;
  appearance: none;
  --webkit-appearance: none;
}
.modal .button svg {
  width: 14px;
  height: 14px;
  margin-right: 10px;
}
.modal .button.sm {
  font-size: 12px;
}
.modal .button.xs {
  font-size: 10px;
}
.modal .button.large {
  font-size: 16px;
}
.modal .button.large svg {
  width: 16px;
  height: 16px;
}
.modal .button.transparent {
  color: #071c32;
}
.modal .button.transparent:hover {
  background-color: #eeeeee;
}
.modal .button.primary {
  background-color: #47c4d9;
  color: #ffffff;
}
.modal .button.primary:hover {
  background-color: #32bdd5;
}
.modal .button.danger {
  background-color: #e74c3c;
  color: #ffffff;
}
.modal .button.danger:hover {
  background-color: #e43725;
}
.modal .button.secondary {
  background-color: #eeeeee;
  color: #071c32;
}
.modal .button.secondary:hover {
  background-color: #e1e1e1;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal-overlay {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal-wrapper {
  transform: translateY(0);
}
.modal.active .modal-header {
  transform: translateY(0);
}
.modal.active .modal-header .icon svg {
  transform: rotate(90deg);
}
.modal-wrapper {
  display: flex;
  flex: 1;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  transform: translateY(-20px);
  margin: 0 auto;
  background-color: #ffffff;
  transition: all 250ms ease;
}
.modal-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  margin-top: 40px;
}
.modal-action .button {
  margin-right: 20px;
}
.modal-action .button:last-child {
  margin-right: 0;
}
.modal-content {
  margin-top: 40px;
  display: flex;
  flex: 1;
  flex-shrink: 0;
  flex-direction: column;
}
.modal-content .warning {
  padding: 20px;
  border-radius: 6px;
  border: 2px solid #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
}
.modal-content .warning p,
.modal-content .warning div.text {
  font-size: 18px;
  color: #000000;
  margin-bottom: 20px;
}
.modal-content p,
.modal-content div.text {
  font-size: 14px;
  color: #071c32;
  margin-bottom: 10px;
}
.modal-content p:last-child,
.modal-content div.text:last-child {
  margin-bottom: 0;
}
.modal-content .note span {
  padding: 5px 10px;
  background-color: #eeeeee;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
}
.modal-content.overflow {
  overflow: auto;
}
.modal-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
  margin: 20px auto 0;
  z-index: 2;
  transition: all 250ms ease;
  transform: translateY(-20px);
}
.modal-header .icon {
  width: 60px;
  height: 60px;
  transition: all 250ms ease;
  border-radius: 50%;
  cursor: pointer;
  color: #071c32;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header .icon:hover {
  background-color: #eeeeee;
}
.modal-header .icon svg {
  width: 32px;
  height: 32px;
  transition: all 250ms ease;
  transform: rotate(0deg);
}
.modal-header .title {
  color: #071c32;
  font-size: 24px;
  font-weight: bold;
  flex: 1;
  flex-shrink: 0;
}
.simple-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.simple-input input {
  color: #071c32;
  box-shadow: none;
  font-size: 14px;
  padding: 10px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 30px;
  border: 1px solid #E3E7ED;
  transition: 250ms ease all;
  background-color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}
.simple-input input::placeholder {
  color: rgba(7, 28, 50, 0.4);
}
.simple-input input::-ms-input-placeholder {
  color: rgba(7, 28, 50, 0.4);
}
.simple-input input::-webkit-input-placeholder {
  color: rgba(7, 28, 50, 0.4);
}
.simple-input input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.25);
  color: #000000;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}
.groups-input {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  flex: 1;
  justify-content: space-between;
}
@media only screen and (max-width: 675px) {
  .groups-input {
    flex-direction: column;
  }
}
.groups-input.flex-row {
  flex-direction: row;
}
.groups-input:last-child {
  margin-bottom: 0;
}
.groups-input .group-input {
  margin-bottom: 0;
  width: 48%;
  flex: none;
}
@media only screen and (max-width: 675px) {
  .groups-input .group-input {
    flex: 1;
    width: 100%;
    margin-bottom: 20px;
  }
}
.group-input {
  display: flex;
  flex: 1;
  flex-shrink: 0;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  transition: all 250ms ease;
}
.group-input .visibility {
  position: absolute;
  right: 10px;
  top: 9px;
}
.group-input:last-child {
  margin-bottom: 0;
}
.group-input input,
.group-input textarea {
  color: #071c32;
  box-shadow: none;
  font-size: 16px;
  padding: 10px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: 250ms ease all;
  background-color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}
@media screen and (min-width: 675px) {
  .group-input input,
  .group-input textarea {
    padding: calc(10px  +  2  * ((100vw -  675px ) / 225 ));
  }
}
@media screen and (min-width: 900px) {
  .group-input input,
  .group-input textarea {
    padding: 12px;
  }
}
.group-input input::placeholder,
.group-input textarea::placeholder {
  color: transparent;
}
.group-input input::-ms-input-placeholder,
.group-input textarea::-ms-input-placeholder {
  color: transparent;
}
.group-input input::-webkit-input-placeholder,
.group-input textarea::-webkit-input-placeholder {
  color: transparent;
}
.group-input input:focus,
.group-input textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.25);
  color: #000000;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}
.group-input input:not(.remove-label):focus ~ label:not(.error),
.group-input textarea:not(.remove-label):focus ~ label:not(.error),
.group-input input:not(.remove-label):valid ~ label:not(.error),
.group-input textarea:not(.remove-label):valid ~ label:not(.error),
.group-input input:not(.remove-label):not(:placeholder-shown) ~ label:not(.error),
.group-input textarea:not(.remove-label):not(:placeholder-shown) ~ label:not(.error) {
  top: -10px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  padding: 2px 10px;
  border-radius: 6px;
  transform: translateY(0);
}
.group-input input:focus ~ label:not(.error),
.group-input textarea:focus ~ label:not(.error) {
  top: -10px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  padding: 2px 10px;
  border-radius: 6px;
  transform: translateY(0);
}
.group-input input.error,
.group-input textarea.error {
  transform: translateY(0);
  border-color: #e74c3c;
}
.group-input input.error:focus ~ label,
.group-input textarea.error:focus ~ label,
.group-input input.error:valid ~ label,
.group-input textarea.error:valid ~ label {
  color: #e74c3c;
}
.group-input input[type="password"] {
  letter-spacing: 0.3em;
}
.group-input label {
  color: rgba(7, 28, 50, 0.6);
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 250ms ease;
}
.group-input label.error {
  color: #e74c3c;
  top: 110%;
  left: 0;
  font-size: 10px;
  transform: translateY(0);
}
.toggle-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.toggle-container .label {
  font-size: 16px;
  color: #071c32;
}
.toggle {
  position: relative;
  border: 2px solid #071c32;
  border-radius: 20px;
  -webkit-transition: border-color 0.6s ease-out;
  transition: border-color 0.6s ease-out;
  box-sizing: border-box;
  display: block;
  width: 65px;
  height: 30px;
}
.toggle.toggle-on {
  border-color: rgba(71, 196, 217, 0.6);
  -webkit-transition: all 0.5s 0.15s ease-out;
  transition: all 0.5s 0.15s ease-out;
}
.toggle.toggle-on .toggle-button {
  top: 3px;
  width: 55px;
  bottom: 3px;
  right: 3px;
  border-radius: 23px;
  background-color: #47c4d9;
  -webkit-transition: all .2s .1s, right .1s;
  transition: all .2s .1s, right .1s;
}
.toggle.toggle-on .toggle-text-on {
  color: #ffffff;
  -webkit-transition: color .3s .15s ;
  transition: color .3s .15s ;
}
.toggle.toggle-on .toggle-text-off {
  color: #071c32;
}
.toggle.toggle-on .glow-comp {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.toggle .toggle-button {
  position: absolute;
  top: 4px;
  width: 18px;
  bottom: 4px;
  right: 38px;
  background-color: #071c32;
  border-radius: 19px;
  cursor: pointer;
  -webkit-transition: all .3s .1s, width .1s, top .1s, bottom .1s;
  transition: all .3s .1s, width .1s, top .1s, bottom .1s;
}
.toggle .toggle-text-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  color: rgba(0, 0, 0, 0);
}
.toggle .toggle-text-off {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  cursor: pointer;
  color: #071c32;
}
.toggle .glow-comp {
  position: absolute;
  opacity: 0;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border-radius: 6px;
  background-color: rgba(75, 122, 141, 0.1);
  box-shadow: 0 0 12px rgba(75, 122, 141, 0.2);
  -webkit-transition: opacity 4.5s 1s;
  transition: opacity 4.5s 1s;
}
.radio-button {
  position: relative;
  cursor: pointer;
}
.radio-button input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.radio-button__input {
  opacity: 0;
  position: absolute;
  margin: 0;
}
.radio-button__control {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 20px;
  height: 20px;
  background-color: inherit;
  border: 2px solid rgba(7, 28, 50, 0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.radio-button .radio-button__input:checked + .radio-button__control:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #47c4d9;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.radio-button .radio-button__input:checked + .radio-button__control {
  border-color: #47c4d9;
}
.table {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.table-overflow {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: auto;
  margin: 0 -20px;
  padding: 0 20px;
}
.table .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.table .actions.flex-end {
  justify-content: flex-end;
}
.table .actions .btn.primary {
  padding: 10px 40px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.table .actions .btn.primary .label {
  font-size: 14px;
  font-weight: bold;
}
.table.users .table-container .flex-row {
  padding: 10px 0;
}
.tab-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.table-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.table-container.noflex {
  flex: none;
  min-height: initial;
}
.table-container.voicemail .flex-row {
  flex: 1;
}
.table-container.voicemail .flex-row.first {
  width: 30px;
  flex: none;
}
.table-container.third .flex-row {
  width: calc(33.33333333%);
}
.table-container .flex-table {
  display: flex;
  flex-flow: row wrap;
  transition: 0.5s;
}
.table-container .flex-table.fieldset {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #071c32;
  padding: 5px 10px;
  align-items: flex-start;
  display: flex;
  align-self: flex-start;
  border-radius: 6px;
  background-color: #F9F9F9;
}
.table-container .flex-table:hover:not(.search):not(.header) {
  background-color: rgba(0, 0, 0, 0.03);
}
.table-container .flex-table audio {
  width: 100%;
  height: 30px;
}
.table-container .flex-table.search .flex-row {
  padding: 0;
  border: none;
}
.table-container .flex-table.search .flex-row .select span {
  font-size: 14px;
}
.table-container .flex-table.header .flex-row {
  font-size: 12px;
  color: rgba(7, 28, 50, 0.4);
  border-color: #d9d9d9;
}
.table-container .flex-row {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 20px 0;
  border-bottom: solid 1px #d9d9d9;
  font-size: 14px;
}
.table-container .flex-row .simple-input {
  width: 90%;
}
.table-container .flex-row .simple-input input {
  width: 100%;
}
.table-container .flex-row.two-col {
  flex-grow: 2;
}
.table-container .flex-row .bullet {
  display: flex;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #DDD;
}
.table-container .flex-row .bullet.active {
  background-color: #2ecc71;
}
.table-container .flex-row.flex-end {
  justify-content: flex-end;
}
.table-container .flex-row.active {
  color: #47c4d9;
}
.table-container .flex-row.bold {
  font-weight: bold;
}
.table-container .rowspan {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
}
.table-container .column {
  display: flex;
  flex-flow: column wrap;
  width: 75%;
  padding: 0;
}
.table-container .column .flex-row {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: solid 1px #d9d9d9;
}
.table-container .column .flex-row:hover {
  background: #f5f5f5;
  transition: 500ms;
}
.table-container .flex-cell {
  width: calc(33.33333333%);
  text-align: center;
  padding: 0.5em 0.5em;
  border-right: solid 1px #d9d9d9;
}
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  user-select: none;
  width: 150px;
}
.chosen-container * {
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.0015);
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100% 100%);
}
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  clip-path: none;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #071c32;
}
.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}
/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0, 0, 0, 0.001);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #071c32;
  font-size: 16px;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('../images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 8px;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../images/chosen-sprite.png') no-repeat 0px 2px;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(100% 100%);
}
/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #47c4d9;
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 6px;
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  width: 100%;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #071c32;
  font-size: 16px;
  line-height: normal;
  border-radius: 0;
  width: 100%!important;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"]:focus {
  color: #000000;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  max-width: 100%;
  border-radius: 6px;
  background-color: #f9f9F9;
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.0005);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('../images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.003);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.003);
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.003);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}
/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url('../images/chosen-sprite@2x.png') !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
.primary-nav {
  display: flex;
  flex-direction: column;
  background-color: #222f3e;
  width: 50px;
  z-index: 5;
  position: relative;
}
.primary-nav .logo {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
}
.primary-nav .logo img {
  max-width: 35px;
}
.primary-nav .menu-secondary {
  position: relative;
}
.primary-nav .menu-secondary .group-item {
  position: relative;
}
.primary-nav .menu-secondary .dropdown {
  top: auto;
  bottom: 62%;
  left: 100%;
  right: auto;
}
.primary-nav .menu-secondary .dropdown:after {
  content: none;
}
.primary-nav .menu-secondary .dropdown-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.primary-nav .menu-secondary .dropdown-container .divider {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  height: 1px;
}
.primary-nav .menu-secondary .dropdown-container-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 14px;
  transition: all 250ms ease;
  cursor: pointer;
  width: 100%;
}
.primary-nav .menu-secondary .dropdown-container-item .line {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}
.primary-nav .menu-secondary .dropdown-container-item .line .icon {
  margin-right: 8px;
  display: flex;
}
.primary-nav .menu-secondary .dropdown-container-item .line .icon svg {
  color: #071c32 !important;
  height: 12px;
  width: 12px;
}
.primary-nav .menu-secondary .dropdown-container-item .text {
  font-size: 14px;
  color: #071c32;
  margin: 0 20px 0 0px;
  white-space: normal;
  white-space: nowrap;
}
.primary-nav .menu-secondary .dropdown-container-item .label {
  font-size: 12px;
  color: rgba(7, 28, 50, 0.6);
  margin: 5px 0px 0 20px;
}
.primary-nav .menu,
.primary-nav .menu-secondary {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
}
.primary-nav .menu-secondary,
.primary-nav .menu-secondary-secondary {
  flex: none;
  margin-bottom: 5px;
}
.primary-nav .menu .item,
.primary-nav .menu-secondary .item {
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.primary-nav .menu .item.nomargin,
.primary-nav .menu-secondary .item.nomargin {
  margin: 0;
}
.primary-nav .menu .item.pulse-call,
.primary-nav .menu-secondary .item.pulse-call {
  animation: pulseCallSuccess 1s infinite;
}
.primary-nav .menu .item.pulse-call svg,
.primary-nav .menu-secondary .item.pulse-call svg {
  color: #2ecc71 !important;
  animation: shakeTest 1.5s cubic-bezier(0.43, 0, 0.6, 0.4) infinite;
}
.primary-nav .menu .item:last-child,
.primary-nav .menu-secondary .item:last-child {
  margin-bottom: 0;
}
.primary-nav .menu .item > *,
.primary-nav .menu-secondary .item > * {
  display: flex;
}
.primary-nav .menu .item.active,
.primary-nav .menu-secondary .item.active {
  background-color: rgba(255, 255, 255, 0.1);
}
.primary-nav .menu .item.active svg,
.primary-nav .menu-secondary .item.active svg {
  color: #ffffff;
}
.primary-nav .menu .item:hover,
.primary-nav .menu-secondary .item:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.primary-nav .menu .item:hover .btn,
.primary-nav .menu-secondary .item:hover .btn {
  background-color: transparent!important;
}
.primary-nav .menu .item:hover svg,
.primary-nav .menu-secondary .item:hover svg {
  color: #ffffff;
}
.primary-nav .menu .item:hover:not(.active) .tooltip,
.primary-nav .menu-secondary .item:hover:not(.active) .tooltip {
  transform: translate(110%, -50%);
  opacity: 1;
  visibility: visible;
}
.primary-nav .menu .item svg,
.primary-nav .menu-secondary .item svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.primary-nav .menu .item .tooltip,
.primary-nav .menu-secondary .item .tooltip {
  position: absolute;
  left: auto;
  bottom: auto;
  right: 0.35rem;
  top: 50%;
  transform: translate(120%, -50%);
  z-index: 4;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.6rem;
  border-radius: 1.5rem;
  padding: 0 0.75rem;
  color: #071c32;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: all 250ms ease;
}
.primary-nav .dropdown {
  position: absolute;
  bottom: 105%;
  left: 0;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}
.primary-nav .dropdown:after {
  top: 100%;
  left: 16px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #ffffff;
  border-width: 5px;
  margin-left: -7px;
}
.primary-nav .dropdown-item {
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  cursor: pointer;
  transition: all 250ms ease;
  position: relative;
}
.primary-nav .dropdown-item .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  right: 10px;
  visibility: hidden;
  color: rgba(0, 0, 0, 0.6);
  transition: all 250ms ease;
}
.primary-nav .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.primary-nav .dropdown-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
}
.primary-nav .dropdown-item:last-child {
  border: none;
}
.primary-nav .dropdown-item .container {
  display: flex;
  flex-direction: column;
}
.primary-nav .dropdown-item .container .text {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
.primary-nav .dropdown-item .container .subtext {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  display: flex;
  flex-direction: column;
}
.primary-nav .dropdown-item .container .subtext ul {
  margin: 0 0 0 15px;
  padding: 0;
  list-style: disc;
  display: flex;
  flex-direction: column;
}
.primary-nav .dropdown-item .container .subtext ul li {
  margin: 0;
  padding: 0;
}
.primary-nav .dropdown-item .container .subtext ul li.complete {
  text-decoration: line-through;
}
.primary-nav .dropdown-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #eeeeee;
  border: 1px solid;
  border-color: #d6d6d6;
  box-shadow: 0 2px 4px rgba(238, 238, 238, 0.2);
}
.primary-nav .dropdown-item .icon svg {
  color: #000000;
  width: 18px;
  height: 18px;
}
.primary-nav .dropdown-item .icon.success {
  background-color: #2ecc71;
  border-color: #29b866;
  box-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
}
.primary-nav .dropdown-item .icon.success svg {
  color: #ffffff;
}
.primary-nav .dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#loading_messages,
#loading_phone,
#mv_waiting,
#music_upload_loading,
#waiting,
#loading_grp,
.inner_wait {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background-color: #ffffff;
  color: #071c32;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  align-self: flex-start;
  border-radius: 30px;
  position: absolute;
  top: 80px;
  right: 20px;
}
#groupes_msg_info_assoc_user.result_valid,
#download_result_voicemail.result_valid,
#voicemail_result_current_message.result_valid,
#groupes_msg_info_assoc_user.result_error,
#download_result_voicemail.result_error,
#voicemail_result_current_message.result_error {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
  align-self: flex-start;
  border-radius: 6px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}
#groupes_msg_info_assoc_user.result_valid,
#download_result_voicemail.result_valid,
#voicemail_result_current_message.result_valid {
  background-color: #d1f5e0;
  color: #2ecc71;
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.15);
}
#groupes_msg_info_assoc_user.result_error,
#download_result_voicemail.result_error,
#voicemail_result_current_message.result_error {
  background-color: rgba(231, 76, 60, 0.4);
  color: #e74c3c;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.15);
}
#main .desktop {
  display: flex;
}
@media only screen and (max-width: 675px) {
  #main .desktop {
    display: none;
  }
}
#main .mobile {
  display: none;
}
@media only screen and (max-width: 675px) {
  #main .mobile {
    display: flex;
  }
}
.modal-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #ffffff;
  transition: transform 250ms ease;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-menu-header {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.modal-menu-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px 0 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.modal-menu-footer a {
  color: #000000;
}
.modal-menu-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: auto;
}
.modal-menu-container ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.modal-menu-container ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 250ms ease;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
}
.modal-menu-container ul li a {
  flex: 1;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
}
.modal-menu-container ul li a .icon {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #071c32;
}
.modal-menu-container ul li a .icon svg {
  height: 18px;
  width: 18px;
}
.modal-menu-container ul li a .label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  color: #071c32;
}
.modal-menu-container ul li:hover {
  background-color: rgba(71, 196, 217, 0.15);
}
.modal-menu-container ul li.active {
  background-color: #47c4d9;
}
.modal-menu-container ul li.active .icon svg {
  color: #ffffff;
}
.modal-menu-container ul li.active .label {
  color: #ffffff;
  font-weight: bold;
}
.modal-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.elipse-container {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.elipse-container .elipse-left-menu {
  display: flex;
  flex-direction: column;
  width: 250px;
  background-color: #ffffff;
  min-height: 0;
  min-width: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.elipse-container .elipse-left-menu--header {
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.elipse-container .elipse-left-menu--header .logo {
  display: flex;
  align-items: center;
  flex: 1;
}
.elipse-container .elipse-left-menu--header .logo img {
  max-width: 120px;
  width: 100%;
  display: block;
}
.elipse-container .elipse-left-menu--header .lang {
  display: flex;
  flex-direction: row;
  position: relative;
}
.elipse-container .elipse-left-menu--header .lang .selected {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.elipse-container .elipse-left-menu--header .lang .selected span {
  font-size: 12px;
  color: #071c32;
  font-weight: bold;
}
.elipse-container .elipse-left-menu--header .lang .selected .icon {
  display: flex;
  align-items: center;
}
.elipse-container .elipse-left-menu--header .lang .selected .icon svg {
  color: #071c32;
  width: 14px;
  height: 14px;
}
.elipse-container .elipse-left-menu--welcome {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding: 0 20px;
}
.elipse-container .elipse-left-menu--welcome .title {
  font-size: 18px;
  color: #071c32;
  font-weight: 600;
  margin-bottom: 10px;
}
.elipse-container .elipse-left-menu--welcome .user-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.elipse-container .elipse-left-menu--welcome .user-container .avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  border-radius: 50%;
}
.elipse-container .elipse-left-menu--welcome .user-container .avatar img {
  display: block;
  border-radius: 50%;
}
.elipse-container .elipse-left-menu--welcome .user-container .name {
  font-size: 14px;
  color: #071c32;
  font-weight: 500;
}
.elipse-container .elipse-left-menu--menu {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: auto;
}
.elipse-container .elipse-left-menu--menu ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.elipse-container .elipse-left-menu--menu ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 250ms ease;
  cursor: pointer;
}
.elipse-container .elipse-left-menu--menu ul li a {
  flex: 1;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.elipse-container .elipse-left-menu--menu ul li a .icon {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #071c32;
}
.elipse-container .elipse-left-menu--menu ul li a .icon svg {
  height: 18px;
  width: 18px;
}
.elipse-container .elipse-left-menu--menu ul li a .label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #071c32;
}
.elipse-container .elipse-left-menu--menu ul li:hover {
  background-color: rgba(71, 196, 217, 0.15);
}
.elipse-container .elipse-left-menu--menu ul li.active {
  background-color: #47c4d9;
}
.elipse-container .elipse-left-menu--menu ul li.active .icon svg {
  color: #ffffff;
}
.elipse-container .elipse-left-menu--menu ul li.active .label {
  color: #ffffff;
  font-weight: bold;
}
.elipse-container .elipse-left-menu--copyright {
  display: flex;
  padding: 0 20px 10px 20px;
  flex-direction: row;
}
.elipse-container .elipse-left-menu--copyright .label {
  display: flex;
  flex: 1;
  color: #071c32;
  font-size: 12px;
  font-weight: 400;
}
.elipse-container .elipse-left-menu--copyright .icon {
  display: flex;
  align-items: center;
}
.elipse-container .elipse-left-menu--copyright .icon a {
  color: #071c32;
}
.elipse-container .elipse-left-menu--copyright .icon svg {
  width: 22px;
  height: 22px;
}
.elipse-container .elipse-content {
  display: flex;
  flex: 1;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  width: 100%;
}
.elipse-container .elipse-content--content {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex: 1;
  min-height: 0;
  min-width: 0;
  flex-shrink: 0;
  flex-direction: row;
  overflow: auto;
}
@media only screen and (max-width: 675px) {
  .elipse-container .elipse-content--content {
    flex-direction: column;
    flex: initial;
  }
}
.elipse-container .elipse-content--container {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-shrink: 0;
  min-height: 0;
  min-width: 0;
}
@media only screen and (max-width: 675px) {
  .elipse-container .elipse-content--container {
    flex: inherit;
    min-height: auto;
    min-width: auto;
    flex-shrink: 0;
  }
}
.elipse-container .elipse-content--container-side-panel {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  flex-shrink: 0;
}
@media only screen and (max-width: 675px) {
  .elipse-container .elipse-content--container-side-panel {
    margin-left: 0;
  }
}
.elipse-container .elipse-content--container-side-panel-container {
  border-radius: 30px 0 30px 0;
  background-color: #47c4d9;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
}
.elipse-container .elipse-content--container-side-panel-container .item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.elipse-container .elipse-content--container-side-panel-container .item:last-child {
  margin-bottom: 0;
}
.elipse-container .elipse-content--container-side-panel-container .item span {
  color: #ffffff;
}
.elipse-container .elipse-content--container-side-panel-container .item span.bold {
  font-weight: bold;
}
.elipse-container .elipse-content--container .form {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.elipse-container .elipse-content--container .form form {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.elipse-container .elipse-content--container .form form .action {
  display: flex;
  justify-content: flex-end;
}
.elipse-container .elipse-content--container .form form .action .btn {
  padding: 10px 40px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.elipse-container .elipse-content--container .form form .action .btn .label {
  font-size: 14px;
  font-weight: bold;
}
.elipse-container .elipse-content--container--title {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  color: #071c32;
  margin-bottom: 20px;
  font-weight: 400;
}
.elipse-container .elipse-content--container--title.space-between {
  justify-content: space-between;
}
.elipse-container .elipse-content--container--title .actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.elipse-container .elipse-content--container--title .actions .select {
  margin-left: 10px;
}
.elipse-container .elipse-content--container--title .actions > .label {
  font-size: 14px;
  font-weight: normal;
  color: #071c32;
}
.elipse-container .elipse-content--container--title .actions .btn {
  margin-right: 10px;
}
.elipse-container .elipse-content--container--title .actions .btn:last-child {
  margin-right: 0;
}
.elipse-container .elipse-content--container--title .separator {
  width: 1px;
  height: 20px;
  background-color: #979797;
  transform: rotate(20deg);
  margin: 0 10px;
}
.elipse-container .elipse-content--container--title .label {
  display: flex;
  font-size: 14px;
  font-weight: bold;
  align-items: center;
}
.elipse-container .elipse-content--container--title .label svg {
  margin-right: 5px;
}
.elipse-container .elipse-content--container--title.add-margin-top {
  margin-top: 40px;
}
.elipse-container .elipse-content--header {
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  background-color: #ffffff;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.elipse-container .elipse-content--header-mobile {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.elipse-container .elipse-content--header-mobile .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.elipse-container .elipse-content--header-mobile .container > .icon {
  margin-right: 10px;
}
.elipse-container .elipse-content--header-mobile .logo {
  max-width: 100px;
}
.elipse-container .elipse-content--header-mobile .logo img {
  max-width: 100%;
  display: block;
}
.elipse-container .elipse-content--header > div {
  margin: 0 10px;
}
.elipse-container .elipse-content--header .separator {
  width: 1px;
  height: 20px;
  background-color: #979797;
  transform: rotate(20deg);
}
.elipse-container .elipse-content--header .item {
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.elipse-container .elipse-content--header .item > .icon {
  cursor: pointer;
  color: #071c32;
}
.elipse-container .elipse-content--header .item > .icon.active {
  color: #47c4d9;
}
form.call {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
form.call input {
  height: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0 10px;
  color: #071c32;
  border-radius: 16px;
  border: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}
form.call input::placeholder {
  color: rgba(7, 28, 50, 0.6);
}
form.call button {
  appearance: none;
  border: none;
  box-shadow: none;
  background-color: #47c4d9;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-left: -20px;
  justify-content: center;
}
form.call button .icon {
  color: #ffffff;
}
form.call button .icon svg {
  width: 20px;
  height: 20px;
}
.code-creator {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.code-creator-generator {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.code-creator-generator .item {
  display: flex;
  flex-direction: column;
}
.code-creator-generator .item .label {
  font-size: 12px;
  color: #071c32;
  font-weight: bold;
}
.code-creator-generator .item .infos {
  font-size: 14px;
  color: #071c32;
  font-weight: 400;
}
.code-creator .action {
  display: flex;
}
.code-creator .action .btn {
  padding: 10px 40px;
}
.code-creator .action .btn .label {
  font-size: 14px;
  font-weight: bold;
}
.tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.tabs .tab {
  font-size: 14px;
  color: #071c32;
  font-weight: 500;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 250ms ease;
}
.tabs .tab a {
  color: #071c32;
}
.tabs .tab:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.tabs .tab:last-child {
  margin-right: 0;
}
.tabs .tab.active,
.tabs .tab.current {
  color: #47c4d9;
  font-weight: bold;
  background-color: rgba(71, 196, 217, 0.2);
}
.half-actions {
  margin-top: 40px;
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 675px) {
  .half-actions {
    max-width: 100%;
  }
}
.half-actions.btn-uniform .toggle-container > .label {
  max-width: 50%;
  flex: 1;
}
.half-actions.btn-uniform .line-button > .label {
  max-width: 50%;
  flex: 1;
}
.half-actions.btn-uniform .line-button .select {
  flex: 1;
}
.half-actions.btn-uniform .line-button .select .selected span {
  flex: 1;
}
.half-actions form .btn.primary {
  padding: 10px 40px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.half-actions form .btn.primary .label {
  font-size: 14px;
  font-weight: bold;
}
.pagination {
  display: flex;
  flex-direction: row;
}
.pagination > div {
  margin-right: 5px;
}
.pagination > div:last-child {
  margin-right: 0;
}
.pagination .icon svg {
  width: 16px;
  height: 16px;
}
.pagination .icon svg,
.pagination .page {
  color: rgba(7, 28, 50, 0.6);
  transition: all 250ms ease;
}
.pagination .icon svg:hover,
.pagination .page:hover {
  color: #071c32;
}
.pagination .page {
  font-size: 12px;
}
.pagination .page.active {
  font-weight: bold;
  color: #071c32;
}
.select {
  position: relative;
}
.select.active .selected .icon {
  transform: rotate(90deg);
}
.select .selected {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  color: rgba(7, 28, 50, 0.4);
  padding: 10px 13px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 250ms ease;
  border-radius: 5px;
  outline: 0;
}
.select .selected span,
.select .selected .icon {
  display: flex;
  align-items: center;
  transition: all 250ms ease;
}
.select .selected .icon {
  margin-left: 10px;
}
.select .selected .icon svg {
  height: 14px;
  width: 14px;
}
.select .selected:hover {
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.small-tabs {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.small-tabs .tab {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(7, 28, 50, 0.6);
  transition: all 250ms ease;
  cursor: pointer;
  position: relative;
  padding-bottom: 10px;
}
.small-tabs .tab:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(71, 196, 217, 0.4);
  transition: all 250ms ease;
}
.small-tabs .tab:hover:after {
  width: 100%;
}
.small-tabs .tab.active {
  font-weight: bold;
  color: #071c32;
}
.small-tabs .tab.active:after {
  width: 100%;
}
.small-tabs .tab:last-child {
  margin-right: 0;
}
.line-button {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}
.line-button > .label {
  font-size: 16px;
  font-weight: normal;
  color: #071c32;
}
.line-select {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}
.line-select .line-select {
  margin-bottom: 0;
}
.line-select .chosen-container {
  margin-right: 10px;
}
.line-select > span {
  margin-right: 10px;
}
.line-select > span:last-child {
  margin-right: 0;
}
.line-select > .label {
  font-size: 16px;
  font-weight: normal;
  color: #071c32;
}
.dropdown {
  position: absolute;
  top: 100%;
  right: 0px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  transform: translateY(10px);
  font-size: 14px;
}
.dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.dropdown-container {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.dropdown-container-overflow {
  display: flex;
  flex-direction: column;
  overflow: auto;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.dropdown-container-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}
.dropdown-container-item {
  display: flex;
  flex-direction: row;
  padding: 5px 10px;
  transition: all 250ms ease;
  cursor: pointer;
  align-items: center;
}
.dropdown-container-item.delete:hover {
  background-color: rgba(231, 76, 60, 0.2);
}
.dropdown-container-item.delete .text {
  color: #e74c3c;
}
.dropdown-container-item.delete .icon svg {
  color: #e74c3c;
}
.dropdown-container-item.active {
  background-color: #eeeeee;
}
.dropdown-container-item.active .text {
  font-weight: bold;
}
.dropdown-container-item.active .icon-checked {
  display: flex;
}
.dropdown-container-item:first-child {
  border-radius: 6px 6px 0 0;
}
.dropdown-container-item:last-child {
  border-radius: 0 0 6px 6px;
}
.dropdown-container-item:hover {
  background-color: #FAFAFA;
}
.dropdown-container-item .icon {
  margin-right: 8px;
  display: flex;
}
.dropdown-container-item .icon svg {
  color: #071c32;
  width: 12px;
  height: 12px;
}
.dropdown-container-item .text {
  flex: 1;
  min-height: 0;
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #071c32;
  font-weight: 400;
}
.dropdown-container-item .text .status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 5px;
  border: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.subtitle {
  font-size: 12px;
  font-weight: bold;
  color: rgba(7, 28, 50, 0.6);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.line {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.line.column {
  flex-direction: column;
}
.line.ac {
  align-items: center;
}
.line.jc {
  justify-content: center;
}
.line.button .btn {
  margin-right: 20px;
}
.line.button .btn:last-child {
  margin-right: 0;
}
.time-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.time-selector > span {
  margin-right: 10px;
}
.time-selector .wrap-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.time-selector .wrap-selector .select {
  margin-right: 10px;
}
.type-selector {
  display: flex;
  flex-direction: column;
}
.type-item {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
}
.type-item:last-child {
  margin-bottom: 0;
}
.type-item .line-item {
  display: flex;
  flex-direction: row;
}
.type-item .line-item .label {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
}
.type-item .line-item .label > span {
  font-size: 12px;
  font-weight: bold;
  color: #071c32;
  padding-left: 30px;
}
.type-item .type-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.list-day {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.list-day .day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.list-day .day:last-child {
  margin-right: 0;
}
.list-day .day:hover .icon {
  border-color: rgba(71, 196, 217, 0.15);
  background-color: rgba(71, 196, 217, 0.1);
}
.list-day .day:hover .icon svg {
  color: #47c4d9;
}
.list-day .day.active .icon {
  border-color: #47c4d9;
  background-color: #47c4d9;
}
.list-day .day.active .icon svg {
  color: #ffffff;
}
.list-day .day .label {
  font-size: 12px;
  color: #071c32;
  font-weight: bold;
  margin-bottom: 5px;
}
.list-day .day .icon {
  width: 35px;
  height: 35px;
  border: 1px solid #E3E7ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}
.list-day .day .icon svg {
  color: rgba(0, 0, 0, 0.3);
  width: 14px;
  height: 14px;
}
.select-number {
  display: flex;
  flex-direction: column;
}
.select-number .select .dropdown {
  white-space: nowrap;
  right: auto;
  left: 0;
}
.select-number .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
}
.select-number .item:last-child {
  margin-right: 0;
}
.select-number .item:hover .icon {
  border-color: rgba(71, 196, 217, 0.15);
  background-color: rgba(71, 196, 217, 0.1);
}
.select-number .item:hover .icon svg {
  color: #47c4d9;
}
.select-number .item.active .icon {
  border-color: #47c4d9;
  background-color: #47c4d9;
}
.select-number .item.active .icon svg {
  color: #ffffff;
}
.select-number .item .label {
  font-size: 12px;
  color: #071c32;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 5px;
}
.select-number .item .icon {
  width: 35px;
  height: 35px;
  border: 1px solid #E3E7ED;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 250ms ease;
}
.select-number .item .icon svg {
  color: rgba(0, 0, 0, 0.3);
  width: 14px;
  height: 14px;
}
.list-provider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
}
.list-provider ul {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}
.list-provider ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.list-provider ul li strong {
  display: flex;
  flex: 1;
  font-size: 14px;
  overflow: hidden;
}
.list-provider ul li strong span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-provider ul li a {
  color: #47c4d9;
  padding: 5px;
  transition: all 250ms ease;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
}
.list-provider ul li a:hover {
  background-color: #eeeeee;
}
.list-provider ul li a:last-child {
  margin-left: 10px;
  color: #e74c3c;
}
.list-provider ul li a:last-child:hover {
  background-color: rgba(231, 76, 60, 0.2);
}
.list-provider-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.list-provider-item:last-child {
  border: none;
}
.list-provider-add {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
  padding: 10px;
  border: 1px solid rgba(46, 204, 113, 0.15);
  background-color: rgba(46, 204, 113, 0.05);
  border-radius: 6px;
  margin-top: 10px;
  max-width: 400px;
  justify-content: space-between;
  width: 100%;
}
.list-provider-add > .label {
  font-size: 14px;
  margin-right: 20px;
}
.list-provider--title {
  font-size: 16px;
  font-weight: bold;
  color: #071c32;
}
.list-provider--subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(7, 28, 50, 0.6);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.list-provider--subtitle .select {
  margin-left: 10px;
}
.list-provider-content {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.list-provider-form {
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
}
@media only screen and (max-width: 675px) {
  .list-provider-form {
    max-width: 100%;
  }
}
@media only screen and (min-width: 676px) and (max-width: 1024px) {
  .list-provider-form {
    max-width: 100%;
  }
}
.list-provider--item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.list-provider--item--account {
  color: #071c32;
  font-weight: bold;
  font-size: 14px;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  width: 100%;
}
.list-provider--item--actions {
  display: flex;
  flex-direction: row;
}
.list-provider--item--actions .btn {
  margin-right: 10px;
}
.list-provider--item--actions .btn:last-child {
  margin-right: 0;
}
.selected-item {
  margin-bottom: 40px;
}
.selected-item > .label {
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #071c32;
}
.selected-item > .label span {
  margin-left: 10px;
  background-color: #F9F9F9;
  padding: 2px 5px;
  text-transform: uppercase;
  font-size: 10px;
  border-radius: 30px;
  font-weight: bold;
}
.selected-item .line-button {
  justify-content: flex-start;
}
.selected-item .line-button .btn {
  margin-right: 20px;
}
.selected-item .line-button .btn:last-child {
  margin-right: 0;
}
.list-users-selected {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.list-users-selected .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 250ms ease;
}
.list-users-selected .item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.list-users-selected .item:last-child {
  border: none;
}
.list-users-selected .item .label {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
}
.list-users-selected .item .action {
  display: flex;
  flex-direction: row;
}
.list-users-selected .item .action .btn {
  margin-right: 10px;
}
.list-users-selected .item .action .btn:last-child {
  margin-right: 0;
}
pre {
  background: #f8f8f8;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important;
  padding: 6px;
  font-size: 12px;
  font-variant-ligatures: none;
  word-wrap: break-word;
  white-space: pre-wrap;
  tab-size: 4;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #333;
  margin: 0;
}
.code {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important;
  font-size: 12px;
  line-height: 12px;
  white-space: normal;
  color: #e01e5a;
  padding: 2px 3px 1px;
  font-variant-ligatures: none;
  tab-size: 4;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  border-radius: 3px;
}
.reset {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
}
.big-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  width: 500px;
  max-height: 400px;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 5;
  padding: 20px;
  opacity: 0;
  transition: all 250ms ease;
  visibility: hidden;
  transform: translateY(20px);
}
.big-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.big-dropdown__container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.big-dropdown__container--title {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.big-dropdown__container--item {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  color: #071c32;
  padding: 10px 10px;
  border-radius: 6px;
  transition: all 250ms ease;
}
.big-dropdown__container--item:hover .label,
.big-dropdown__container--item:hover .icon svg {
  color: #071c32;
}
.big-dropdown__container--item.active {
  background-color: rgba(0, 0, 0, 0.03);
}
.big-dropdown__container--item.active .label {
  font-weight: bold;
}
.big-dropdown__container--item.active .label,
.big-dropdown__container--item.active .icon svg {
  color: #071c32;
}
.big-dropdown__container--item .icon {
  display: flex;
  margin-right: 10px;
}
.big-dropdown__container--item .icon svg {
  width: 16px;
  height: 16px;
  transition: all 250ms ease;
}
.big-dropdown__container--item .label {
  display: flex;
  transition: all 250ms ease;
  font-size: 14px;
}
.big-dropdown__container--item .icon svg,
.big-dropdown__container--item .label {
  color: rgba(7, 28, 50, 0.4);
}
.big-dropdown__container--wrapper {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.big-dropdown__container--panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: auto;
  padding: 0px 20px 0 0;
  margin-right: -20px;
}
.big-dropdown__container--panel.left {
  flex: initial;
  padding: 0 10px 0 0;
  margin: 0;
  margin-right: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.big-dropdown__container--panel--item {
  display: flex;
  flex-direction: column;
}
.big-dropdown__container--panel--item .text {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  color: #071c32;
  margin-bottom: 10px;
}
.big-dropdown__container--panel--item .text a {
  color: #071c32;
  text-decoration: underline;
}
.big-dropdown__container--panel--item .text:last-child {
  margin-bottom: 0;
}
.big-dropdown__container--panel .subtitle {
  font-size: 16px;
}
.list-help {
  display: flex;
  flex-direction: column;
}
.list-help-item {
  padding: 10px 0 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.list-help-item:first-child {
  padding-top: 0;
}
.list-help-item:last-child {
  border: none;
}
.list-help-item--title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
  color: #071c32;
}
.list-help-item--desc {
  font-size: 12px;
  color: rgba(7, 28, 50, 0.7);
  margin-bottom: 10px;
  font-weight: 400;
}
.list-help-item--desc:last-child {
  margin-bottom: 0;
}
.login {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: auto;
}
.login .group-input .label {
  font-size: 12px;
  color: rgba(7, 28, 50, 0.4);
  margin-bottom: 5px;
}
.login .actions {
  display: flex;
  justify-content: flex-end;
}
.login-wrapper {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  flex: 1;
  flex-shrink: 0;
}
@media only screen and (max-width: 675px) {
  .login-wrapper {
    padding: 0 20px;
  }
}
.login-wrapper > form {
  display: flex;
  flex-direction: column;
}
.login-wrapper > form > .logo {
  max-width: 100px;
  margin-bottom: 50px;
}
.login-wrapper > form > .logo img {
  max-width: 100%;
  display: block;
}
.login-title {
  font-size: 32px;
  font-weight: bold;
}
.login-container {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-shrink: 0;
}
.login .footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 10px;
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.05);
}
.login .footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.login .footer .copyright {
  font-size: 14px;
  color: #000000;
}
@media only screen and (max-width: 675px) {
  .login .footer .copyright {
    margin-right: 10px;
  }
}
.login .footer .powered-by {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.login .footer .powered-by .label {
  font-size: 14px;
  color: #000000;
  margin-right: 10px;
}
@media only screen and (max-width: 675px) {
  .login .footer .powered-by .label {
    display: none;
  }
}
.login .footer .powered-by .logo {
  max-width: 150px;
  display: flex;
  align-items: center;
}
.login .footer .powered-by .logo a {
  display: block;
  max-width: 100%;
}
.login .footer .powered-by .logo a img {
  max-width: 100%;
}
body,
html {
  margin: 0;
  padding: 0;
}
body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #F5F9FA;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
@viewport {
  orientation: portrait;
}
::selection {
  background: #47c4d9;
  color: #ffffff;
}
::-moz-selection {
  background: #47c4d9;
  color: #ffffff;
}
*:before,
*:after,
* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  text-rendering: optimizeLegibility;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
body,
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: common-ligatures;
  -moz-osx-font-smoothing: grayscale;
}
input,
textarea {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
a,
i,
input,
textarea,
button,
div,
iframe,
span,
video,
audio {
  text-decoration: none;
  outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
span,
a,
button {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
html,
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-40 {
  margin-top: 40px;
}
.nomargin {
  margin: 0!important;
}
.nopadding {
  padding: 0!important;
}
.hidden {
  display: none!important;
}
.cursor {
  cursor: pointer;
}
.nocursor {
  cursor: inherit;
}
select {
  background-color: #ffffff;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5px;
  border-radius: 4px;
  outline: 0;
  transition: all 250ms ease;
  cursor: pointer;
}
select:hover {
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.number_picker {
  text-align: left;
}
.number_picker tr.time select {
  margin-right: 5px;
}
.number_picker tr.weekdays {
  font-size: 14px;
  vertical-align: top;
}
.number_picker tr.weekdays input {
  margin-right: 20px;
}
.number_picker tr.type {
  font-size: 14px;
  vertical-align: top;
}
.number_picker tr.type input[type=radio] {
  margin-left: 20px;
}
.number_picker tr.type input[type=radio]:first-child {
  margin-left: 0;
}
.number_picker tr th {
  vertical-align: top;
}
.number_picker td span[aid=current_account_id] {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  font-size: 12px;
  padding: 5px;
  border-radius: 4px;
  margin-right: 20px;
  display: inline-block;
  margin-top: 20px;
}
.number_picker td input[aid=current_external_number] {
  display: block;
  margin-top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
  border-radius: 4px;
}
.number_picker td a[aid=search_user_for_voice_mail],
.number_picker td a[aid=reset_user_for_voice_mail] {
  font-size: 12px;
  color: #47c4d9;
  text-decoration: underline;
}
.number_picker td a[aid=search_user_for_voice_mail]:hover,
.number_picker td a[aid=reset_user_for_voice_mail]:hover {
  text-decoration: none;
}
.number_picker .buttons td {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}
.number_picker .buttons button {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: #ffffff;
  background-color: #47c4d9;
  font-size: 14px;
  transition: all 250ms ease;
  border-radius: 30px;
  border: none;
  margin-right: 10px;
}
.number_picker .buttons button:hover {
  background-color: #29aec4;
}
.number_picker .buttons button:last-child {
  color: #000000;
  background-color: #ffffff;
}
.number_picker .buttons button:last-child:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.tableau {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  min-width: 400px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.tableau thead tr {
  background-color: #47c4d9;
  color: white;
  text-align: left;
  font-weight: bold;
}
.tableau thead tr.bg-white {
  background-color: #ffffff;
}
.tableau th,
.tableau td {
  padding: 12px 15px;
}
.tableau tbody tr {
  border-bottom: 1px solid #dddddd;
}
.tableau tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
.tableau tbody tr:last-of-type {
  border-bottom: 2px solid #47c4d9;
}
.tableau td,
.tableau tr {
  color: #000000;
}
.tableau td a,
.tableau tr a {
  color: #000000;
}
.tableau td a.EDIT,
.tableau tr a.EDIT {
  color: #47c4d9;
}
.tableau td a.DELETE,
.tableau tr a.DELETE {
  color: #e74c3c;
}
.tableau td a:hover,
.tableau tr a:hover {
  text-decoration: underline;
}
.tableau td a[_enabled=false],
.tableau tr a[_enabled=false] {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none!important;
}
.notification-item {
  padding: 10px 10px 16px 15px;
  text-align: left;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  transition: all 250ms ease;
  transform: translateX(-150%);
  overflow: hidden;
  background-color: #ffffff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 350px;
  width: 100%;
  z-index: 9999999;
}
.notification-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0 15px;
}
.notification-item-content .type {
  font-size: 14px;
  color: #071c32;
  font-weight: bold;
}
.notification-item-content .msg {
  font-size: 14px;
  color: #071c32;
  font-weight: bold;
}
.notification-item .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notification-item .icon svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
}
.notification-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  z-index: 2;
}
.notification-item .bar-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 250ms ease;
  z-index: 1;
}
.notification-item.anim-in {
  transform: translateX(0);
}
@media only screen and (max-width: 675px) {
  .notification-item {
    max-width: 100%;
    margin-bottom: 10px;
  }
}
.notification-item .close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 250ms ease;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.notification-item .close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.notification-item .close svg {
  color: rgba(7, 28, 50, 0.6);
  width: 16px;
  height: 16px;
}
.notification-item.error .icon {
  background-color: #e74c3c;
}
.notification-item.error .icon.success {
  display: none;
}
.notification-item.error .icon.error {
  display: flex;
}
.notification-item.error .icon svg {
  transform: scale(1.3);
}
.notification-item.error:before {
  background-color: #e74c3c;
}
.notification-item.success .icon {
  background-color: #2ecc71;
}
.notification-item.success .icon.success {
  display: flex;
}
.notification-item.success .icon.error {
  display: none;
}
.notification-item.success:before {
  background-color: #2ecc71;
}
.notification-item.infos .icon {
  background-color: #007bff;
}
.notification-item.infos .icon svg {
  transform: scale(1.3);
}
.notification-item.infos:before {
  background-color: #007bff;
}
.badge {
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 3px 10px;
  background-color: #eeeeee;
  color: #071c32;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}
.badge.info {
  padding: 0;
}
.badge.info:not(:empty) {
  padding: 3px 10px;
  text-transform: none;
  background-color: rgba(0, 123, 255, 0.15);
  color: #007bff;
  border-radius: 4px;
}
.upload_border {
    border:0px;
}
.upload_bar {
    background-color:#47c4d9;
    height:25px;
}
#phone_content {
  display: flex;
  flex-direction: column;
}
#phone_content > h3 {
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 3px 10px;
  background-color: #eeeeee;
  color: #071c32;
  font-weight: bold;
  display: flex;
  margin-top: 20px;
  align-items: flex-start;
  align-self: flex-start;
  width: auto;
  justify-self: flex-start;
}
#adxsync_contact_paging li span {
    background-color: rgba(71, 196, 217, 1.0);
}
#adxsync_contact_paging li a.page-link {
    background: rgba(71, 196, 217, 1.0);
    color:#ffffff;
}
#adxsync_contact_paging li.active span {
    background-color: rgba(71, 196, 217, 0.40);
    color:#000000;
}
