
.templateContainer {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    width: 100%;
    height:auto;
}

.devicePreviewImg {
    position: relative;
    display: flex;
    height:520px;
    margin: 0 auto 10px;    
    transition: height .5s ease-out;
}

.siteThumbnail {
    display: block;
    margin: auto;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    max-height: 100%;
    opacity: 1;
    transform: translate(0) scale(1);
    transition: .3s  ease-in-out;
}

.templateWrap {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 20px 30px;
    display: block;
    position: relative;
}

.detailsWrap {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

.devicePreview {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: flex-end;
    flex-flow: row;
    width: 25%;
}

.laptop.active svg g,
.tablet.active svg g {
    fill:#80a51a; 
}

.mobile.active svg g path,
.mobile.active svg g rect {
    stroke: #80a51a; 
}

.laptop,
.tablet,
.mobile {
    cursor: pointer;
}

.laptop:hover svg g,
.tablet:hover svg g {
    fill: #80a51a;
}

.mobile:hover svg g path,
.mobile:hover svg g rect{    
    stroke: #80a51a;
}

.showButtons {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 520px;
    transition: .3s all;
}

.devicePreviewImg:hover .showButtons {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.showButtons a {
    text-decoration: none;
    font-size: 20px;
}

.siteName{
    font-size: 18px;
    font-weight: 500;
    color:#95C11F!important
}

.createSite {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 55px;
    background-color: #95C11F;
    color: #FFF!important;
    border-radius: 30px;
    margin-bottom: 30px;
    transition:ease all 300ms;
}
.createSite:hover{
    background-color:#80a51a!important;
}

.previewSite {
    display: block;
    position: relative;
    text-align: center;
    color: #95C11F;
}
.previewSite:hover{
    border-bottom:solid 1px rgb(128, 165, 26)!important;
}

.transition {
    /* animation: trans .6s forwards; */
    opacity: 0;    
    transform: scale(.82);
    transition: .3s ease-in-out;
}
.transitionIn {
    /* animation: trans .6s forwards; */ 
    transform: scale(1);
    transition: .3s ease-in;
}

/* @keyframes trans {
    100% {
        opacity: 0;
        transform: scale(.82);
    }
} */