/*
PAGE - DOORS
*/
.layout-calendar-door {
  max-width: 100vw;
  margin-top: 3rem;
  background-color: #000;
}

.layout-calendar-door > .my_container {
  max-width: 100vw;
  padding: 1rem;
}

.layout-calendar-door > .my_container .calendar-door-title {
  width: 100%;
  margin: 3rem 0 ;
}

.layout-calendar-door > .my_container .calendar-door-title h4 {
  font-size: 1.1rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.layout-calendar-door > .my_container .calendar-door-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 1rem 0;
}

.layout-calendar-door > .my_container .calendar-door-footer a {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.layout-calendar-door > .my_container img {
  width: 100%;
  display: block;
}

.my_container-grid {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  grid-template-rows: auto;
  transition: all .3s ease-in-out;
  /*overflow: hidden;*/
}

.my_container-grid .book {
  position: relative;
  width: 100%;
  height: 168px;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  overflow: hidden;
}

.my_container-grid .book:hover {
  z-index: 1;
  transform: perspective(2000px);
  box-shadow: inset 10px 0 50px rgba(0,0,0,.5);
}

.my_container-grid .book .cover {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: left;
  box-sizing: border-box;
  z-index: 1;
  transition: 1s;
  overflow: hidden;
}

.book.open .cover {
  transform: rotateY(-75deg);
}

.book.activated {
  cursor: pointer;
}

.my_container-grid .book .cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my_container-grid .book .description {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 1rem;
  color: black;
  font-size: .8rem;
  overflow: hidden;
}

.my_container-grid .book:hover {
  z-index: 1;
  transform: perspective(2000px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* POP UP */
.layout-calendar-door--pop-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 1rem;
  transition: all .2s ease-in-out;
  display: none;
}

.layout-calendar-door--pop-up.open {
  display: flex;
}

.layout-calendar-door--pop-up .pop-up-inner {
  width: 100%;
  height: auto;
  background-color: white;
  padding: 1rem;
  border-radius: .1rem;
}

.pop-up-inner-close {
  position: relative;
  right: -.5rem;
  top: -.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: auto;
  cursor: pointer;
}

.pop-up-inner-close span{
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 100%;

  border: 1px solid #000;
}

.pop-up-inner-close span > svg {
  width: 15px;
  height: 15px;
  color: #000;
  fill: #000;
}

.pop-up-inner-title {
  position: relative;
  top: -1rem;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #b1956e;
  font-family: Century Gothic, CasualDelight, sans-serif;
  font-weight: bold;
}

.pop-up-inner-description {
  text-align: center;
}

.pop-up-inner-participate {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0 1rem 0;
}

.pop-up-inner-participate-btn {
  position: relative;
  display: inline-block;
  margin: 0;
  background-color: rgba(0,0,0,0);
  border: 0;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  outline: 0;
  cursor: pointer;
  z-index: 1;
  padding: 0.6875rem 1.5625rem 0.625rem;
  background-color: #b1956e;
  border-radius: 0.0625rem;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  font-family: Lato,sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}


.pop-up-inner-participate:hover {
  text-decoration: none;
}

/* END - DOORS */

.layout-calendar {
    background-color: #152837!important;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    background-color: #FFF;
    padding-top: 2rem;
    max-width: 100vw;
    overflow: hidden;

    font-family: century-gothic, sans-serif;
    font-style: normal;
    padding-bottom: 2rem;
}

.notifications h2, .notifications h3, .notifications > h4 {
  margin: 0!important;
}

.layout-calendar-message {
  width: 100vw;
  min-height: 50vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.block-calendar img {
  display: block;
  width: 100%;
}

.block-calendar a {
  text-decoration: none;
  color: unset;
}

.block-calendar button, .block-calendar input {
  margin: 0;
  outline: none;
  border: none;
}

.block-calendar .my_container {
  width: 100vw;
  min-height: 100vh;
  display: grid;
  overflow: hidden;
}

.block-calendar .my_container .notifications {
    margin-top: 2rem;
}

.block-calendar-inner {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 1.2rem;
}

.block-calendar-inner-left-content-logo {
  max-width: 330px;
  margin: 0 auto;
}

.block-calendar-inner-left-content-text {
  margin: 1rem 0;
}

.block-calendar-inner-left-content-text > p {
  color: #9CBFD2;
  font-size: 0.8rem;
  text-align: center;
}

.block-calendar-inner-left-content-text > p strong {
  font-style: italic;
}

.block-calendar-inner-left-content-form .form-calendar-group, .block-calendar-inner-left-content-form .form-calendar-submit {
  margin-bottom: 1rem;
}

.block-calendar-inner-left-content-form .form-calendar-group .group__field {
  display: flex;
  flex-direction: column;
}

.form-calendar-group .input-label {
  color: #fff!important;
  font-size: 0.8rem;
  margin: 0.3rem 0;
}

.block-calendar-inner-left-content-form .form-calendar-group .group__field label {
  color: #FFFFFF;
  font-size: 0.8rem;
  margin: 0.3rem 0;
}

.block-calendar-inner-left-content-form .form-calendar-group .group__field > input[type=text] {
  padding: 0.8rem 0.5rem;
  color: #152837;
  font-style: italic;
  border-radius: 0.2rem;
}

.input-checkbox > span{
  position: relative;
  top: -.5rem;
  color: #FFF;
  font-size: 0.8rem;
  margin-left: 1.7rem;
}

.block-calendar-inner-left-content-form .form-calendar-group .group__field .checkbox__label .checkbox__desc {
  color: #FFFFFF!important;;
  font-size: 0.8rem;
}

.block-calendar-inner-left-content-form .form-calendar-group .group__field .checkbox__label .checkbox__desc > a {
  color: #997F48;
}

.block-calendar-inner-left-content-form .form-calendar-submit {
  text-align: center;
  margin-top: 1rem;
}

.block-calendar-inner-left-content-form .form-calendar-submit .btn--submit {
  background-color: #997F48;
  padding: .8rem 2.5rem;
  border-radius: 0.2rem;
  cursor: pointer;
  color: #FFFFFF;
  font-weight: bold;
}

.block-calendar-inner-left-content-footer {
  margin-top: 2rem;
}

.block-calendar-inner-left-content-footer > p {
  color: #FFFFFF;
  font-size: 0.7rem;
  text-align: center;
}

.block-calendar-inner-right {
  display: none;
}

@media screen and (min-width: 640px) {
  /* PAGE - FORM */
  .block-calendar .my_container {
    width: 100vw;
    min-height: 100vh;
    display: grid;
    place-items: center;
  }

.block-calendar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
    /*border: 1px solid white;*/
    margin: 0 auto;
    overflow: hidden;
  }

  .block-calendar-inner-left {
    width: 100%;
  }

  .block-calendar-inner-right {
    width: 100%;
    height: 100%;
    display: block;
  }

  .block-calendar-inner-right-mask {
    width: inherit;
    height: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: 75% 15%;
  }

  .block-calendar-inner-right-mask > img {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 100px;
    display: block;
  }

   /* PAGE - DOORS */
  .layout-calendar-door {
    max-width: 100vw;
    margin-top: 3rem;
  }

  .layout-calendar-door > .my_container {
    max-width: 100vw;
  }

  .layout-calendar-door > .my_container .calendar-door-title h4 {
    font-size: 1.3rem;
  }

  .my_container-grid {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    grid-template-rows: auto;
    /*overflow: hidden;*/
  }


  .my_container-grid .book {
    width: 177px;
    height: 177px;
  }

  /*POP UP*/
  .layout-calendar-door--pop-up .pop-up-inner {
    width: 560px;
    margin: 0 auto;
    padding: 2rem;
  }

  .pop-up-inner-title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {

  /* PAGE - FORM */
  .block-calendar .my_container {
    max-width: 1024px;
    /*border: 1px solid red;*/
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 0 auto;
  }

  .block-calendar-inner {
    grid-template-columns: 55% 45%;
    gap: 1rem;
    max-width: 1020px;
    margin: 0 auto;
    padding-bottom: 0;
  }


  /* PAGE - DOORS */
  .layout-calendar-door {
    max-width: 100vw;
    margin-top: 3rem;
  }

  .layout-calendar-door > .my_container {
    max-width: 1020px;
    margin: 0 auto;
  }

  .layout-calendar-door > .my_container .calendar-door-title h4 {
    font-size: 1.3rem;
  }

  .my_container-grid {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: .5rem;
    /*overflow: hidden;*/
  }

  .my_container-grid .book {
    width: 100%;
    height: 100%;
  }
}

/* MODAL POP UP*/

.block-wysiwyg {
    padding:1rem;
    text-align: center;
}

/*Paragraph*/
.block-wysiwyg p {
    font-family: Century Gothic, sans-serif;
}

.article.article .article__share {
    display:none!important;
}

.article__content {
    padding:1rem;
}

.modal {
    background-image: unset!important;
    background-color: #997f48!important;
    border: unset!important;
}

.santapress-post.modal {
    background-image: unset!important;
    background-color: #997f48!important;
}

/*Title*/
.santapress-title {
    font-family: Didot, Century Gothic, sans-serif!important;
    text-shadow: unset!important;
}

/*Button container*/
#participate_btn {
    text-align: center;
}

/*Button Participate*/
#participe_js {
  background-color:#282828!important;
}
#participe_js:hover {
  background-color:#000!important;
}

.block-calendar-inner-left-content-lu{
  color:  #997f48;
  text-align: center;
  font-family: "Lato", sans serif ;
  font-size: 0.8rem;
}