/* modal css */
.modalScroll {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 94%;
    margin: auto;
    transform: translateX(-525px);
}
@media only screen and (max-width: 1200px) {
    .modalScroll {
        left: 0;
        right: 0;
        transform: none;
    }
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index:99;
}
.modal_bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.js-modal-close.btn {
    position: absolute;
    top: 8px;
    left: 8px;
    margin: 0;
    line-height: 1.0;
    text-decoration: none;
}

.modalScroll {
  background: #ffffff;
  height: 90vh;
  max-width: 580px;
  max-height: 800px;
  border-radius: 5px;
}
.ScrollContent {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 3% 0;
}
::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
  border-radius: 10px;
}

.modal_content h3 {
    margin-bottom: 1em;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
}
.modal_content {
  text-align: center;
  padding:0 5px 30px 8px;
}
.modal_content ul li {
	display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid #666666;
	padding: 5px 0 5px;
}
.modal_content ul li:first-child {
    border-top:1px solid #666666;
}
.modal_content ul li div {
	text-align: left;
}
.modal_content ul li div:first-child {
	width: 160px !important;
}
.modal_content ul li div:first-child img {
	width: 100%;
    max-width: inherit;
}
.modal_content ul li div:nth-child(2) {
	width: 320px;
    flex-grow: 1;
	padding: 0 0px 0 5px;
}
@media only screen and (max-width: 750px) {
    .modal_content ul li div:nth-child(2) {
        flex-grow: inherit;
    }
}

.btn_mini {
	width: 48px;
	display: block;
    margin-bottom: 4px;
    padding: 0.3rem;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: .3s all ease;
	background-color: #111167;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}
.btn_mini:hover {
    background-color: #585894;
    color: #ffffff;
    opacity: 1;
}


