#cookieman-modal.modal {
    z-index: 9999;
    /*opacity:initial;*/
    position:fixed;

    bottom:10vh;
    right:20vw;
    left:20vw;
    border:none;
    border-radius:0;
    outline: none;
	background-color:white;
	-webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
}

/**
duplicates Bootstrap4's ‹.accordion > .card:first-of-type› for bootstrap_package compatibility
https://github.com/benjaminkott/bootstrap_package/pull/775
 */
#cookieman-acco > .card {
    overflow: hidden;
}
#cookieman-acco > .card:first-of-type,
#cookieman-acco > .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
}

#cookieman-modal table {
    font-size: 80%;
}

#cookieman-modal [data-toggle="collapse"]:after {
    content: "+";
    font-size: 2.5rem;
    opacity: .7;
    position: absolute;
    right: 12px;
    top: 50%;
    line-height: 0;
    transition: transform ease-in-out 0.3s;
    transform-origin: center;
    transform: rotate(45deg);
}
#cookieman-modal .btn-info[data-toggle="collapse"]:after {
    content: "";
}

#cookieman-modal [data-toggle="collapse"].collapsed:after {
    transform: rotate(0);
}

#cookieman-settings .card-header {
    position: relative;
}
#cookieman-modal [data-toggle="collapse"][data-target="#cookieman-settings"] {
    position: relative;
}
#cookieman-modal [data-toggle="collapse"][data-target="#cookieman-settings"]:after {
    font-size: 2rem;
}


#cookieman-modal .modal-dialog {
	background-color:white;
	padding:40px;
}
#cookieman-modal .btn-info {
	margin-bottom:10px;
}
#cookieman-modal .card {
	padding:0;
}
#cookieman-modal .card-header {
	background-color:rgb(230,230,230);
	padding:20px;
	margin-bottom:10px;
}
#cookieman-modal .card-body {
	margin-top:10px;
}
#cookieman-modal .modal-content h3 {
	margin-top:0;
}
#cookieman-modal td {
	text-align:left;
}

@media (max-width:799px) {
	#cookieman-modal.modal {
		top:158px;
		bottom:auto;
		right:5.9vw;
		left:5vw;
		max-height:calc(100vh - 170px);
		overflow:auto;

	}
	#cookieman-modal .modal-dialog {
		padding:30px;
	}
	
	
}
@media (max-width:632px) {
	#cookieman-modal.modal {
		top:132px;
		bottom:auto;
		right:10px;
		left:10px;
		max-height:calc(100vh - 146px);
		overflow:auto;
	}
	#cookieman-modal .modal-dialog {
		padding:20px;
	}
	#cookieman-modal .table-responsive {
		border:none;
	}

	#cookieman-modal table,
	#cookieman-modal tbody,
	#cookieman-modal tr,
	#cookieman-modal td {
		display:block !important;
		width:100%;
	}
	#cookieman-modal th {
		display:inline-block !important;
	}
	#cookieman-modal td:first-child {
		background-color:rgb(230,230,230);
	}
	#cookieman-modal .table > thead > tr > th {
		border-bottom: none;
	}
	#cookieman-modal .btn {
		display:block;
		width:240px;
		margin:5px auto;
	}
}


#cookieman-modal .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
#cookieman-modal .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
    text-align:left;
}
#cookieman-modal .table > thead > tr > th, 
#cookieman-modal .table > thead > tr > td, 
#cookieman-modal .table > tbody > tr > th, 
#cookieman-modal .table > tbody > tr > td, 
#cookieman-modal .table > tfoot > tr > th, 
#cookieman-modal .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.25;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

#cookieman-modal .collapse {
    display: none;
}
#cookieman-modal .collapse.in {
    display: block;
}

#cookieman-modal .modal-footer .btn-primary {
    color: #fff;
    background-color: #3DCD58;
    border-color: #3DCD58;
}
#cookieman-modal .modal-footer .btn-primary:hover {
    color: #fff;
    background-color: #2cab44;
    border-color: #2aa341;
}



