.watch-export {
    display: inline-block;
    position: relative;
    direction: rtl;
    vertical-align: middle;
}

.watch-export-trigger {
    align-items: center;
    background: #176b3a;
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
  
    
  	min-width:150px;
    padding: 6px 12px;
}

.watch-export-trigger:hover,
.watch-export-trigger:focus-visible {
    background: #12572f;
}

.watch-export-menu {
    background: var(--bg-sec, #fff);
    border: 1px solid #9a9a9a;
    border-radius: 5px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
    inset-inline-start: 0;
    min-width: 155px;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 5px);
    z-index: 10000;
}

.watch-export-menu[hidden] {
    display: none;
}

.watch-export--template .watch-export-menu {
    min-width: 240px;
}

.watch-export--corner {
    float: left;
    margin: 0 8px 8px 12px;
    z-index: 1001;
}

.watch-export--corner .watch-export-menu {
    inset-inline-start: auto;
    left: 0;
    right: auto;
}

.watch-export-field {
    border-bottom: 1px solid rgba(128, 128, 128, 0.45);
    padding: 10px 12px;
}

.watch-export-field label {
    display: block;
    margin-bottom: 6px;
}

.watch-export-field select {
    background: var(--bg-sec, #fff);
    border: 1px solid #888;
    border-radius: 4px;
    color: inherit;
    font: inherit;
    padding: 6px;
    width: 100%;
}

.watch-export-menu button {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: block;
    font: inherit;
    padding: 9px 12px;
    text-align: right;
    width: 100%;
}

.watch-export-menu button:hover,
.watch-export-menu button:focus-visible {
    background: rgba(23, 107, 58, 0.14);
}
 
