body .popup-enter-active,
body .popup-leave-active {
  transition: all 0.5s;
}
body .popup-enter,
body .popup-leave-active {
  opacity: 0;
  transform: scale(1.05);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    background: rgba(0,0,0,0.75);
}
.popup .content {
    width: 100%;
    max-width: 850px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background: #fff;
    border-radius: .75rem;
    overflow: scroll;
    gap: 60px;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none
}
.popup .content::-webkit-scrollbar {
  display: none;
}
.content .popup-close {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(to right,#50a7f7 0%,#154cbc 50%,#620de4 100%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    z-index: 100;
    padding: 0;
    border: none;
}
.popup-header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    text-align: center;
    align-items: center;
}
.popup-header .popup-button {
    display: inline-flex;
    background: linear-gradient(to right,#50a7f7 0%,#154cbc 50%,#620de4 100%);
    padding: 16px 20px;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    justify-content: center;
    text-decoration: none;
}
.popup-header .has-account {
    color: #154cbc;
}
.popup-header .has-account a {
    text-decoration: underline;
}
.popup-footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    text-align: center;
    align-items: center;
}
.template-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}
.template-step {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}
.template-step:before {
    content: '2';
    display: inline-flex;
    font-size: 16px;
    color: #000;
}
.template-step:first-child:before {
    content: '1';
}
.template-step:last-child:before {
    content: '3';
}
.template-step span {
    text-align: left;
    font-size: 16px;
    color: #000;
    line-height: 1.33;
}
@media only screen and (max-width: 600px) {
    .template-steps {
        flex-direction: column;
    }
}
.template-copy {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.template-copy .template-design-url,
.template-copy .template-design-copy {
    padding: 16px 20px;
    border: none;
    border-radius: 6px;
    background: #50a7f7;
    color: #fff;
    font-size: 18px;
    height: 60px;
    display: flex;
    align-items: center;
}
.template-copy .template-design-url {
    pointer-events: none;
}
.template-copy .template-design-copy {
    background: linear-gradient(to right,#50a7f7 0%,#154cbc 50%,#620de4 100%);
    color: #fff;
}
.email-template-toolkits-section .toolkits-section-col-main .toolkits-row {
    padding-left: 0px;
    padding-right: 0px;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
    align-content: flex-start;
    width: 100%;
}
.email-template-toolkits-section .toolkits-section-col-main .toolkits-row .email-toolkits-col {
    width: 100%;
    max-width: calc(33.33% - 14px);
    padding: 0;
    flex-direction: column;
    display: flex;
    box-shadow: none;
    background: #fff;
}
.email-toolkits-col .email-toolkit-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: 1;
}
.email-toolkits-col .email-toolkit-item .toolkit-item-img {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: 1;
    position: relative;
    z-index: 1;
}
.email-toolkits-col .email-toolkit-item .toolkit-item-img .toolkit-icon-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
	height: 100%;
    max-height: 300px;
    border: none;
    padding: 0;
    border-radius: 0;
}
.email-toolkits-col .email-toolkit-item .toolkit-item-img .toolkit-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.email-toolkits-col .email-toolkit-item .toolkit-item-img .toolkit-header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 15px;
    display: none;
    z-index: 2;
}
.email-toolkits-col .email-toolkit-item .toolkit-item-img .toolkit-header h3 {
    display: flex;
    padding: 16px 20px;
    background: linear-gradient(to right,#50a7f7 0%,#154cbc 50%,#620de4 100%);
    color: #fff;
    justify-content: center;
    align-items: center
    font-weight 700;
    border-radius: 6px;
}
.email-toolkits-col .email-toolkit-item:hover .toolkit-item-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}
.email-toolkits-col .email-toolkit-item:hover .toolkit-item-img .toolkit-header {
    display: flex;
}
@media only screen and (max-width: 767px) {
    .email-template-toolkits-section .toolkits-section-col-main .toolkits-row .email-toolkits-col {
        max-width: calc(50% - 10px);
    }
}
@media only screen and (max-width: 575px) {
    .email-template-toolkits-section .toolkits-section-col-main .toolkits-row .email-toolkits-col {
        max-width: 100%;
    }
}
