/* Общие стили для всех калькуляторов */
#s2masteries {
    background-color: #101418;
    font: 11px Arial, Helvetica, sans-serif;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    width: 953px;
    height: 1110px;
    margin: 0 auto;
    position: relative;
}

#panel {
    background-repeat: no-repeat;
    height: 114px;
    width: 953px;
    position: relative;
    cursor: default;
    top: 5px;
}

#calculator {
    background-repeat: no-repeat;
    width: 953px;
    height: 1015px;
    position: relative;
    margin-top: 12px;
}

#points {
    font-size: 14px;
    margin-right: 30px;
    color: #CCCCCC;
    margin-top: -5px;
}

.points2 {
    font-size: 11px;
    margin-top: 2px;
}

#exportLink, #screenshotBtn {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed white;
    margin: 0 8px;
    cursor: pointer;
}

.reset-calc {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    border-bottom: 1px dashed white;
    margin-left: 8px;
}

.calcleft {
    position: absolute;
    left: 12px;
    top: 10px;
}

.calcright {
    text-align: right;
    color: #CCCCCC;
    font-size: 14px;
    padding-top: 11px;
    padding-right: 10px;

    height: 35px;
    background: #101418;
}

#tree-summaries {
    position: relative;
    width: 100%;
    color: #855b47;
    font-size: 12px;
    width: 953px;
    height: 20px;
}

.tree-summary {
    font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
    font-size: 15px;
    color: #ffffff;
    position: absolute;
}

.button {
    width: 42px;
    height: 42px;
    position: absolute;
    cursor: pointer;
    border: 1px solid #330505;
    border-radius: 6px;
    z-index: 1;
    margin-left: 59px;
    /* background-image будет установлен через JS */
}

.button.unavailable {
    border-color: #28221D;
    cursor: default;
}

.button.available {
    border-color: #032B03;
}

.button.full {
    border-color: #330505;
}

#tooltip {
    display: none;
    color: #fefefe;
    width: 440px;
    padding: 8px;
    background: #000000;
    position: absolute;
    z-index: 100;
    border: 2px solid #243134;
    border-radius: 4px;
}

#tooltip strong {
    font-size: 15px;
    font-weight: bolder;
}

#tooltip p {
    margin-bottom: 0px;
    font-size: 11px;
    color: #F9F9F9;
    line-height: 1.5;
}

#tooltip .highlight {
    color: #fecb00;
}

#tooltip .req {
    color: #2685A8;
    margin-top: 8px;
    border-bottom: 1px solid black;
}

#tooltip .req2 {
    color: #2685A8;
    margin-bottom: 11px;
}

#tooltip.custom {
    width: auto;
}

#tooltip.custom p {
    margin-top: 0px;
}

.runelvl {
    color: white;
    margin-top: 15px;
    border-bottom: 1px solid black;
    border-top: 1px dashed #243134;
}

.tooltip-value {
    color: #8B8BBC;
    font-size: 11px;
    border-bottom: 1px #8B8BBC dashed;
}

.counter {
    position: absolute;
    right: 1px;
    top: 31px;
    background-color: #202020;
    border-top: 1px solid #45515B;
    border-bottom: 1px solid #45515B;
    font-size: 10px;
    padding: 0px 3px;
}

.count, .count2, .count3, .count4 {
    color: #ffffff;
    font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
}

.num-unavailable, .num-available, .num-full {
    color: #fff;
}

.requirement {
    width: 21px;
    position: absolute;
}

.requirement.unavailable {
    background-position: 0px 0px;
}

.requirement.available {
    background-position: -21px 0px;
}

.requirement.full {
    background-position: -42px 0px;
}