.logo-sm {
    height: 50px;
}

.logo-md {
    height: 80px;
}

.logo-lg {
    height: 120px;
}

.m-auto {
    margin: auto;
}

.not-in-stock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.5);
    color: #fff;
    font-weight: bold;
    font-size: 105%;

    display: grid;
    /* div'i grid container yapar */
    place-items: center;
    /* hem yatayda hem dikeyde ortalar */
}

.not-in-stock>span {
    background-color: #d22e2e;
    border: 1px solid #e89696;
    padding: .6rem 1rem;
}

.pt-5 {
    padding-top: 1.5rem;
}

@-webkit-keyframes greenpulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(#4a9643, 0);
    }

    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(#4a9643, 0);
    }
}

.animate {
    &.greenpulse {
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(#4a9643, 0.5);
        -webkit-animation: greenpulse 1.5s infinite;
        animation: greenpulse 1.5s infinite;
        font-size: 1.4rem;
        color: #4a9643;
    }
}

.canliYardimWp {
    position: fixed;
    bottom: 1.7rem;
    right: 1.7rem;
    display: inline-block;
    z-index: 999
}

.canliYardimWp img {
    border-radius: 200px;
    border: .2rem solid #fff;
    box-shadow: 10px 0px 15px #999
}

.canliYardimWp .DestekTooltip {
    visibility: hidden;
    width: 170px;
    background-color: #fff;
    color: #333;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    box-shadow: 2px 2px 3px #999;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 1.4rem;
    left: 0;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out
}

.canliYardimWp .DestekTooltip .tooltiptext {
    white-space: nowrap
}

.canliYardimWp:hover .DestekTooltip {
    left: 120%;
    opacity: 1;
    visibility: visible
}