
body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.8;
}

.top-buffer-xs { margin-top:2px; }
.top-buffer-sm { margin-top:5px; }
.top-buffer-md { margin-top:10px; }
.top-buffer-lg { margin-top:20px; }
.top-buffer-xl { margin-top:30px; }

.bottom-buffer-xs { margin-bottom:2px; }
.bottom-buffer-sm { margin-bottom:5px; }
.bottom-buffer-md { margin-bottom:10px; }
.bottom-buffer-lg { margin-bottom:20px; }
.bottom-buffer-xl { margin-bottom:30px; }

.min-height-100 { min-height:100px; }
.min-height-200 { min-height:200px; }
.min-height-300 { min-height:300px; }
.min-height-400 { min-height:400px; }
.min-height-500 { min-height:500px; }
.min-height-600 { min-height:600px; }
.min-height-700 { min-height:700px; }
.min-height-800 { min-height:800px; }


.hovereffect {
width:100%;
height:100%;
float:left;
overflow:hidden;
position:relative;
text-align:center;
cursor:default;
}

.hovereffect .overlay {
width:100%;
height:100%;
position:absolute;
overflow:hidden;
top:0;
left:0;
opacity:0;
background-color:rgba(0,0,0,0.5);
-webkit-transition:all .4s ease-in-out;
transition:all .4s ease-in-out
}

.hovereffect img {
display:block;
position:relative;
-webkit-transition:all .4s linear;
transition:all .4s linear;
}

.hovereffect h2 {
text-transform:uppercase;
color:#fff;
text-align:center;
position:relative;
font-size:15px; /*Originally - 17px*/
background:rgba(0,0,0,0.6);
-webkit-transform:translatey(-100px);
-ms-transform:translatey(-100px);
transform:translatey(-100px);
-webkit-transition:all .2s ease-in-out;
transition:all .2s ease-in-out;
padding:5px; /*Originally - 10px*/
}

.hovereffect a.info {
text-decoration:none;
display:inline-block;
text-transform:uppercase;
color:#fff;
border:1px solid #fff;
background-color:transparent;
opacity:0;
filter:alpha(opacity=0);
-webkit-transition:all .2s ease-in-out;
transition:all .2s ease-in-out;
margin:50px 0 0;
padding:7px 14px;
}

.hovereffect a.info:hover {
box-shadow:0 0 5px #fff;
}

.hovereffect:hover img {
-ms-transform:scale(1.2);
-webkit-transform:scale(1.2);
transform:scale(1.2);
}

.hovereffect:hover .overlay {
opacity:1;
filter:alpha(opacity=100);
}

.hovereffect:hover h2,.hovereffect:hover a.info {
opacity:1;
filter:alpha(opacity=100);
-ms-transform:translatey(0);
-webkit-transform:translatey(0);
transform:translatey(0);
}

.hovereffect:hover a.info {
-webkit-transition-delay:.2s;
transition-delay:.2s;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}







.multi-item-carousel{
  .carousel-inner{
    > .item{
      transition: 500ms ease-in-out left;
    }
    .active{
      &.left{
        left:-33%;
      }
      &.right{
        left:33%;
      }
    }
    .next{
      left: 33%;
    }
    .prev{
      left: -33%;
    }
    @media all and (transform-3d), (-webkit-transform-3d) {
      > .item{
        // use your favourite prefixer here
        transition: 500ms ease-in-out left;
        transition: 500ms ease-in-out all;
        backface-visibility: visible;
        transform: none!important;
      }
    }
  }
  .carouse-control{
    &.left, &.right{
      background-image: none;
    }
  }
}



  /* Note: Try to remove the following lines to see the effect of CSS positioning */
  .affix {
      top: 0;
      width: 100%;
      z-index: 9999 !important;
  }

  .affix + .container-fluid {
      padding-top: 70px;
  }

 
 .tga-number {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}



/* Vertical and Center align*/
.parentbox {
    width:500px;
    height:400px;
    border-style:solid;
    
    text-align: center;  /* align the inline(-block) elements horizontally */
    font: 0/0 a;         /* remove the gap between inline(-block) elements */
}

.parentbox:before {      /* create a full-height inline block pseudo-element */
    content: ' ';
    display: inline-block;
    vertical-align: middle; /* vertical alignment of the inline element */
    height: 100%;
}

.childbox {
    display: inline-block;
    vertical-align: middle;          /* vertical alignment of the inline element */
    font: 16px/1 Arial, sans-serif;  /* reset the font property */
    
    padding: 5px;
    border: 2px solid black;
}


/**
 * Horizontal Type Line Behind Text
 * Inspired by this discussion @ CSS-Tricks: https://css-tricks.com/forums/topic/css-trick-for-a-horizontal-type-line-behind-text/#post-151970
 * Available on jsFiddle: http://jsfiddle.net/ericrasch/jAXXA/
 * Available on Dabblet: http://dabblet.com/gist/2045198
 * Available on GitHub Gist: https://gist.github.com/2045198
 */
h2.background {
  position: relative;
  z-index: 1;
}
h2.background:before {
  border-top: 2px solid #dfdfdf;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
h2.background span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #fff;
  padding: 0 15px;
}
h2.double:before {
  /* this is just to undo the :before styling from above */
  border-top: none;
}
h2.double:after {
  border-bottom: 1px solid blue;
  -webkit-box-shadow: 0 1px 0 0 red;
  -moz-box-shadow: 0 1px 0 0 red;
  box-shadow: 0 1px 0 0 red;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 95%;
  z-index: -1;
}
h2.no-background {
  position: relative;
  overflow: hidden;
}
h2.no-background span {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  position: relative;
  padding: 0 20px;
}
h2.no-background span:before,
h2.no-background span:after {
  content: '';
  display: block;
  width: 1000px;
  position: absolute;
  top: 0.73em;
  border-top: 1px solid red;
}
h2.no-background span:before {
  right: 100%;
}
h2.no-background span:after {
  left: 100%;
}
h2.no-span {
  display: table;
  white-space: nowrap;
}
h2.no-span:before,
h2.no-span:after {
  border-top: 1px solid green;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.5em;
  width: 45%;
}
h2.no-span:before {
  right: 1.5%;
}
h2.no-span:after {
  left: 1.5%;
}


