.e-notify-start {
display: block;
position: fixed;
right: 0;
bottom: 40px;
z-index: 990;
background-color: #1f618d;
color: #ffffff;
padding: 4px 6px;
}
.e-notify-start__btn:hover {
cursor: pointer;
}
.e-notify-start__message {
position: absolute;
z-index: 10;
bottom: calc(100% + 5px);
right: 0;
display: none;
align-items: flex-start;
justify-content: space-between;
gap: 5px;
color: #3A3C3D; 
background-color: #fff;
width: 270px;
max-width: 90vw;
font-size: 14px;
line-height: 18px;
padding: 10px;
box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}
.e-notify-start__message--view {
display: flex;
}
.e-notify-start__message p {
margin-bottom: 0;
font-size: 14px;
line-height: 18px;
}
.e-notify-start__message strong {
white-space: nowrap;
font-weight: bold;
}
.e-notify-start__open {
text-decoration: underline;
}
.e-notify-start__open:hover {
cursor: pointer;
}
.e-notify-start__close:hover {
cursor: pointer;
}
.e-notify-form {
display: none;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
height: 100vh;
width: 100vw;
background-color: rgba(0, 0, 0, .3);
line-height: 1.4;
}
.e-notify-form--view {
display: flex;
}
.e-notify-form__container {
max-width: 400px;
width: 100%;
height: auto;
background-color: #ffffff;
padding: 20px 30px 30px;
text-align: center;
color: #3A3C3D; 
}
.e-notify-form__header {
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
border-bottom: 1px solid #D5D8DC;
padding-bottom: 6px;
}
.e-notify-form__body {
margin-bottom: 10px;
}
.e-notify-form__label {
font-size: 18px;
font-weight: bold;
margin-bottom: 7px;
}
.e-notify-form__error {
background-color: #FFEBEE;
padding: 10px;
border: 1px solid #FFCDD2;
margin-bottom: 15px;
}
.e-notify-form__textarea {
width: 100%;
border-color: #EAECEE;
}
.e-notify-form__bottom {
display: flex;
justify-content: center;
gap: 20px;
}
.e-notify-form__bottom button {
border: none;
padding: 9px 25px;
font-size: 14px;
line-height: 1.6;
font-weight: bold;
text-transform: uppercase;
opacity: .9;
}
.e-notify-form__bottom button:hover {
cursor: pointer;
opacity: 1;
}
.e-notify-form__send {
background-color: #1f618d;
color: #fff;
}
.e-notify-form__cansel {
background-color: #EAECEE;
color: #273044;
}
.e-notify-form__success {
background-color: #DCEDC8;
margin-top: 8px;
padding: 6px 8px;
}