/* lg breakpoint */

@media (min-width: 992px) {
  .rounded-lg-no-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* md and down: remove bottom corners */

@media (max-width: 991.98px) {
  .rounded-md-no-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* lg and up: remove left corners */

@media (min-width: 992px) {
  .rounded-lg-no-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}

/* md and down: remove top corners */

@media (max-width: 991.98px) {
  .rounded-md-no-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}

