* {
	margin: 0;
	padding: 0;
	border-sizing: border-box;
}

html {
	font-size: 0.75rem;
}

:root {
  --icon-size: 4.1666rem;
  --background-popup: #ffffff;
}

div#TB_window {
	/*border: none;
	background-color: transparent;*/
}

.popup-container.hide-popup {
  display: none;
}

.popups-container {
  height: 100%;
}

.popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  align-self: self-start;
}

.information-popup {
	background-color: var(--background-popup);
}

.popup-content {
  width: 90%;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  row-gap: 2.9166rem;
  border-radius: 0.4166rem;
  background-color: #ffffff;
}

.popup-icon-container,
.popup-text-container,
.popup-buttos {
  margin-bottom: 1rem;
}

.popup-icon-container {
  display: flex;
  justify-content: center;
}

.popup-icon-container .warning-icon {
	width: 5.334rem;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-size);
  height: var(--icon-size);
}

.text-popup {
  display: block;
  text-align: center;
  font-size: 1.1666rem;
  font-family: 'Open Sans', sans-serif;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  column-gap: 2.9166rem;
  margin-bottom: 0.4166rem;
}

.default-button-popup {
  border: none;
  background-color: transparent;
  height: 3.5rem;
  width: 8rem;
  border-radius: 0.3333rem;
  cursor: pointer;
  font-size: 1.1666rem;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}

.cancel-button {
  border: 0.125rem solid #cccccc;
}

.confirm-button {
  background-color: #2e97b7;
  color: #ffffff;
}


@media screen and (max-width: 440px) {
  .popup-content {
    width: 95vw;
  }
}

@media screen and (max-width: 375px) {
  .popup-buttos {
    justify-content: space-around;
  }
}
