.crm {
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
}

.crm__header {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 1.7rem;
    font-weight: 600;
}

.crm__selected {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 4px 0 0 0;
}

.crm__contactsWrapper {
  overflow-y: auto;
  padding-top: 6px;
}

.crm__section, .crm__section--active {
  width: calc(50% - 1.5rem);
  height: calc(100% - 1.5rem);
  overflow-y: hidden;
  margin: .75rem;
  display: inline-block;
  background-color: white;
  box-shadow: 0px 1px 4px 1px rgba(0,0,0,0.3);
  vertical-align: top;
}
.crm__sectionHeader {
  width: 100%;
  height: 80px;
  line-height: 80px;
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
  color: white;
  box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
  z-index: 1;
  position: relative;
}
.crm a.button__flatPrimary.small {
  border-radius: 0;
  height: 54px;
  line-height: 54px;
  width: 114px;
}

.crm a.button__flatPrimary.large {
  border-radius: 0;
  height: 54px;
  line-height: 54px;
  width: 250px;
}

.crm a.button__flatPrimary span,
.crm a.button__flatPrimary.import,
.crm a.button__flatPrimary.export {
  display: initial;
}

@media screen and (max-width: 991px) {
    .crm__header {
        font-size: 1.9rem;
        font-weight: 600;
        font-size: 2.3rem;
    }

    .crm__selected {
      font-size: 2.3rem;
    }

    .crm__contactsWrapper {
        height: calc(100% - 105px);
        width: 100%;
    }
    .crm__section, .crm__section--active {
      width: 100%;
      height: 100%;
      margin: 0;
      box-shadow: none;
      transition: all 200ms linear;
    }
    .crm__sectionHeader {
        height: 50px;
        line-height: 50px;
    }
    .crm__section:nth-child(2) {
        position: absolute;
        right: -100%;
        transition: all 200ms linear;
        text-align: center;
    }
    .crm__section--active {
        right: 0;
        position: absolute;
    }
    .crm__backButton {
        position: absolute;
        line-height: 50px;
        font-size: 2.5rem;
        left: 18px;
    }
    .crm__section--active .users__editor {
        height: calc(100% - 100px);
    }

    .crm a.button__flatPrimary.small {
      border-radius: 0;
      height: 54px;
      line-height: 54px;
      width: 100px;
    }
    
    .crm a.button__flatPrimary.large {
      border-radius: 0;
      height: 54px;
      line-height: 54px;
      width: 100px;
    }

    .crm a.button__flatPrimary span,
    .crm a.button__flatPrimary.import,
    .crm a.button__flatPrimary.export  {
      display: none;
    }
}