/* Civilisten 

.modal-open {
 overflow:hidden
}
.modal-open .modal {
 overflow-x:hidden;
 overflow-y:auto
}
.modal {
 position:fixed;
 top:0;
 left:0;
 z-index:1050;
 display:none;
 width:100%;
 height:100%;
 overflow:hidden;
 outline:0
}
.modal-dialog {
 position:relative;
 width:auto;
 margin:.5rem;
 pointer-events:none
}
.modal.fade .modal-dialog {
 transition:-webkit-transform .3s ease-out;
 transition:transform .3s ease-out;
 transition:transform .3s ease-out,-webkit-transform .3s ease-out;
 -webkit-transform:translate(0,-50px);
 transform:translate(0,-50px)
}
@media (prefers-reduced-motion:reduce) {
 .modal.fade .modal-dialog {
  transition:none
 }
}
.modal.show .modal-dialog {
 -webkit-transform:none;
 transform:none
}
.modal.modal-static .modal-dialog {
 -webkit-transform:scale(1.02);
 transform:scale(1.02)
}
.modal-dialog-scrollable {
 display:-ms-flexbox;
 display:flex;
 max-height:calc(100% - 1rem)
}
.modal-dialog-scrollable .modal-content {
 max-height:calc(100vh - 1rem);
 overflow:hidden
}
.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
 -ms-flex-negative:0;
 flex-shrink:0
}
.modal-dialog-scrollable .modal-body {
 overflow-y:auto
}
.modal-dialog-centered {
 display:-ms-flexbox;
 display:flex;
 -ms-flex-align:center;
 align-items:center;
 min-height:calc(100% - 1rem)
}
.modal-dialog-centered::before {
 display:block;
 height:calc(100vh - 1rem);
 height:-webkit-min-content;
 height:-moz-min-content;
 height:min-content;
 content:""
}
.modal-dialog-centered.modal-dialog-scrollable {
 -ms-flex-direction:column;
 flex-direction:column;
 -ms-flex-pack:center;
 justify-content:center;
 height:100%
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
 max-height:none
}
.modal-dialog-centered.modal-dialog-scrollable::before {
 content:none
}
.modal-content {
 position:relative;
 display:-ms-flexbox;
 display:flex;
 -ms-flex-direction:column;
 flex-direction:column;
 width:100%;
 pointer-events:auto;
 background-color:#fff;
 background-clip:padding-box;
 border:1px solid rgba(0,0,0,.2);
 border-radius:.3rem;
 outline:0
}
.modal-backdrop {
 position:fixed;
 top:0;
 left:0;
 z-index:1040;
 width:100vw;
 height:100vh;
 background-color:#000
}
.modal-backdrop.fade {
 opacity:0
}
.modal-backdrop.show {
 opacity:.5
}
.modal-header {
 display:-ms-flexbox;
 display:flex;
 -ms-flex-align:start;
 align-items:flex-start;
 -ms-flex-pack:justify;
 justify-content:space-between;
 padding:1rem 1rem;
 border-bottom:1px solid #dee2e6;
 border-top-left-radius:calc(.3rem - 1px);
 border-top-right-radius:calc(.3rem - 1px)
}
.modal-header .close {
 padding:1rem 1rem;
 margin:-1rem -1rem -1rem auto
}
.modal-title {
 margin-bottom:0;
 line-height:1.5
}
.modal-body {
 position:relative;
 -ms-flex:1 1 auto;
 flex:1 1 auto;
 padding:1rem
}
.modal-footer {
 display:-ms-flexbox;
 display:flex;
 -ms-flex-wrap:wrap;
 flex-wrap:wrap;
 -ms-flex-align:center;
 align-items:center;
 -ms-flex-pack:end;
 justify-content:flex-end;
 padding:.75rem;
 border-top:1px solid #dee2e6;
 border-bottom-right-radius:calc(.3rem - 1px);
 border-bottom-left-radius:calc(.3rem - 1px)
}
.modal-footer>* {
 margin:.25rem
}
.modal-scrollbar-measure {
 position:absolute;
 top:-9999px;
 width:50px;
 height:50px;
 overflow:scroll
}
@media (min-width:576px) {
 .modal-dialog {
  max-width:500px;
  margin:1.75rem auto
 }
 .modal-dialog-scrollable {
  max-height:calc(100% - 3.5rem)
 }
 .modal-dialog-scrollable .modal-content {
  max-height:calc(100vh - 3.5rem)
 }
 .modal-dialog-centered {
  min-height:calc(100% - 3.5rem)
 }
 .modal-dialog-centered::before {
  height:calc(100vh - 3.5rem);
  height:-webkit-min-content;
  height:-moz-min-content;
  height:min-content
 }
 .modal-sm {
  max-width:300px
 }
}
@media (min-width:992px) {
 .modal-lg,
 .modal-xl {
  max-width:800px
 }
}
@media (min-width:1200px) {
 .modal-xl {
  max-width:1140px
 }
} */