@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

.material-symbols-outlined {
    line-height: 2;
}

.fb-text {
    margin: 0;
    font-size: 16px;
    line-height: 1;
}

button {
    color: inherit;
    background-color: transparent;
    border: 0;
    outline: 0 !important;
    cursor: pointer;
}

button.floating-toggle {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 52px;
    height: 52px;
    color: #fff;
    background-color: #0360a5;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    margin: 16px;
}

button.floating-close {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 52px;
    height: 52px;
    color: #fff;
    background-color: #0360a5;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    margin: 16px calc(2 * 16px + 52px) 16px 16px;
}

.floating-popup {
    display: flex;
    position: absolute;
    box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
    flex-direction: column;
    display: none;
    bottom: calc(2 * 16px + 52px);
    right: 16px;
    width: 350px;
    height: auto;
    background-color: #fff;
    border-radius: 16px;
}

.floating-popup .floating-popup__header {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    color: #fff;
    background-color: #0360a5;
    align-items: center;
    justify-content: space-around;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.floating-popup .floating-popup__main {
    box-sizing: border-box;
    width: 100%;
    height: 400px;
    padding: calc(2 * 16px) 16px;
    line-height: calc(16px + 16px / 2);
    color: #888;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 50px;
    justify-content: center;
    gap: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.floating-popup__main::-webkit-scrollbar {
    width: 5px;
}

.floating-popup__main::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.floating-popup__main::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.floating-popup__main::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.square-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10%;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.square-div img {
    width: 50px;
}

.square-div p {
    margin: 0;
    font-size: 16px;
}

.square-div:hover {
    background-color: rgb(219, 219, 219);
}

a {
    color: #888;
}

a:hover {
    color: #888;
}