popup-portfolios-details {
    display: none;
    transition: all .2s ease-in-out;
    opacity: 0;
}

popup-portfolios-details.show {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1001;
    overflow-y: auto;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.portfolio {
    cursor: pointer;
}

popup-portfolios-details page-portfolios-details .header .backicon {
    background: url('/fonts/close-icon-black.svg');
    position: fixed;
    top: 30px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    right: 45px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    transition: all .2s ease-in-out;
    border: none;
    outline: none;
}

popup-portfolios-details page-portfolios-details .header .backicon:hover {
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
}

page-portfolios-details {
    padding: 60px 0 0;
}

.chat-wa {
    bottom: 16px;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 16px;
    z-index: 9
}

@media screen and (min-width:640px) {
    .chat-wa {
        bottom: 24px;
        right: 24px
    }
}

.chat-wa-popup {
    background-color: #fff;
    border-radius: 8px;
    bottom: 56px;
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, .2);
    margin-bottom: 16px;
    opacity: 0;
    padding: 16px;
    position: absolute;
    right: 8px;
    text-align: center;
    transform: translateY(48px);
    transition: all .2s ease-out;
    visibility: hidden;
    width: 280px;
    z-index: -1
}

@media screen and (min-width:414px) {
    .chat-wa-popup {
        padding: 24px
    }
}

@media screen and (min-width:640px) {
    .chat-wa-popup {
        bottom: 64px
    }
}

.chat-wa-popup .button {
    background-color: #25d366;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    padding: 12px;
    width: 100%
}

.chat-wa .toggle {
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, .2);
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 54px;
    justify-content: center;
    width: 54px
}

@media screen and (min-width:414px) {
    .chat-wa .toggle {
        height: 64px;
        width: 64px
    }
}

@media screen and (min-width:768px) {
    .chat-wa .toggle {
        height: 70px;
        width: 70px
    }
}

.chat-wa .toggle .whatsapp {
    color: #fff;
    height: 30px;
    width: 30px
}

@media screen and (min-width:414px) {
    .chat-wa .toggle .whatsapp {
        height: 36px;
        width: 36px
    }
}

@media screen and (min-width:768px) {
    .chat-wa .toggle .whatsapp {
        height: 40px;
        width: 40px
    }
}

.chat-wa .toggle .icon-cross {
    font-size: 18px;
    line-height: 1.33334;
    display: none
}

.chat-wa .title {
    font-size: 11px;
    line-height: 1.45455;
    color: #393939
}

.chat-wa.is-toggled .chat-wa-popup {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    z-index: 1
}

.chat-wa.is-toggled .whatsapp {
    display: none
}

.chat-wa.is-toggled .icon-cross {
    display: inline-block
}

.icon-inline, .icon-cross{
    height: 1em;
    width: 1em;
    fill: currentColor;
}