
/* POPUP */
#background-popup{
	width: 100%;
	min-height: 100vh;
	/* position: fixed; */
	background: rgba(0, 0, 0, 0.8);
	/* top:0;
	left:0; */
	margin:0;
	padding:0;
	/* z-index: 10; */
    /* display: none; */
    display: flex;
	align-items: center;
	justify-content: center;
    box-sizing: border-box;

    height: 100%;
    /* overflow-y: scroll; */
  }

  #wrapper-popup{
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	/* z-index: 1000; */
	width:60%;
	background: #ffffff;
	height: fit-content;
	border: 3px solid #dc380a;
	padding: 40px;
	border-radius: 6px;
	/* overflow: auto; */
	flex-wrap: nowrap;
	box-sizing: border-box;



  }

  .btn-order-popup {
	margin-top: 20px;
	background-color: #dc380a;
	border-color: #2e6da4;
	color: ffffff;
	padding: 10px 11px;
	text-decoration: none;
	border-radius: 5px;
	border: 1px solid #7b7979;
	font-weight: bold;
	font-size: 32px;
	display: inline-block;
  }

  .img-wrapper-popup{
	text-align: center;

  }

  .img-wrapper-popup img{
	max-width: 200px;
  }

  .p-popup{
	color: #000000;
	font-size: 22px;
	line-height: 1.1;
	margin-bottom: 18px;
  }

  .wrapper-content-popup{
	align-self: flex-start;
  }
  .wrapper-content-popup h2{
	color: #2e6da4;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 18px;
  }

  .wrapper-content-popup h3{
	color: #2e6da4;
	line-height: 1;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 18px;
  }

  .resign{
	color: #000000;
    margin-top: 20px;
    cursor: default;
	/* cursor: pointer; */
	font-size: 16px;
  }


  @media screen and (max-width: 1200px) {
	#wrapper-popup{
	  flex-wrap: wrap;
	  width: 95%;
	}
  }

  @media screen and (max-width: 800px) {

	#wrapper-popup{
      padding: 8px;
      /* overflow: auto; */
    height: 100%;
	}
	.img-wrapper img {
	  width: 160px;
	}
	.p-popup{
	  font-size: 18px;
	}

	.wrapper-content-popup h2{
	  font-size: 24px;
	}

	.wrapper-content-popup h3{
	  font-size: 20px;
	}

	.btn-order-popup{
	  font-size: 22px;
	}

	.resign{
	  font-size: 16px;
	}
  }

  /* POPUP */