/*
Theme Name: Straww Child
Theme URI: https://github.com/themanosho/straww
Author: Joshua Osho
Author URI: https://github.com/themanosho/straww
Template: straww
Description: Child theme for Straww.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: straww-child
*/

/* Optional customization styles */

* {
    margin: 0;
    padding: 0;
}

/* fs open modal */
.fs-wrapper {
  text-align: center;
}

.fs-thumb-container {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #f8f8f8;
  transition: 0.3s;
  width: 400px;
  height: 300px;
}

.fs-thumb-container:hover {
  border-color: #999;
}

.fs-thumb {
  max-width: 100%;
  height: auto;
  display: block;
}

.fs-caption {
  color: #555;
  font-size: 16px;
}

.fs-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.fs-modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 1000px;
}

.fs-modal-content img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.fs-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.fs-thumb-img {
    width: 100%;
    height: 100%;
}