﻿/*滚动条样式：宽度~~*/
::-webkit-scrollbar {
    width: 7px;

}
[data-name="edit-upload-content"]::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: rgba(0,0,0,0);
}
[data-name="edit-upload-content"]:hover::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #D4D4D4;
}

.form-box {
    margin-bottom: 1px;
    color: #111;
    font-size: 12pt;
    font-family: 'Arial' , 'Open Sans',sans-serif;
    text-decoration: none;
    background: 0 0;
    border: 0;
    border-bottom: 2px solid #333;
}

.form-box:focus {
    outline: 0;
    border-color: #f50!important;
}

.form-box-hover {
    margin-bottom: 0;
    border-width: 3px;
    border-color: #333;
    background: #eee;
}

.form-box-active {
    margin-bottom: 0;
    border-width: 3px;
    background: #fa8;
    border-color: #f50!important;
}

.input-wrapper {
    position: relative;
    height: 40px;
    font-size: 0!important;
    white-space: nowrap;
}


.input-wrapper>input,.input-wrapper>button {
    display: inline-block;
    padding: 0;
    margin: 0;
    min-width: 40px;
    height: 40px;
    vertical-align: top;
    font-size: normal;
    font-size: initial;
    border: 0;
}

.input-wrapper>button:focus {
    outline: 0;
}

.input-focus {
    display: block;
    position: absolute;
    top: 35px;
    right: 5px;
    left: 5px;
    height: 1px;
    background: #ccc;
}

input[type=text] {
    cursor: text;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: monospace;
}

input:focus {
    outline: 0;
}

input[type=text]:focus+.input-focus {
    background: #f50!important;
    height: 2px;
}

input[type=text].alert+.input-focus {
    background: red!important;
}

.input {
    width: 100%;
    height: 30px;
    padding: 8px 10px 5px 10px;
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #888;
}

.input:focus {
    border-bottom: 2px solid #f50!important;
    height: 31px;
    margin-bottom: -1px;
}

select {
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
    padding: 5px;
    max-width: 300px;
    color: #111;
    font-size: 12pt;
    font-family: 'Open Sans',sans-serif;
    text-decoration: none;
}

select:focus {
    outline: 0;
}

option {
    background: #fff;
}

input[type=checkbox] {
    cursor: pointer;
    margin-bottom: 8px;
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

button,input[type=submit] {
    cursor: pointer;
    display: inline-block;
}

.btn {
    margin-bottom: 1px;
    color: #111;
    font-size: 12pt;
    font-family: 'Open Sans',sans-serif;
    text-decoration: none;
    background: 0 0;
    border: 0;
    border-bottom: 2px solid #333;
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
    padding: 5px 15px;
}

.btn:focus {
    outline: 0;
    border-color: #f50!important;
}

.btn-large {
    padding: 10px 20px;
    font-size: 18pt;
}

.close-btn {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    line-height: 1;
    font-size: 32pt;
    color: #eee;
}

.close-btn:after {
    content: '\00D7';
}

.btn-group {
    display: block;
    padding-bottom: 10px;
}

.btn-group-bar {
    display: block;
    padding-bottom: 10px;
    text-align: left;
}

table {
    position: relative;
    color: #111;
    border-collapse: collapse;
}

td,th {
    padding: 5px 20px 5px 5px;
    min-width: 32px;
    border: 1px solid #ccc;
}

td {
    background-color: #eee;
}

tr:nth-child(even)>td {
    background-color: #ddd;
}

th {
    background: #fff;
    font-weight: 700;
    text-align: center;
}

td:first-child {
    font-weight: 700;
}

h3 {
    margin: 25px 0 5px 0;
}

h4 {
    margin: 20px 0 0 0;
}

p {
    margin: 5px 0;
}

h4+p {
    margin: 0 0 5px 0;
}

li {
    margin: 10px 0;
}

img {
    display: block;
    max-width: 100%;
}

table {
    border-spacing: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a.link {
    cursor: pointer;
    color: #06c;
    border-bottom: 0 solid #f50;
    transition: border .1s linear;
    -webkit-transition: border .1s linear;
}

a.link:hover {
    color: #f50;
    text-decoration: underline;
}

a.link:active {
    color: red;
}

a.a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

a.a:visited {
    color: #ccc;
}

a.a:hover {
    color: #f50;
    text-decoration: underline;
}

a.a:active {
    color: red;
}

a.gray {
    color: #aaa;
    cursor: pointer;
}

a.gray:visited {
    color: #aaa;
}

a.gray:hover {
    color: #666;
    text-decoration: underline;
}

a.gray:active {
    color: #333;
}

.no-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.progress-cursor {
    cursor: progress;
}

.alert-bar {
    display: block;
    margin: 5px 5px 10px 5px;
    padding: 10px;
    background: #fcb3bc;
    border-left: 4px solid red;
}

.hstack {
    font-size: 0!important;
    white-space: nowrap;
}

.hstack>* {
    display: inline-block;
    vertical-align: top;
    font-size: normal;
    font-size: initial;
}

html {
    overflow: hidden;
}

body {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #111;
    font-family: 'Open Sans',sans-serif;
    background: #fff;
    overflow: hidden;
}

#progress {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

#progress-canvas {
    position: absolute;
}

#menu {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
}

.no-menu>#menu {
    display: none;
}

.no-menu>#progress {
    top: 0;
}

.no-menu>#content {
    top: 0;
}

#content {
    position: absolute;
    top: 41px;
    left: 0;
    right: 0;
    bottom: 0;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#sketcher {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: #eee;
}

.layout-sketcher>#sketcher,.layout-hsplit>#sketcher {
    right: 0;
}

.layout-hsplit>#sketcher {
    bottom: 50%;
}

.layout-model>#sketcher {
    visibility: hidden;
}

#model {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background: #000;
    overflow: hidden;
}

.layout-model>#model,.layout-hsplit>#model {
    left: 0;
}

.layout-hsplit>#model {
    top: 50%;
}

.layout-sketcher>#model {
    visibility: hidden;
}

#messages {
    z-index: 3;
}

#dialog-overlay {
    z-index: 4;
}

#about-links {
    margin-top: 50px;
    text-align: center;
    line-height: 2;
    color: #888;
}

#share-dialog-social {
    margin: 5px 0 5px -5px;
}

#menu {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    height: 41px;
    overflow: hidden;
    overflow-x: auto;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#menu-bar {
    position: absolute;
    top: 0;
    min-width: 100%;
    background: #fff;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
}

.menu-open {
    height: 100%!important;
}

.menu-open>#menu-bar {
    overflow: visible;
}

#main-menu,#layout-menu,.dropdown,.menu-item,.menu-header,.menu-divider {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown {
    position: relative;
    margin: 0;
    padding: 0;
}

.dropdown-toggle {
    z-index: 1;
    position: relative;
    display: block;
    margin: 0;
    padding: 10px 15px;
    height: 20px;
    line-height: 20px;
}

.dropdown-menu {
    visibility: hidden;
    position: absolute;
    margin: -1px 0 0 0;
    padding: 5px 0;
    min-width: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.dropdown-left {
    right: 0;
}

.dropdown-compact>.menu-item>a {
    padding: 5px 15px;
}

.dropdown-compact>.menu-item>a:before {
    display: none;
}

.menu-header {
    display: block;
    cursor: default;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 3px 10px;
    line-height: 15px;
    white-space: nowrap;
}

.menu-item>a {
    display: block;
    line-height: 20px;
    white-space: nowrap;
}

.dropdown.open {
    z-index: 2;
}

.menu.open .dropdown:not(.open)>.dropdown-menu {
    display: none;
}

.dropdown.open>.dropdown-menu {
    visibility: visible;
}

#search {
    margin: 0 5px;
    background: #fff;
}

#search>.input-wrapper>input,#search>.input-wrapper>button {
    background: #fff;
}

#search-input {
    width: 300px;
    font-family: 'Open Sans',sans-serif;
}

#search-dropdown {
    display: inline-block;
}

#search-dropdown>.dropdown-toggle {
    border-color: transparent;
}

#search-dropdown>.dropdown-toggle:after {
    margin: 0;
    color: #111;
    content: '\f0d7';
}

#layout-menu {
    font-size: 0;
}

#layout-menu>a {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 112px;
    height: 63px;
    opacity: .7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media all and (min-width:720px) {
    #layout-menu>a {
        width: 160px;
        height: 90px;
    }
}

#action-layout-model {
    background-image: url(../images/model.svg);
}
#action-mp-fd-rect {
    background-image: url(../images/tool/fd_rect.svg);
}
#action-mp-fd-ellipse {
    background-image: url(../images/tool/fd_ellipse.svg);
}
#action-mp-fd-circle {
    background-image: url(../images/tool/fd_circle.svg);
}
#action-mp-fd-roundedRect {
    background-image: url(../images/tool/fd_roundedRect.svg);
}
#action-mp-fd-dashRect {
    background-image: url(../images/tool/fd_dashRect.svg);
}
#action-mp-fd-dashEllipse {
    background-image: url(../images/tool/fd_dashEllipse.svg);
}
#action-mp-fd-dashCircle {
    background-image: url(../images/tool/fd_dashCircle.svg);
}
#action-mp-fd-dashRoundedRect {
    background-image: url(../images/tool/fd_dashRoundedRect.svg);
}
#action-mp-fd-solidRect {
    background-image: url(../images/tool/fd_solidRect.svg);
}
#action-mp-fd-solidEllipse {
    background-image: url(../images/tool/fd_solidEllipse.svg);
}
#action-mp-fd-solidCircle {
    background-image: url(../images/tool/fd_solidCircle.svg);
}
#action-mp-fd-solidRoundedRect {
    background-image: url(../images/tool/fd_solidRoundedRect.svg);
}
#action-mp-fd-shadowRect {
    background-image: url(../images/tool/fd_shadowRect.svg);
}
#action-mp-fd-shadowEllipse {
    background-image: url(../images/tool/fd_shadowEllipse.svg);
}
#action-mp-fd-shadowCircle {
    background-image: url(../images/tool/fd_shadowCircle.svg);
}
#action-mp-fd-shadowRoundedRect {
    background-image: url(../images/tool/fd_shadowRoundedRect.svg);
}
#action-mp-fd-3dRect {
    background-image: url(../images/tool/fd_3dRect.svg);
}
#action-mp-fd-3dEllipse {
    background-image: url(../images/tool/fd_3dEllipse.svg);
}
#action-mp-fd-3dCircle {
    background-image: url(../images/tool/fd_3dCircle.svg);
}
#action-mp-fd-3dRoundedRect {
    background-image: url(../images/tool/fd_3dRoundedRect.svg);
}
#action-mp-fd-arc90 {
    background-image: url(../images/tool/fd_arc90.svg);
}
#action-mp-fd-arc120 {
    background-image: url(../images/tool/fd_arc120.svg);
}
#action-mp-fd-arc180 {
    background-image: url(../images/tool/fd_arc180.svg);
}
#action-mp-fd-arc270 {
    background-image: url(../images/tool/fd_arc270.svg);
}
#action-mp-fd-dashArc90 {
    background-image: url(../images/tool/fd_dashArc90.svg);
}
#action-mp-fd-dashArc120 {
    background-image: url(../images/tool/fd_dashArc120.svg);
}
#action-mp-fd-dashArc180 {
    background-image: url(../images/tool/fd_dashArc180.svg);
}
#action-mp-fd-dashArc270 {
    background-image: url(../images/tool/fd_dashArc270.svg);
}
#action-mp-fd-line {
    background-image: url(../images/tool/fd_line.svg);
}
#action-mp-fd-dashLine {
    background-image: url(../images/tool/fd_dashLine.svg);
}
#action-mp-fd-arcLine {
    background-image: url(../images/tool/fd_arcLine.svg);
}
#action-mp-fd-boldLine {
    background-image: url(../images/tool/fd_boldLine.svg);
}

