/* Переопределение стандартных стилей */
.tippy-box[data-theme~='turquoise'] {
    background-color: #3fcfd5;
}
.tippy-box[data-theme~='turquoise'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #3fcfd5;
}
.tippy-box[data-theme~='turquoise'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #3fcfd5;
}
.tippy-box[data-theme~='turquoise'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #3fcfd5;
}
.tippy-box[data-theme~='turquoise'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #3fcfd5;
}
.tippy-box[data-theme~='pink'] {
    background-color: #f16382;
}
.tippy-box[data-theme~='pink'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #f16382;
}
.tippy-box[data-theme~='pink'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #f16382;
}
.tippy-box[data-theme~='pink'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #f16382;
}
.tippy-box[data-theme~='pink'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #f16382;
}
.tippy-box[data-theme~='grey'] {
    background-color: #7d7d7d;
}
.tippy-box[data-theme~='grey'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #7d7d7d;
}
.tippy-box[data-theme~='grey'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #7d7d7d;
}
.tippy-box[data-theme~='grey'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #7d7d7d;
}
.tippy-box[data-theme~='grey'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #7d7d7d;
}
.tippy-box[data-theme~='white'] {
    background: white;
    color: black;
    border: 1px solid #7d7d7d;
    padding: 20px;
}
.tippy-box[data-theme~='white'] > .tippy-arrow {
    color: white;
}