/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 14, 2018, 11:01:39 AM
    Author     : worksdelight
*/
@font-face {
    font-family: fright;
    src: url(fonts/Freight Big Pro Light.otf);
}

* {
    padding: 0;
    margin: 0;
    color: inherit;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "proxima-nova", "Helvetica Neue", "Helvetica", "sans-serif";
    background: url(mainbkg.png) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

p {
    color: #566076;
    margin-bottom: 12px;
    line-height: 22px;
}

h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

h2 {
    font-size: 32px;
    padding-top: 36px;
    margin-bottom: 14px;
}

h3 {
    clear: both;
    font-size: 22px;
    margin-bottom: 10px;
    padding-top: 32px;
}

ul li {
    color: #566076;
    line-height: 22px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 100%;
    background-color: transparent;
    border: 1px solid #dddddd;
    font-size: 14px;
}

th {
    text-align: left;
}

table > tbody > tr:nth-child(odd) > th, table > tbody > tr:nth-child(odd) > td {
    background-color: #f9f9f9;
}

table > tbody > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #dddddd;
}

code {
    font-family: 'source-code-pro', monospace;
}

ul code,
p code,
table code {
    padding: 2px 4px;
    color: #337AB7;
    white-space: nowrap;
    background-color: #f6f0f3;
    border-radius: 4px;
}

pre {
    margin-top: 16px;
}

aside {
    position: fixed;
    height: 100%;
    background-color: #fafafa;
    left: 0;
    top: 0;
    width: 250px;
    border-right: 5px solid #5b90bf;
    z-index: 10;
    -webkit-transition: -webkit-transform 200ms ease-in-out;
    -moz-transition: -moz-transform 200ms ease-in-out;
    -o-transition: -o-transform 200ms ease-in-out;
    transition: -webkit-transform 200ms ease-in-out, -moz-transform 200ms ease-in-out, -o-transform 200ms ease-in-out, transform 200ms ease-in-out;
}

aside #hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
}

aside #hamburger-menu li {
    list-style: none;
    height: 4px;
    margin-bottom: 4px;
    display: block;
    background-color: #fafafa;
    -webkit-transition: -webkit-transform 400ms ease-out;
    -moz-transition: -moz-transform 400ms ease-out;
    -o-transition: -o-transform 400ms ease-out;
    transition: -webkit-transform 400ms ease-out, -moz-transform 400ms ease-out, -o-transform 400ms ease-out, transform 400ms ease-out;
}

