﻿body {
}

/* 
    Start Collapsible CSS 
*/


.itmContainer {
    padding:6px 12px 6px 12px;
    box-shadow: 0 0 0 2px rgb(218,220,224) inset;
    color: rgb(95,99,104);
    border-radius: 50vh;
    display: -moz-box;
    display: flex;
    display: inherit;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -moz-box-pack: center;
    justify-content: center;
    margin: 4px;
    min-width: 1px;
    outline: 1px solid transparent;
    -moz-user-select: none;
    user-select: none;
}


.alertColor 
{
    color: #ff0000;
}

.animatedbell {
    display: block;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

.mnuText 
{
    font-weight:600;
}

@media (max-width: 1280px) 
{
    .hidden-mobile {
        display: none !important;
    }
}

@media (max-width: 1480px) 
{
    .mnuIcon {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .mnuIcon {
        display: inline !important;
        font-size: 2em !important;
    }
    .mnuText {
        display: none !important;
    }
}

@media (max-width: 890px) {
    .mnuIcon {
        display: inline !important;
    }
    .navbar-form
    {
        padding: 10px 25px !important;
    }
    .mnuText {
        display: inline !important;
    }

    .navbar-collapse.in
    {
        overflow-x:hidden !important;
    }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

.msgContainer 
{
    font-size: 1em;
    background-color: #fff;

    border-radius: 10px;
    padding: 1px 5px 1px 5px;
    width: 20px;
    font-weight: 800;
    border: 1px solid #ccc;
}

.chkCollapsible
{
    display: none;
}

.wrap-collabsible {
    margin: 1.2rem 0;
}

.lbl-toggle-default {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem;
    color: #ddd;
    background: #0069ff;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s ease-out;
}

    .lbl-toggle-default:hover {
        color: #fff;
    }

    .lbl-toggle-default::before {
        content: " ";
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        margin-right: 0.7rem;
        transform: translateY(-2px);
        transition: transform 0.2s ease-out;
    }

.toggle:checked + .lbl-toggle-default::before {
    transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in-out;
}

.toggle:checked + .lbl-toggle-default + .collapsible-content {
    max-height: 350px;
}

.toggle:checked + .lbl-toggle-default {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 105, 255, 0.45);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: 0.5rem 1rem;
    color: #FFF;
   
}

.collapsible-content p {
    margin-bottom: 0;
}


/*  
    End Collapsible CSS 
*/




@media only screen and (max-width: 800px) 
{
    .mobileHide 
    {
        display: none;
    }
}

.topmargin10
{
    margin-top:10px;
}


.btnPadding
{
    padding: 5px 10px 5px 10px;
}

.file-upload {
    cursor: pointer;
    margin-bottom: 0px;
}

.roundedEdges
{
    border-radius: 20px;
}

.searchIcon {
    background-image: url('../images/searchIcon.png');
    background-position: 5px 1px;
    background-size: 20px;
    background-repeat: no-repeat;
    padding-left: 30px;
}


.hoverOpacity {
    opacity:0.5;
    transition: ease-in 0.35s;
}
.hoverOpacity:hover {
    opacity:1;
}

.bounce-in-top {
    -webkit-animation: bounce-in-top 1.1s 250ms both;
    animation: bounce-in-top 1.1s 250ms both;
}

@-webkit-keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}



.tracking-in-contract {
    -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-contract 
{
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tracking-in-contract
{
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}



.shake-horizontal {
    -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@-webkit-keyframes shake-horizontal {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@keyframes shake-horizontal {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}




.slide-out-bck-center {
    -webkit-animation: slide-out-bck-center 0.35s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-out-bck-center 0.35s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-bck-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-1100px);
        transform: translateZ(-1100px);
        opacity: 0;
    }
}

@keyframes slide-out-bck-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-1100px);
        transform: translateZ(-1100px);
        opacity: 0;
    }
}


.slide-out-left {
    -webkit-animation: slide-out-left 1s ease 0s 1 normal forwards;
    animation: slide-out-left 1s ease 0s 1 normal forwards;
}


@keyframes slide-out-left {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(250px);
    }
}



.rndChk {
    position: relative;
}

.rndChk label {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 50%;
cursor: pointer;
height: 28px;
left: 0;
position: absolute;
top: 0;
width: 28px;
max-width: initial;
display: initial;
}

.rndChk label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
    max-width:initial;
    display:initial;
}

