.thumb {
	display: flex;
	flex-wrap: wrap;
}

.thumb img  {
border: 1px solid #000;
margin-right: 10px;
margin-bottom: 10px;
}

.itc-modal {
--itc-modal-margin: 0.5rem;
}

@media (min-width: 576px) {
.itc-modal {
--itc-modal-margin: 9rem;
}
}

.itc-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
background: rgb(0 0 0 / 70%);
opacity: 0;
transition: opacity 0.2s ease-in;
pointer-events: none;
}

.itc-modal-content {
position: relative;
display: flex;
flex-direction: column;
width: auto;
margin: var(--itc-modal-margin);
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgb(0 0 0 / 20%);
border-radius: 0.3rem;
box-shadow: 0 0 7px 0 rgb(0 0 0 / 30%);
transition: opacity 0.3s ease-in;
}

@media (min-width: 576px) {
.itc-modal-content {
max-width: 620px;
margin: var(--itc-modal-margin) auto;
}
}

.itc-modal-show .itc-modal-backdrop,
.itc-modal-show .itc-modal-content {
z-index: 10000;
overflow-y: auto;
opacity: 1;
pointer-events: auto;
}

.itc-modal-scrollable {
max-height: 100%;
overflow: hidden;
}

.itc-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border-bottom: 1px solid #eceeef;
}

.itc-modal-title {
margin-top: 0;
margin-bottom: 0;
font-weight: 600;
font-size: 1.45rem;
line-height: 1.5;
}

.itc-modal-btn-close {
float: right;
color: #000;
font-weight: 700;
font-size: 24px;
font-family: sans-serif;
line-height: 1;
text-decoration: none;
text-shadow: 0 1px 0 #fff;
opacity: 0.5;
}

.itc-modal-btn-close:focus,
.itc-modal-btn-close:hover {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: 0.75;
}

.itc-modal-body {
position: relative;
flex: 1 1 auto;
padding: 1rem;
overflow-y: auto;
overflow-wrap: anywhere;
}

.itc-modal-footer {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 1rem;
border-top: 1px solid #e9ecef;
border-bottom-right-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}

.button-68 {

color: white;
text-decoration: none;
display: inline-block;
outline: 0;
cursor: pointer;
border: none;
padding: 0 56px;
line-height: 45px;
border-radius: 7px;
background-color: #0070f3;
font-weight: 600;
font-size: 18px;
box-shadow: 0 4px 14px 0 rgb(0 118 255 / 39%);
transition: background 0.2s ease,color 0.2s ease,box-shadow 0.2s ease;
}
.button-68:hover{
	background: rgba(0,118,255,0.9);
	box-shadow: 0 6px 20px rgb(0 118 255 / 23%);
	color:white;
}