#action-layout-sketcher {
    background-image: url(../images/sketcher.svg);
}

#action-layout-vsplit {
    background-image: url(../images/vsplit.svg);
}

#action-layout-hsplit {
    background-image: url(../images/hsplit.svg);
}
#action-mp-acs {
    background-image: url(../images/tool/96.svg);
}
#action-mp-left {
    background-image: url(../images/tool/left.svg);
}
#action-mp-right {
    background-image: url(../images/tool/right.svg);
}
#action-mp-leftright {
    background-image: url(../images/tool/left_right.svg);
}
#action-mp-top {
    background-image: url(../images/tool/top.svg);
}
#action-mp-bottom {
    background-image: url(../images/tool/bottom.svg);
}
#action-mp-topbottom {
    background-image: url(../images/tool/top_bottom.svg);
}
.act-wrap-align {
    display:none;
    position:absolute;
    left:0;
    top:35px;
    width:207px;
    height:auto!important;
    border: none;
    padding: 3px;
    background: #F6F6F6;
    background-color: #F6F6F6;
    box-shadow: 1px 1px 5px 2px #ccc;
    padding: 0;
    z-index:99;
}
.act-wrap-align div {
    transform: scale(1);
    -webkit-transform: scale(1);
}
.icon-down {
    position:absolute;
    left:15px;
    top:15px;
    width:40px;
    height:40px;
    display: inline-block;
    cursor:default;
    box-shadow: 1px 1px 2px 2px #ccc;
    background-image: url(../images/tool/icon_down.png);
    z-index: 100;
    transform:scale(0.20);
    -ms-transform:scale(0.20); 	/* IE 9 */
    -moz-transform:scale(0.20); 	/* Firefox */
    -webkit-transform:scale(0.20); /* Safari 和 Chrome */
    -o-transform:scale(0.20); 	/* Opera */
    background-size: 80%;
    background-repeat: no-repeat;
    opacity: .4;

}
#action-mp-SN {
    background-image: url(../images/tool/SN.png);
}
#action-mp-NS {
    background-image: url(../images/tool/NS.png);
}
#brand {
    width: 50px;
    height: 40px;
    right:0;
    height: 40px;
    width: 100%;
    /*overflow: hidden;
    background-image: url(../images/brand.svg);
    background-repeat: no-repeat;
    background-position: center;*/
    padding: 5px 0;
    z-index: 3;
}

.dropdown-toggle {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.dropdown-toggle:after {
    margin-left: 8px;
    color: #111;
    font-family: FontAwesome;
    content: '\f107';
}

.dropdown.open>.dropdown-toggle {
    background-color: #fff!important;
    border-color: #ccc!important;
}

.caret {
    border-top-color: #111;
}

.dropdown-menu {
    background: #fff;
    border: 1px solid #ccc;
}

.menu-header {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
}

.menu-divider {
    margin: 5px!important;
    border-bottom: 1px dashed #ccc;
}

.disabled {
    color: #ccc!important;
    cursor: default;
    border-color: #eee;
}

.menu-item>a {
    color: #111;
}

.menu-item>a:before {
    display: inline-block;
    width: 30px;
    color: #333;
    text-align: center;
    font-family: FontAwesome;
    font-size: 10pt;
    content: ' ';
}

.menu-item>a.radio:before,.menu-item>a.check:before {
    color: transparent;
    content: '\f00c';
}

.menu-item>a.checked:before {
    color: #000;
}

.menu-item>a.disabled:before {
    color: #fff!important;
}

#action-search-pubchem:before {
    content: '\f1c0';
}

#action-search-rcsb:before {
    content: '\f1c0';
}

#action-search-cod:before {
    content: '\f1c0';
}

#action-help:before {
    content: '\f1cd';
}

#action-about:before {
    content: '\f05a';
}

#action-share:before {
    content: '\f064';
}

#action-embed:before {
    content: '\f121';
    font-weight: 700;
}

#action-export-sketcher-png:before,#action-export-model-png:before,#action-export-model:before {
    content: '\f019';
}

#action-data-infocard:before {
    content: '\f1ec';
}

#action-data-spectra:before {
    content: '\f1fe';
}

#model-source:before {
    content: '\f08e';
}

#action-search-similarity:before {
    content: '\2248';
    font-weight: 700;
}

#action-search-substructure:before {
    content: '\2282';
    font-weight: 700;
}

#action-search-superstructure:before {
    content: '\2283';
    font-weight: 700;
}

#action-model-reset:before {
    content: '\f021';
}

#action-cif-unit-cell:before {
    content: '\f1b2';
}

#action-cif-cubic-supercell:before {
    content: '\f1b3';
}

#action-cif-flat-supercell:before {
    content: '\f1b3';
}

.sketcher {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.toolbar {
    position: absolute;
    background: #fff;
    overflow: visible;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.tool-button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #000;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    /*    background-size: 20px;*/
    border: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    margin:0;
    transition: background ease .5s;
    -webkit-transition: background ease .5s;
}


.tool-button-selected {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}




.tool-button-disabled {
    opacity: .3;
    cursor: default;
}

.horizontal-separator {
    margin: 5px;
    width: 0;
    height: 30px;
    border-right: 1px solid #ccc;
}

.vertical-separator {
    margin: 5px;
    width: 30px;
    height: 0;
    border-bottom: 1px solid #ccc;
}

#chem-tools {
    top: 0;
    left: 0;
    height:100%;
    background:#f3f3f3;
    bottom:0;
    z-index:2;
    width:85px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

#edit-tools {
    background:#f3f3f3;
    position: absolute;
    top:0;
    left:84px;
    right:0;
    height:40px;
    width:100%;
    /*overflow: hidden;*/
    padding:5px 0;
    z-index:3;
}
#edit-tools .toolbar-inner {
    padding-top:0;
}
#edit-tools .tool-button {
    float:left;


    /*    background-size: 80% 80%;*/
    transform: scale(.75);
    -webkit-transform: scale(.75);
}

#elem-tools {
    top: 40px;
    right: 0;
    bottom: 0;
    width: 40px;
}

#chem-tools .toolbar-inner {
    padding-top: 4px;
}

#chem-tools .toolbar-inner .tool-button {
    margin-top: 1px;
    margin-bottom: -2px;
    /*    background-size: 80% 80%;*/
    transform: scale(.75);
    -webkit-transform: scale(.75);
}
#chem-tools .toolbar-inner .tool-button .inside {
    margin-top: 0px;
    margin-bottom: -2px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
}
[data-button] {
    z-index: 5;
}

#molpad-canvas-wrapper {
    position: absolute;
    top: 60px;
    left: 101px;
    right: 0px;
    bottom: 0;
    min-width: 1px;
    min-height: 1px;
    overflow: hidden;
    background: #fff;
}
/*这个是获取属性，没改名字的原因是因为旧的js代码没有改，工期太赶，延后*/
.cursor-rotate {
    cursor:col-resize;
}
#action-mp-center {
    background-image: url(../images/tool/chem_attr.svg);
}
#action-mp-pic {
    background-image: url(../images/tool/image.svg);
}
#action-mp-sub {
    background-image: url(../images/tool/x2.png);
}
#action-mp-atom-c {
    background-image: url(../images/tool/c_element.svg);
}
#action-mp-atom-n {
    background-image: url(../images/tool/N.svg);
}

#action-mp-atom-o {
    background-image: url(../images/tool/o_element.svg);
}
#action-mp-atom-h {
    background-image: url(../images/tool/h_element.svg);
}

#action-mp-atom-s {
    background-image: url(../images/tool/s_element.svg);
}

#action-mp-atom-cl {
    background-image: url(../images/tool/cl_element.svg);
}
#action-mp-atom-br {
    background-image: url(../images/tool/br_element.svg);
}
#action-mp-periodictable {
    background-image: url(../images/tool/more_element.svg);
}

