.example {
	 box-sizing: border-box;
}

.example::before, .example::after {
	 box-sizing: border-box;
}

.example {
	 margin: 0;
	 padding: 0;
	 font-family: 'Hind', sans-serif;
	 display: flex;
}

.example .container {
	 margin: 0 auto;
	 padding: 4rem;
	 width: 48rem;
}

.example .accordion2 .accordion-item {
	 border-bottom: 1px solid #2a2a2a;
}

.example .accordion2 .accordion-item button[aria-expanded='true'] {
	 border-bottom: 1px solid #131391;
}

.example .accordion2 button {
	 position: relative;
	 display: block;
	 text-align: left;
	 width: 100%;
	 padding: 1em 0;
	 font-size: 1.15em;
	 font-weight: 400;
	 border: none;
	 background: none;
	 outline: none;
}

.example .accordion2 button:hover, .accordion button:focus {
	 cursor: pointer;
	 color: #131391;
}

.example .accordion2 button:hover::after, .accordion button:focus::after {
	 cursor: pointer;
	 color: #131391;
	 border: 1px solid #131391;
}

.example .accordion2 button .accordion-title {
	 padding: 1em 1.5em 1em 0;
}

.example .accordion2 button .icon {
	 display: inline-block;
	 position: absolute;
	 top: 18px;
	 right: 0;
	 width: 22px;
	 height: 22px;
	 border: 1px solid;
	 border-radius: 22px;
}

.example .accordion2 button .icon::before {
	 display: block;
	 position: absolute;
	 content: '';
	 top: 9px;
	 left: 5px;
	 width: 10px;
	 height: 2px;
	 background: currentColor;
}

.example .accordion2 button .icon::after {
	 display: block;
	 position: absolute;
	 content: '';
	 top: 5px;
	 left: 9px;
	 width: 2px;
	 height: 10px;
	 background: currentColor;
}

.example .accordion2 button[aria-expanded='true'] {
	 color: #131391;
}

.example .accordion2 button[aria-expanded='true'] .icon::after {
	 width: 0;
}

.example .accordion2 button[aria-expanded='true'] + .accordion-content {
	 opacity: 1;
	 max-height: 18em;
	 transition: all 200ms linear;
	 will-change: opacity, max-height;
}

.example .accordion2 .accordion-content {
	 opacity: 0;
	 max-height: 0;
	 overflow: hidden;
	 transition: opacity 200ms linear, max-height 200ms linear;
	 will-change: opacity, max-height;
}

.example .accordion2 .accordion-content p {
	 font-size: 1rem;
	 font-weight: 300;
	 margin: 2em 0;
}

.example .miniature {
    height: 145px;
}






.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
	max-height: 80%;
	width: auto;
  	height: auto;
}

.modal-content { 
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

#image-viewer {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    justify-content: center;
    align-items: center;
}

#image-viewer .close {
    position: absolute;
    top: 15px;
    right: 35px;
    transition: 0.3s;
	background-image: url('/images/cancel.png');
	width: 32px;
	height: 32px;
}

#image-viewer .close:hover{
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
