:root {
  --light_gold: rgb(241, 229, 151);
  --dark_gold: rgb(205, 166, 84);
}

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

/*__________Bottom pop____________*/
.deposit_pop_bottom {
  position: fixed;
  bottom: 0;
  right: 268px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 250px;
  background: linear-gradient(rgb(176,185,196),rgb(254,254,254),rgb(176,185,196));
  border-top-right-radius: 15px;
  z-index: 999;
}

.bottom_pop_head {
  position: relative;
  cursor: pointer;
  padding:11px;
  background: linear-gradient(black,rgb(46,48,49),black);
  display:flex;
  justify-content: space-between;
  align-items: center;
  border-top-right-radius: 15px;
}

.bottom_pop_logo{
  position:absolute;
  left:-17px;
  width:63px;
}

.bottom_pop_head_text {
  color: rgb(218,196,141);
  margin-left: 40px;
}

.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 5px;
  background: transparent;
  border:2px outset grey;
  color: black;
  height: 40px;
  text-transform: uppercase;
  box-shadow: 1px 1px 5px #121212;
  font-size: 12px;
}

.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: 15px;
  letter-spacing: 2px;
  border-radius: 15px;
  background: linear-gradient(rgb(9,79,157), rgb(19,122,197), rgb(9,79,157));
  padding: 10px 15px;
  color:white;
  transition: 0.2s;
  cursor: pointer;
}

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


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

.deposit_pop_window_background {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* 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-color: rgb(0,0,0); !* Fallback color *!
  background-color: rgba(0,0,0,0.4); !* Black w/ opacity *!*/
  background: rgba(0, 0, 0, 0.6);
}

.pop_window {
  width: 40%;
  min-width: 650px;
  height: 480px;
  position: fixed;
  /*top:45%;*/
  top:22%;
  /*left: 50%;*/
  left:30%;
  /*transform: translate(-50%, -50%);*/
  /*transform: unset;*/
  background: linear-gradient(rgb(176,185,196),rgb(254,254,254),rgb(176,185,196));
  display: flex;
  flex-direction: column;
  border-radius: 30px;
}

.window_header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: linear-gradient(black,rgb(46,48,49),black);
  box-shadow: 0px 5px 10px rgb(83,88,94);
  border-top-right-radius:20px;
  position: relative;
}

.window_header_logo{
  width: 100px;
  position:absolute;
  left:-30px;
  top:-10px;
}

.window_header_text{
  margin-left: 80px;
  color:rgb(218,196,141);
  font-size:25px;
}

.x_icon {
  width: 20px;
  height: 20px;
  padding: 3px;
  cursor: pointer;
}

.x_icon:hover{
  filter:brightness(150%);
}


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

.window_contents_header{
  font-family: 'Oswald', sans-serif;
  color:rgb(19,122,197);
  font-size: 20px;
  /*letter-spacing: 1px;*/
  font-weight: bold;
}

.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;
}

.window_contents_item input , .window_contents_item select{
  height:30px;
  font-size: 16px;
  background: none;
  border:solid 1px black;
  margin-bottom:5px;
  padding:0 10px;
}

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

.reminder{
  color:red;
  font-size:13px;
  font-style: italic;
}


.window_submit_button{
  align-self: center;
  width:150px;
  font-size: 20px;
  padding:10px;
  background: linear-gradient(rgb(9,79,157), rgb(19,122,197), rgb(9,79,157));
  color:white;
  border:none;
  border-radius: 5px;
  cursor:pointer;
  transition:.3s;
  margin-top: 20px;
  letter-spacing: 2px;
}

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



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

/*____Popup window___________*/

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


  .window_header {
    font-size: 20px;
    padding:15px;
  }

  .window_header_logo{
    max-width: 80px;
  }

  .window_header_text{
    margin-left: 70px;
    font-size:20px;
  }

  .x_icon {
    width: 12px;
    height: 12px;
  }

  .window_contents_item{
    font-size: 12px;
  }


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


  .reminder{
    font-size:12px;
  }

  .window_contents_item label{
    font-size: 10px;
    font-weight: bold;
  }

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


}
