.d2l-flip-btn {
  display: inline-block;
  vertical-align: top;
  line-height: 1.5;
  padding: 8px 20px;
  margin: 4px 0;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

[class^="d2l-"][class*=" ratio_"]:before {
  content: '';
  display: block;
}
[class^="d2l-"].ratio_2x1:before {
  padding-top: 50%;
}
[class^="d2l-"].ratio_3x2:before {
  padding-top: 66.6666%;
}
[class^="d2l-"].ratio_4x3:before {
  padding-top: 75%;
}
[class^="d2l-"].ratio_1x1:before {
  padding-top: 100%;
}
[class^="d2l-"].ratio_3x4:before {
  padding-top: 125%;
}
[class^="d2l-"].ratio_2x3:before {
  padding-top: 150%;
}
[class^="d2l-"].ratio_1x2:before {
  padding-top: 200%;
}
[class^="d2l-"] [class^="d2l-"][class*=" ratio_"] > [class$="-h"],
[class^="d2l-"] [class^="d2l-"][class*=" ratio_"] > [class*="-h "] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.easing_easeInOutExpo .d2l-flipbox-hh,
.easing_easeInOutExpo .d2l-flipbox-hhh,
.easing_easeInOutExpo .d2l-flipbox-front,
.easing_easeInOutExpo .d2l-flipbox-back,
.easing_easeInOutExpo .d2l-flipbox-xflank,
.easing_easeInOutExpo .d2l-flipbox-yflank {
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.easing_easeInOutCirc .d2l-flipbox-hh,
.easing_easeInOutCirc .d2l-flipbox-hhh,
.easing_easeInOutCirc .d2l-flipbox-front,
.easing_easeInOutCirc .d2l-flipbox-back,
.easing_easeInOutCirc .d2l-flipbox-xflank,
.easing_easeInOutCirc .d2l-flipbox-yflank {
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.easing_easeOutBack .d2l-flipbox-hh,
.easing_easeOutBack .d2l-flipbox-hhh,
.easing_easeOutBack .d2l-flipbox-front,
.easing_easeOutBack .d2l-flipbox-back,
.easing_easeOutBack .d2l-flipbox-xflank,
.easing_easeOutBack .d2l-flipbox-yflank{
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animated_bounceIn,
.animated_fadeIn,
.animated_fadeOut,
.animated_flipInX,
.animated_flipOutX,
.animated_zoomIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated_bounceIn,
.animated_flipInX,
.animated_flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animated_bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animated_fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animated_fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animated_flipInX {
  transform-origin: 50% 0%;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    opacity: 0;
  }
}
.animated_flipOutX {
  transform-origin: 50% 100%;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animated_zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}


/*Relevant links:
http://css3.bradshawenterprises.com/flip/
http://davidwalsh.name/css-flip/
*/
.d2l-flipbox {
  display: inline-block;
  position: relative;
}
.d2l-flipbox-h {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-property: none;
  transition-property: none;
}
.d2l-flipbox-hh,
.d2l-flipbox-hhh {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.d2l-flipbox-hh,
.d2l-flipbox-hhh,
.d2l-flipbox-front,
.d2l-flipbox-back,
.d2l-flipbox-xflank,
.d2l-flipbox-yflank {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
}
.d2l-flipbox-front,
.d2l-flipbox-back {
  padding: 30px;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-color: #eee;
  border-style: solid;
  border-width: 0;
}
.d2l-flipbox-front-title,
.d2l-flipbox-back-title {
  line-height: 1.4;
  padding: 0 !important;
  margin: 0 0 12px !important;
}
.d2l-flipbox-front-desc,
.d2l-flipbox-back-desc {
  line-height: 1.5;
  margin: 0 0 20px !important;
}
.d2l-flipbox-front-image,
.d2l-flipbox-back-image {
  margin: 0 auto 22px;
}
.d2l-flipbox-front-image img,
.d2l-flipbox-back-image img {
  display: block;
}
.d2l-flipbox-front {
  position: relative;
  z-index: 1;
}
.d2l-flipbox-back,
.d2l-flipbox-xflank,
.d2l-flipbox-yflank {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-style: solid;
}
.d2l-flipbox.animation_cardflip.hover .d2l-flipbox-front {
  z-index: -1;
}
.d2l-flipbox.animation_cardflip.hover .d2l-flipbox-back {
  z-index: 1;
}
.d2l-flipbox.animation_cardflip.direction_n .d2l-flipbox-front {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.d2l-flipbox.animation_cardflip.direction_n .d2l-flipbox-back {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.d2l-flipbox.animation_cardflip.direction_n.hover .d2l-flipbox-front {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.d2l-flipbox.animation_cardflip.direction_n.hover .d2l-flipbox-back {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.d2l-flipbox.animation_cardflip.direction_ne .d2l-flipbox-hh {
  -webkit-transform: rotate3d(1, 1, 0, 0deg);
  transform: rotate3d(1, 1, 0, 0deg);
}
.d2l-flipbox.animation_cardflip.direction_ne .d2l-flipbox-back {
  -webkit-transform: rotate3d(1, 1, 0, -180deg);
  transform: rotate3d(1, 1, 0, -180deg);
}
.d2l-flipbox.animation_cardflip.direction_ne.hover .d2l-flipbox-hh {
  -webkit-transform: rotate3d(1, 1, 0, 180deg);
  transform: rotate3d(1, 1, 0, 180deg);
}
.d2l-flipbox.animation_cardflip.direction_e .d2l-flipbox-front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.d2l-flipbox.animation_cardflip.direction_e .d2l-flipbox-back {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.d2l-flipbox.animation_cardflip.direction_e.hover .d2l-flipbox-front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.d2l-flipbox.animation_cardflip.direction_e.hover .d2l-flipbox-back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.d2l-flipbox.animation_cardflip.direction_se .d2l-flipbox-hh,
.d2l-flipbox.animation_cardflip.direction_se .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, 1, 0, 0deg);
  transform: rotate3d(-1, 1, 0, 0deg);
}
.d2l-flipbox.animation_cardflip.direction_se .d2l-flipbox-back {
  -webkit-transform: rotate3d(-1, 1, 0, -180deg);
  transform: rotate3d(-1, 1, 0, -180deg);
}
.d2l-flipbox.animation_cardflip.direction_se.hover .d2l-flipbox-hh,
.d2l-flipbox.animation_cardflip.direction_se.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, 1, 0, 90deg);
  transform: rotate3d(-1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cardflip.direction_se.hover .d2l-flipbox-back {
  -webkit-transform: rotate3d(-1, 1, 0, -90deg);
  transform: rotate3d(-1, 1, 0, -90deg);
}
.d2l-flipbox.animation_cardflip.direction_s .d2l-flipbox-front {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.d2l-flipbox.animation_cardflip.direction_s .d2l-flipbox-back {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.d2l-flipbox.animation_cardflip.direction_s.hover .d2l-flipbox-front {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.d2l-flipbox.animation_cardflip.direction_s.hover .d2l-flipbox-back {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.d2l-flipbox.animation_cardflip.direction_sw .d2l-flipbox-hh,
.d2l-flipbox.animation_cardflip.direction_sw .d2l-flipbox-front {
  -webkit-transform: rotate3d(1, 1, 0, 0deg);
  transform: rotate3d(1, 1, 0, 0deg);
}
.d2l-flipbox.animation_cardflip.direction_sw .d2l-flipbox-back {
  -webkit-transform: rotate3d(1, 1, 0, 180deg);
  transform: rotate3d(1, 1, 0, 180deg);
}
.d2l-flipbox.animation_cardflip.direction_sw.hover .d2l-flipbox-hh,
.d2l-flipbox.animation_cardflip.direction_sw.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(1, 1, 0, -90deg);
  transform: rotate3d(1, 1, 0, -90deg);
}
.d2l-flipbox.animation_cardflip.direction_sw.hover .d2l-flipbox-back {
  -webkit-transform: rotate3d(1, 1, 0, 90deg);
  transform: rotate3d(1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cardflip.direction_w .d2l-flipbox-front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.d2l-flipbox.animation_cardflip.direction_w .d2l-flipbox-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.d2l-flipbox.animation_cardflip.direction_w.hover .d2l-flipbox-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.d2l-flipbox.animation_cardflip.direction_w.hover .d2l-flipbox-back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.d2l-flipbox.animation_cardflip.direction_nw .d2l-flipbox-hh,
.d2l-flipbox.animation_cardflip.direction_nw .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, 1, 0, 0deg);
  transform: rotate3d(-1, 1, 0, 0deg);
}
.d2l-flipbox.animation_cardflip.direction_nw .d2l-flipbox-back {
  -webkit-transform: rotate3d(-1, 1, 0, 180deg);
  transform: rotate3d(-1, 1, 0, 180deg);
}
.d2l-flipbox.animation_cardflip.direction_nw.hover .d2l-flipbox-hh,
.d2l-flipbox.animation_cardflip.direction_nw.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, 1, 0, -90deg);
  transform: rotate3d(-1, 1, 0, -90deg);
}
.d2l-flipbox.animation_cardflip.direction_nw.hover .d2l-flipbox-back {
  -webkit-transform: rotate3d(-1, 1, 0, 90deg);
  transform: rotate3d(-1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cubetilt.hover .d2l-flipbox-front {
  z-index: -1;
}
.d2l-flipbox.animation_cubetilt.hover .d2l-flipbox-back {
  z-index: 1;
}
.d2l-flipbox.animation_cubetilt.direction_n .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_n .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_n .d2l-flipbox-back {
  -webkit-transform: translateY(50%) rotateX(-90deg);
  transform: translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_n.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%);
  transform: rotateX(90deg) translateY(-50%);
}
.d2l-flipbox.animation_cubetilt.direction_e .d2l-flipbox-hh {
  -webkit-transform: rotateY(90deg) translateX(50%) rotateY(-90deg);
  transform: rotateY(90deg) translateX(50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_e .d2l-flipbox-front {
  -webkit-transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
  transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_e .d2l-flipbox-back {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_e.hover .d2l-flipbox-hh {
  -webkit-transform: rotateY(90deg) translateX(50%);
  transform: rotateY(90deg) translateX(50%);
}
.d2l-flipbox.animation_cubetilt.direction_s .d2l-flipbox-hh {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubetilt.direction_s .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_s .d2l-flipbox-back {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubetilt.direction_s.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(-90deg) translateY(50%);
  transform: rotateX(-90deg) translateY(50%);
}
.d2l-flipbox.animation_cubetilt.direction_w .d2l-flipbox-hh {
  -webkit-transform: rotateY(-90deg) translateX(-50%) rotateY(90deg);
  transform: rotateY(-90deg) translateX(-50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubetilt.direction_w .d2l-flipbox-front {
  -webkit-transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
  transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubetilt.direction_w .d2l-flipbox-back {
  -webkit-transform: translateX(50%) rotateY(90deg);
  transform: translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubetilt.direction_w.hover .d2l-flipbox-hh {
  -webkit-transform: rotateY(-90deg) translateX(-50%);
  transform: rotateY(-90deg) translateX(-50%);
}
.d2l-flipbox.animation_cubeflip.hover .d2l-flipbox-front {
  z-index: -1;
}
.d2l-flipbox.animation_cubeflip.hover .d2l-flipbox-back {
  z-index: 1;
}
.d2l-flipbox.animation_cubeflip.direction_n .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_n .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_n .d2l-flipbox-back {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_n .d2l-flipbox-xflank {
  -webkit-transform: translateY(50%) rotateX(-90deg);
  transform: translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_n.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne .d2l-flipbox-back {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(-90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne .d2l-flipbox-xflank {
  -webkit-transform: translateY(50%) rotateX(-90deg);
  transform: translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne .d2l-flipbox-yflank {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(1, 1, 0, 90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_ne.hover .d2l-flipbox-hhh {
  -webkit-transform: rotate3d(1, 1, 0, 90deg);
  transform: rotate3d(1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_e .d2l-flipbox-hh {
  -webkit-transform: rotateY(90deg) translateX(50%) rotateY(-90deg);
  transform: rotateY(90deg) translateX(50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_e .d2l-flipbox-front {
  -webkit-transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
  transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_e .d2l-flipbox-back {
  -webkit-transform: rotateY(90deg) translateX(50%) rotateY(90deg);
  transform: rotateY(90deg) translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_e .d2l-flipbox-yflank {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_e.hover .d2l-flipbox-hh {
  -webkit-transform: rotateY(90deg) translateX(50%) rotateY(90deg);
  transform: rotateY(90deg) translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se .d2l-flipbox-back {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se .d2l-flipbox-xflank {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se .d2l-flipbox-yflank {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(-1, 1, 0, 90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(-1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_se.hover .d2l-flipbox-hhh {
  -webkit-transform: rotate3d(-1, 1, 0, 90deg);
  transform: rotate3d(-1, 1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_s .d2l-flipbox-hh {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_s .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_s .d2l-flipbox-back {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_s .d2l-flipbox-xflank {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_s .d2l-flipbox-yflank {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_s.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw .d2l-flipbox-back {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(-90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw .d2l-flipbox-xflank {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw .d2l-flipbox-yflank {
  -webkit-transform: translateX(50%) rotateY(90deg);
  transform: translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(-1, -1, 0, 90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(-1, -1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_sw.hover .d2l-flipbox-hhh {
  -webkit-transform: rotate3d(-1, -1, 0, 90deg);
  transform: rotate3d(-1, -1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_w .d2l-flipbox-hh {
  -webkit-transform: rotateY(-90deg) translateX(-50%) rotateY(90deg);
  transform: rotateY(-90deg) translateX(-50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_w .d2l-flipbox-front {
  -webkit-transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
  transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_w .d2l-flipbox-back {
  -webkit-transform: rotateY(90deg) translateX(50%) rotateY(90deg);
  transform: rotateY(90deg) translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_w .d2l-flipbox-yflank {
  -webkit-transform: translateX(50%) rotateY(90deg);
  transform: translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_w.hover .d2l-flipbox-hh {
  -webkit-transform: rotateY(-90deg) translateX(-50%) rotateY(-90deg);
  transform: rotateY(-90deg) translateX(-50%) rotateY(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
  transform: rotateX(90deg) translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw .d2l-flipbox-back {
  -webkit-transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(90deg);
  transform: rotateX(-90deg) translateY(50%) rotateX(-90deg) rotateZ(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw .d2l-flipbox-xflank {
  -webkit-transform: translateY(50%) rotateX(-90deg);
  transform: translateY(50%) rotateX(-90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw .d2l-flipbox-yflank {
  -webkit-transform: translateX(50%) rotateY(90deg);
  transform: translateX(50%) rotateY(90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw.hover .d2l-flipbox-hh {
  -webkit-transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(1, -1, 0, 90deg);
  transform: rotateX(90deg) translateY(-50%) rotateX(-90deg) rotate3d(1, -1, 0, 90deg);
}
.d2l-flipbox.animation_cubeflip.direction_nw.hover .d2l-flipbox-hhh {
  -webkit-transform: rotate3d(1, -1, 0, 90deg);
  transform: rotate3d(1, -1, 0, 90deg);
}
.d2l-flipbox.animation_coveropen.direction_n .d2l-flipbox-front {
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.d2l-flipbox.animation_coveropen.direction_n.hover .d2l-flipbox-front {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
}
.d2l-flipbox.animation_coveropen.direction_ne .d2l-flipbox-front {
  -webkit-transform: rotate3d(1, 1, 0, 1deg);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
.d2l-flipbox.animation_coveropen.direction_ne.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(1, 1, 0, 90deg);
  transform: rotate3d(1, 1, 0, 90deg);
}
.d2l-flipbox.animation_coveropen.direction_e .d2l-flipbox-front {
  -webkit-transform: rotateY(1deg);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.d2l-flipbox.animation_coveropen.direction_e.hover .d2l-flipbox-front {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}
.d2l-flipbox.animation_coveropen.direction_se .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, 1, 0, 1deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.d2l-flipbox.animation_coveropen.direction_se.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, 1, 0, 90deg);
  transform: rotate3d(-1, 1, 0, 90deg);
}
.d2l-flipbox.animation_coveropen.direction_s .d2l-flipbox-front {
  -webkit-transform: rotateX(-1deg);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.d2l-flipbox.animation_coveropen.direction_s.hover .d2l-flipbox-front {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
.d2l-flipbox.animation_coveropen.direction_sw .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, -1, 0, 1deg);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
.d2l-flipbox.animation_coveropen.direction_sw.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(-1, -1, 0, 90deg);
  transform: rotate3d(-1, -1, 0, 90deg);
}
.d2l-flipbox.animation_coveropen.direction_w .d2l-flipbox-front {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.d2l-flipbox.animation_coveropen.direction_w.hover .d2l-flipbox-front {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.d2l-flipbox.animation_coveropen.direction_nw .d2l-flipbox-front {
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
.d2l-flipbox.animation_coveropen.direction_nw.hover .d2l-flipbox-front {
  -webkit-transform: rotate3d(1, -1, 0, 90deg);
  transform: rotate3d(1, -1, 0, 90deg);
}