
#google_translate_element {
    float: right;
    position: absolute;
    top: 59px;
    right: 0px;
    z-index: 99;
}

.thumbnailStepsImg {
    width: 220px;
    height: 220px;
    border: 1px solid silver;
    border-radius: 3px;
    -moz-box-shadow: 0 0 5px #888;
    -webkit-box-shadow: 0 0 5px#888;
    box-shadow: 0 0 15px rgb(158, 215, 222);
    /*z-index: 8888;*/
    cursor: pointer;
}

.thumbnailStepsImg:hover {
    box-shadow: 0 0 35px rgb(158, 215, 222);
    position: relative;
    /*-webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);*/
    transform: scale(1.5);
    transition: all 1.5s ease-in-out;
    z-index: 9999;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}


.letterCircle {
    behavior: url(PIE.htc);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    /*padding: 3px;
    background: #008fc3;
    border: 2px solid #666;*/
    color: #00BCD4;
    text-align: center;
    font: 16px Arial, sans-serif;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
    border-radius: 50%;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}

/* Position tooltip above the element TEST */
[data-tooltip]:before {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 160px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #bbfcfe;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* Tabs Begin */
.tabs {
    /*max-width: 640px;*/
    margin-top: 10px;
    margin: 0 auto;
    padding: 0 20px;
}
#tab-button {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#tab-button li {
    display: table-cell;
    width: 20%;
}
#tab-button li a {
    display: block;
    padding: .5em;
    background: #eee;
    border: 1px solid #ddd;
    text-align: center;
    color: #000;
    text-decoration: none;
}
#tab-button li:not(:first-child) a {
    border-left: none;
}
#tab-button li a:hover,
#tab-button .is-active a {
    border-bottom-color: transparent;
    background: #fff;
}
.tab-contents {
    padding: .5em 2em 1em;
    border: 1px solid #ddd;
}



.tab-button-outer {
    display: none;
}
.tab-contents {
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .tab-button-outer {
        position: relative;
        z-index: 2;
        display: block;
    }
    .tab-select-outer {
        display: none;
    }
    .tab-contents {
        position: relative;
        top: -1px;
        margin-top: 0;
    }
}
/* Tabs End */


.sectionPara {
    border-radius: 5px;
    border: 1px solid #28bcd0;
    background: #f6fdfd;
    box-shadow: 0 0 15px rgb(158, 213, 220);
    padding: 5px;
    margin: 15px;
}

.sectionSmall {
    border-radius: 3px;
    border: 1px solid #28bcd0;
    padding: 5px;
    margin: 5px;
}

.sectionHeader {
    background-color: #c2e6ea;
    padding: 5px;
}

.smartListTitle {
    /* https://codepen.io/veereshd/pen/ZZBOOQ */
    background-image: linear-gradient(to right, rgb(9, 188, 241), rgb(37, 100, 241));               /* Blue/Aqua color */
    /*background-image: -webkit-gradient(linear,left top,right top,from(#ff8a00),to(#da1b60));*/    /* Orange/Red color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====================== 2019 ======================== */
.show-read-more .more-text{
    display: none;
}

/* Response video width - https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php*/
.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%;
}

/* Saraf's PR */
#google_translate_element {
    display: none;
}