
/*Override panel colors*/
.jumbotron {
    background-color: rgba(255, 255, 255, 0.8);
}


.jumbotron h1 {
	
	font-size: 40px;
	color: #171717;
  	font-weight: bold;

}

.jumbotron li {
	
	font-size: 16px;
	color: #171717;
}

.vovFooter {
    height: 60px;
    background-color: #3a748f; /* footer background color */
    border-top: 1px solid #2f5e75;
    vertical-align: middle;
    color: #FFFFFF;
}

.navbar {
    background-image: linear-gradient(#3a748f, #4e9bbe 90%, #3a748f); /* navbar background color */
    border-bottom: 1px solid #2f5e75;
}

.nav.navbar-nav li a {
     /* navbar menu items font color */
    font-weight: bold;
}

.navbar-brand, .navbar-default .navbar-brand:focus {
    color: #FFFFFF !important;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    background-color: #a7e4fd; /* navbar item hover color */
    color: #171717;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #171717;
    background-color: #91c7dd; /* Active navbar selection color */
}

.navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #c3c7dc;
    color: #171717;
}


.dropdown-menu > li > a:hover {
    background-color: #a7e4fd; /* navbar dropdown item hover color */
    color: #171717;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #a7e4fd; /* navbar dropdown selected color */
    color: #171717;
}

.container-fluid {
    padding: 30px;
}

.panel-heading {
    color: #ffffff;
    background-color: #3a748f !important; /* Case menu panel headings #0e76bc 00adee*/
    border-color: #00808e;
    padding-bottom: 0px;
}

.panel-transparent {
    background-color: rgba(255, 255, 255, 0.8);
}


/*Override jQuery UI dialog background opacity*/
.ui-widget-overlay
{
  opacity: .70 !important; /* Make sure to change both of these, as IE only sees the second one */
  filter: Alpha(Opacity=70) !important;

  background: rgb(70, 70, 70) !important; /* This will make it darker */
}

.caseMenuSummaryBody
{
    font-size: 14px;
}

.mmLink, .languagesLink, .caseMenuLink, .caseMenuViewCase, .continueLink {
    color: #0e76bc;
}

.caseMenuGlyph {
    color: #0e76bc;
}

.iconTest{
    margin-left: 100px;
}

.card {
    perspective: 600px;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    -o-perspective: 600px;
    -ms-perspective: 600px;
    /*margin: 80px 150px;*/
    width: 100%;
    /*height: 161px;*/
    vertical-align: top;
    position: absolute;
    display: block;
    font-size: 25px;
    font-weight: bold;
    margin: 0 auto;
}

    .card .content {
        transition: 1s ease-out;
        -webkit-transition: 1s ease-out;
        -moz-transition: 1s ease-out;
        -o-transition: 1s ease-out;
        -ms-transition: 1s ease-out;
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        /* content backface is visible so that static content still appears */
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        -o-backface-visibility: visible;
        -ms-backface-visibility: visible;
        /*border: 1px solid grey;
                  border-radius: 15px;*/
        position: relative;
        width: 100%;
        /*height: 161px;*/
    }

    .card.applyflip .content {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
    }



    .card .content .cardFront {
    }

    .card .content .cardBack {
    }

    .card .content .cardFront, .card .content .cardBack {
        /* Backface visibility works great for all but IE. As such, we mark the backface visible in IE and manage visibility ourselves */
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        -ms-backface-visibility: visible;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        text-align: center;
    }

    .card .content .cardFront, .card.applyflip .content .cardFront {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }

    .card .content .cardBack, .card.applyflip .content .cardBack {
        transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
        -moz-transform: rotateY(-180deg);
        -o-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
    }

    .card .content .cardFront, .card.applyflip .content .cardBack {
        /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
        animation: stayvisible 1s both;
        -webkit-animation: stayvisible 1s both;
        -moz-animation: stayvisible 1s both;
        -o-animation: stayvisible 1s both;
        -ms-animation: donothing 1s;
        -ms-transition: visibility 0s linear 0.35s;
        visibility: visible;
    }

    .card.applyflip .content .cardFront, .card .content .cardBack {
        /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
        animation: stayvisible 1s both;
        -webkit-animation: stayvisible 1s both;
        -moz-animation: stayvisible 1s both;
        -o-animation: stayvisible 1s both;
        -ms-animation: donothing 1s;
        -ms-transition: visibility 0s linear 0.35s;
        visibility: hidden;
    }