#action-mp-multiBond {
    background-image: url(../images/tool/mul_bond.svg);
}
#action-mp-textbox {
    background-image: url(../images/tool/a.svg);
}
#action-mp-reaction {
    background-image: url(../images/tool/rxn_arrows.svg);
}
#action-mp-reverse {
    background-image: url(../images/tool/equilibrium_large.svg);
}
#action-mp-reverse2 {
    background-image: url(../images/tool/Hollow_large.svg);
}
#action-mp-reverse3 {
    background-image: url(../images/tool/equilibrium_medium.svg);
}
#action-mp-reverse4 {
    background-image: url(../images/tool/equilibrium_small.svg);
}
#action-mp-reverse5 {
    background-image: url(../images/tool/unbalanced_equilibrium_large.svg);
}
#action-mp-reverse6 {
    background-image: url(../images/tool/unbalanced_equilibrium_medium.svg);
}
#action-mp-reverse7 {
    background-image: url(../images/tool/unbalanced_equilibrium_small.svg);
}
#action-mp-reverse8 {
    background-image: url(../images/tool/Hollow_medium.svg);
}
#action-mp-reverse9 {
    background-image: url(../images/tool/retroSynthetic_large.svg);
}
#action-mp-reverse10 {
    background-image: url(../images/tool/retroSynthetic_small.svg);
}
#action-mp-straightArrow {
    background-image: url(../images/tool/solid_large.svg);
}
#action-mp-straightArrow1 {
    background-image: url(../images/tool/solid_medium.svg);
}
#action-mp-straightArrow2 {
    background-image: url(../images/tool/solid_small.svg);
}
#action-mp-straightArrow3 {
    background-image: url(../images/tool/bold_large.svg);
}
#action-mp-straightArrow4 {
    background-image: url(../images/tool/bold_medium.svg);
}
#action-mp-straightArrow5 {
    background-image: url(../images/tool/bold_small.svg);
}
#action-mp-straightArrow6 {
    background-image: url(../images/tool/dashed_large.svg);
}
#action-mp-straightArrow7 {
    background-image: url(../images/tool/dashed_meidium.svg);
}
#action-mp-straightArrow8 {
    background-image: url(../images/tool/dashed_small.svg);
}
#action-mp-straightArrow9 {
    background-image: url(../images/tool/One_sided_left_large.svg);
}
#action-mp-straightArrow10 {
    background-image: url(../images/tool/One_sided_left_medium.svg);
}
#action-mp-straightArrow11 {
    background-image: url(../images/tool/One_sided_left_small.svg);
}
#action-mp-straightArrow12 {
    background-image: url(../images/tool/One_sided_Right_large.svg);
}
#action-mp-straightArrow13 {
    background-image: url(../images/tool/One_sided_Right_medium.svg);
}
#action-mp-straightArrow14 {
    background-image: url(../images/tool/One_sided_Right_small.svg);
}
#action-mp-straightArrow15 {
    background-image: url(../images/tool/Resonance_large.svg);
}
#action-mp-straightArrow16 {
    background-image: url(../images/tool/Resonance_medium.svg);
}
#action-mp-straightArrow17 {
    background-image: url(../images/tool/Resonance_small.svg);
}
#action-mp-straightArrow18 {
    background-image: url(../images/tool/nogo_cross_large.svg);
}
#action-mp-straightArrow19 {
    background-image: url(../images/tool/nogo_cross_medium.svg);
}
#action-mp-straightArrow20 {
    background-image: url(../images/tool/nogo_cross_small.svg);
}
#action-mp-straightArrow21 {
    background-image: url(../images/tool/nogo_hash_large.svg);
}
#action-mp-straightArrow22 {
    background-image: url(../images/tool/nogo_hash_medium.svg);
}
#action-mp-straightArrow23 {
    background-image: url(../images/tool/nogo_hash_small.svg);
}
#action-mp-cleanUp{
    background-image: url(../images/tool/clean.svg);
}

[data-button]:after {
    content:"";
    position: absolute;
    display:block;
    bottom:4px;
    right:3px;
    width:0;
    height:0;
    border-top:3px solid transparent;
    border-right: 3px solid #777;
    border-bottom:3px solid #777;
    border-left:3px solid transparent;
}
#action-mp-fullCrop {
    background-image: url(../images/tool/image.svg);
}

#setColor {
    /*cursor: pointer;*/
}
#setColor:after {
    content:"";
    position: absolute;
    display:block;
    bottom:6px;
    right:5px;
    width:0;
    height:0;
    border-top:3px solid transparent;
    border-right: 3px solid #000;
    border-bottom:3px solid #000;
    border-left:3px solid transparent;
}

#action-mp-selectColor {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0)
}

.full-crop-wrap .modalbox-body {
    text-align: center;
    background: #F6F6F6;
}
.act-wrap {
    display:none;
    position:absolute;
    left:0;
    top:35px;
    width:207px;
    height:auto!important;
    border: none;
    padding: 3px;
    background: #F6F6F6;
    background-color: #F6F6F6;
    box-shadow: 1px 1px 5px 2px #ccc;
    padding: 0;
    z-index:99;
}
/*#action-mp-charge-add:hover .act-wrap {
    display:block;
}*/

/*#action-mp-straightArrow:hover .act-wrap  {
    display:block;
}*/

#indraw-canvas-box {
    margin-left: 85px;
    margin-top: 50px;
    width: calc( 100% - 85px );
    height: calc(100% - 50px);

}
#indraw-canvas-box.vertical {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
}
#action-mp-curveArrow {
    background-image: url(../images/tool/a90_CCW.svg);
}
#action-mp-curveArrow1 {
    background-image: url(../images/tool/a120_CCW.svg);
}
#action-mp-curveArrow2 {
    background-image: url(../images/tool/a180_CCW.svg);
}
#action-mp-curveArrow3 {
    background-image: url(../images/tool/a270_CCW.svg);
}
#action-mp-curveArrow4 {
    background-image: url(../images/tool/a90_CW.svg);
}
#action-mp-curveArrow5 {
    background-image: url(../images/tool/a120_CW.svg);
}
#action-mp-curveArrow6 {
    background-image: url(../images/tool/a180_CW.svg);
}
#action-mp-curveArrow7 {
    background-image: url(../images/tool/a270_CW.svg);
}
#action-mp-curveArrow8 {
    background-image: url(../images/tool/a90_single_CCW.svg)
}
#action-mp-curveArrow9 {
    background-image: url(../images/tool/a120_single_CCW.svg);
}
#action-mp-curveArrow10 {
    background-image: url(../images/tool/a180_single_CCW.svg);
}
#action-mp-curveArrow11 {
    background-image: url(../images/tool/a270_single_CCW.svg);
}
#action-mp-curveArrow12 {
    background-image: url(../images/tool/a90_single_CW.svg);
}
#action-mp-curveArrow13 {
    background-image: url(../images/tool/a120_single_CW.svg);
}
#action-mp-curveArrow14 {
    background-image: url(../images/tool/a180_single_CW.svg);
}
#action-mp-curveArrow15 {
    background-image: url(../images/tool/a270_single_CW.svg);
}
#action-mp-curveArrow16 {
    background-image: url(../images/tool/a90_2_headed.svg);
}
#action-mp-curveArrow17 {
    background-image: url(../images/tool/a120_2_headed.svg);
}
#action-mp-curveArrow18 {
    background-image: url(../images/tool/a180_2_headed.svg);
}
#action-mp-curveArrow19 {
    background-image: url(../images/tool/a270_2_headed.svg);
}
#action-mp-curveArrow20 {
    background-image: url(../images/tool/a270_eliptical_CW.svg);
}
#action-mp-curveArrow21 {
    background-image: url(../images/tool/a270_eliptical_CCW.svg);
}
#action-mp-bond-single {
    background-image: url(../images/tool/single_line.svg);
}
#action-mp-bond-singledouble {
    background-image: url(../images/tool/single_double.svg);
}

#action-mp-bond-double {
    background-image: url(../images/tool/double_line.svg);
}

#action-mp-bond-triple {
    background-image: url(../images/tool/tri.svg);
}

#action-mp-bond-wedge {
    background-image: url(../images/tool/wedge.svg);
}
#action-mp-bond-wedge-2 {
    background-image: url(../images/tool/wedge2.svg);
}
#action-mp-bond-up {
    background-image: url(../images/tool/up.svg);
}
#action-mp-bond-hydrobond {
    background-image: url(../images/tool/hydrobond.png);
}
#action-mp-bond-down {
    background-image: url(../images/tool/down.svg);
}
#action-mp-bond-cord {
    background-image: url(../images/tool/cord.svg);
}
#action-mp-bond-cross {
    background-image: url(../images/tool/cross.svg);
}
#action-mp-bond-dlaromatic {
    background-image: url(../images/tool/double_aromatic.svg);
}
#action-mp-bond-any {
    background-image: url(../images/tool/any.svg);
}
#action-mp-bond-sgaromatic {
    background-image: url(../images/tool/sgaro.svg);
}
#action-mp-bond-aromatic {
    background-image: url(../images/tool/aromatic.svg);
}

#action-mp-bond-hash {
    background-image: url(../images/tool/hash.svg);
}

#action-mp-frag-benzene {
    background-image: url(../images/tool/benzene.svg);
}
#action-mp-frag-cyclooctane {
    background-image: url(../images/tool/cyclooctane.svg);
}
#action-mp-frag-cyclopentadiene {
    background-image: url(../images/tool/cyclopentadiene.svg);
}

#action-mp-frag-aromatic-cyclopentane {
    background-image: url(../images/tool/Aromatic_5.svg);
}

#action-mp-frag-aromatic-benzene {
    background-image: url(../images/tool/Aromatic_6.svg);
}

#action-mp-frag-cyclopropane {
    background-image: url(../images/tool/cyclopropane.svg);
}

#action-mp-frag-cyclobutane {
    background-image: url(../images/tool/cyclobutane.svg);
}

#action-mp-frag-cyclopentane {
    background-image: url(../images/tool/cyclopentane.svg);
}

#action-mp-frag-cyclohexane {
    background-image: url(../images/tool/cyclohexane.svg);
}

#action-mp-frag-cycloheptane {
    background-image: url(../images/tool/cycloheptane.svg);
}

#action-mp-chain {
    background-image: url(../images/tool/chain.svg);
}
#action-mp-savefullpic{
    transform:scale(1)!important;
    -webkit-transform:scale(1)!important;
    background-image: url(../images/tool/image.svg);
}
#action-mp-clear {
    background-image: url(../images/tool/clear.svg);
}

#action-mp-eraser {
    background-image: url(../images/tool/erase.svg);
}

#action-mp-drag {
    background-image: url(../images/tool/move.svg);
}

#action-mp-undo {
    background-image: url(../images/tool/undo.svg);
}

#action-mp-redo {
    background-image: url(../images/tool/redo.svg);
}

#action-mp-rect {
    background-image: url(../images/tool/selection.svg);
}
#action-mp-persp {
    background-image: url(../images/tool/persp.svg);
}
#action-mp-lasso {
    background-image: url(../images/tool/lasso.svg);
}
/* todo : delete*/
#action-mp-color-mode {
    background-image: url(../images/tool/color.svg);
}

#action-mp-export {
    background-image: url(../images/tool/export.svg);
}

#action-mp-import {
    background-image: url(../images/tool/import.svg);
}

