.notify-box{
    position: fixed;
    bottom: 0;
    width:100%;
    overflow: hidden;
    visibility: hidden;
    z-index: 100;
}

.notify-sticky{
    transform: translateY(100%);
    transition: all 250ms ease;
    padding: 30px 15px;
}
.notify-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.notify-container>*{
    padding-left: 15px;
    padding-right: 15px;
}
.notify-container p,
.notify-email{
    font-size: 14px;
}
.notify-container a{
    text-decoration: none;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.col-2{
    width: 16.66666666%;
}
.col-8{
    width: 83.33333333%;
}
.notify-header{
    font-family: inherit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}
.notify-close{
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
}
.notify-icon{
    padding-left: 0;
    padding-top: 10px;
}
.notify-handler{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    display: inline-block;
    padding: 5px 20px;
    text-align: center;
    transition: background 250ms ease, color 250ms ease;
    position: fixed;
    bottom: 0;
    transition: all 20ms ease;
    z-index: 101;
}

.pos-center{
    left: 50%;
    transform: translateX(-50%);
}
.pos-left{
    left: 50px;
}
.pos-right{
    right: 50px;
}
.notify-box.show{
    visibility: visible;
    position:sticky;
}
.notify-box.show .notify-sticky{
    transform: translateY(100%);
}

.notify-box.show .notify-sticky{
    transform: translateY(0);
}
.notify-box.show ~ .notify-handler{
    display: none;
}

@media (min-width:768px){
    .notify-sticky{
        padding: 30px 15px;
    }
    .notify-close{
        top: 10px;
        right: 10px;
    }
    
}
@media (min-width:992px){
    .notify-header{
        font-size: 40px;
    }
    
}
@media (min-width:1200px){
    .notify-container{
        max-width: 1140px;
    }
    .notify-container p,
    .notify-email{
        font-size: 16px;
    }
}