.content-container-contenedor-modalcersa{
    display: none;
    align-items: center;
    /* display: flex; */
    height: 100%;
    justify-content: center;
    right: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: .2s cubic-bezier(.25,.8,.25,1);
    width: 50%;
    z-index: 6;
    outline: none;
}

.container-contenedor-modalcersa{
    background-color: #0F594C;
    color: hsl(0, 0%, 100%);
    position: relative;
    overflow: initial;
    padding: 20px;
    max-height: 90%;
    box-shadow: 0 11px 15px -7px rgb(0 0 0 / 20%), 0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%);
    border-radius: 2px;
    margin: 24px;
    overflow-y: auto;
    pointer-events: auto;
    transition: .3s cubic-bezier(.25,.8,.25,1);
    z-index: inherit;
    height: 300px;
    overflow-y: scroll;
}

.contenedor-modalcersa{
    height: 100px;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    max-width: 85.375rem;
    margin-left: auto;
    margin-right: auto;
}

.modalcersa,
.modalcersa>h1,
.modalcersa>h2,
.modalcersa>h3,
.modalcersa>h4,
.modalcersa>h5{
    font-size: 16px;
    display: inline-block;
    line-height: 24px;
}

.mostrarcersa{
    display: block;
    display: flex;
}

.contenedor-container-close{
    position: absolute;
    top: -22px;
    right: 22px;
}

.container-close{
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: #0F594C;
    position: fixed;
    margin: 0px;
    cursor: pointer;
    box-shadow: 0 3px 6px 0 rgb(255, 255, 255);
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.container-close > i{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    height: inherit;
}

.x-shape {
    width: 30px;
    height: 30px;
    position: relative;
  }
  
  .x-shape::before,
  .x-shape::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 10%;
    width: 100%;
    height: 5px;
    background-color: rgb(255, 255, 255);
  }
  
  .x-shape::before {
    transform: rotate(45deg);
  }
  
  .x-shape::after {
    transform: rotate(-45deg);
  }
  