/**
 * ++++++++++++++++++++++
 * Add-to-Calendar Button
 * ++++++++++++++++++++++
 *
 * Version: 1.7.2
 * Creator: Jens Kuerschner (https://jenskuerschner.de)
 * Project: https://github.com/jekuer/add-to-calendar-button
 * License: MIT with “Commons Clause” License Condition v1.0
 *
 */

.atcb {
  display: none;
}

.atcb_button_wrapper {
  display: inline-block;
  padding: 5px;
  position: relative;
}

.atcb_button {
  align-items: center;
  background: #b4b4b6;
  border: 1px solid rgb(255, 255, 255);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 10px 16px 11px 16px;
  border-radius: 25px;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  width: auto;
}
.atcb_button:focus,
.atcb_button:hover {
  background: rgb(255, 255, 255);
  color: #b4b4b6;
}
@media only screen and (max-width: 575px) {
  .atcb_button {
    font-size: 14px;
  }
}

.atcb_button.atcb_active {
  background: rgb(255, 255, 255);
  color: #b4b4b6;
  margin: -2px -4px;
  padding: 12px 20px 13px 20px;
  z-index: 990;
}

.atcb_icon {
  height: 16px;
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 10px;
}
.atcb_icon svg {
  height: 100%;
  color: rgb(51, 51, 51);
  width: auto;
}

.atcb_list {
  box-sizing: border-box;
  color: rgb(51, 51, 51);
  display: block;
  font-family:Arial, Helvetica, sans-serif;
  max-width: 100%;
  position: absolute;
  padding: 0 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  min-width: 10em;
  z-index: 980;
}

.atcb_list.atcb_modal {
  position: fixed;
  width: 16em;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.atcb_list_item {
  align-items: center;
  background: rgb(250, 250, 250);
  border: 1px solid rgb(210, 210, 210);
  border-top: 0;
  -webkit-box-shadow: 1px 2px 8px 0px rgba(0,0,0,.3);
  box-shadow: 1px 2px 8px 0px rgba(0,0,0,.3);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  left: 50%;
  position: relative;
  padding: 12px 18px;
  text-align: left;
  transform: translate(-50%);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.atcb_list_item:focus,
.atcb_list_item:hover {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 1px 2px 10px 0px rgba(0,0,0,.4);
  box-shadow: 1px 2px 10px 0px rgba(0,0,0,.4);
  color: rgb(0, 0, 0);
}
@media only screen and (max-width: 575px) {
  .atcb_list_item {
    font-size: 14px;
  }
}

.atcb_list.atcb_generated_button .atcb_list_item:first-child {
  padding-top: 20px;
}

.atcb_list:not(.atcb_generated_button) .atcb_list_item:first-child {
  border-radius: 6px 6px 0 0;
}

.atcb_list_item:last-child {
  border-radius: 0 0 6px 6px;
}


.atcb_list_item .atcb_icon {
  margin-right: 8px;
  width: 18px;
}

.atcb_bgoverlay {
  background: rgba(20,20,20,.2);
  backdrop-filter: blur(2px);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 970;
}
.atcb_bgoverlay.atcb_click:hover {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill-rule='evenodd' d='M11.991.69a2.35 2.35 0 0 1 3.318-.009c.918.911.922 2.392.009 3.307l-4.009 4.014 4.013 4.018c.906.909.893 2.38-.027 3.287a2.35 2.35 0 0 1-3.307-.004l-3.985-3.99-3.993 3.997a2.35 2.35 0 0 1-3.318.009c-.918-.911-.922-2.392-.009-3.307l4.009-4.014L.678 3.98C-.228 3.072-.215 1.6.706.693a2.35 2.35 0 0 1 3.307.004l3.985 3.99z'/%3E%3C/svg%3E") 32 32, pointer;
}
