@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

	





    
    
    #ticket{
         display: grid; 
      grid-auto-flow: row dense; 
      grid-auto-columns: 1fr; 
      grid-auto-rows: 1fr; 
      grid-template-columns: 2fr 1fr 6.5fr 1fr; 
      grid-template-rows: 1fr; 
      gap: 0em 0em; 
      grid-template-areas: 
        ". . . ."; 
        width: 320px;
        height: 200px;
        background-color: #ffffff;
        border-radius: 1em;
        position: relative;
        float: left;
        clear: both;
        overflow: hidden;
    }
    
    
    .t1{
        background-color: #21B19C;
        color: #fff;
        width: 100%;
        height: 100%;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        
    }
    
    .t1 h3{
        rotate: -90deg;
        margin: 0;
        padding: 0;
        width: auto;
        position: absolute;
        float: none;
        font-weight: bold;
    }
    
    
    .t2{
        background-color: #606060;
        background-image: url("../img/ticket-graphic.svg");
        background-position: bottom center;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .t3{
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 0.8fr 2.5fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    ". ."; 
        height: auto;
    }
    
    
    .t3 .flagico{
        width: 70%;
        height: 70%;
        margin: 2em 15%;
        background-position: top center;
    }
    
    
    .t3 #ticketdetails{
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: .5em .5em; 
  grid-template-areas: 
    "."
    "."
    "."; 
        float: left;
        clear: none;
        height: 90%;
        
    }
    
    
    .t3 #ticketdetails h3{
        font-family: "Recline-SemiBold";
        margin: .5em 0 0;
    }
    
    
    .t3 h4{
        font-weight: bold;
        color: #A7A7A7;
        float: left;
        clear: both;
        text-align: left;
        margin: 0;
    }
    
    
    .t3 h6{
        margin: 0;
    }
    
    
    
    .t4{
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
         width: 100%;
        height: 200px;
        border: 0px dashed #000;
        border-left-width: 1px;
    }
    
    
    .t4 p{
         rotate: -90deg;
        margin: 0;
        padding: 0;
        position: absolute;
        float: none;
        font-weight: bold;
       
    }
    
    
    
    
    
    
    
    
    .getticket{
        width: 6em;
        height: 6em;
        border-radius: .5em;
        background-color: #F69038;
        display: block;
        float: left;
        clear: none;
        padding: 1.5em;
        color: #fff;
        font-weight: bolder;
        position: relative;
        bottom: 0;
        cursor: pointer;
        transition: all .4s;
    }
    
    
    .getticket h4{
        font-weight: bold;
    }
    
    
    .getticket i{
        font-size: 2em;
    }
    
    
    .getticket:hover{
        padding: 1.7em;
    }
    
    
    
    
    
    
    
   .loginpane-expand .ticket{
        width: calc(100% - 4em);
        height: 25vh;
        border-radius: 1em;
        margin: auto 2em;
        clear: both;
    }
    
    
    .loginpane-expand .ticket #ticket{
        width: 100%;
        height: 25vh;
         box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-webkit-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-moz-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
        font-size: .65em;
    }
    
    
    .loginpane-expand .ticket .t1{
        height: 25vh;
    }
    
    
    .loginpane-expand .ticket .t2{
        height: 25vh;
    }
    
    
    .loginpane-expand .ticket .t3{
        height: 25vh;
    }

    .loginpane-expand .t3 #ticketdetails{
              display: grid; 
      grid-auto-flow: row dense; 
      grid-auto-columns: 1fr; 
      grid-auto-rows: 1fr; 
      grid-template-columns: 1fr; 
      grid-template-rows: 1fr 1fr 1fr; 
      gap: .5em .5em; 
      grid-template-areas: 
        "."
        "."
        "."; 
            float: left;
            clear: none;
            height: 90%;

        }
    
    .loginpane-expand .ticket .t4{
        height: 25vh;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*TicketPage*/
    
    
    
    .ticket-pane{
        display: block;
        float: left;
        clear: none;
        width: 100%;
        height: auto;
        top: -100vh;
        position: relative;
        margin: auto 0% -100vh;
    }
    
    
    
    .tp-left{
        width: calc(100% - 0em);
        height: auto;
        margin: 0em;
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
    }
    
    
    .ticket-form{
        width: calc(100% - 4em);
        height: calc(100% - 4em);
        display: block;
        float: left;
        clear: none;
        overflow-y: scroll;
        padding: 2em;
    }
    
    
    
     .tp-right{
        width: 90%;
        height: 70vh;
        display: block;
        float: left;
        clear: none;
         float: right;
         margin: 5vh 5% 5% 5%;
    }
    
    
    .tp-right #ticket{
        width: 100%;
    }
    
    
    .tp-right .ticket-summary{
        padding: 1em;
        background-color: white;
        float: left;
        clear: none;
        border-radius: 1.5em;
        width: calc(100% - 2em);
        height: calc(auto - 2em);
        display: block;
        margin: 2em auto auto 0;
    }
    
    
    .ticket-summary ul{
        list-style: none;
        font-family: "GeneralSans-Regular";
        color: #000;
        margin: 0;
        padding: 0;
        
    }
    
    .ticket-summary li{
        margin: .5em 0;
    }
    
    .ticket-summary li span{
        font-weight: bolder;
        letter-spacing: .5px;
        
    }



