/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 


    
}

/* Portrait */
@media only screen 
  and (min-device-width: 360px) 
  and (max-device-width: 390px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 

    .copy-address input.text, .copy-address2 input.text2 {

        padding: 10px;
        padding: auto;
        font-size: 10px;
        background-color: transparent;
        color: white;
        border:none;
        outline: none;
        width: 300px;
        margin-right: 2px;
        text-align: center;
        
        
    }

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

}