a.no-span {
  display: table;
  white-space: nowrap;
}
a.no-span:before,
a.no-span:after {
  border-top: 1px solid green;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.5em;
  width: 45%;
}
a.no-span:before {
  right: 1.5%;
}
a.no-span:after {
  left: 1.5%;
}	

/**
 * For GATE Knowledge center navigation menu
 */
 
 a.menu-highlight {
	 color: white !important;
	 border-bottom: 5px solid red;
 }

a.menu-normal {
	 color: white !important;
 }
 
 
 /* New Buttons*/
 .btn-darkblue {
  color: #fff;
  background-color: #193073;
  border-color: #193073;
  border-radius:20px;		/*Extra code added here in addition to original format*/
}

.btn-darkblue:hover {
  color: #fff;
  background-color: #2B489E;
  border-color: #1e7e34;
}

.btn-darkblue:focus, .btn-darkblue.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-darkblue.disabled, .btn-darkblue:disabled {
  background-color: #193073;
  border-color: #193073;
}

.btn-darkblue:not([disabled]):not(.disabled):active, .btn-darkblue:not([disabled]):not(.disabled).active,
.show > .btn-darkblue.dropdown-toggle {
  color: #fff;
  background-color: #2B489E;
  border-color: #1c7430;
}

.btn-darkblue:not([disabled]):not(.disabled):active:focus, .btn-darkblue:not([disabled]):not(.disabled).active:focus,
.show > .btn-darkblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}





.btn-yellow {
  color: #fff;
  background-color: #CFA208;
  border-color: #CFA208;
  font-weight: bold;
}

.btn-yellow:hover {
  color: #fff;
  background-color: #FCCE2D;
  border-color: #1e7e34;
}

.btn-yellow:focus, .btn-yellow.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-yellow.disabled, .btn-yellow:disabled {
  background-color: #CFA208;
  border-color: #CFA208;
}

.btn-yellow:not([disabled]):not(.disabled):active, .btn-yellow:not([disabled]):not(.disabled).active,
.show > .btn-yellow.dropdown-toggle {
  color: #fff;
  background-color: #FCCE2D;
  border-color: #1c7430;
}

.btn-yellow:not([disabled]):not(.disabled):active:focus, .btn-yellow:not([disabled]):not(.disabled).active:focus,
.show > .btn-yellow.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}


.btn-webdanger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-webdanger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-webdanger:focus, .btn-webdanger.focus {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-webdanger.disabled, .btn-webdanger:disabled {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-webdanger:not([disabled]):not(.disabled):active, .btn-webdanger:not([disabled]):not(.disabled).active,
.show > .btn-webdanger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-webdanger:not([disabled]):not(.disabled):active:focus, .btn-webdanger:not([disabled]):not(.disabled).active:focus,
.show > .btn-webdanger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/*Aligning collapsible icon on left side - navigation menu*/
.navbar-toggle.navbar-left {
  float: left;
  margin-left: 10px;
}


/*Align middle*/
middle_parent {
	position:relative;
}

middle_child {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
}


/*new btn group*/
.tga1btn-group,
.tga1btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.tga1btn-group > .btn,
.tga1btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.tga1btn-group > .btn:hover,
.tga1btn-group-vertical > .btn:hover {
  z-index: 1;
  background-color:white;
  color:#134974 !important;
  font-weight:800px;
}

.tga1btn-group > .btn:focus, .tga1btn-group > .btn:active, .tga1btn-group > .btn.active,
.tga1btn-group-vertical > .btn:focus,
.tga1btn-group-vertical > .btn:active,
.tga1btn-group-vertical > .btn.active {
  z-index: 1;
  background-color:white;
  color:#134974 !important;
  font-weight:800px;
}

.tga1btn-group .btn + .btn,
.tga1btn-group .btn + .tga1btn-group,
.tga1btn-group .tga1btn-group + .btn,
.tga1btn-group .tga1btn-group + .tga1btn-group,
.tga1btn-group-vertical .btn + .btn,
.tga1btn-group-vertical .btn + .tga1btn-group,
.tga1btn-group-vertical .tga1btn-group + .btn,
.tga1btn-group-vertical .tga1btn-group + .tga1btn-group {
  margin-left: -1px;
}

/* Price change animation CSS - START */
.price_change_animate1 {
    width: 100px;
    height: 100px;
    color: white;
    -webkit-animation-name: animate1; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-name: animate1;
    animation-duration: 5s; 
}

.price_change_animate2 {
    width: 100px;
    height: 100px;
    color: white;
    -webkit-animation-name: animate2; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-name: animate2;
    animation-duration: 5s; 
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes animate1 {
    from {color: orange;}
    to {color: white;}
}

/* Standard syntax */
@keyframes animate1 {
    from {color: orange;}
    to {color: white;}
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes animate2 {
    from {color: orange;}
    to {color: white;}
}

/* Standard syntax */
@keyframes animate2 {
    from {color: orange;}
    to {color: white;}
}
/* Price change animation CSS - END */

.fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
	padding:0;
	margin:0;
}
.fixed-bottom .btn{
	font-size:18px;
	border-radius:0;
}