@charset "UTF-8";

/**
 * Language: CSS; Encoding: UTF-8
 * 
 * @filesource
 * 	created on: 23.10.2020 17:12
 * 
 * @author
 * 	Alexander Wattenbach, Sehen-Design
 * 	mailto: a.wattenbach@sehen-design.de
 * 
 * @copyright
 * 	© 2020 Sehen-Design
 * 
 * @license
 * 	PROPRIETARY RIGHTS of Sehen-Design are involved in the
 * 	subject matter of this material.  All manufacturing, reproduction,
 * 	use, and sales rights pertaining to this subject matter are governed
 * 	by the license agreement.  The recipient of this software implicitly
 * 	accepts the terms of the license.
 */

.rotate {
   animation: rotating 1.5s linear infinite;
 }
 @keyframes rotating {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
.reverseRotate {
   animation: rotating 1.5s linear infinite;
 }
 @keyframes rotating {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0deg);
    }
}

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
    max-width: 1200px;
  }
}