.rndChk input[type="checkbox"] {
visibility: hidden;
}

    .rndChk input[type="checkbox"]:checked + label {
        background-color: #82c91e;
        border-color: #66bb6a;
    }

.rndChk input[type="checkbox"]:checked + label:after {
    opacity: 1;
}





/*Begin 3 Position Toggle Switch */

.switch-toggle {
    float: left;
    background: #585858;
}

.switch-toggle input {
    position: absolute;
    opacity: 0;
}

.switch-toggle input + label {
    padding: 7px;
    float: left;
    color: #fff;
    cursor: pointer;
}

.switch-toggle input:checked + label {
    background: #f28500;
    border-radius:15px;
}

.centeredTD {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

/*End 3 Position Toggle Switch*/

.hoverGrey:hover {
    background-color: rgba(124,124,124,0.8) ;
    transition: all 200ms ease-in;
}

.hoverGreen:hover {
    background-color: #d4f1b2;
    transition: all 200ms ease-in;
}



.cblSpacing label {
    padding-left: 5px;
}

.autoCompleteList {
    list-style: none outside none;
    border: 1px solid buttonshadow;
    cursor: default;
    padding: 0px;
    margin: 0px;
    z-index: 2000 !important;
    position:fixed !important;
}

.btnRefresh
{
    position:relative;
    z-index:10000;
    float:right;
    border-style:none;
    opacity: .8;
}

    .btnRefresh:hover {
        box-shadow: 0px 0px 60px #000000;
        z-index: 2;
        -webkit-transition: all 200ms ease-in;
        -ms-transition: all 200ms ease-in;
        -moz-transition: all 200ms ease-in;
        transition: all 200ms ease-in;
        opacity: 1;
        cursor: pointer;
        animation-name: three60rotate;
        animation-duration: 1.5s;
        animation-direction:normal;
        animation-timing-function:linear;
        animation-iteration-count: infinite;
    }

@keyframes three60rotate {
    0% {
        transform: translateX(0px) translateY(0px) scale(1) rotate(0deg);
    }

    50% {
        rotation: 180deg;
        transform: translateX(0px) translateY(0px) scale(0.75) rotate(180deg);
    }

    100% {
        transform: translateX(0px) translateY(0px) scale(1) rotate(360deg);
    }
}

.dropShadow
{
    box-shadow: rgba(0,0,0,0.8) 0px 0px 10px; 
}

.ddlSubLoc
{
    padding-left: 15px;
    color: #4c4c4c;
    font-style:italic;
}

.contactStatus
{
    padding: 5px;
    margin-bottom: 5px;
    background-color: #2f2f2f;
    border-radius: 0px 24px 24px 0px;
}

.activeCall
{
    position:relative;
    display: inline-block;
    width: 200px;
    height: 55px;
    margin: 3px;
    padding: 5px;
    border-radius: 3px;
    box-shadow:0px 0px 3px rgba(255, 255, 255, .95);
    border: 2px dotted #fff;  
    line-height: 15px;
    opacity: 0.75;

}

.callTypeEmployee
{
    background: linear-gradient(#067eb2, #22a9f7);
    background-color: #067eb2;
}

.callTypeSupervisor
{
    background: linear-gradient(#ff7800, #d17300);
    background-color: #ff7800;
}

.activeCall:hover
{
    box-shadow: 0px 0px 60px #000000;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.1);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.1);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.1);
    transition: all 200ms ease-in;
    transform: scale(1.1);
    opacity: 1;
    cursor:pointer;
}

.circleText
{
    background-color: #323232;
    border-radius:20px;
    border: 1px solid #cecece;
    font-size: smaller;
    padding: 2px 5px 2px 5px;
    font-weight: bolder;
}

.borderRight
{
    border-right: solid 3px #CECECE ;
}

.msgIconPosition
{
    position:relative;
    left:12px;
}

.icoPlayPosition
{
    position:relative;
    left:-30px;
}

.msgCountPosition
{
    position:relative;
    top: 5px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.whiteText
{
    color: #fff;
}

.greyBGDiv
{

    background-color: #464646; 
    padding:10px; 
    border: 1px solid #cecece; 
    border-radius: 10px;
}


.smGreyText
{
    color: #cecece;
    font-size: small;
}

.ModalHeader
{
    background: #4c4c4c; /* Old browsers */
    background: -moz-linear-gradient(top, #4c4c4c 0%, #7f7f7f 13%, #2c2c2c 53%, #000000 67%, #000000 78%, #2b2b2b 84%, #131313 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(13%,#7f7f7f), color-stop(53%,#2c2c2c), color-stop(67%,#000000), color-stop(78%,#000000), color-stop(84%,#2b2b2b), color-stop(100%,#131313)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #4c4c4c 0%,#7f7f7f 13%,#2c2c2c 53%,#000000 67%,#000000 78%,#2b2b2b 84%,#131313 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #4c4c4c 0%,#7f7f7f 13%,#2c2c2c 53%,#000000 67%,#000000 78%,#2b2b2b 84%,#131313 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #4c4c4c 0%,#7f7f7f 13%,#2c2c2c 53%,#000000 67%,#000000 78%,#2b2b2b 84%,#131313 100%); /* IE10+ */
    background: linear-gradient(to bottom, #4c4c4c 0%,#7f7f7f 13%,#2c2c2c 53%,#000000 67%,#000000 78%,#2b2b2b 84%,#131313 100%); /* W3C */
    color: #ffffff;
    font-size:larger;
    padding:5px;

}

.ModalPopupBG
{
    background-color: rgba(100,115,125,0.5);
}

.ModalContentBackground
{
    max-height:600px; 
    min-height:600px; 
    overflow:auto; 
    padding:5px;
    width:600px;
    background:white;
}

.ModalContentBackgroundMC
{
    max-height:250px; 
    min-height:250px; 
    overflow:auto; 
    padding:5px;
    width:600px;
    background:white;
}



.tdLabel{
    vertical-align:top;
    text-align:right;
    color:#cecece;
    
}

.profileControls
{
    width:250px;
}

.firstTemplate.distinct 
{
    background-color: #d0dff5;
}

.altTemplate.distinct 
{
    background-color: #E5EDF9;
}


.firstTemplate
{
    border-bottom: solid 1px #aaa;
    background-color: #cecece;
    font-size:smaller;
}

.firstTemplate:hover
{
    background-color: #ffd793;
}

.altTemplate
{
    border-bottom: solid 1px #aaa;
    background-color: #ffffff;
    font-size:smaller;
}

.altTemplate:hover
{
    background-color: #ffd793;
}

.tdLabelDark{
    
    text-align:right;
    color:#222;
    font-weight:bold;

}

.tblDashboard
{
    background-color: rgba(35, 35, 35, 0.5);
    border-radius: 5px;
    padding: 7px;
    
}

.tblDynamicFooter
{
    height:10px;
     border-radius:  0px 0px 10px 10px;
}

.tblReport
{
    background-color: rgba(220, 220, 220, 1);
    color: #000;
    box-shadow: rgba(0,0,0,0.8) 0px 0px 10px; 
    border-radius:  0px 0px 10px 10px;
    border-spacing: 10px;    
}


.tdValue{
    text-align:left;
    vertical-align:top;
}

.btnDark {
    color: #cecece;
    background-color: #222;
    border-radius: 15px;
}

.btnLight {

    color: #333333;
    background-color: #efefef;
    border: 2px solid #bbb;
    border-radius: 15px;

}


.inptLight {
    color: #222;
    background-color: #cecece;
    border-radius: 3px;
}

.resultNoneDiv
{
    display:none;
    width:100%;
    height:25px;
}

.resultValidDiv {
    display: inline-block;
    width: 100%;
    border-style: solid;
    border-color: #afa;
    border-width: 2px;
    background-color: rgba(200,255,200,0.2);
    position: relative;
    color: #ccffcc;
    padding: 7px;
    animation-name: dropIn;
    animation-duration: 1.0s;
    animation-direction: normal;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
}

.resultInvalidDiv {
    display: inline-block;
    width: 100%;
    border-style: solid;
    border-color: #faa;
    border-width: 2px;
    background-color: rgba(255,200,200,0.2);
    position:relative;
    color: #ffcccc;
    padding:7px;
    animation-name: dropIn;
    animation-duration: 1.0s;
    animation-direction: normal;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
}



.ddlDark:focus
{
    background-color: #222; 
    color:#ffffff;
}

option:disabled 
{
    font-weight: bolder;
    color: #F28807;
}


.ddlDark {
    background-color: #222;
    color: #cecece;
}

.ControlError {
    background-color: #992222;
    color: #ffcece;
}


.mtcLink
{
  color: #fff;
  cursor: pointer;
}

.mtcLink:hover 
{
        color: #f28500;
}

.mtcLinkDark
{
  color: #0066FF;
  cursor: pointer;
}

.mtcLinkDark:hover
{
  color: #131313;
}

.itemRow
{
    display:table-row;
}

input
{
    border-style:solid;
}

select
{
    border-style: solid;
}

.controlWOptButton
{
    width: 400px;
    min-width: 400px;
}

.bg-fadein {
    animation-name: fadein;
    animation-duration: 1.25s;
    animation-direction: normal;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
}

@keyframes dropIn {
    0% {
        display: none;
        top: -1em;
        opacity: 0.0;
    }

    1%
    {
        display: block;
    }

    100% {
        top:0em;
        opacity: 1.0;
    }
}



@keyframes fadein {
    0% {
        opacity:0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.divParamControls {
    padding-right: 15px;
    padding-bottom: 10px;
}

.paramLabel {
    text-align:right;
    display: inline-block;
    min-width: 130px;
    padding-right: 10px;
}

.dlItem {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
    display: table-cell;
    text-align: center;
}

.dlHeader
{
    padding: 10px;
    text-align:center;
}

.resultValidLBL
{
    color:#00ff00;
}

.resultInvalidLBL
{
    color:#ff0000;
}

/* SMS Text  Simulation CSS Below*/
/* General CSS Setup */
/*
body{
  background-color: lightblue;
  font-family: "Ubuntu-Italic", "Lucida Sans", helvetica, sans;
}
*/
/* container 
.container {
  padding: 5% 5%;
}
 */

/* CSS talk bubble */
.talk-bubble {
	margin: 5px 0px 30px 0px;
    display: inline-block;
    position: relative;
	max-width: 500px;
    min-width: 100px;
	height: auto;
	background-color: #eee;
}
.border
{
  border: 8px solid;
}

.SMSOut
{
    border: 8px solid #22b6f7;
}

.SMSIn
{
    border: 8px solid #222222;
}

.round{
  border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;

}


.tri-right.border.btm-left-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 20px;
    right: auto;
    top: auto;
    bottom: -40px;
    border: 20px solid;
    border-color: #22b6f7 transparent transparent #22b6f7;
}
.tri-right.btm-left-in:after{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 28px;
    right: auto;
    top: auto;
	bottom: -20px;
	border: 12px solid;
	border-color:  #eee transparent transparent  #eee;
}


.tri-right.border.btm-right-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 20px;
    bottom: -40px;
    border: 20px solid;
    border-color: #222222 #222222 transparent transparent;
}

.tri-right.btm-right-in:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 28px;
    bottom: -20px;
    border: 12px solid;
    border-color: #eee #eee transparent transparent;
}

/* talk bubble contents */
.talktext {
    padding: 1em;
    text-align: center;
    line-height: 1.5em;
}
.talktext p{
  /* remove webkit p margins */
  color:#131313;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
}



.scale-up-ver-bottom {
    animation: scale-up-ver-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

@keyframes scale-up-ver-bottom {
    0% {
        transform: scaleY(0.1);
        transform-origin: 0% 100%;
    }

    100% {
        transform: scaleY(1);
        transform-origin: 0% 100%;
    }
}




.cssJump 
{
    animation: .8s jump ease infinite alternate;
}

@keyframes jump {
    0% {
        transform: scale(1);
        text-shadow: #000000 1px 0px 1px;
    }

    100% {
        transform: scale(1.05);
        text-shadow: #000000 1px 0px 5px;
    }
}

.come-in 
{
    animation: come-in 1.5s ease forwards;
}


@keyframes come-in {
    to {transform: translateX(0px) translateY(0px) scale(1.0);}
}

.mtcThrob 
{
    animation-name: throb;
    animation-duration: 1.5s;
    animation-direction:alternate-reverse;
    animation-timing-function:ease-in;
    animation-iteration-count:infinite;

}

@keyframes throb {
    0% { transform: translateX(0px) translateY(0px) scale(0.75);}
    50% { transform: translateX(0px) translateY(0px) scale(1); }
    100% {transform: translateX(0px) translateY(0px) scale(0.75);}
}



/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */



.sliderMulti {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #BBBBBB;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.35);
}

    .sliderMulti:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .sliderMulti {
    background-color: #2196F3;
}

input:focus + .sliderMulti {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .sliderMulti:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}



/* Rounded sliders */
.sliderMulti.round {
    border-radius: 34px;
}

    .sliderMulti.round:before {
        border-radius: 50%;
    } 