/* ----------- iPhone 4 and 4S ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .modal-container {
      width: 100% !important;
      padding: 0px !important;
  }
  .modal-wrapper {
    padding: 5px;
  }
  .modal-body {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    /*max-width: 300px;*/
    /*max-height: 300px;*/
  }
  #betlist tbody {
    font-size: smaller;
  }
  .tdsites {
    width: 5px;
    word-break: break-word;
  }
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {

}

/* ----------- iPhone 5 and 5S ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .modal-container {
      width: 100% !important;
      padding: 0px !important;
  }
  .modal-wrapper {
    padding: 5px;
  }
  .modal-body {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    /*max-width: 300px;*/
    /*max-height: 300px;*/
  }
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {

}

/* ----------- iPhone 6 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
  .modal-container {
      width: 100% !important;
      padding: 0px !important;
  }
  .modal-wrapper {
    padding: 5px;
  }
  .modal-body {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    /*max-width: 375px;*/
    /*max-height: 500px;*/
  }
}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 

}

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

}

/* ----------- iPhone 6+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
  .modal-container {
      width: 100% !important;
      padding: 0px !important;
  }
  .modal-wrapper {
    padding: 5px;
  }
  .modal-body {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    /*max-width: 414px;*/
    /*max-height: 500px;*/
  }
  #betlist tbody {
    font-size: large;
  }
}

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

}

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

}