#name-cookie-accept-bar {
    position: fixed;
    z-index: 10001
}

.cookie-accept-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction:row;
    gap: 20px;
    position: relative;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    border-radius: 6px;
    padding: 10px 15px 15px;
}

.cookie-accept-bar p {
    color: #fff;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    margin: 0
}

#name-cookie-accept-btn {
    display: inline-block;
    padding: 2px 32px;
    background-color: #CF122E;
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    height: 36px;
    font-size: 18px;
}

#name-cookie-accept-btn:hover {
    background-color: #E27182;
    cursor: pointer
}

#modal-overlay {
    z-index: 10002;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75)
}

.button-link {
    color: #0A86D5;
    font-size: 1.0em
}

.button-link:hover {
    cursor: pointer;
    color: #36c;
    text-decoration: underline
}

#modal-content {
    z-index: 10003;
    display: none;
    position: fixed;
    width: 80%;
    max-width: 960px;
    margin: 0;
    padding: 20px 20px 0 20px;
    border: 2px solid #aaa;
    background: #fff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch
}

#modal-content-innar {
    margin: 0 auto;
    width: 100%;
    max-width: 920px;
    height: 50%;
    max-height: 400px;
    font-size: 16px;
    text-align: left;
}

#modal-content-innar p {
  margin-bottom: 0;
}

#modal-content-innar a {
  cursor: pointer;
}

#modal-content::-webkit-scrollbar {
    background: #fff;
    width: 5px
}

#modal-content::-webkit-scrollbar-thumb {
    background: #aaa
}

#modal-content .txtLink {
  color: #163182;
  font-size: inherit;
  line-height: 1.5em;
  text-decoration: underline;
  cursor: pointer;
}

#modal-content .txtLink:hover {
    color: #36c;
}

a#modal-close {
    display: block;
    margin-top: 16px;
}

