:root {
    --popup-close-color: #000;
    --popup-close-size: 16px;
    --popup-close-margin: .5rem;
    --popup-close-bold: 2px;
    --popup-layer-bg: rgba(0, 0, 0, .8);
    --popup-bg: #eee;
    --popup-container-fixed-width: auto;
    --popup-container-fixed-height: auto;
    --popup-container-fixed-min-width: 320px;
    --popup-container-fixed-min-height: 320px;
}

.popup_hide {
    display: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.popup_show {
    overflow: hidden !important;
}

.popup {
    padding: 3em;
}

.popup_fixed {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup,
.popup_full,
.popup_fixed {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--popup-layer-bg);
    box-sizing: border-box;
}

.popup_close {
    z-index: 165;
    position: absolute;
    top: 0;
    right: 0;
    margin: var(--popup-close-margin) var(--popup-close-margin) 0 0;
    width: var(--popup-close-size);
    height: var(--popup-close-size);
    cursor: pointer;
}

.popup_close .close {
    right: 10px;
    position: fixed;
    font-size: 36px;
    top: 7px;
}

.popup_container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    background: #426fa8cc;
}

.size {
    padding:50px 250px !important;
    margin: auto;
}

.popup_fixed .popup_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: var(--popup-container-fixed-width);
    height: var(--popup-container-fixed-height);
    min-width: var(--popup-container-fixed-min-width);
    min-height: var(--popup-container-fixed-min-height);
}

.popup_header,
.popup_content,
.popup_footer {
    position: relative;
    box-sizing: border-box;
    padding: .5rem;
}

.popup_content {
    flex-grow: 1;
    overflow-y: clip;
}

/* custom scroll bar */
.popup_content::-webkit-scrollbar-button {
    display: none;
}

.popup_content::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
}

.popup_content::-webkit-scrollbar-track {
    background-color: transparent;
}

.popup_content::-webkit-scrollbar-track:hover {
    background-color: transparent;
}

.popup_content::-webkit-scrollbar-thumb {
    background-color: #babac0;
    /*border-radius: 8px;*/
}

.popup_content::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a5;
    border: 4px solid transparent;
}

/* custom scroll bar */

.popup_content[data-align='center'] {
    text-align: center;
}

.popup_content[data-align='right'] {
    flex-grow: right;
}

.popup_footer {
    text-align: center;
}

.popup_footer[data-align='left'] {
    text-align: left;
}

.popup_footer[data-align='right'] {
    text-align: right;
}

h1 {
	text-align: center;
	font-size: 27px;
	color: white;
	font-weight: 800;
}
.h1-box{
	background: #295489;
	margin-bottom: 10px;
	padding: 4px 8px;
	width: 104%;
	margin-left: -15px;
	margin-right: 0px;
}
.box{
	background: #1d4b877a;
	padding: 25px;
	border: 1px solid #234b7f;
}
.btn-addmember{
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #4d4343;
	padding: 8px 13px;
	background: #fff;
	color: black;
	border-radius: 10px;
	margin: auto;
	text-align: center;
}
.term{
	background: #295489;
	margin: 10px auto;
	margin-right: auto;
	margin-left: auto;
	color: white;
	width: 104%;
	margin-left: -15px;
	margin-right: 0px;
	padding: 12px 10px;
}
.btn-quote{
	height: 45px !important;
	line-height: 33px !important;
	padding: 4px 35px !important;
}
.link-line{
	color: white;
	text-decoration: underline;
}

.othermember-form .delete-btn {
  line-height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  right: 15px;
}
.othermember-form .delete-btn2 {
  line-height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  right: 15px;
}
.border-div{
	border-top: 1px solid #ffffff9e;
}
.mtb-15{
	margin: 15px auto;
}