#action-mp-clean {
    background-image: url(../images/tool/clean.svg);
}
#action-mp-charge-add {
    background-image: url(../images/tool/plus_charge.svg);
}
#action-mp-charge-sub {
    background-image: url(../images/tool/minus_charge.svg);
}
#action-mp-sgroup{
    background-image: url(../images/tool/sg2.svg);
}
#action-mp-bracket{
    background-image: url(../images/tool/sg.svg);
}
#action-mp-rbracket{
    background-image: url(../images/tool/roundBracket.svg);
}
#action-mp-singlet{
    background-image: url(../images/tool/singlet.svg);
}
#action-mp-doublet{
    background-image: url(../images/tool/doublet.svg);
}
#action-mp-triplet{
    background-image: url(../images/tool/triplet.svg);
}
#indraw-fullScreen{
    background-image: url(../images/tool/fullscreen.svg);
    /*transform:scale(0.65) translateY(5px);
    -ms-transform: scale(0.65) translateY(5px);*/
}
:-webkit-full-screen #chemview , :-webkit-full-screen-ancestor #chemview , :-webkit-full-screen #divSavePictue , :-webkit-full-screen-ancestor  #divSavePictue  {
    width: 100%;
    height: 100%;
    z-index: 99999999999999999999!important;
}
#divSavePictue {
    background-image: url("../images/tool/image.svg")!important;
}
#indraw-fullScreen.packup {
    background-image: url(../images/tool/fullscreen_packup.svg);
}
#action-mp-search {
    background-image: url(../images/tool/search.svg);
}
.tool-set:after {
    content:"";
    position: absolute;
    display:block;
    bottom:4px;
    right:3px;
    width:0;
    height:0;
    border-top:3px solid transparent;
    border-right: 3px solid #000;
    border-bottom:3px solid #000;
    border-left:3px solid transparent;
}
/*.tool-set:hover .act-wrap {
    display:block;
}*/

/*.fd-rect {
    width: 26px;
    height: 16px;
    border: 1px solid #747474;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fd-ellipse {
    width: 26px; height: 16px; border: 1px solid #747474; border-radius: 12px 12px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.fd-circle {
    width: 20px; height: 20px; border: 1px solid #747474; border-radius: 10px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}*/




#action-resolve {
    padding: 0 10px;
    width: auto;
    font-size: 12pt;
    font-weight: 700;
}

#action-resolve:hover,#resolve:active {
    color: #000;
}

.resolve-outdated {
    height: 37px;
    color: #f50;
    border-bottom: 3px solid #f50;
}

.render-engine {
    z-index: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#search-layer {
    margin: 0;
    text-align: center;
    background: #f5f5f5;
    overflow: auto;
}

#search-layer>.container {
    font-size: 0;
    padding: 0 20px;
}

.load-more {
    cursor: pointer;
    margin: 10px;
    padding: 10px;
    font-size: 20pt;
    border: 1px solid #f5f5f5;
}

.load-more:before {
    content: "Load more";
}

.load-more-progress {
    cursor: default!important;
    background: #f5f5f5!important;
    border-color: #f5f5f5!important;
    box-shadow: none!important;
}

.load-more-progress:before {
    content: "Loading...";
}

.search-result {
    position: relative;
    display: inline-block;
    margin: 20px 0;
    width: 100%;
    vertical-align: top;
    font-size: medium;
    font-size: initial;
    text-decoration: none;
    color: #111;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 7px rgba(0,0,0,.4);
}

.search-result-pubchem {
    cursor: pointer;
}

.search-result-codid {
    line-height: 20px;
    color: #888;
    margin-bottom: 5px;
}

.search-result-title {
    cursor: pointer;
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    color: #111;
    overflow: hidden;
}

.search-result-title>span {
    white-space: nowrap;
    text-decoration: none;
}

.search-result-description {
    padding: 20px;
    font-size: 11pt;
    word-wrap: break-word;
    text-align: left;
    overflow-x: hidden;
    overflow-y: auto;
}

.search-result-description>.expandable {
    margin: 0;
}

.search-result-description>.expandable>.expandable-title {
    border-width: 1px 0 1px 0;
}

.search-result-description>p {
    margin: 10px;
}

.search-result-description-cod {
    padding: 0;
    background: #fff;
}

.search-result-img-wrap {
    font-size: 0;
    text-align: center;
    background-image: url(../images/misc/spinner.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.search-result-img {
    display: inline-block;
    width: 300px;
    height: 300px;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media all and (min-width:420px) {
    #search-layer {
        padding: 20px 20px 0 20px;
    }

    .search-result {
        width: 300px;
        margin: 20px;
    }
}

#messages {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
}

.message {
    margin-top: 10px;
    min-height: 45px;
    float: left;
    clear: both;
    color: #fff;
    background: #333;
    overflow: hidden;
}

.alert-message {
    background: red;
}

.message-text {
    display: inline-block;
    padding: 10px 20px;
    line-height: 25px;
}

.error-message {
    padding-left: 5px;
    font-style: italic;
    font-weight: 700;
}

.alert-message>.message-text>a {
    font-weight: 700;
    color: #fff;
}

.message-close-btn {
    cursor: pointer;
    margin: 0;
    padding: 0 20px;
    height: 45px;
    float: right;
    color: #fff;
    font-family: 'Open Sans',sans-serif;
    font-size: 12pt;
    background: rgba(0,0,0,.3);
    border: 0;
}

.message-close-btn:focus {
    outline: 0;
}

.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.3);
    overflow: auto;
}

#dialog-click-area {
    min-width: 100%;
    min-height: 100%;
}

#dialog-wrapper {
    padding: 41px 10px;
}

.dialog {
    position: relative;
    margin: 0 auto;
    padding: 20px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
    overflow: hidden;
    border-radius: 8px;
}

.dialog h2 {
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
    color: #333;
}

.dialog>.footer {
    margin-top: 10px;
    text-align: right;
}

@media all and (min-width:1060px) {
    #help-dialog,#about-dialog,#share-dialog,#embed-dialog {
        max-width: 960px;
    }
}

#periodictable-dialog {
    width: 540px;
}

@media all and (min-width:1000px) {
    #periodictable-dialog {
        width: 900px;
    }
}

.expandable {
    margin: 10px 0;
}

.expandable-title {
    cursor: pointer;
    position: relative;
    padding: 7px 15px;
    padding-left: 45px;
    font-size: 12pt;
    font-weight: 700;
    border: 1px solid #ccc;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.expandable-title:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0 12px;
    line-height: 38px;
    font-size: 14pt;
    font-family: FontAwesome;
    border-right: 1px solid #ccc;
    content: '\f107';
}

.expandable.open>.expandable-title:before {
    content: '\f106';
}

.expandable-content {
    display: none;
    padding: 10px 10px;
}

.expandable.open>.expandable-content {
    display: block;
}

.share {
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin: 5px;
    overflow: hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.share:hover>span:after {
    opacity: 1;
}

.share>span {
    display: inline-block;
    position: relative;
    padding: 10px;
    min-width: 100px;
    color: #fff;
    font-size: 16pt;
    text-align: center;
    background: rgba(0,0,0,.2);
    border-radius: 0 4px 4px 0;
}

.share-twitter,.share-twitter>span:after {
    background: #55acee;
}

.share-facebook,.share-facebook>span:after {
    background: #3b5999;
}

.share-googleplus,.share-googleplus>span:after {
    background: #d34836;
}

.share:before {
    display: inline-block;
    left: 0;
    width: 48px;
    vertical-align: sub;
    font-family: FontAwesome;
    font-size: 22pt;
    text-align: center;
    color: #fff;
}

.share>span:after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 20pt;
    text-align: center;
    line-height: 48px;
    opacity: 0;
    border-radius: 0 4px 4px 0;
}

.share-facebook:before {
    content: '\f09a';
}

.share-twitter:before {
    content: '\f099';
}

.share-googleplus:before {
    content: '\f0d5';
}

.share-facebook span:after {
    content: 'Share';
}

.share-twitter span:after {
    content: 'Tweet';
}

.share-googleplus span:after {
    content: '+1';
}

#periodictable {
    position: relative;
    margin-bottom: 20px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#periodictable br {
    clear: both;
}

.pt-space,.pt-element {
    float: left;
}

.pt-element {
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.pt-space,.pt-element {
    width: 30px;
    height: 30px;
}

.pt-element>h3 {
    display: none;
    margin: 0;
    margin-top: 5px;
    font-size: 6pt;
}

.pt-element>h4 {
    display: block;
    margin: 0;
    font-size: 9pt;
    line-height: 30px;
}

@media all and (min-width:1000px) {
    .pt-space,.pt-element {
        width: 50px;
        height: 50px;
    }

    .pt-element>h3 {
        display: block;
        margin: 0;
        margin-top: 5px;
        font-size: 6pt;
    }

    .pt-element>h4 {
        display: block;
        margin: 0;
        font-size: 14pt;
        line-height: 20pt;
    }
}

.data-layer {
    margin: 0;
    padding: 10px;
    background: #fff;
    overflow: auto;
}

#infocard-layer {
    padding-bottom: 100px;
    text-align: center;
}

#properties-wrapper {
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

#general-properties {
    text-align: center;
    font-size: 0;
}

#properties-wrapper>div:last-child {
    margin-bottom: 100px;
}

.properties-block {
    position: relative;
    display: block;
    margin: 0;
    font-size: medium;
    font-size: initial;
    text-align: left;
    width: 100%;
}

.properties-block table {
    width: 100%;
}

@media all and (min-width:1200px) {
    #properties-wrapper {
        margin: 0;
        width: auto;
        max-width: 1100px;
    }

    #general-properties {
        margin: -10px;
        padding-bottom: 10px;
        font-size: 0;
    }

    .properties-block {
        display: inline-block;
        margin: 10px;
        width: 539px;
        vertical-align: middle;
    }
}

@media all and (min-width:1300px) {
    #properties-wrapper {
        max-width: 1200px;
    }

    .properties-block {
        width: 589px;
    }
}

#molecule-image {
    margin: 0 auto;
}

#molecule-info {
    padding: 15px 10px;
}

#molecule-title {
    margin: 0;
}

#spectrum-wrapper {
    overflow: auto;
}

.chemprop-loading {
    cursor: progress;
    background-image: url(../images/misc/spinner.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.chem-identifier {
    text-align: left;
}

.chem-identifier>label {
    display: inline-block;
    margin-top: 10px;
    padding: 5px;
    font-weight: 700;
}

.chem-link {
    padding: 0 5px;
}

#autocomplete-dropdown-wrapper {
    position: absolute;
    top: 41px;
    left: 0;
    right: 0;
    bottom: 0;
}

#autocomplete-dropdown {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 600px;
    max-height: 100%;
    overflow: auto;
    overflow-x: hidden;
    direction: rtl;
}

