/*!
 * The MIT License (MIT)
 *
 * Copyright (c) 2020 Karl STEIN
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

.cc-component {
  display: inline-block;
  font-size: 1em;
  font-style: normal;
  line-height: 1em;
  position: relative;
}

.cc-component:focus {
  outline: none;
}

.cc-component.computing,
.cc-component.no-animation,
.cc-component.no-transition {
  -webkit-animation: none !important;
  -o-animation: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.cc-component.hidden {
  display: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.cc-component.maximized {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  transition-timing-function: ease-out;
}

.cc-component.maximized-x {
  width: 100%;
  left: 0;
  right: 0;
  transition-timing-function: ease-out;
}

.cc-component.maximized-y {
  height: 100%;
  bottom: 0;
  top: 0;
  transition-timing-function: ease-out;
}

.cc-component.minimized {
  height: auto;
  width: auto;
  transition-timing-function: ease-out;
}
