.pushone-notification, .pushone-popup {
--pushone-fonts: Meiryo, 'メイリオ', ArialMT, Hiragino Kaku Gothic Pro, 'ヒラギノ角ゴ Pro W3', Osaka, Verdana, 'ＭＳ Ｐゴシック';
}
.pushone-notification {
font-family: var(--pushone-fonts);
position: fixed;
bottom: -100%;
right: 20px;
background-color: white;
padding: 20px;
padding-right: 40px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 420px;
box-sizing: border-box;
display: flex;
align-items: center;
transition: bottom 0.5s ease-in-out;
z-index: 10000;
box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
}
.pushone-notification.show {
bottom: 20px;
}
.pushone-notification__icon {
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
}
.pushone-notification__icon img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.pushone-notification__content {
flex: 1;
}
.pushone-notification__title {
font-family: var(--pushone-fonts);
font-size: 18px;
font-weight: bold;
margin: 0 0 10px;
line-height: 1.5;
}
.pushone-notification__actions {
display: flex;
justify-content: flex-end;
margin-top: 10px;
}
.pushone-notification__button {
font-family: var(--pushone-fonts);
background-color: #00b8d4;
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-weight: bold;
}
.pushone-notification__close {
font-family: var(--pushone-fonts);
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 18px;
cursor: pointer;
}

.pushone-popup {
font-family: var(--pushone-fonts);
position: fixed;
bottom: -100%;
right: 20px;
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
max-width: 420px;
display: flex;
align-items: center;
transition: bottom 0.5s ease-in-out;
z-index: 10000;
box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
}
.pushone-popup.show {
bottom: 20px;
}
.pushone-popup__icon {
font-size: 36px;
color: #4caf50;
line-height: 1;
}
.pushone-popup__title {
font-family: var(--pushone-fonts);
font-size: 18px;
font-weight: bold;
margin: 0 40px 0 20px;
}
.pushone-popup__message {
margin: 0;
}
.pushone-popup__button {
font-family: var(--pushone-fonts);
background-color: #4caf50;
color: white;
border: none;
padding: 6px 12px;
border-radius: 5px;
cursor: pointer;
font-size: 15px;
font-weight: bold;
justify-self: flex-end;
}