#autocomplete-dropdown>ul {
    margin: 0;
    padding: 0;
    direction: ltr;
}

.autocomplete-item {
    cursor: pointer;
    list-style: none;
    margin: 0;
    padding: 5px 10px;
    color: #111;
}

.autocomplete-pubchem {
    color: #3c763d;
    background: #dff0d8;
    border-right: 2px solid #0a0;
}

.autocomplete-macromolecule {
    color: #a94442;
    background: #f2dede;
    border-right: 2px solid #f10;
}

.autocomplete-mineral {
    color: #31708f;
    background: #d9edf7;
    border-right: 2px solid #07f;
}

.autocomplete-item-hover {
    border-width: 3px;
}

.autocomplete-item-active {
    color: #111;
    background: #fa8;
    border-color: #f50!important;
    border-width: 3px;
}

.autocomplete-type {
    float: right;
    margin: 0 10px;
    font-style: italic;
}

#start-dialog {
    padding: 20px 10px;
    max-width: 800px;
    text-align: center;
}

@media all and (min-width:700px) {
    #start-dialog {
        padding: 100px;
    }
}

#start-dialog>h1 {
    margin: 0;
    font-size: 40pt;
    font-weight: lighter;
    color: #f50;
}

#welcome-logo,#welcome-mark,#agpl-logo-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

#welcome-logo {
    width: 120px;
    margin-right: 10px;
}

#welcome-mark {
    width: 300px;
}

#agpl-logo {
    display: block;
    height: auto;
}

#allow-tracking-wrapper {
    margin: 30px;
    color: #aaa;
    line-height: 30px;
}

#welcome-button-bar {
    margin: 10px;
}

#welcome-loading-msg {
    margin: 30px 0;
    font-weight: lighter;
    font-size: 20pt;
    color: #333;
}

#chem-tools .tool-button {
    float:left;
}

div[data-text]:after {
    display:block;
    position:absolute;
    top:calc(50% - 2px);
    right:-5px;
    width:5px;
    height:5px;
    background:#000;
    content:" ";
}

.sgroup_item {
    width:100%;
    height:100%;
    position:absolute;
}
#api_test {
    position:absolute;
    left: 400px;
    top: 400px;
    width:500px;
    height: 300px;
    background:#f3f3f3;
    border: 2px solid darkgrey;
    display: none;
}
#api_test .test_head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    width: 100%;
    height: 10%;
    background:#f3f3f3;
    cursor:move;
}
#api_test .test_head button {
    position: absolute;
    width: 50px;
    height: 20px;
    left: calc(100% - 50px);
}
#api_test .test_bottom {
    width: 100%;
    height: 90%;
    background-color: #FFF;
}
#api_test .test_bottom button {
    position: absolute;
    width: 50px;
    height: 20px;
    left: calc(50% - 25px);
    top: calc(100% - 20px);
}
#api_test .test_bottom textarea {
    position:absolute;
    width: 80%;
    height: 55%;
    left: 10px;
    margin-top:10px;
    overflow: scroll;
}
#api_test .test_bottom .result_molfile {
    display: none;
}
#api_test .test_bottom .hidden {
    display: none;
}
#api_test .test_bottom .show {
    display:block;
}
/*deskop.css*/
.dropdown-toggle {
    font-size: 12pt;
}

.dropdown-menu {
    box-shadow: 0 10px 30px #ccc;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.dropdown.open>.dropdown-toggle {
    box-shadow: 0 -10px 10px #888;
}

.menu-header {
    font-size: 8pt;
}

.menu-item>a {
    padding: 5px 40px 5px 5px;
    font-size: 12pt;
}

.social .share span:after {
    transition: opacity .2s ease-in;
    -webkit-transition: opacity .2s ease-in;
}

.result {
    transition: border .1s ease-in;
    -webkit-transition: border .1s ease-in;
}

.search-results .more {
    transition: background .1s ease-in,color .1s ease-in;
    -webkit-transition: background .1s ease-in,color .1s ease-in;
}

.input-wrapper>button:hover {
    color: #f50;
}

.btn:hover {
    margin-bottom: 0;
    border-width: 3px;
    border-color: #333;
    background: #eee;
}

.close-btn:hover,.dialog-close-btn:hover {
    color: #f50;
}

.dropdown-toggle:hover {
    background-color: #eee!important;
    border-color: #ccc!important;
}

.menu-item>a:not(.disabled):hover {
    background-color: #eee;
}

#layout-menu>a:hover {
    opacity: .9;
    background-color: #eee;
}

.menu-item>a.radio:hover:before,.menu-item>a.check:hover:before {
    color: #888;
}

.tool-button:not(.tool-button-disabled):hover {
    background-color: rgba(221,221,221,.7);
}

#chem-tools>.toolbar-inner>.tool-button:not(.tool-button-disabled):hover {
    width: 40px;
    border-radius:4px;
}

#elem-tools>.toolbar-inner>.tool-button:not(.tool-button-disabled):hover {
    width: 40px;
    border-radius:4px;
}

#edit-tools>.toolbar-inner>.tool-button:not(.tool-button-disabled):hover {
    height: 40px;
    border-radius:4px;
}

.pt-element:hover {
    background: #eee;
}

.expandable-title:hover {
    background: #eee;
}

.search-result-title:hover,.search-result-pubchem:hover>.search-result-title {
    color: #06c;
}

.search-result-title:hover>span,.search-result-pubchem:hover>.search-result-title>span {
    border-bottom: 2px solid;
}

.load-more:hover {
    background: #fff;
}

.load-more:hover {
    border-color: #ccc;
}

.autocomplete-item:hover {
    border-width: 3px;
}

.message-close-btn:hover {
    background: rgba(0,0,0,.4);
}

.input-wrapper>button:active {
    color: red;
}

.btn:active {
    margin-bottom: 0;
    border-width: 3px;
    background: #fa8;
    border-color: #f50!important;
}

.close-btn:active,.dialog-close-btn:active {
    color: red;
}

/*.dropdown-toggle:not(.tool-button-disabled):active {
    background-color: #fff!important;
    border-color: #ccc!important;
}*/

.menu-item>a:not(.disabled):active {
    background-color: #ddd;
}

#layout-menu>a:active {
    opacity: 1;
    background-color: #ddd;
}

.tool-button:not(.tool-button-disabled):active {
    background-color: #fff;
}

#chem-tools>.toolbar-inner>.tool-button:not(.tool-button-disabled):active {
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    width: 40px;
}

#elem-tools>.toolbar-inner>.tool-button:not(.tool-button-disabled):active {
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    width: 40px;
}

#edit-tools>.toolbar-inner>.tool-button:not(.tool-button-disabled):active {
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    width: 40px;
}

.pt-element:active {
    background-color: #fa8;
    border-color: #f50;
}

.expandable-title:active {
    background: #ccc;
}

.search-result-title:active,.search-result-pubchem:active>.search-result-title,.load-more:active {
    background: #eee;
}

.load-more:active {
    border-color: #ccc;
}

.autocomplete-item:active {
    color: #111;
    background: #fa8;
    border-color: #f50!important;
    border-width: 3px;
}

.message-close-btn:active {
    background: rgba(0,0,0,.5);
}

/*tinymodal.css*/
ul,li {padding:0;margin:0;list-style: none;}
.imitate-select {
    /*这个根据具体业务来写，单独建立一个css名称来写，这里先凑合用一下*/
    float: left;
    padding-left: 5px;
}
.imitate-select .selecter {
    width:220px;
    position:relative;
    display:inline-block;
}
.imitate-select .selecter:first-child {
    margin-left:0;
}
.imitate-select .selecter-selected {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 3px;
    color: #555;
    cursor: pointer;
    display: block;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    padding: 5px 30px 5px 15px;
    position: relative;
    text-overflow: clip;
    z-index: 2;
    text-overflow:ellipsis;
    white-space: nowrap;
    transition:color ease .5s;
    -webkit-transition:color ease .5s;
}
.imitate-select .selecter-selected:hover {
    border-color:#B7B7B7;
    color:#555;
}

.imitate-select .selecter-selected:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #B7B7B7;/*#CCC*/
    bottom: 0;
    content: "";
    display: block;
    height: 0;
    margin: auto 0;
    position: absolute;
    right: 12px;
    top: 0;
    width: 0;
}

.imitate-select .selecter-selected::before {
    background: #CCC;
    content: "";
    height: 50px;
    position: absolute;
    right: 32px;
    top: 0;
    width: 1px;
}
.imitate-select .open .selecter-selected:after {
    border-top: 0;
    border-bottom:5px solid #B7B7B7;
}
.imitate-select .selecter-options {
    background-color: #ffffff;
    border-color: #cccccc;
    border-image: none;
    border-radius: 0 0 3px 3px;
    border-style: solid;
    border-width: 0 1px 1px;
    /*    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);*/
    display: none;
    left: 0;
    margin: 0;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    top: 100%;
    width: calc( 100% - 2px );
    z-index: 50;
}
.imitate-select .selecter-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}
.imitate-select .selecter-item {
    background: none repeat scroll 0 0 #ffffff;
    border-bottom: 1px solid #cccccc;
    color: #555;
    cursor: pointer;
    display: block;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    padding: 5px 15px;
    text-decoration: none;
    text-overflow: ellipsis;
    width: 100%;
    transition:all ease .5s;
    -webkit-transition:all ease .5s;
}
.imitate-select .selecter-item:first-child {
    border-radius: 0;
}
.imitate-select .selecter-item:last-child {
    border-bottom: 0 none;
    border-radius: 0 0 2px 2px;
}

