@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        width: auto;
        margin: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    img,
    table,
    td,
    blockquote,
    code,
    pre,
    textarea,
    input,
    iframe,
    object,
    embed,
    video {
        max-width: 100%;
    }
    
    table {
        border-radius:0;
        -moz-border-radius:0;
    }
    
    img {
        height: auto;
    }

    textarea,
    table,
    td,
    th,
    code,
    pre,
    samp {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
        word-wrap: break-word;
    }
    
    code,
    pre,
    samp {
        white-space: pre-wrap;
    }
    
    .element1,
    .element2 {
        float: none;
        width: auto;
    }


    .hide_mobile {
        display: none !important;
    }
    
    select {
        max-width: 260px;
    }
    
    .small_iphone{
        font-size: 10px;
        text-align: center;
    }
	
	.img-max-200 {
	max-height:150px;
	height:150px;
}

@media (max-device-width:768px) and (orientation: landscape) {
  html {
   -webkit-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
  }
}