﻿/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');*/

/*.wrapper > * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 16px
}
*/
.wrapper {
    width:100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 0 25px 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    text-align: center;
    z-index: 15;
    opacity: 0;
    display: none;
    transition: 0.5s ease-in-out
}

.wrapper.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease
}

::selection {
    color: #fff;
    background: #00a4c2
}

.wrapper img {
    max-width: 90px
}

.content header {
    font-size: 20px;
    font-weight: 600
}

.content {
    margin-top: 10px
}

.content p {
    color: #858585;
    margin: 5px 0
}

.content .buttons {
    display: flex;
    align-items: center;
    justify-content: center
}

.buttons button {
    padding: 10px 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    background: #00a4c2;
    cursor: pointer;
    transition: all 0.3s ease
}

.buttons button:hover {
    transform: scale(0.97)
}

.buttons .item {
    margin: 0 10px
}

.buttons a {
    color: #00a4c2
}