.imitate-select .selecter.open .selecter-selected, .selecter.focus .selecter-selected {
    background-color: #ffffff;
    /*    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
}
.imitate-select .selecter.open .selecter-selected {
    border-radius: 3px 3px 0 0;
    z-index: 51;
}
.imitate-select .selecter.open .selecter-options {
    display:block!important;
}
.imitate-select .selecter-item.selected {
    background: #F7F7F7;
}
.imitate-select .selecter-item:hover {
    background:#EEE;
}
body,canvas {
    color: #111;
    font-family: "Microsoft YaHei" , Arial;
    font-size: 14px;
    background: #fff;
    line-height: 20px;
}
#downImageCrop {
    transition:all .35s ease;
    -webkit-transition:all .35s ease;
}
#downImageCrop:hover {
    opacity:.85;
}
.full-crop-wrap .modalbox-body {
    padding:0;
    min-height:0;
}
.full-crop-wrap [data-name=modalbox-close] {
    font-family: arial;
    position: absolute;
    border-radius: 12px;
    width: 24px;
    height: 24px;
    background-color: #3c3c3c;
    right:-15px;
    top:-15px;
    transition: background-color ease .35s;
    -webkit-transition: background-color ease .35s;
}
.full-crop-wrap [data-name=modalbox-close]:hover {
    background-color:#D24445;
}
.full-crop-wrap [data-name=modalbox-close]:after {
    content:"x";
    display:block;
    font-family: Arial;
    color:#FFF;
    margin-top:1px;
}

/*@media screen and (max-width:1366px) {
    #chem-tools .toolbar-inner .tool-button {
        margin-top: 0px;
        margin-bottom: -11px;
        transform: scale(0.6)!important;
        -ms-transform: scale(0.6)!important;
    }

    #edit-tools .tool-button {
        float: left;
        transform: scale(0.6)!important;
        -ms-transform: scale(0.6)!important;
        margin-left: -11px;
    }
    #edit-tools #indraw-fullScreen {
        transform: scale(0.4)!important;
        -ms-transform: scale(0.4)!important;
    }
}*/
.min-screen #chem-tools .toolbar-inner .tool-button {
    margin-top: 0px;
    margin-bottom: -11px;
    transform: scale(0.6)!important;
    -ms-transform: scale(0.6)!important;
    -webkit-transform: scale(0.6)!important;
}

.min-screen  #edit-tools .tool-button {
    float: left;
    transform: scale(0.6)!important;
    -ms-transform: scale(0.6)!important;
    -webkit-transform: scale(0.6)!important;
    margin-left: -11px;
}
.min-screen #edit-tools #indraw-fullScreen {
    transform: scale(0.4)!important;
    -ms-transform: scale(0.4)!important;
}

.min-screen  div#action-mp-savefullpic.tool-button.primary-tool {
    transform:scale(0.8)!important;
    -webkit-transform: scale(0.8)!important;
}

[data-name="showLogo"] {
    position: absolute;
    right:15px;
    bottom:15px;
    background:url(../images/tool/indraw_logo_new.png) no-repeat ;
    width:51px;
    height:58px;
    transform: rotate(0deg) ;
    -ms-transform: rotate(0deg) ;
    -webkit-transform: rotate(0deg) ;
    opacity: .3;
    transition: all ease-in-out .5s;
    -webkipt-transition: all ease-in-out .5s;
}

[data-name="showLogo"]:hover {
    opacity: .6;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}

.sgroupDialog table {
    background:#F1F1F1;
}

.sgroupDialog table td {
    background:#F1F1F1;
}
[id^="action-mp-atom-"] {
    /*color:#8A8A8A!important;*/
    color:#333333!important;
    transform: scale(.8);
    -webkit-transform: scale(.8);
}
@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}
@keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}
@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}
@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}
@-webkit-keyframes jello {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}
@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}
@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
@keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    to {
        opacity: 0;
    }
}
@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    to {
        opacity: 0;
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
/*组件部分 开始*/
.tinyscroll:hover .tinyscroll-pane-slider {
    opacity:1;
}
.tinyscroll {
    width: 100%;height:100%;overflow: hidden;position: relative;
}

.tinyscroll-content {
    position:absolute;
    /*padding:20px;这个用于客户设置*/
    top:0;left:0;bottom:0;right:-17px;
    overflow-x:hidden;
    overflow-y:scroll;
    /*-webkit-overflow-scrolling:touch;*/
}
.tinyscroll-content::-webkit-scrollbar {

}
.tinyscroll-pane {
    position:absolute;
    right:1px; /*这个根据实际情况来设置，可以为3或者2、4、0*/
    top:0;bottom:0;/*这样可以保证高度能继承父级的*/
    background:rgba(0,0,0,0); /*.48*/
    opacity:.7;
    /*margin:5px 0;*/
    width: 7px;
    border-radius:3px;
    transition:opacity .3s ease;
}
.tinyscroll-pane-slider {
    position:relative;
    width:100%;
    height:10px;
    background:#c2c2c2;
    border-radius:3px;
    transition: opacity .3s ease;
    transform:translate3d(0,0 , 0);
    opacity:0;
}
.tinyscroll-pane-slider.show {
    opacity:1;
}
.tinyscroll-pane-slider:hover {
    background:#CECECE;
}
/*
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 : 2016-1-18, 10:27:22
    Author     : xiezhaotong by 539882035@qq.com
*/

* {padding:0;margin:0;}
.modalbox    {
    width:100%;
    height:100%;
    position:fixed;
    z-index: 99999999999999999999999;
    top:0;
    left:0;
    font-family: "\5FAE\8F6F\96C5\9ED1" , "Arial";
    background: rgba(0,0,0,.5);
    background: radial-gradient(ellipse at center center , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.65) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
}
-webkit-full-screen .modalbox , :-webkit-full-screen-ancestor .modalbox   {
    width:100%;
    height:100%;
    position:fixed;
    z-index: 99999999999999999999999;
    top:0;
    left:0;
    font-family: "\5FAE\8F6F\96C5\9ED1" , "Arial";
    background: rgba(0,0,0,.5);
    background: radial-gradient(ellipse at center center , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.65) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.modalbox-main {
    position:absolute;
    /*width:700px;是需要动态计算的*/
    left:50%;
    top:50%;
    /*margin-left:-350px; 是需要动态计算的*/
    /*margin-top:-200px; 这个可以自定义*/
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    display:none;
    animation-duration: 1s;
}
.modalbox-content {

}
.modalbox-header {
    background: #F1F1F1;
    border-bottom: 1px solid #E3E3E3;
    border-radius: 4px 4px 0 0;
    color: #000;
    overflow:hidden;
    padding: 10px 15px;
    position:relative;
}
.modalbox-header h4 {
    margin-top:0;
    line-height: 30px;
    font-size:16px;
    font-weight:200;
    height:30px;
}
.modalbox-close {
    /*    float:right;
        width:30px;
        height:30px;
        transform:scale(.6);
        cursor:pointer;
        overflow:hidden;*/
    float: right;
    width: 30px;
    height: 30px;
    transform: scale(.6);
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    right: 0px;
    padding: 15px;
    top: -4px;
    transform:rotate(0deg) scale(.6);
    transition: all ease-in-out .5s;
}
.modalbox-close:hover {
    transform: rotate(360deg)  scale(.6);
}
.modalbox-body {
    transition:height , ease , 1s;
    padding:20px;
    border-radius: 0 0 4px 4px;
    background:#FFF;
    min-height:325px;
    color:#555;/*其实这个颜色应该留在其他地方设置的，这里，仅是为了演示*/
    position:relative;
}

.animated {
    display:block!important;
}
/*业务css，暂时放这里，以后抽离到业务css里面*/

.modal-import-head {
    border-bottom:2px solid #EEEEEE;
}

.modal-import-head li {
    list-style: none;
    float:left;
    text-align: center;
}

.modal-import-head li>a{
    float: left;
    width:108px;
    line-height:43px;
    height:43px;
    color:#7a7a7a;
    font-size:14px;
    border-bottom: 2px solid transparent;
}

.modal-import-head li.active>a{
    border-bottom-color: #2196f3;
    color: #555;
    line-height: 39px;
    position: relative;
    top: 2px;
}

.modal-import-content-item.hide {
    display:none!important;
}

.modal-import-content-item:first-child {
    display: table;
    width: 100%;
    padding: 15px 0 20px 0;
}

.modal-import-content-item:first-child >p{
    width:100%;
    height:186px;
    border:1px solid #EEE;
    margin:15px 0 20px 0;
    text-align:center;
    color:#999;
    font-size:14px;
    line-height:1.8;
    display:table-cell;
    vertical-align: middle;
    transition: height  ease .5s,color ease .5s;
    border-radius: 0;
    cursor:pointer;
    transition: all esse 1s;
}

.modal-import-content-item:first-child  p>span {
    display:block;
}

.modal-import-content-item:first-child >p.enter {
    border-color: #D4D7DC;
    color:#777;
    border-radius: 4px;
}
/*一堆冗余代码，待优化*/
.modal-import-content-item:last-child {
    display: table;
    width: 100%;
}
.modal-import-content-item:last-child textarea {
    width:calc(100% - 30px );
    height:156px;
    border:1px solid #EEE;
    margin:15px 0 20px 0;
    color:#777;
    font-size:14px;
    line-height:1.8;
    display:table-cell;
    vertical-align: middle;
    transition: all ease .5s;
    border-radius: 0;
    float: left;
    padding:15px;
    resize: none;
    outline:none;
    background:transparent;
    font-family: "\5FAE\8F6F\96C5\9ED1" , "Arial";
}

.modal-import-content-item:last-child textarea::-webkit-input-placeholder ,
.modal-import-content-item:last-child textarea:-ms-input-placeholder ,
.modal-import-content-item:last-child textarea:-moz-placeholder {
    color:#999;
}

.modal-import-content-button {
    text-align: right;
}

.modal-import-content-button > a {
    display:inline-block;
    width:86px;
    height:31px;
    border-radius: 4px;
    color:#FFF;
    line-height: 31px;
    text-align: center;
    font-size: 14px;
}
.modal-import-content-button > a:first-child {
    background:#D4D7DC;
}

.modal-import-content-button > a:last-child {
    background:#2196F3;
    margin-left: 15px;
}

.modal-export-type {
    float:left;
    line-height:31px;
    height:31px;
    font-size:14px;
}
.modal-export-content {

}
.modal-export-content-text {
    width:calc(100% - 20px);
    height:186px;
    border:1px solid #EEE;
    margin:15px 0 20px 0;
    display:table-cell;
    transition: all ease .5s;
    padding:15px 5px 15px 15px;
    border-radius: 0;
    float: left;
}

.modal-export-content-text.none {
    border-width: 0;
    height:0;
}

.modal-export-content-text [data-name="export-data"] {
    width:calc(100% - 10px);
    color: #555;
    font-size: 14px;
    line-height:1.5;
    padding-right:10px;
    word-wrap: break-word;
    outline:none;
    /*    display: block;
        resize:none;
        border:none;*/
    font-family: "\5FAE\8F6F\96C5\9ED1" , "Arial";
}

.modal-export-content >a {
    float: right;
    width:86px;
    height:31px;
    border-radius: 4px;
    color:#FFF;
    line-height: 31px;
    text-align: center;
    font-size: 14px;
    background:#2196F3;
}

[data-name="upload-file"] {
    display:none;
}

[data-name="drag-file"].loading , .modal-import-content-item:last-child.loading {
    background:url(../images/tool/loading.svg) no-repeat center center;
}

.modalbox-body.small-height {
    min-height:130px;
}
/**/
ul,li {padding:0;margin:0;list-style: none;}
.imitate-select {
    /*这个根据具体业务来写，单独建立一个css名称来写，这里先凑合用一下*/
    float: left;
    padding-left: 5px;
}
.imitate-select .selecter {
    width:220px;
    position:relative;
    display:inline-block;
}
.imitate-select .selecter:first-child {
    margin-left:0;
}
.imitate-select .selecter-selected {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 3px;
    color: #555;
    cursor: pointer;
    display: block;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    padding: 5px 30px 5px 15px;
    position: relative;
    text-overflow: clip;
    z-index: 2;
    text-overflow:ellipsis;
    white-space: nowrap;
    transition:color ease .5s;
}
.imitate-select .selecter-selected:hover {
    border-color:#B7B7B7;
    color:#555;
}

.imitate-select .selecter-selected:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #B7B7B7;/*#CCC*/
    bottom: 0;
    content: "";
    display: block;
    height: 0;
    margin: auto 0;
    position: absolute;
    right: 12px;
    top: 0;
    width: 0;
}

.imitate-select .selecter-selected::before {
    background: #CCC;
    content: "";
    height: 50px;
    position: absolute;
    right: 32px;
    top: 0;
    width: 1px;
}
.imitate-select .open .selecter-selected:after {
    border-top: 0;
    border-bottom:5px solid #B7B7B7;
}
.imitate-select .selecter-options {
    background-color: #ffffff;
    border-color: #cccccc;
    border-image: none;
    border-radius: 0 0 3px 3px;
    border-style: solid;
    border-width: 0 1px 1px;
    /*    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);*/
    display: none;
    left: 0;
    margin: 0;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    top: 100%;
    width: calc( 100% - 2px );
    z-index: 50;
}
.imitate-select .selecter-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}
.imitate-select .selecter-item {
    background: none repeat scroll 0 0 #ffffff;
    border-bottom: 1px solid #cccccc;
    color: #555;
    cursor: pointer;
    display: block;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    padding: 5px 15px;
    text-decoration: none;
    text-overflow: ellipsis;
    width: calc(100% - 30px);
    transition:all ease .5s;
}
.imitate-select .selecter-item:first-child {
    border-radius: 0;
}
.imitate-select .selecter-item:last-child {
    border-bottom: 0 none;
    border-radius: 0 0 2px 2px;
}

