.push-buttons{
  width: 100%;
  display: flex;
  justify-content: end;
}

.push-button{
  font-family: 'Open Sans', sans-serif;
  padding: 0px 26px;
  border-radius: 6px;
  height:50px;
  line-height: 50px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: 75ms linear;
  cursor: pointer;
  outline: 0;
  border: none;
}


.push-button-confirm{
  color: #fff;
  background: #0078d1;
}

.push-button-confirm:hover{
  background-color: #0062ab;
}

.push-button-confirm:focus{
  outline:0;
}

.push-button-cancel{
  background: transparent;
  border-radius: 8px;
  color: #0078d1;
  margin-right: 10px;
}

.push-button-cancel:focus{
  outline:0;
}

.wbpopup-logo {
  width: 80px;
  float: left;
  height: 80px;
  position: relative;
  margin-right: 20px;
  object-fit: contain;
}

@keyframes popup_bell_animation {
  from {
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes popup_bell_granted_animation {
  from {
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@keyframes popup_push_animation {
  from {
    margin-top: -200px;
  }
  to {
    margin-top: 0px;
  }
}

@keyframes popup_push_animation_bottom {
  from {
    margin-bottom: -200px;
  }
  to {
    margin-bottom: 0px;
  }
}

@keyframes popup_push_animation_center {
  from {
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

#popup-push {
  width: 500px;
  max-width: 100%;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 1px 6px rgba(5,27,44,.06), 0 2px 32px rgba(5,27,44,.16);
  left: 50%;
  z-index: 99998;
  animation-duration: 1.5s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#popup-push.popup-bell-top, #popup-push.popup-bell-bottom {
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#popup-push.popup-bell-top {
  top: 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  animation-name: popup_push_animation;
}

#popup-push.popup-bell-bottom {
  bottom: 0px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  animation-name: popup_push_animation_bottom;
}

#popup-push.popup-bell-center {
  top: 50%;
  border-radius: 10px;
  animation-name: popup_push_animation_center;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#popup-push p {
  float: right;
  width: calc(100% - 100px);
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #051b2c;
  line-height: 1.4;
  margin-top: 0px;
  margin-bottom: 25px;
}

.admin-bar #popup-push {
  top: var(--wp-admin--admin-bar--height);
}

#popup-bell.popup-bell-granted.popup-bell-siteload {
  animation-name: popup_bell_granted_animation;
}

#popup-bell {
  z-index: 99998;
  position: fixed;
  height: 48px;
  width: 48px;
  animation-name: popup_bell_animation;
  animation-duration: 0.75s;
  transition: transform .25s ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#popup-bell.popup-bell-granted {
  opacity: .8;
  transform: scale(0.7);
}

#popup-bell.popup-bell-granted.popup-bell-hover {
  transform: unset;
  opacity: unset;
}

.admin-bar #popup-bell {
  margin-top: var(--wp-admin--admin-bar--height);
}

#popup-bell.popup-bell-up-left, #popup-bell.popup-bell-down-left {
  left: 20px;
}

#popup-bell.popup-bell-up-right, #popup-bell.popup-bell-down-right {
  right: 20px;
}

#popup-bell.popup-bell-up-left, #popup-bell.popup-bell-up-right {
  top: 20px;
}

#popup-bell.popup-bell-down-left, #popup-bell.popup-bell-down-right {
  bottom: 20px;
}

@media all and (max-width: 780px){
  body#post-page.bell-visible #popup-bell.popup-bell-down-left, body#post-page.bell-visible #popup-bell.popup-bell-down-right {
    bottom: 100px;
  }
}



#popup-bell.popup-bell-hover .popup-bell-icon {
  -ms-transform: scale(1.15)!important;
  transform: scale(1.15)!important;
}

.popup-bell-inside {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.popup-bell-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-shadow: 0px 0px 10px 0px #e93939b0;
  height: 100%;
  background: #e93939;
  border-radius: 100%;
  transition: transform .1s ease-in-out;
  cursor: pointer;
}

.popup-bell-icon:before {
  width: 3px;
  height: 0px;
  content: "";
  position: absolute;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: 1;
  transition: height .25s ease-in-out;
}

.popup-bell-dialog-title {
  text-align: center;
  font-size: 17px;
  margin-bottom: 20px;
}

.popup-bell-dialog-button button {
  background-color: #e93939;
  border: none;
  color: #fff;
  padding: 10px 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  width: 100%;
  transition: background-color .1s ease-in-out;
  cursor: pointer;
}

.popup-bell-dialog-button button:hover {
  background-color: #cd2e2e;
}

.popup-bell-dialog-button button:active {
  background-color: #b31e1e;
}

#popup-bell.popup-bell-denied .popup-bell-icon:before {
  height: 30px;
}

#popup-bell .popup-bell-icon svg {
  transition: opacity .25s ease-in-out;
}

#popup-bell.popup-bell-denied .popup-bell-icon svg {
  opacity: .4;
}

#popup-bell .popup-bell-tooltip {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  visibility: hidden;
  white-space: nowrap;
  background-color: #000000;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: transform .25s ease-in-out, visibility .25s ease-in-out, opacity .25s ease-in-out;
  transform: scale(0);
  cursor: default;
}