.submitforticker{
    width: calc(100% - 0em);
    height: auto;
    padding: 1.15em 1em;
    margin: 2em auto 0;
    font-size: 1.2em;
}
    
    
    
    
    .chooseticket-number{
        border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
    }
    
    .chooseticket-number h4{
        color: #606060;
    }
    
    
    
    
    
    .ticketassign{
         border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
        margin: 2em auto;
        
    }






    
    
    
    
    /*TicketPage*/
    
    
    
    


    















/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	
	
	
    
    
    #ticket{
         display: grid; 
      grid-auto-flow: row dense; 
      grid-auto-columns: 1fr; 
      grid-auto-rows: 1fr; 
      grid-template-columns: 2fr 1fr 6.5fr 1fr; 
      grid-template-rows: 1fr; 
      gap: 0em 0em; 
      grid-template-areas: 
        ". . . ."; 
        width: 500px;
        height: 250px;
        background-color: #ffffff;
        border-radius: 1em;
        position: relative;
        float: left;
        clear: both;
        overflow: hidden;
    }
    
    
    .t1{
        background-color: #21B19C;
        color: #fff;
        width: 100%;
        height: 100%;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        
    }
    
    .t1 h3{
        rotate: -90deg;
        margin: 0;
        padding: 0;
        width: auto;
        position: absolute;
        float: none;
        font-weight: bold;
    }
    
    
    .t2{
        background-color: #606060;
        background-image: url("../img/ticket-graphic.svg");
        background-position: bottom center;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .t3{
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 2.5fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    ". ."; 
        height: auto;
    }
    
    
    .t3 .flagico{
        width: 70%;
        height: 70%;
        margin: 2em 15%;
        background-position: top center;
    }
    
    
    .t3 #ticketdetails{
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    "."
    "."
    "."; 
        float: left;
        clear: none;
        height: 200px;
        
    }
    
    
    .t3 #ticketdetails h3{
        font-family: "Recline-SemiBold";
        margin: .5em 0 0;
    }
    
    
    .t3 h4{
        font-weight: bold;
        color: #A7A7A7;
        float: left;
        clear: both;
        text-align: left;
        margin: 0;
    }
    
    
    .t3 h6{
        margin: 0;
    }
    
    
    
    .t4{
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
         width: 100%;
        height: 250px;
        border: 0px dashed #000;
        border-left-width: 1px;
    }
    
    
    .t4 p{
         rotate: -90deg;
        margin: 0;
        padding: 0;
        position: absolute;
        float: none;
        font-weight: bold;
       
    }
    
    
    
    
    
    
    
    
    .getticket{
        width: 7em;
        height: 9em;
        border-radius: .5em;
        background-color: #F69038;
        display: block;
        float: left;
        clear: none;
        padding: 1.5em;
        color: #fff;
        font-weight: bolder;
        position: relative;
        bottom: 0;
        cursor: pointer;
        transition: all .4s;
    }
    
    
    .getticket h4{
        font-weight: bold;
    }
    
    
    .getticket i{
        font-size: 2em;
    }
    
    
    .getticket:hover{
        padding: 1.7em;
    }
    
    
    
    
    
    
    
   .loginpane-expand .ticket{
        width: calc(100% - 4em);
        height: 20vh;
        border-radius: 1em;
        margin: auto 2em;
        clear: both;
    }
    
    
    .loginpane-expand .ticket #ticket{
        width: 100%;
        height: 20vh;
         box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-webkit-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-moz-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
        font-size: .65em;
    }
    
    
    .loginpane-expand .ticket .t1{
        height: 20vh;
    }
    
    
    .loginpane-expand .ticket .t2{
        height: 20vh;
    }
    
    
    .loginpane-expand .ticket .t3{
        height: 20vh;
    }
    
    .loginpane-expand .ticket .t4{
        height: 20vh;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*TicketPage*/
    
    
    
    .ticket-pane{
        display: block;
        float: left;
        clear: none;
        width: 85%;
        height: auto;
        top: -100vh;
        position: relative;
        margin: auto 7.5% -100vh;
    }
    
    
    
    .tp-left{
        width: calc(45% - 2em);
        height: calc(100vh - 2em);
        margin: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
    }
    
    
    .ticket-form{
        width: calc(100% - 6em);
        height: calc(100% - 6em);
        display: block;
        float: left;
        clear: none;
        overflow-y: scroll;
        padding: 3em;
    }
    
    
    
     .tp-right{
        width: 45%;
        height: 70vh;
        display: block;
        float: left;
        clear: none;
         float: right;
         margin: 20vh auto auto auto;
    }
    
    
    .tp-right #ticket{
        width: 100%;
    }
    
    
    .tp-right .ticket-summary{
        padding: 1.5em;
        background-color: white;
        float: left;
        clear: none;
        border-radius: 1.5em;
        width: calc(100% - 3em);
        height: calc(auto - 3em);
        display: block;
        margin: 2em auto auto 0;
    }
    
    
    .ticket-summary ul{
        list-style: none;
        font-family: "GeneralSans-Regular";
        color: #000;
        margin: 0;
        padding: 0;
        
    }
    
    .ticket-summary li{
        margin: .5em 0;
    }
    
    .ticket-summary li span{
        font-weight: bolder;
        letter-spacing: .5px;
        
    }
    
    
    
    
    .chooseticket-number{
        border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
    }
    
    .chooseticket-number h4{
        color: #606060;
    }
    
    
    
    
    
    .ticketassign{
         border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
        margin: 2em auto;
        
    }
    
    
    
    
    /*TicketPage*/
    
    
    
    
	
    
    
    
    
    
    
    
    
    
	

	
	
	
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    
    
    
    
    
    #ticket{
         display: grid; 
      grid-auto-flow: row dense; 
      grid-auto-columns: 1fr; 
      grid-auto-rows: 1fr; 
      grid-template-columns: 2fr 1fr 6.5fr 1fr; 
      grid-template-rows: 1fr; 
      gap: 0em 0em; 
      grid-template-areas: 
        ". . . ."; 
        width: 500px;
        height: 250px;
        background-color: #ffffff;
        border-radius: 1em;
        position: relative;
        float: left;
        clear: both;
        overflow: hidden;
    }
    
    
    .t1{
        background-color: #21B19C;
        color: #fff;
        width: 100%;
        height: 100%;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        
    }
    
    .t1 h3{
        rotate: -90deg;
        margin: 0;
        padding: 0;
        width: auto;
        position: absolute;
        float: none;
        font-weight: bold;
    }
    
    
    .t2{
        background-color: #606060;
        background-image: url("../img/ticket-graphic.svg");
        background-position: bottom center;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .t3{
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 2.5fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    ". ."; 
        height: auto;
    }
    
    
    .t3 .flagico{
        width: 70%;
        height: 70%;
        margin: 2em 15%;
        background-position: top center;
    }
    
    
    .t3 #ticketdetails{
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    "."
    "."
    "."; 
        float: left;
        clear: none;
        height: 200px;
        
    }
    
    
    .t3 #ticketdetails h3{
        font-family: "Recline-SemiBold";
        margin: .5em 0 0;
    }
    
    
    .t3 h4{
        font-weight: bold;
        color: #A7A7A7;
        float: left;
        clear: both;
        text-align: left;
        margin: 0;
    }
    
    
    .t3 h6{
        margin: 0;
    }
    
    
    
    .t4{
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
         width: 100%;
        height: 250px;
        border: 0px dashed #000;
        border-left-width: 1px;
    }
    
    
    .t4 p{
         rotate: -90deg;
        margin: 0;
        padding: 0;
        position: absolute;
        float: none;
        font-weight: bold;
       
    }
    
    
    
    
    
    
    
    
    .getticket{
        width: 7em;
        height: 9em;
        border-radius: .5em;
        background-color: #F69038;
        display: block;
        float: left;
        clear: none;
        padding: 1.5em;
        color: #fff;
        font-weight: bolder;
        position: relative;
        bottom: 0;
        cursor: pointer;
        transition: all .4s;
    }
    
    
    .getticket h4{
        font-weight: bold;
    }
    
    
    .getticket i{
        font-size: 2em;
    }
    
    
    .getticket:hover{
        padding: 1.7em;
    }
    
    
    
    
    
    
    
   .loginpane-expand .ticket{
        width: calc(100% - 4em);
        height: 20vh;
        border-radius: 1em;
        margin: auto 2em;
        clear: both;
    }
    
    
    .loginpane-expand .ticket #ticket{
        width: 100%;
        height: 20vh;
         box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-webkit-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-moz-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
        font-size: .65em;
    }
    
    
    .loginpane-expand .ticket .t1{
        height: 20vh;
    }
    
    
    .loginpane-expand .ticket .t2{
        height: 20vh;
    }
    
    
    .loginpane-expand .ticket .t3{
        height: 20vh;
    }
    
    .loginpane-expand .ticket .t4{
        height: 20vh;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*TicketPage*/
    
    
    
    .ticket-pane{
        display: block;
        float: left;
        clear: none;
        width: 85%;
        height: auto;
        top: -100vh;
        position: relative;
        margin: auto 7.5% -100vh;
    }
    
    
    
    .tp-left{
        width: calc(45% - 2em);
        height: calc(100vh - 2em);
        margin: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
    }
    
    
    .ticket-form{
        width: calc(100% - 6em);
        height: calc(100% - 6em);
        display: block;
        float: left;
        clear: none;
        overflow-y: scroll;
        padding: 3em;
    }
    
    
    
     .tp-right{
        width: 45%;
        height: 70vh;
        display: block;
        float: left;
        clear: none;
         float: right;
         margin: 20vh auto auto auto;
    }
    
    
    .tp-right #ticket{
        width: 100%;
    }
    
    
    .tp-right .ticket-summary{
        padding: 1.5em;
        background-color: white;
        float: left;
        clear: none;
        border-radius: 1.5em;
        width: calc(100% - 3em);
        height: calc(auto - 3em);
        display: block;
        margin: 2em auto auto 0;
    }
    
    
    .ticket-summary ul{
        list-style: none;
        font-family: "GeneralSans-Regular";
        color: #000;
        margin: 0;
        padding: 0;
        
    }
    
    .ticket-summary li{
        margin: .5em 0;
    }
    
    .ticket-summary li span{
        font-weight: bolder;
        letter-spacing: .5px;
        
    }
    
    
    
    
    .chooseticket-number{
        border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
    }
    
    .chooseticket-number h4{
        color: #606060;
    }
    
    
    
    
    
    .ticketassign{
         border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
        margin: 2em auto;
        
    }
    
    
    
    
    /*TicketPage*/
    
    
    
    
    
    
    
    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {

    
    
    
    
    #ticket{
         display: grid; 
      grid-auto-flow: row dense; 
      grid-auto-columns: 1fr; 
      grid-auto-rows: 1fr; 
      grid-template-columns: 2fr 1fr 6.5fr 1fr; 
      grid-template-rows: 1fr; 
      gap: 0em 0em; 
      grid-template-areas: 
        ". . . ."; 
        width: 650px;
        height: 300px;
        background-color: #ffffff;
        border-radius: 1em;
        position: relative;
        float: left;
        clear: both;
        overflow: hidden;
    }
    
    
    .t1{
        background-color: #21B19C;
        color: #fff;
        width: 100%;
        height: 100%;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        
    }
    
    .t1 h3{
        rotate: -90deg;
        margin: 0;
        padding: 0;
        width: auto;
        position: absolute;
        float: none;
        font-weight: bold;
    }
    
    
    .t2{
        background-color: #606060;
        background-image: url("../img/ticket-graphic.svg");
        background-position: bottom center;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .t3{
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 2.5fr; 
  grid-template-rows: 1fr; 
  gap: 0em 0em; 
  grid-template-areas: 
    ". ."; 
        height: auto;
    }
    
    
    .t3 .flagico{
        width: 70%;
        height: 70%;
        margin: 2em 15%;
        background-position: top center;
    }
    
    
    .t3 #ticketdetails{
          display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    "."
    "."
    "."; 
        float: left;
        clear: none;
        height: 200px;
        
    }
    
    
    .t3 #ticketdetails h3{
        font-family: "Recline-SemiBold";
        margin: .5em 0 0;
    }
    
    
    .t3 h4{
        font-weight: bold;
        color: #A7A7A7;
        float: left;
        clear: both;
        text-align: left;
        margin: 0;
    }
    
    
    .t3 h6{
        margin: 0;
    }
    
    
    
    .t4{
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
         width: 100%;
        height: 300px;
        border: 0px dashed #000;
        border-left-width: 1px;
    }
    
    
    .t4 p{
         rotate: -90deg;
        margin: 0;
        padding: 0;
        position: absolute;
        float: none;
        font-weight: bold;
       
    }
    
    
    
    
    
    
    
    
    .getticket{
        width: 7em;
        height: 9em;
        border-radius: .5em;
        background-color: #F69038;
        display: block;
        float: left;
        clear: none;
        padding: 1.5em;
        color: #fff;
        font-weight: bolder;
        position: relative;
        bottom: 0;
        cursor: pointer;
        transition: all .4s;
    }
    
    
    .getticket h4{
        font-weight: bold;
    }
    
    
    .getticket i{
        font-size: 2em;
    }
    
    
    .getticket:hover{
        padding: 1.7em;
    }
    
    
    
    
    
    
    
   .loginpane-expand .ticket{
        width: 90%;
        
        height: 25vh;
         border-radius: 1em;
       margin: auto 5%;
      
       clear: both;
    }
    
    
    .loginpane-expand .ticket #ticket{
        width: 100%;
        height: 25vh;
         box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-webkit-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
