.demo-image{
    
    height: 300px;
    overflow: hidden;
    text-align: center;
    transition: all ease-in-out .2s;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-image img{
    transition: all ease-in-out .2s;
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    min-width: 0;
}

.entry-title{
    margin: 16px 0 8px 0;
}

.demo-item:hover img{
    transform:scale(1.125);
}

.demo-item-container{
    width: 33.33333%;
    display: inline-block;
    font-family: Verdana;
    margin-bottom: 36px;
    box-sizing: border-box;
	margin:20px;
	border:1px solid #ccc;
	border-radius:5px;
}

.demo-item{
    transition: all ease-in-out .25s;
    transform-origin: bottom;
    position: relative;
    overflow: hidden;
}

.demo-item:hover{
    
    border-color: #bdbdbd;

}

.demo-item:hover .previewButton{
    transform: translateY(0);
}

.demo-preview-placeholder{
    background-color: #091141;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.demo-item:hover .demo-preview-placeholder{
    opacity: .8;
}

.previewButton{
    background-color: #091141;
    color: white;
    width: 144px;
    height: 48px;
    position: absolute;
    transition: all .2s ease-in-out;
    bottom:16px;
    left: calc(50% - 72px);
    border-radius: 4px;
    text-align: center;
    vertical-align: center;
    line-height: 48px;
    transform: translateY(80px);
}

.templateItemIcon{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.templateItemIcon::before {
    display: block;
    content: '';
    position: absolute;
    transform-origin: center;
    width: 96px;
    height: 96px;
    border-radius: 96px;
    background: #091141;
    top: calc(50% - 48px);
    left: calc(50% - 48px);
    -webkit-transform: scale(.1);
    transform: scale(.1);
    opacity: 0;
    transition: all ease-in-out .2s;
}

.demo-item:hover .templateItemIcon::before{
    opacity: 1;
    transform: scale(1);
}



.demo-item .templateItemIcon::after {
    width: 32px;
    height: 32px;
    content: '';
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    background: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.384 25.213A13.938 13.938 0 0 1 14 28C6.268 28 0 21.732 0 14S6.268 0 14 0s14 6.268 14 14c0 3.145-1.037 6.047-2.787 8.384l6.201 6.202a2 2 0 0 1-2.828 2.828l-6.202-6.201zM14 24c5.523 0 10-4.477 10-10S19.523 4 14 4 4 8.477 4 14s4.477 10 10 10z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E") center no-repeat;
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
    display: block;
    position: absolute;
    transition: all .2s ease-in-out;
}

.demo-item:hover .templateItemIcon::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#categoryDropDown:focus,#categoryDropDown:focus-visible{
    border-color: transparent !important;
    outline: none;
    padding-right: 5px;
}

@media screen and (max-width: 991px){
    .demo-item-container{
        width: 50%;
    }
}


.pagination {
    display: inline-block;
}

.page-numbers {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.page-numbers.current {
    background-color: #4CAF50;
    color: white;
}

.page-numbers:hover:not(.current)
{
    background-color: #ddd;
}