@-webkit-keyframes hamburger-top {
    0% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@-moz-keyframes hamburger-top {
    0% {
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -moz-transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    100% {
        -moz-transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@-o-keyframes hamburger-top {
    0% {
        -o-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -o-transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    100% {
        -o-transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@keyframes hamburger-top {
    0% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
        -ms-transform: translate3d(0, 0, 0) rotate(0deg);
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(0deg);
        -moz-transform: translate3d(0, 8px, 0) rotate(0deg);
        -ms-transform: translate3d(0, 8px, 0) rotate(0deg);
        transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
        -moz-transform: translate3d(0, 8px, 0) rotate(45deg);
        -ms-transform: translate3d(0, 8px, 0) rotate(45deg);
        transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@-webkit-keyframes hamburger-middle {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes hamburger-middle {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes hamburger-middle {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes hamburger-middle {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes hamburger-bottom {
    0% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@-moz-keyframes hamburger-bottom {
    0% {
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -moz-transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    100% {
        -moz-transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@-o-keyframes hamburger-bottom {
    0% {
        -o-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -o-transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    100% {
        -o-transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@keyframes hamburger-bottom {
    0% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
        -ms-transform: translate3d(0, 0, 0) rotate(0deg);
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(0deg);
        -moz-transform: translate3d(0, -8px, 0) rotate(0deg);
        -ms-transform: translate3d(0, -8px, 0) rotate(0deg);
        transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
        -moz-transform: translate3d(0, -8px, 0) rotate(-45deg);
        -ms-transform: translate3d(0, -8px, 0) rotate(-45deg);
        transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@-webkit-keyframes hamburger-top-reverse {
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    0% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@-moz-keyframes hamburger-top-reverse {
    100% {
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -moz-transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    0% {
        -moz-transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@-o-keyframes hamburger-top-reverse {
    100% {
        -o-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -o-transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    0% {
        -o-transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@keyframes hamburger-top-reverse {
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
        -ms-transform: translate3d(0, 0, 0) rotate(0deg);
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(0deg);
        -moz-transform: translate3d(0, 8px, 0) rotate(0deg);
        -ms-transform: translate3d(0, 8px, 0) rotate(0deg);
        transform: translate3d(0, 8px, 0) rotate(0deg);
    }
    0% {
        -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
        -moz-transform: translate3d(0, 8px, 0) rotate(45deg);
        -ms-transform: translate3d(0, 8px, 0) rotate(45deg);
        transform: translate3d(0, 8px, 0) rotate(45deg);
    }
}

@-webkit-keyframes hamburger-middle-reverse {
    100% {
        opacity: 1;
    }
    51% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
}

@-moz-keyframes hamburger-middle-reverse {
    100% {
        opacity: 1;
    }
    51% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
}

@-o-keyframes hamburger-middle-reverse {
    100% {
        opacity: 1;
    }
    51% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
}

@keyframes hamburger-middle-reverse {
    100% {
        opacity: 1;
    }
    51% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
}

@-webkit-keyframes hamburger-bottom-reverse {
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    0% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@-moz-keyframes hamburger-bottom-reverse {
    100% {
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -moz-transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    0% {
        -moz-transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@-o-keyframes hamburger-bottom-reverse {
    100% {
        -o-transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -o-transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    0% {
        -o-transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}

@keyframes hamburger-bottom-reverse {
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
        -moz-transform: translate3d(0, 0, 0) rotate(0deg);
        -ms-transform: translate3d(0, 0, 0) rotate(0deg);
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(0deg);
        -moz-transform: translate3d(0, -8px, 0) rotate(0deg);
        -ms-transform: translate3d(0, -8px, 0) rotate(0deg);
        transform: translate3d(0, -8px, 0) rotate(0deg);
    }
    0% {
        -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
        -moz-transform: translate3d(0, -8px, 0) rotate(-45deg);
        -ms-transform: translate3d(0, -8px, 0) rotate(-45deg);
        transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
}
a{ text-decoration: none;}
#section-content {
    margin-left: 00px;   
    padding: 20px;
}

#section-content a {
    color: #3DAB99;
}

#section-content a:hover {
    text-decoration: underline;
}

#section-content ul {
    list-style: initial;
    padding-left: 20px;
}

#section-content ul li {
    line-height: 1.5em;
    margin-bottom: 4px;
}

#section-content p {
    line-height: 1.5em;
}

#section-content h2 {
    border-bottom: 1px solid #eeeeee;
    margin: 0 0 12px 0;
    line-height: 1.5em;
}

.animate-title {
    text-align: center;
    text-decoration: none;
}
.mcol-40
{
       width: 40%;
       float:left;
}
.mcol-50
{
       width: 50%;
       float:left;
}
.mcol-60
{
       width: 60%;
       float:left;
}
.mrow
{
    width:100%;
}
.mtext-right
{
   text-align:right;
}
.container
{   
    max-width:930px;
    margin: 0 auto;
   
}
.header
{
    width:100%;
    height:90px;
   line-height: 90px;
}
.footer
{
    width:100%;
    height:100px;
    line-height: 100px;
     font-size: 12px;
     color:#ccc;
}
.padding-tb
{
    padding-top:25px;
    padding-bottom:25px;
}
.detail-container
{
     width:100%;
    height: 100%;    
    margin-top:35%;
    text-align: center;
    
}

.logo-section
{
    width:80%;
    height: 100%;
    margin: 0 auto;
}
.logo-section img
{
   max-width:100%;
}
.createdby
{
    margin-top:0;
    padding-top: 10px;
    text-transform: uppercase;
        text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    color:#3C5A99;
}
.app-links
{
    margin-top:20px;
}
.app-links li
{
    display:inline-block;
    list-style:none; 
    margin-right:25px;
}
.app-link-img
{
    width: 150px;
    height: auto;
}
.app-link-img img
{
    max-width: 100%;
    max-height: 100%;
}
.mappsource
{
    width:100%;
    float:left;
    clear:both;
}
.mfeedbacksection
{
    background:#f8f6f4;
     width:100%;
      float:left;
    clear:both;
        margin-top:150px;
    padding-top:50px ;
  padding-bottom:82px ;
}

.subtitle{
font-size:13px;
}

.islider-demo-wrap {
    /* background: url('../images/device1.png') no-repeat top center;
    background-size: 376px auto;
    text-align: center;
    height: 517.5px;
    position: relative;*/
    
    /***** IPHONE 10****/
    /*    background: url(../images/device.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    height: 542px;
    position: relative;
    width: 250px;
    margin: 0 auto;*/
    
       background: url(../images/device1.png) no-repeat top center;
    background-size: cover;
    text-align: center;
       height: 575px;
    position: relative;
}


.islider-demo-wrap > iframe,
#iphone-fade {
    /*   margin: 56.5px auto auto -100px;
    width: 201px;
    height: 355px;
    border: 0;
    background-color: #000000;
    position: absolute;
    left: 50%;*/
    
    /***** IPHONE 10****/
   /*  margin: 11px auto auto -111px;
    width: 222px;
    height: 516px;
    border: 0;
    background-color: #000000;
    position: absolute;
    left: 50%;*/
    
    /***** OTHERS IPHONE ****/
    
      margin: 67.5px auto auto -124px;
    width: 249px;
    height: 441px;
    border: 0;
    background-color: #000000;
    position: absolute;
    left: 50%;
}




#toggle-box {
    text-align: center;
}

#toggle-box button {
    min-width: 100px;
    color: #ffffff;
    background-color: #337ab7;
    outline: none;
    border-radius: 3px;
    border: 0;
    line-height: 25px;
    font-size: 14px;
    margin: 5px 10px;
    padding: 0 5px;
}

#toggle-box button.active {
    background-color: #0fb748;
}

#frame h4 {
    margin-bottom: 6px;
}

#options table {
    width: 100%;
    margin-bottom: 15px;
}

#options table th {
    padding: 3px 3px;
}

#options table td {
    vertical-align: top;
    padding: 5px 3px;
}

/*#options h3, #functions h3, #constant h3{
    position: relative;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px dashed #e1e1e1;
}*/

#options h4, #functions h4, #methods h4, #constant h4 {
    position: relative;
    margin-top: 16px;
    padding: 12px 0;
    border-top: 1px dotted #dddddd;
    color: #494949;
}

#options .options, #methods .static-methods, #methods .instance-methods {
    margin-left: 12px;
}

/************************
  Policy Page

************************/
.policy-section
{
    font-family: 'Raleway'; 
    font-weight:100;
    color:#989898;
        padding-top: 50px;
}
.policy-title
{
    font-size: 3rem;
    line-height: 4.4rem;
    margin-bottom: -.00001rem;
    padding-top: 1.00001rem;
    font-weight: 200;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #000;
}

.policy-subtitle
{
    font-size:1rem;   
    margin-bottom: 30px;
}
.policy-section p
{
    line-height: 30px;
    color: #989898;
    font-size: 14px;
}

.logo
{
    width:250px;
   margin-top: 15px
}

.logo img
{
    max-width:100%;
    max-height:100%;
}


@media (max-width:767px)
{
    .mcol-60 
    {
        width: 100%;
        float: left;
        text-align: center;
    }
    .logo-section 
    {
        width: 60%;
        height: 100%;
        margin: 0 auto;
    }
    .app-link-img 
    {
        width: 120px;
        height: auto;
    }
    .mcol-40 
    {
        width: 60%;
        margin-left: 18%;
        float: left;
    }
    .detail-container
    {
        width: 100%;
        height: 100%;
        margin-top: 5%;
        margin-bottom: 15%;
        text-align: center;
    }
    .container 
    {       
        padding: 25px;
    }
    .policy-title 
    {
            font-size: 3rem;
            line-height: 3.8rem;
            margin-bottom: -.00001rem;
            padding-top: 1.00001rem;
            font-weight: 200;
            letter-spacing: 14px;
            margin-bottom: 30px;
            text-transform: uppercase;
            color: #000;
    }
    .logo
    {
	width: 250px;
	 margin-top:0;
    }

}
@media (max-width:525px)
{
    .mcol-40 
    {
       width: 100%;
       margin-left: 0;
       float: left;
   }
    .islider-demo-wrap 
    {
        height: 555px;
    }  
    
     .islider-demo-wrap > iframe, #iphone-fade 
    {	
     
        
      margin: 62px auto auto -121px;
width: 243px;
height: 432px;

    border: 0;
    background-color: #000000;
    position: absolute;
    left: 50%; 
        
        /*
        
	margin: 65.5px auto auto -119px;
	width: 239px;
	height: 424px;
	border: 0;
	background-color: #000000;
	position: absolute;
	left: 50%;
        } */
    .mcol-50 
    {
	width: 100%;
	text-align: center;
	line-height: 20px;
       
    }
    .footer
    {
       
        padding-bottom:20px;
        float: left;
        line-height: 0;
    }
}






@media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    p {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    h3 {
        font-size: 18px;
    }

    ul li {
        font-size: 14px;
    }

    code {
        font-size: 12px;
    }

    #section-content {
        margin-left: 0;
    }

    aside {
        width: 250px;
        -webkit-transform: translateX(-250px);
        -moz-transform: translateX(-250px);
        -o-transform: translateX(-250px);
        -ms-transform: translateX(-250px);
        transform: translateX(-250px);
    }

    aside #hamburger-menu {
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        top: 0;
        right: -45px;
        background-color: #232830;
    }

    .open-menu section {
        -webkit-transform: translateX(250px);
        -moz-transform: translateX(250px);
        -o-transform: translateX(250px);
        -ms-transform: translateX(250px);
        transform: translateX(250px);
    }

    .open-menu aside #hamburger-menu li {
        -webkit-animation: hamburger-middle 400ms ease-out forwards;
        -moz-animation: hamburger-middle 400ms ease-out forwards;
        -o-animation: hamburger-middle 400ms ease-out forwards;
        animation: hamburger-middle 400ms ease-out forwards;
    }

    .closed-menu aside #hamburger-menu li {
        -webkit-animation: hamburger-middle-reverse 400ms ease-out forwards;
        -moz-animation: hamburger-middle-reverse 400ms ease-out forwards;
        -o-animation: hamburger-middle-reverse 400ms ease-out forwards;
        animation: hamburger-middle-reverse 400ms ease-out forwards;
    }

    .open-menu aside #hamburger-menu li:first-child {
        -webkit-animation: hamburger-top 400ms ease-out forwards;
        -moz-animation: hamburger-top 400ms ease-out forwards;
        -o-animation: hamburger-top 400ms ease-out forwards;
        animation: hamburger-top 400ms ease-out forwards;
    }

    .closed-menu aside #hamburger-menu li:first-child {
        -webkit-animation: hamburger-top-reverse 400ms ease-out forwards;
        -moz-animation: hamburger-top-reverse 400ms ease-out forwards;
        -o-animation: hamburger-top-reverse 400ms ease-out forwards;
        animation: hamburger-top-reverse 400ms ease-out forwards;
    }

    .open-menu aside #hamburger-menu li:last-child {
        -webkit-animation: hamburger-bottom 400ms ease-out forwards;
        -moz-animation: hamburger-bottom 400ms ease-out forwards;
        -o-animation: hamburger-bottom 400ms ease-out forwards;
        animation: hamburger-bottom 400ms ease-out forwards;
    }

    .closed-menu aside #hamburger-menu li:last-child {
        -webkit-animation: hamburger-bottom-reverse 400ms ease-out forwards;
        -moz-animation: hamburger-bottom-reverse 400ms ease-out forwards;
        -o-animation: hamburger-bottom-reverse 400ms ease-out forwards;
        animation: hamburger-bottom-reverse 400ms ease-out forwards;
    }

    body.open-menu aside {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

#menu {
    min-width: 250px;
    height: 100%;
    background: #3399ff;
    overflow: auto;
}

#menu-title {
    padding-left: 22px;
    color: #fafafa;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

#menu-title h2 {
    padding-top: 10px;
    margin-bottom: 10px;
}

#menu-title h2 i {
    visibility: hidden;
}

#menu-title a {
    text-decoration: none;
}

#menu ul li {
    width: 100%;
    display: block;
}

#menu > ul > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

#menu-list li > .submenu {
    display: none;
}

#menu-list li.active > .submenu {
    display: block;
}

#menu .submenu-indicator {
    float: right;
    position: relative;
    display: block;
    height: 20px;
    width: 20px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: transform .15s linear;
    -moz-transition: transform .15s linear;
    -ms-transition: transform .15s linear;
    -o-transition: transform .15s linear;
    transition: transform .15s linear;
}

#menu .submenu-indicator:before {
    content: '◣';
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    font-size: 12px;
    left: 6px;
    top: -3px;
}

#menu li.active > a > .submenu-indicator {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#menu-list a {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 14px 22px;
    float: left;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    -o-transition: color .2s linear, background .2s linear;
    -moz-transition: color .2s linear, background .2s linear;
    -webkit-transition: color .2s linear, background .2s linear;
    transition: color .2s linear, background .2s linear;
}

#menu ul ul.submenu {
    width: 100%;
    position: static;
}

#menu ul ul.submenu li a {
    width: 100%;
    font-size: 11px;
    background: #4AA5FF;
    border-left: solid 6px transparent;
    -o-transition: border .2s linear;
    -moz-transition: border .2s linear;
    -webkit-transition: border .2s linear;
    transition: border .2s linear;
}

#menu ul ul.submenu > li > ul.submenu > li > a {
    padding-left: 45px;
}

#menu ul ul.submenu li:hover > a {
    border-left-color: #178BFF;
}

#menu > ul > li:hover > a {
    background: #178BFF;
}

.hljs {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
}