#popup-bell.popup-bell-up-left .popup-bell-tooltip, #popup-bell.popup-bell-down-left .popup-bell-tooltip {
  transform-origin: center left;
}

#popup-bell.popup-bell-up-right .popup-bell-tooltip, #popup-bell.popup-bell-down-right .popup-bell-tooltip {
  transform-origin: center right;
}

#popup-bell .popup-bell-tooltip:after {
  top: 50%;
  border: 7px solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  margin-top: -7px;
}

#popup-bell.popup-bell-up-left .popup-bell-tooltip:after, #popup-bell.popup-bell-down-left .popup-bell-tooltip:after {
  right: 100%;
  border-right-color: #000;
}

#popup-bell.popup-bell-up-right .popup-bell-tooltip:after, #popup-bell.popup-bell-down-right .popup-bell-tooltip:after {
  left: 100%;
  border-left-color: #000;
}

#popup-bell.popup-bell-up-left .popup-bell-tooltip, #popup-bell.popup-bell-down-left .popup-bell-tooltip {
  left: 65px;
}

#popup-bell.popup-bell-up-right .popup-bell-tooltip, #popup-bell.popup-bell-down-right .popup-bell-tooltip {
  right: 65px;
}

#popup-bell.popup-bell-hover .popup-bell-tooltip {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}

.popup-bell-dialog {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: transform .25s ease-in-out, visibility .25s ease-in-out, opacity .25s ease-in-out;
  transform: scale(0);
}

#popup-bell.popup-bell-up-left .popup-bell-dialog {
  transform-origin: top left;
}

#popup-bell.popup-bell-up-right .popup-bell-dialog {
  transform-origin: top right;
}

#popup-bell.popup-bell-down-left .popup-bell-dialog {
  transform-origin: bottom left;
}

#popup-bell.popup-bell-down-right .popup-bell-dialog {
  transform-origin: bottom right;
}

#popup-bell.popup-bell-clicked .popup-bell-dialog {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

#popup-bell.popup-bell-clicked .popup-bell-tooltip {
  visibility: hidden;
  transform: scale(0);
}

#popup-bell.popup-bell-clicked {
  transform: scale(1)!important;
  opacity: 1;
}

#popup-bell.popup-bell-clicked .popup-bell-icon {
  transform: scale(1.15)!important;
}

.popup-bell-dialog-container {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 160px;
  box-shadow: 0px 0px 10px 0px #0000005e;
}

.popup-bell-dialog-container:after {
  border: 7px solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  margin-left: -3px;
}

#popup-bell.popup-bell-up-left .popup-bell-dialog-container:after, #popup-bell.popup-bell-up-right .popup-bell-dialog-container:after {
  bottom: 100%;
  border-bottom-color: #fff;
}

#popup-bell.popup-bell-down-left .popup-bell-dialog-container:after, #popup-bell.popup-bell-down-right .popup-bell-dialog-container:after {
  top: 100%;
  border-top-color: #fff;
}

#popup-bell.popup-bell-up-right .popup-bell-dialog-container:after, #popup-bell.popup-bell-down-right .popup-bell-dialog-container:after {
  right: 17px;
}

#popup-bell.popup-bell-up-left .popup-bell-dialog, #popup-bell.popup-bell-up-right .popup-bell-dialog {
  margin-top: 210px;
}

#popup-bell.popup-bell-down-left .popup-bell-dialog, #popup-bell.popup-bell-down-right .popup-bell-dialog {
  margin-bottom: 210px;
}


#popup-bell.popup-bell-down-left .popup-bell-dialog.with-image, #popup-bell.popup-bell-down-right .popup-bell-dialog.with-image{
  /*margin-bottom: 420px;*/
  margin-bottom: 365px;
}

body#post-page.bell-visible #popup-bell.popup-bell-down-left .popup-bell-dialog.with-image{
  margin-bottom: 365px;
}


#popup-bell.popup-bell-up-left .popup-bell-dialog, #popup-bell.popup-bell-down-left .popup-bell-dialog {
  left: 0px;
}

#popup-bell.popup-bell-up-right .popup-bell-dialog, #popup-bell.popup-bell-down-right .popup-bell-dialog {
  right: 0px;
}


#popup-bell.popup-bell-down-left .popup-bell-dialog.with-image .popup-bell-dialog-container, #popup-bell.popup-bell-down-right .popup-bell-dialog.with-image .popup-bell-dialog-container{
  width:200px;
}

.popup-bell-dialog-button > span{
  display: inline-block;
  margin-bottom: 10px;
}


@media only screen and (max-width: 500px) {

  #popup-push {
    top:auto!important;
    bottom:0;
    border-radius:0;
  }

  #popup-push p {
    font-size: 14px;
  }

  .push-button {
    padding: 0px 19px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
  }

  #popup-push {
    border-radius: 0 !important;
    animation-name: popup_push_animation_bottom !important;
    -ms-transform: translate(-50%) !important;
    transform: translate(-50%) !important;
  }

}

@media only screen and (max-width: 370px) {

  #popup-push {
    padding:18px;
  }

  .wbpopup-logo {
    margin-right: 15px;
    width:75px;
    height:75px;
  }

  #popup-push p {
    float: right;
    width: calc(100% - 90px);
  }
}