
/* !important prevents the common CSS stylesheets from overriding
   this as on RTD they are loaded after this stylesheet */



@import 'theme.css';       /* for the Read the Docs theme */

/*
.section {
     text-align:justify;
}
*/


/*Override the design with the box around the code with a small font*/
code, .rst-content tt, .rst-content code {
    font-family: monospace !important;
    font-size: 100% !important;
    background: rgba(255,255,255,0) !important;
    border: solid 0px #e1e4e5 !important;
}

/*Override the title of MATLAB live scripts*/
.S0{
color: #5c87d6 !important;
padding-bottom:10px !important;
padding-top:-10px !important;
}
.S3{
padding-bottom:10px !important;
padding-top:-10px !important;
}

.rst-content code.literal{
	color:#000000 !important;
}


/*Set the size of the download buttons of the tutorials*/
.tutorial_buttons{
    width:125px;
    height:125px;
}

/*Change default fonts used throughout the documentation*/
body{
    font-family:"Arial", Helvetica, sans-serif !important;
}

/*Override the width of the page to cover the whole window*/
.wy-nav-content {
    background: #ffffff !important;
    max-width: none !important;*/
}

/*Begin CSS formatting of the functions and models sections*/
.tutorialSectionBox {
    margin-top: 2em;
    border: #DE5253 3px solid;
    border-right: none;
    border-bottom: none;
}
.tutorialSectionBox .sectionTitle h3 {
    position: relative;
    top: 0em;
    margin-left: 0em;
    display: inline;
    background-color: white;
    padding-left: 0em;
    padding-right: 0em;
}
.tutorialSectionBox .sectionLogo {
    position: relative;
    top: -1.9em;
    margin-left: 1em;
    display: inline;
    background-color: white;
    float:left;
    line-height: 50px;
}
.analysis {
    border: #DE5253 1px solid;
    border-bottom: none;
}
.tutorialSectionBox .sectionContent {
}
.sectionLogo .avatar {
    height: 80px;
    width: 80px;
    margin: 0px;
}
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%
}
End of CSS formatting of the functions and models sections*/

/*Do not change color of link once visited*/
a{
color:#000;
text-decoration:none;
}
a.visited{
color:#000;
}

/*For links containing code*/
.coderef a{
    font-family: monospace
}

ul.metro li.nocolor_class a.tile { background-color: #FFFFFF; border-radius: 50%; width: 110px; height: 110px;}

/*----------------------------------------------*/
/*---------Function list table class------------*/
/* Accessed via ".. rst-class:: func-list"      */
/*----------------------------------------------*/

/*Remove the alternate row background color from default sphinx+RTD*/
table.func-list.docutils:not(.field-list) tr:nth-child(2n-1) td {
    background: unset;
}

/*Make the links looks like code*/
table.func-list.docutils a {
    /*color: #000;*/
    text-decoration: none;
    cursor: pointer;
    font-family: monospace;
    font-size: 15px;
}

/*Formatting of the table cells*/
.rst-content table.func-list.docutils td {
    width: 300px;
    padding-left: 35px;
    border-bottom: solid 1px #f2f2f2;
    border-top: solid 1px #f2f2f2;
    border-left: hidden 1px #fff;
    border-right: hidden 1px #fff;
    font-size: 15px;
}

/*Formatting of the table header*/
.rst-content table.func-list.docutils thead th{
    background: #fff;
    padding-left: 35px;
    border-bottom: solid 1px #f2f2f2;
    border-top: hidden 1px #fff;
    border-left: hidden 1px #fff;
    border-right: hidden 1px #fff;
    margin-bottom: 0px;
    font-size: 15px;
}

/*Coloring when hovering over row*/
table.func-list.docutils tbody tr.row-odd, table.func-list.docutils tbody tr.row-even{
    border-radius: 15px;
}

/*Coloring when hovering over row*/
table.func-list.docutils tbody tr.row-odd:hover, table.func-list.docutils tbody tr.row-even:hover{
    background-color: #ececff!important;
}

/*----------------------------------------------*/
/*----------------------------------------------*/

/*Override table width restrictions*/
@media screen and (min-width: 767px) {

   .wy-table-responsive table td {
      white-space: normal !important;
   }

   .wy-table-responsive {
      overflow: visible !important;
   }
}

/*Formatting of the versions dropdown menu*/
.select {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    width: 50%;
}    .select select {
        font-family: 'Consolas';
        display: inline-block;
        width: 100%;
        cursor: pointer;
        padding: 7px 13px;
        outline: 0;
        border: 0px solid #343131;
        border-radius: 90px;
        background: #343131;
        color: #ffffff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
        .select select::-ms-expand {
            display: none;
        }
        .select select:hover,
        .select select:focus {
            color: #ffffff;
            background: #343131;
        }
        .select select:disabled {
            opacity: 0.4;
            pointer-events: none;
        }
.select_arrow {
    position: absolute;
    top: 12px;
    right: 20px;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0px 5px;
    border-color: #ffffff transparent transparent transparent;
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
    border-top-color: #343131;
}
.select select:disabled ~ .select_arrow {
    border-top-color: #343131;
}