:root {
  --dark_gold: #a27624;
  --light_gold: #f3df96;
  --yellow:#f3ec19;
  --black:#1f1f1e;
  --grey:#4a4a4a;

}

/* body {
  background: grey;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;

} */

/*__________Bottom pop____________*/
.deposit_pop_bottom {
  position: fixed;
  bottom: 0;
  right: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 240px;
  background: linear-gradient(to right,var(--black),var(--grey),var(--black) 70%);
  border:var(--light_gold) 2px solid;
  border-radius:20px;
  z-index: 999;
}

.bottom_pop_head_border{
    background: linear-gradient(to right, var(--light_gold),var(--dark_gold),var(--light_gold));
    padding:5px;
    border-radius: 30px;
    /* font-family: 'Bree Serif', serif; */
    width:115%;
    margin-left: -10%;
    margin-top: -5%;
}

.bottom_pop_head {
  position: relative;
  cursor: pointer;
  padding:10px 20px 15px 25px;
  background: linear-gradient(var(--black),var(--grey),var(--black));
  display:flex;
  align-items: center;
  border-radius: 30px;
  justify-content: space-between;
}

.bottom_pop_logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:-10px;
  width:75px;
}

.bottom_pop_head_text {
  color: var(--yellow);
  font-size: 22px;
}

.pop_dropdown_icon{
  width:15px;
}


.bottom_pop_container{
  display:none;
}

.bottom_pop_contents {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}

.bottom_pop_contents>* {
  margin: 10px 0;
}

.acc_details, .bottom_pop_contents select {
  padding: 5px 20px;
  background: transparent;
  border:2px outset grey;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  height: 40px;
  text-transform: uppercase;
  box-shadow: 1px 1px 5px #121212;
}

.acc_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bottom_pop_contents select>option {
  color: black;
}

.bottom_pop_btn {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 5px;
  background: linear-gradient(var(--yellow),var(--dark_gold),var(--light_gold));
  padding: 2px;
  color:var(--black);
  transition: 0.2s;
  cursor: pointer;
  border:none;
  width:100%;
  margin: 10px auto 10px auto;
  text-transform: uppercase;
}

.bottom_pop_btn:hover {
  background: linear-gradient( var(--dark_gold),var(--light_gold), var(--dark_gold));
  color:black;
}


/*_________________________Pop window_____________________________*/
.deposit_pop_window_background {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 2010; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background: rgba(0, 0, 0, 0.6);
}

.deposit_pop_window {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display:none;
}

.pop_window_border{
  background: linear-gradient(to right, var(--light_gold),var(--dark_gold),var(--light_gold));
  padding:5px;
  border-radius: 30px;
  width: 40%;
  min-width: 650px;
  height: 480px;
  position: fixed;
  top:45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pop_window {
  width:100%;
  height:100%;
  background: linear-gradient(to right,var(--black),var(--grey),var(--black) 70%);
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  position:relative;
}

.window_header_border{
    align-self: flex-start;
    width:50%;
    background: linear-gradient(to right, var(--light_gold),var(--dark_gold),var(--light_gold));
    padding:4px;
    border-radius:30px;
    margin-top: -5%;
    margin-left:-1%;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px rgb(83,88,94);
}


.window_header {
  box-sizing: border-box;
  border-radius:30px;
  display: flex;
  /* justify-content: space-between; */
  width:100%;
  padding:10px 0px 15px 0px;
  background: linear-gradient(var(--black),var(--grey),var(--black));
  position: relative;
}

.window_header_logo{
  width: 95px;
  position:absolute;
  left:9%;
  transform:translateX(-50%);
  top:-25%;
}

.window_header_text{
  /* font-family: 'Bree Serif', serif; */
  color:var(--yellow);
  font-size:30px;
  margin:0 5%;
  padding-left: 20%;
}


.window_contents{
  display: flex;
  flex-direction: column;
  padding:40px;
}

.window_contents_header{
  /* font-family: 'Bree Serif', serif; */
  color:var(--yellow);
  font-size: 20px;
  letter-spacing: 1px;
}

.window_contents_details{
  display:flex;
  justify-content: space-between;
  min-width: 300px;
  margin-top: 15px;
}

.window_contents_left,.window_contents_right{
  width:42%;
}


.window_contents_item{
  margin:10px 0;
  width:100%;
  display:flex;
  flex-direction: column;
  font-size: 16px;
  color:white;
}

.window_contents_item input , .window_contents_item select{
  padding: 5px 10px;
  background: transparent;
  border:2px outset grey;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  background: rgba(0,0,0,0.3);
  margin:3px 0;
  box-shadow: 1px 1px 5px #121212;
}

.window_contents_item  option{
  background: white;
  color: black;
}

.window_contents_item .input_date{
  position:relative;
  width:100%;
}

.window_contents_item .input_date input{
  width: 100%;
  padding:5px 0px 5px 10px;
  box-sizing: border-box;
}

.window_contents_item .input_date input::-webkit-calendar-picker-indicator {
  opacity: 0;
  padding:5px 15px;
  cursor:pointer;
}

.window_contents_item .input_date img{
  width:30px;
  position:absolute;
  right:3%;
  top:50%;
  transform: translateY(-50%);
  pointer-events: none;
  cursor:pointer;
  z-index: 2;
}


.window_contents_item label{
  font-size: 12px;
  display:flex;
  align-items:flex-end;
  white-space: nowrap;
}

.reminder{
  color:var(--yellow);
  font-size:13px;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 150%;
}

.window_submit_button{
  align-self: center;
  width:150px;
  font-size: 25px;
  font-weight: bold;
  padding:10px;
  background: linear-gradient(var(--yellow),var(--dark_gold),var(--light_gold));
  color:var(--black);
  border:none;
  border-radius: 5px;
  cursor:pointer;
  transition:.3s;
  letter-spacing: 2px;
}

.window_submit_button:hover{
  background: linear-gradient( var(--dark_gold),var(--light_gold), var(--dark_gold));
  color:black;
}

.x_icon{
  position: absolute;
  top:1%;
  right:3%;
  font-size: 30px;
  background: linear-gradient(var(--light_gold),var(--dark_gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor:pointer;
}

.x_icon:hover{
  background:linear-gradient(var(--dark_gold),var(--light_gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@media only screen and (max-width: 1200px), screen and (max-height: 700px) {

/*____Popup window___________*/

.pop_window_border {
  min-width: 600px;
  height:450px;
}


  .window_header_logo{
    max-width: 80px;
  }

  .window_header_text{
    font-size:25px;
  }

  .x_icon {
    font-size: 20px;
  }

  .window_contents_item{
    font-size: 12px;
  }


  .window_contents_item input , .window_contents_item select{
    font-size: 13px;
  }


  .reminder{
    font-size:12px;
  }

  .window_submit_button{
    width:120px;
    font-size: 15px;
    font-weight: bold;
  }


}
