

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

/*
@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}
*/
/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
/*
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: sans-serif;
}
*/
/* ------------------------------------ */
/*
a {
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}
*/
/* ------------------------------------ */
/*
h1,h2,h3,h4,h5,h6 {margin: 0px;}

p {margin: 0px;}

ul, li {
	margin: 0px;
	list-style-type: none;
}

*/
/* ------------------------------------ */
/*
input {
  display: block;
	outline: none;
	border: none !important;
}

textarea {
  display: block;
  outline: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}
*/
/* ------------------------------------ */
/*
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

*/
/*//////////////////////////////////////////////////////////////////
[ Table ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-table100 {
  /*width: 100%;
  min-height: 100vh;
  background: #c4d3f6;*/

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 33px 30px;
}

.wrap-table100 {
  width: 960px;
  border-radius: 10px;
  overflow: hidden;
}

.table {
  width: 100%;
  display: table;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .table {
    display: block;
  }
}

.tablerow {
  display: table-row;
  background: #fff;
}

.tablerow.header {
  color: #ffffff;
  background: #30afb8;
}

@media screen and (max-width: 768px) {
  .tablerow {
    display: block;
  }

  .tablerow.header {
    padding: 0;
    height: 0px;
  }

  .tablerow.header .cell {
    display: none;
  }

  .tablerow .cell:before {
    font-family: inherit;
    font-size: 12px;
    color: #808080;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: unset !important;

    margin-bottom: 13px;
    content: attr(data-title);
    min-width: 98px;
    display: block;
  }
}

.cell {
  display: table-cell;
}

@media screen and (max-width: 768px) {
  .cell {
    display: block;
  }
}

.tablerow .cell {
  font-family: inherit;
  font-size: 15px;
  color: #666666;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.tablerow.header .cell {
  font-family: inherit;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 19px;
  padding-bottom: 19px;
}

.tablerow .cell:nth-child(1) {
  width: 270px;
  padding-left: 40px;
}

.tablerow .cell:nth-child(2) {
  width: 230px;
}

.tablerow .cell:nth-child(3) {
  width: 150px;
}

.tablerow .cell:nth-child(4) {
  width: 290px;
}


.table, .tablerow {
  width: 100% !important;
}

.tablerow:hover {
  background-color: #c2ecef;
  /*cursor: pointer;*/
}

@media (max-width: 768px) {
  .tablerow {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 18px;
    padding-top: 30px;
    padding-right: 15px;
    margin: 0;
  }
  
  .tablerow .cell {
    border: none;
    padding-left: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .tablerow .cell:nth-child(1) {
    padding-left: 30px;
  }
  
  .tablerow .cell {
    font-family: inherit;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    font-weight: unset !important;
  }

  .table, .tablerow, .cell {
    width: 100% !important;
  }
}

.shadow {
	margin: 1rem;

  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  -o-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}


/*TEST*/

.button {
	transition: all 0.5s ease-out;
	color: #666666;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 150px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 1s ease-in-out;
}

.popup h2 {
	margin-top: 0;
	color: #30afb8;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	padding-bottom: 20px;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  text-decoration: none;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

.content a {
	text-decoration: underline;
}

.content{
	overflow: auto;
}

.contentbox{
	border-bottom: 1px solid #e8ecf1;
}

.contentbutton{
	text-align: center;
	margin-top: 30px;
}

.confirmation_error{
	display: none;
}


@media screen and (max-width: 700px){
  .popup{
    width: 70%;
  }
}