-moz-box-shadow: 1px 8px 19px -1px rgba(0,0,0,0.17);
        font-size: .7em;
    }
    
    
    .loginpane-expand .ticket .t1{
        height: 25vh;
    }
    
    
    .loginpane-expand .ticket .t2{
        height: 25vh;
    }
    
    
    .loginpane-expand .ticket .t3{
        height: 25vh;
    }
    
    .loginpane-expand .ticket .t4{
        height: 25vh;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*TicketPage*/
    
    
    
    .ticket-pane{
        display: block;
        float: left;
        clear: none;
        width: 85%;
        height: auto;
        top: -100vh;
        position: relative;
        margin: auto 7.5% -100vh;
    }
    
    
    
    .tp-left{
        width: calc(45% - 2em);
        height: calc(100vh - 2em);
        margin: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
    }
    
    
    .ticket-form{
        width: calc(100% - 6em);
        height: calc(100% - 6em);
        display: block;
        float: left;
        clear: none;
        overflow-y: scroll;
        padding: 3em;
    }
    
    
    
     .tp-right{
        width: 45%;
        height: 70vh;
        display: block;
        float: left;
        clear: none;
         float: right;
         margin: 20vh auto auto auto;
    }
    
    
    .tp-right #ticket{
        width: 100%;
    }
    
    
    .tp-right .ticket-summary{
        padding: 1.5em;
        background-color: white;
        float: left;
        clear: none;
        border-radius: 1.5em;
        width: calc(100% - 3em);
        height: calc(auto - 3em);
        display: block;
        margin: 2em auto auto 0;
    }
    
    
    .ticket-summary ul{
        list-style: none;
        font-family: "GeneralSans-Regular";
        color: #000;
        margin: 0;
        padding: 0;
        
    }
    
    .ticket-summary li{
        margin: .5em 0;
    }
    
    .ticket-summary li span{
        font-weight: bolder;
        letter-spacing: .5px;
        
    }
    
    
    
    
    .chooseticket-number{
        border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
    }
    
    .chooseticket-number h4{
        color: #606060;
    }
    
    
    
    
    
    .ticketassign{
         border-radius: 1em;
        padding: 2em;
        background-color: #F9F9F9;
        display: block;
        float: left;
        clear: both;
        margin: 2em auto;
        
    }
    
    
    
    
    /*TicketPage*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
	

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}