/**
 * KnoWau 
 *
 * Open source website tool
 *
 * Copyright (c) 2020, KnoWau-Software
 *
 * 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 NONINFRINGEMENT. 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.
 *
 * @package	KnoWau Homepage-Modul
 * @author	Klaus Schnatz
 * @copyright	Copyright (c) 2020, KnoWau-Software
 * @license	http://opensource.org/licenses/MIT	MIT License
 * @link	https://www.knowau.de
 * @since	Version 1.2.9
 * @filesource
 */
/* ******************************************************
**    Variables
****************************************************** */
/* customize gallery */
.modal-dialog {
  max-width: 1024px;
}

.kw-gallery-title {
  /*margin-top: -15px;*/
  text-align: center;
  font-size: 1.2em;
}

.kw-gallery-arrows {
  padding-bottom: 50px;
}

.kw-gallery-plus, .kw-gallery-default, .kw-gallery-minus {
  padding: 0 5px 2px 5px;
  margin-right: 10px;
  cursor: pointer;
}

.kw-img-thumbnail {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: .25rem;
}

.carousel-control.left, .carousel-control.right {
  background-image: none;
  margin-top: 10%;
  width: 5%;
}

.kw-gallery-modal-content {
  background-color: #CCC;
}

.kw-gallery-modal-title {
  width: 100%;
  text-align: center;
}

.kw-gallery-img-wrapper {
  display: inline-block;
  /*overflow: hidden;*/
  margin-bottom: 10px;
}

.kw-gallery-img-wrapper img {
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  vertical-align: middle;
}

.kw-gallery-img-wrapper img:hover {
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  /* IE 9 */
  -moz-transform: scale(1.2);
  /* Firefox */
  -webkit-transform: scale(1.2);
  /* Safari and Chrome */
  -o-transform: scale(1.2);
  /* Opera */
}