.imitate-select .selecter.open .selecter-selected, .selecter.focus .selecter-selected {
    background-color: #ffffff;
    /*    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
}
.imitate-select .selecter.open .selecter-selected {
    border-radius: 3px 3px 0 0;
    z-index: 51;
}
.imitate-select .selecter.open .selecter-options {
    display:block!important;
}
.imitate-select .selecter-item.selected {
    background: #F7F7F7;
}
.imitate-select .selecter-item:hover {
    background:#EEE;
}


/*
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 : 2016-4-23, 20:06:53
    Author     : Administrator
*/


.clearfix:after {
    display:block;
    content:"\20";
    clear:both;
}
-webkit-full-screen .auto-text , :-webkit-full-screen-ancestor .auto-text  {
    position: absolute;
    top:0;
    left:0;
    z-index: 99999999999999999999999;
}
.auto-text {
    position: absolute;
    top:0;
    left:0;
    z-index: 99999999999999999999999;
}
-webkit-full-screen .auto-text-box textarea , :-webkit-full-screen-ancestor .auto-text-box textarea {
    min-height:22px;
    min-width:60px;
    float:left;
    border:1px solid #777;
    overflow:hidden;/*一定要加吗*/
    /*    margin-top:-2px;*/
    background:rgba(255,255,255,1);
    /**/
    position:absolute;
    top:0;
    left:0;
    z-index: 99999999999999999999999;
}
.auto-text-box textarea {
    min-height:20px;
    min-width:60px;
    float:left;
    border:1px solid #777;
    overflow:hidden;/*一定要加吗*/
    /*    margin-top:-2px;*/
    background:rgba(255,255,255,1);
    /**/
    position:absolute;
    top:0;
    left:0;
    z-index: 99999999999999999999999;
}
.auto-text-head , .auto-text-box{
    /*    position:relative;*/
}

/*这个是需要给模拟的div的*/
.auto-text-content {
    font-size:14px;
    /*    font: 14px/20px  "Arial";*/
    font: 14px/1.43  "Arial";
    /*仅在放大150% 的情况测试*/
    /*    transform: scale(0.65) translateY(30%);*/
    transform-origin:0% 0%;
    /*line-height:21px;不加会出问题，导致高度计算不准确*/
    outline:none;
    padding:3px 1px 4px 5px;
    /**
     * @date: 2016/8/3
     * @author:mjsun
     * @desc: 保持padding-top和padding-bottom一致
     */
    padding:3px 5px 3px 5px;
    border:1px solid #ccc;
    resize:none;
    /*textarea 默认的时候，要给一个高度，不然高度就溢出了*/

}
.auto-text-head-font {
    font: 14px/28px "\5FAE\8F6F\96C5\9ED1" , "Arial";
}
/*给imitate-select 添加动态增加class的功能，方便同一个页面多个组件同时调用，样式可以定制*/
.auto-text-fontstyle .selecter {
    width:120px;
}
.auto-text-fontstyle .selecter-selected , .auto-text-fontsize .selecter-selected {
    padding: 2px 30px 2px 15px;
}
.auto-text-fontstyle .selecter-selected::before , .auto-text-fontsize .selecter-selected::before {
    content:"";
    width:0;
}
.auto-text-fontsize .selecter {
    width:70px;
}

/*放到js中*/
/*div.area {
    position:absolute;
    left:500px;
    top:50px;
}*/
-webkit-full-screen .auto-text-head , :-webkit-full-screen-ancestor .auto-text-head {
    height:38px;
    background:#F0F0F0;
    width:388px;
    border:1px solid #808080;
    position: absolute;
    opacity:1;
    transition: all 1s ease;
    z-index: 99999999999999999999999;
}
.auto-text-head {
    height:38px;
    background:#F0F0F0;
    width:388px;
    border:1px solid #808080;
    position: absolute;
    opacity:1;
    transition: all 1s ease;
    /*仅作测试，在放大150%的情况下*/
    /*    transform: scale(0.66) translateY(47%);*/
    z-index: 99999999999999999999999;
}
.auto-text-head.opacity {
    opacity:.25;
}
.auto-text-head-item:first-child {
    padding-left:15px;
}
/*.auto-text-head-item:nth-of-type(5) {
    position:relative;
}*/
.auto-text-head-item:last-child {
    position:relative;
}
.auto-text-head-item:last-child>a:after {
    /*    background-color:#777;
        width:25px;
        height:25px;
        border-radius:4px;
        position:relative;
        top:1px;
        margin-left:5px;*/
    content: "A";
    border-bottom:2px solid #777;
}

.auto-text-head-item  {
    float:left;
    padding:5px;
    text-align:center;
}
.auto-text-head-item>a {
    float:left;
    line-height:28px;
    height:28px;
    text-decoration:none;
    color:#000;
    font-size:16px;
    width:28px;
}
.auto-text-head-item>a:hover,.auto-text-head-item > a.current {
    background:#fff;
    border-radius:4px;
}
.auto-text-head-item:nth-of-type(3) > a {
    position:relative;
}
.auto-text-head-item:nth-of-type(3) > a:after {
    content:"B";
    position:absolute;
    top:0;
    left:8px;
}
.auto-text-head-item:nth-of-type(4) >a {
    font-style:italic;
    margin-left:-7px;
}

.auto-text-head-item:nth-of-type(5)  {
    margin-left:-7px;
}

/* Common stuff */
.picker-wrapper,
.slide-wrapper {
    position: relative;
    float: left;
}
.picker-indicator,
.slide-indicator {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.picker,
.slide {
    cursor: crosshair;
    float: left;
}

/* Default skin */

.cp-default {
    background-color: #FFF;
    padding: 5px;
    float: left;
}
.cp-default .picker {
    width: 189px;
    height: 189px;
}
.cp-default .slide {
    width: 30px;
    height: 189px;
}
.cp-default .slide-wrapper {
    margin-left: 5px;
}
.cp-default .picker-indicator {
    width: 5px;
    height: 5px;
    border: 2px solid darkblue;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    filter: alpha(opacity=50);
    background-color: white;
}
.cp-default .slide-indicator {
    width: 100%;
    height: 10px;
    left: -4px;
    opacity: .6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    filter: alpha(opacity=60);
    border: 4px solid lightblue;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: white;
}

.clearfix:after {
    content:"\20";
    display:block;
    clear:both;
}
.select-color {
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 2px;
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
    background-color: #fff;
    z-index: 1000;
    display:inline-block;
    position:absolute;
    left:10px;
    top:40px;
    width:235px;
    cursor: default;
}
.select-color-bottom {

    text-align: left;
}
.select-color-bg {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #ddd;
    margin-left:5px;
}
.select-color-input {
    width: 50px;
    display: inline-block;
    font-family: monospace;
    height: 18px;
    line-height:18px;
    vertical-align: middle;
    font-size: 12px;
    padding: 7px 7px 5px;
    color: #333;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    border-radius:4px;
    margin:0 5px;
    box-sizing:content-box;
}
.select-color-btn {
    color: #333;
    height: 30px;
    line-height:30px;
    padding: 0 15px;
    border: 0;
    border-radius: 4px;
    background-color: rgb(230,230,230);
    font-size: 12px;
    outline: 0;
    border-color: #ccc;
    display:inline-block;
    text-decoration:none;
    transition:background .35s ease;
}
.select-color-btn:hover {
    background-color:rgb(204,204,204);
}


#setColor .select-color-input {
    width: 76px;
    height: 30px;
    /*line-height: 30px;*/
    font-size: 14px;
}

#setColor .select-color-btn {
    float: right;
    margin-top: 7px;
    margin-right: 5px;
    font-size: 14px;
}

#setColor .color-title {
    text-align: left;
    text-indent: 15px;
    color: #00156E;
    background-color: #DDE7EE;
    height: 30px;
    line-height: 30px;
}