@keyframes stayvisible {
    from {
        visibility: visible;
    }

    to {
        visibility: visible;
    }
}

@-webkit-keyframes stayvisible {
    from {
        visibility: visible;
    }

    to {
        visibility: visible;
    }
}

@-moz-keyframes stayvisible {
    from {
        visibility: visible;
    }

    to {
        visibility: visible;
    }
}

@-o-keyframes stayvisible {
    from {
        visibility: visible;
    }

    to {
        visibility: visible;
    }
}

@-ms-keyframes donothing {
    0% {
    }

    100% {
    }
}

.shadow-note {
    position: relative;
    width: 100%;
    padding: 20px;
    margin: 0px 0px 20px 0px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(0, 0, 0, 0.2);
}

    .shadow-note:before, .shadow-note:after {
        position: absolute;
        width: 40%;
        height: 10px;
        content: ' ';
        left: 12px;
        bottom: 6px;
        background: transparent;
        -webkit-transform: skew(-5deg) rotate(-5deg);
        -moz-transform: skew(-5deg) rotate(-5deg);
        -ms-transform: skew(-5deg) rotate(-5deg);
        -o-transform: skew(-5deg) rotate(-5deg);
        transform: skew(-5deg) rotate(-5deg);
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        z-index: -100;
    }

.shadow-note:after {
    left: auto;
    right: 12px;
    -webkit-transform: skew(5deg) rotate(5deg);
    -moz-transform: skew(5deg) rotate(5deg);
    -ms-transform: skew(5deg) rotate(5deg);
    -o-transform: skew(5deg) rotate(5deg);
    transform: skew(5deg) rotate(5deg);
} 

#charactersPanel {
    min-width: 200px;
}

#iconsPanel {
    min-width: 200px;
}


.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


.iconDiv {
    margin-bottom: 200px;
}

.iconText {
    font-size: 15px !important;
    font-weight: bold !important;
    padding-top: 160px;
}

.discussionItems {
    font-size: 18px;
    font-weight: bold;
    text-indent: -20px;
    margin-left: 15px;
}

@media(max-width:767px){
	
	#mainImage {
		height: 500px;
	}

    #charTable1 {
        display: none;
    }

    #charactersPanel {
        min-width: 300px;
    }

    #iconsTable1 {
        display: none;
    }

    #iconsTable4 {
        display: none;
    }

    #iconsPanel {
        min-width: 300px;
    }

    #videoPanel {
        min-width: 300px;
    }
    .jumbotron {
        padding: 0px;
    }

    .iconText {
        padding-top: 160px;
    }

    .discussionItems {
        padding-left: 30px;
        text-indent: -20px;

    }
}

@media(max-width:520px) {

    #iconContainer{
        height: 980px;
    }

    .iconDiv {
        margin-bottom: 180px;
    }

    .iconText {
        padding-top: 140px;
        font-size: 13px !important;
    }

    #iconsTable1 {
        display: block;
        width: 240px;
    }

    #iconsTable2 {
        display: none;
    }


}

@media(max-width:600px) {
    #iconsTable3 {
        display: none;
    }

    #iconsTable4 {
        display: block;
    }
}
@media(max-width:988px) {

    #iconsMain {
        height: 640px;
    }


}

@media(min-width:990px){
	
	#mainImage {
		height: 400px;
	}
    #iconsMain {
        height: 500px;
    }

}

@media(min-width:992px){


}

@media(min-width:1200px){


}

@media(min-width:767px) {

    #charTable2 {
        display: none;
    }

    #iconsTable2 {
        display: none;
    }

    #iconsTable4 {
        display: none;
    }
}