#setColor .theme-colors {
    /*margin-bottom: 8px;*/
}

#setColor .standard-colors {
    margin-top: 8px;
}

#setColor .other-colors {
    margin-top: 3px;
}

#setColor .other-colors:hover {
    cursor: pointer;
    background-color: #FFD35B;
}

.select-color-top {
    text-align: left;
    line-height: 30px;
    margin: 5px 0px 10px 0px;
}
.color-row {
    height: 30px;
    line-height: 30px;
    font-size: 0;
    text-align: left;
    margin-left: -1px;
}
.color-row .color-column {
    display: inline-block;
    width: 17px;
    margin-left: 6px;
}
.color-block {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #ddd;
    margin-left: 6px;
    cursor: pointer;
}
.color-column .color-block {
    margin-left: 0;
}
.auto-height {
    height: auto;
    line-height: 0;
}
.color-row .no-border-top {
    border-top: none;
}
.color-row .no-border-bottom {
    border-bottom: none;
}
/*.color-column .color-block:hover {
    border: 1px solid #F29436;
    width: 15px;
}*/
/*.color-row :first-child {
    margin-left: 5px;
}
.color-row :last-child {
    margin-left: 12.8px;
}*/
.chemview-attr {
    position: absolute;
    left:50px;
    top:50px;
    font-size:14px;
    font-family:微软雅黑;
    color: #555;
    width: 228px;
    height:280px;
    border-radius:5px;
    background:rgba(240,240,240 ,.8);
    padding:5px;
    overflow:hidden;/*切换的时候，更流畅*/
    transition: height .3s ease;
}
.chemview-attr.hidden {
    height:30px;
}

.chemview-attr-title {
    padding:0 0 5px 5px;
    border-bottom:1px solid #ccc;
    cursor:move;

}
.chemview-attr-text {
    float:left;
    font-weight:normal;
    line-height:30px;
    height:30px;
}
.chemview-attr-toggle , .chemview-attr-close {
    transform: scale(0.6);
    cursor:pointer;
    overflow:hidden;
}
.chemview-attr-toggle {
    float:left;
    width:50px;
    height:30px;
}
.chemview-attr-close {
    float:right;
    width:30px;
    height:30px;
}
.clearfix:after {
    content:"\20";
    display:block;
    clear:both;
}
.clemview-attr-icon {
    float:right;
}
/*****************/
.chemview-attr-main .tinyscroll-content {

}
.chemview-attr-lists {
    padding:0;
    margin:0;
}
.chemview-attr-lists-item {
    list-style:none;
    margin:0;
    position:relative;
}
.chemview-attr-lists-item span:first-child{
    position:absolute;
    width: 123px;
    display:inline-block;
}
.chemview-attr-lists-item span:first-child:before {
    position:absolute;
    left:122px;
    content:'\FF1A';
}
.chemview-attr-lists-item span:last-child {
    padding-left: 140px;
}

.chemview-attr-main {
    height:243px;
    opacity:1;
    transition:height .3s ease;
    padding: 5px 0 10px 5px;
    line-height:1.6;
}

.hide {
    display:none!important;
}
ul,li {padding:0;margin:0}

#chemview {
    width:100%;height:100%;position:relative;overflow: hidden;margin:0;
}
/*
    Created on : 2016-6-5, 18:12:11
    Author     : sunrise
*/
/*#chem-tools,#edit-tools {display:none;}*/

#vertical-tools  .tool-button {
    float:left;
}
.trapezoid {
    width:686px;/*68.2*/
    position:absolute;
    left:calc(50% - 343px);
    top:0;
    border-radius: 0 0 4px 4px;
    border: 1px solid #eee;
    background:#F3F3F3;
    margin:0px auto;
    height:75px;
    opacity:0;
    transition:  opacity 1s ease .35s;
}
#chemview:hover .trapezoid , #chemview:hover .trapezoid:before , #chemview:hover .trapezoid::after {
    opacity:1;
}
#chemview:hover .trapezoid:before {
    transform:skewX(12deg);
}
#chemview:hover .trapezoid::after {
    transform:skewX(168deg);
}
.trapezoid:after , .trapezoid:before {
    position:absolute;
    top:-1px;
    height:75px;
    border-radius: 0 0 4px 4px;
    width:50px;
    border: 1px solid #eee;
    background:#F3F3F3;
    content:" ";
    opacity:0;
    z-index:2;
    transition: transform  .35s ease 0s , opacity 1s ease .35s;
}

.trapezoid:before {
    left:-20px;
    transform:skewX(0deg);
    border-right:0;
}
.trapezoid:after {
    right: -20px;
    transform:skewX(180deg);
    border-left:0;
}
.trapezoid-box {
    width:100%;
    height:100%;
    left:0;
    top:0;
    position: absolute;
    z-index:3;
}
.vertical-tools-main {
    text-align:center;

}
.vertical-tools-main .tool-button {
    transform:scale(0.8); /*.7 , -4 -5*/
    margin: -2px -2px;/*-4 -3*/
}
.vertical-tools-inner {
    width:100%;
    margin:0 auto;
}

.character-tools {
    color: #4c4c4c;
    font:20px/2.0 Arial;
    /*background-image: none!important*/
    transform:scale(1)!important;
    width:32px;
    height:32px;
    position: relative;
    top: 4px;
    margin:0 2px;
}
.character-tools:hover {
    width:32px!important;
    height:32px!important;
}
#action-mp-textbox {
    transform:scale(.67)!important;
}
.tool-button-selected.character-tools {
    background-color:#F2F2F2;
}
.vertical-tools-bottom {
    background:#F3F3F3;
    width:100%;
    height:75px;
    opacity:0;
    transition:  opacity 1s ease 0s;
    position:absolute;
    bottom:0;
    left:0;
}
#chemview:hover .vertical-tools-bottom {
    opacity:1;
}
.vertical-tools-bottom .trapezoid:after ,.vertical-tools-bottom .trapezoid:before ,.vertical-tools-bottom .trapezoid {
    border:none;
}

.vertical-tools-bottom .act-wrap {
    bottom: 35px!important;
}

[data-button] .tool-button {
    transform:scale(1)!important;
    margin:0;
}

#vertcial-right-tools {
    width:65px;
    height:393px;
    background:url("../images/tool/vertical-right.jpg");
    position: absolute;
    top:20px;
    right:0;
}
.placeholder { color: #aaa; }
/*#vertcial-right-tools  {
    height: 215px;
    width: 65px;
    border: 1px solid #777;
    position: absolute;
    right: 0;
    top: 200px;
}

#vertcial-right-tools:after , #vertcial-right-tools:before {
    position:absolute;
    left:-1px;
    height:65px;
    border-radius: 0 0 4px 4px;
    width:65px;
    border: 1px solid #777;
    content:" ";
    opacity:1;
    z-index:2;
    transition: transform  .35s ease 0s , opacity 1s ease .35s;
}

#vertcial-right-tools:before {
    top:-40px;
    transform:skewY(130deg);
    border-right:0;
}

#vertcial-right-tools:after {
    bottom: 0px;
    transform:skewX(180deg);
    border-left:0;
}*/

#divSearch {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    overflow: hidden;
    z-index: 999;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    background-image: url("../images/tool/search.svg");
    background-repeat: no-repeat;
}

.search_btn_container {
    max-height: 325px;
    overflow-y: auto;
    font-size: 0;
    -webkit-text-size-adjust: none;
}

.search_btn_container::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: rgba(0, 0, 0, 0);
}

.search_btn_container:hover::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #D4D4D4;
}

.quick_search_btn {
    display: inline-block;
    margin: 5px;
    width: 125px;
    height: 125px;
    text-align: center;
    line-height: 125px;
    vertical-align: top;
    border: 1px solid #eaebee;
}

.m3 {
    margin: 3px;
}

.quick_search_btn:hover {
    border-color: #0ea7eb;
    cursor: pointer;
}

.quick_search_btn img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.context-menu-container {
    position: absolute;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    width: 180px;
    border-radius: 4px;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.1);
    margin: 0px;
    padding: 1px;
    background: #FFFFFF;
    z-index: 999999;
    left: 99%;
    top: 0px;
}

.context-menu {
    list-style: none;
    margin: 6px 0px;
    padding: 0px;
}

.context-menu-item {
    position: relative;
    list-style: none;
    height: 25px;
    line-height: 25px;
    /*padding-left: 25px;*/
    /*color: #425766;*/
    color:#777;
    font-family: 'Myriad Set Pro', 'Helvetica Neue', 'Microsoft Yahei', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 12px;
    cursor: default;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    /*transition:all .2s ease-in;*/
}

.context-menu-item.sub-menu::after{
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #425766;
}

.context-menu-item:hover {
    /*background-color: #425766;*/
    /*color: #FFFFFF;*/
    background: rgba(0,0,0,0.1);
}

.context-menu-item.sub-menu:hover::after {
    /*border-left-color: #FFFFFF;*/
}

.sub-menu>.context-menu-container, .sub-menu-disabled>.context-menu-container {
    opacity: 0;
    pointer-events: none;
    top: 5px;
    left: 100%;
    transition: all 0.1s ease-out, opacity 0.1s ease-out;
}
.sub-menu:hover>.context-menu-container {
    opacity: 1;
    top: 0px;
    left: 99%;
    pointer-events: auto;
    -webkit-transition-delay: 100ms;
    transition-delay: 300ms;
}

.context-menu-disabled {
    color: #CCCCCC;
    pointer-events: none;
}

.context-menu-item.sub-menu-disabled::after{
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #CCCCCC;
}

.context-menu-separator {
    height: 1px;
    border: none;
    /*border-bottom: 1px solid #FFFFFF;*/
    background-color: #e9e9e9;
    margin: 8px 30px;
}

.menu-text {
    margin-left: 30px;
}

.menu-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 3px;
    left: 5px;
}

.icon-checked {
    background-image: url('../images/icon/checked.svg');
    transform: scale(0.7);
}

.search-button {
    position: absolute;
    box-sizing: border-box;
    width: 100px;
    right: 0px;
    padding: 10px 5px 10px 12px;
    border: 1px solid #dcdcdc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
    font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
    color: rgba(119, 119, 119, 0.85);
    transition: all .5s;
    background-color: rgba(242,242,242,1);
}

.search-button-disabled {
    color: #555;
    background-color: #ffffff;
    opacity: .3;
    cursor: default;
    pointer-events: none;
}

.search-button:hover {
    background-color: #E3E3E3;
    cursor: pointer;
}