/* WINDOW STYLES */

body {
    margin: 0px;
    padding: 0px;
    font-family: "Karbon";
    font-family: 14px;
    color: #211F32
}



.search-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.search {
    height: 100%;
    background-color: #FEFEFE;
    flex-grow: 1;
    display: flex;
}

.search-suggestion {
    height: 100%;
    width: 116px;
    float: left;
    position: relative;
    padding: 0px 8px 0px 14px;
    box-sizing: border-box;
}

.search-suggestion::after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #cacccf;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 0px;
}

.search-suggestion .dropdown-picker-options-box {
    width: calc(100% + 22px);
    left: -14px;
}

.search-text {
    height: 100%;
    width: 260px;
    float: left;
    display: flex;
    position: relative;
}

.search-text-icon {
    width: 30px;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: right;
    flex-grow: 0;
    left: 0px;
    z-index: 2;
}

.search-text .input-text-default {
    flex-grow: 1;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
    padding-left: 40px;
}





.window-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bbb;
}

.window-container {
    width: 100%;
    max-width: 1024px;
    min-height: 100%;
    background-color: #f4f5fa;
    display: flex;
    flex-direction: column;
}

.window-band {
    width: 100%;
    height: 45px;
    background: #fe9d16; /* Old browsers */
    background: -moz-linear-gradient(left,  #fe9d16 0%, #e65200 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #fe9d16 0%,#e65200 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #fe9d16 0%,#e65200 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe9d16', endColorstr='#e65200',GradientType=1 ); /* IE6-9 */
}

.window-band-button {
    width: 183px;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
    color: #fff;
    opacity: 0.48;
    cursor: pointer;
}

.window-band-button.active {
    opacity: 1;
}

.window-band-button.active::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #ac5c0a;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.window-tab {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-tab-container {
    width: 468px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    
    position: relative;
}

.window-tab-button {
    width: 33.333333%;
    height: calc(100% - 5px);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    padding-bottom: 1px;
    border-bottom: 2px solid #cacccf;
    box-sizing: border-box;
    text-decoration: none;
    color: #211F32
}

.window-tab-button > span {
    position: relative;
    top: 4px;
}

.window-tab-button.active {
    font-weight: 700;
    padding-bottom: 0px;
    border-bottom: 2px solid #0258ad;
}


.window-content-wrapper {
    width: calc(100% - 56px);
    padding: 16px 0px 0px;
    margin: 0px 28px;
    box-sizing: border-box;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.window-country {
    position: absolute;
    top: -20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.window-info {
    position: absolute;
    top: -24px;
    left: calc(100% - 24px);
    width: 24px;
    height: 24px;
    background-image: url(./svgIcons/iconInfo.svg);
    cursor: pointer;
}

.window-legend {
    position: absolute;
    top: -24px;
    left: calc(100% - 84px);
    width: 24px;
    height: 24px;
    background-image: url(./svgIcons/iconLegend.svg);
    cursor: pointer;
}

#window-content {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#window-content > div {
    flex-grow: 1;
}

#svg-defs {
    width: 1px;
    height: 1px;
    position: fixed;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.svg-circular-chart {
    width: 56px;
    overflow: visible;
}

.svg-circle {
    stroke: #e0e0e0;
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.svg-circle.light-grey {
    stroke: #e8ebf1;
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.svg-circle.animate{
    animation: progress 1s ease-out forwards;
}

.svg-circle.blue {
    stroke: url(#svg-gradient-blue);
}

.svg-circle.teal {
    stroke: url(#svg-gradient-teal);
}

.svg-circle.purple {
    stroke: url(#svg-gradient-purple);
}

.svg-circle.green {
    stroke: url(#svg-gradient-green);
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}



/* GLOBAL STYLES */

.round-box-medium {
    border-radius: 12px;
}

.round-box-small {
    border-radius: 8px
}

.round-box-shadow {
    box-shadow: 2px 1px 10px 0px rgba(210, 223, 232, 0.75);
}

.round-box-shadow-strong {
    box-shadow: 0px 3px 6px 0px rgba(36, 36, 36, 0.31);
}

.text-blue-link {
    color: #0258AD
}

.text-black-100 {
    color: #211F32
}

.green-submitted-text {
    color: rgb( 40,135,49)
}

.green-submitted-text::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(./svgIcons/iconSubmitted.svg);
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    margin-left: 4px;
}

.text-black-80 {
    color: #858B91
}

.overflow-auto-container {
    overflow: auto;
    position: relative;
}

.overflow-hidden-container {
    overflow: hidden;
    position: relative;
}

.overflow-container-box {
    position: absolute;
    width: 100%;
}

.input-text-default {
    height: 100%;
    padding: 0px 8px;
    border: none;
    font-size: 14px;
    color: #211F32;
    font-family: "Karbon";
    font-weight: 500;
}

.input-text-default:focus {
    outline: 1px solid #0157ac;
    border: 2px solid #e4edf6;
    box-sizing: border-box;
}

.input-text-default::placeholder {
    color: #858b91
}

.input-text-default-clear {
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    right: 12px;
    z-index: 9999;
    display: none;
    background-image: url(./svgIcons/iconSearchbarx.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.input-text-default-clear * {
    pointer-events: none;
}

.input-text-default-clear.active {
    display: block;
}

.global-hidden {
    display: none !important;
}

.dropdown-picker {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.dropdown-picker-value {
    pointer-events: none;
}


.dropdown-picker-icon {
    width: 24px;
    height: 24px;
    background-image: url(./svgIcons/iconArrowdown.svg);
    pointer-events: none;
    transition: transform 0.2s;
}

.dropdown-picker-mask {
    width: 100%;
    height: 100%;
    z-index: 9998;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
}

.dropdown-picker-options-box {
    width: 100%;
    min-height: 20px;
    position: absolute;
    top: 100%;
    left: 0%;
    margin-top: 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: transform 0.2s, opacity 0.2s;
}

.dropdown-picker.active .dropdown-picker-mask {
    display: block;
}

.dropdown-picker.active .dropdown-picker-options-box {
    pointer-events: all;
    opacity: 1;
    transform: scale(1) translateY(0px);
}

.dropdown-picker.active .dropdown-picker-icon {
    transform: scaleY(-1);
}


.dropdown-picker-options {
    width: 100%;
    height: 36px;
    border-bottom: 1px;
    font-weight: 500;
    font-size: 13px;
    padding: 0px 16px;
    box-sizing: border-box;
    cursor: pointer;
}

.dropdown-picker-options.active {
    background-color: #e8ebf1;
}

.dropdown-picker-options > .dropdown-picker-options-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #f4f5fa;
    pointer-events: none;
}

.dropdown-picker-options:last-of-type > .dropdown-picker-options-item {
    border-bottom: none;
}

.toggler-wrapper {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
}



.toggler-container {
    width: auto;
    height: 100%;
    background-color: #FAFBFD;
    display: flex;
}

.toggler-container.overflow {
    display: block;
}

.product {
    width: 0px;
    overflow: hidden;
    transition: width 0.3s;
}

.toggler-overflow-container {
    width: 99999px;
    height: 100%;
    position: relative;
    left: 0px;
    transition: left 0.3s;
}


.toggler-button {
    flex-grow: 1;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.product .toggler-button {
    width: auto;
    padding: 0px 28px;
    flex-grow: 0;
}

.toggler-button::after {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    right: 0px;
    background-color: #cacccf;
}

.toggler-button:last-of-type::after,
.toggler-button.active::after,
.toggler-button.prev-active::after  {
    content: "";
    display: none;
}

.toggler-button.active {
    background-color: #FEFEFE;
    font-weight: 700;
}

.toggler-overflow-arrow-right,
.toggler-overflow-arrow-left {
    width: 24px;
    height: 100%;
    background-image: url(./svgIcons/iconArrowdown.svg);
    background-position: center;
    transform: rotate( 90deg);
    position: relative;
    top: 1px;
    cursor: pointer;
    transition: 0.3s all;
}

.toggler-overflow-arrow.inactive {
    background-image: url(./svgIcons/iconArrowdownDisabled.svg);
    opacity: 0.5;
    pointer-events: none;
}

.toggler-overflow-arrow-right {
    transform: rotate( 270deg);
}

.toggler-product-container {
    display: flex;
}


.blue-button-pop {
    height: 28px;
    padding: 0px 12px 0px 8px;
    background-color: #0258ad;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.blue-button-pop-animate {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    position: absolute;
    background-color: #4181c1;
    z-index: 0;
    top: 50%;
    left: 50%;
    margin-top: -120px;
    margin-left: -120px;
    transform: scale(0);
    opacity: 0;
}

.blue-button-pop * {
    pointer-events: none;
}

.blue-button-pop.was-clicked .blue-button-pop-animate {
    animation-name: blueButtonPopAnimate;
    animation-duration: 0.5s;
}

@keyframes blueButtonPopAnimate {
    0% {transform: scale(0)}
    10% { opacity: 1;}
    70% {transform: scale(1);}
    90% {transform: scale(1);}
    100% {transform: scale(1); opacity: 0;}
}

.blue-button-pop > img {
    margin-right: 6px;
    z-index: 1;
}


.blue-button-pop > span {
    z-index: 1;
}



.charts-container {
    position: relative;
    width: 64px;
    height: 64px;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

.charts-container  .charts-divider {
    width: 36px;
    height: 2px;
    background-color: #e0e0e0;
}

.charts-container .charts-numerator {
    color: #e0e0e0;
}

.charts-container .charts-denominator {
    color: #e0e0e0
}

.charts-container  .charts-divider.blue {
    background-color: #0258ad;
}

.charts-container .charts-numerator.blue,
.charts-container .charts-denominator.blue {
    color: #0258ad;
}

.charts-container  .charts-divider.green {
    background-color: #288731;
}

.charts-container .charts-numerator.green,
.charts-container .charts-denominator.green {
    color: #288731;
}

.charts-container .charts-icon {
    position: absolute;
    top: -12px;
    right: -20px;
    z-index: 2;
}

.charts-container > .svg-circular-chart{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.charts-container  > .svg-circular-chart  .svg-circle {
    stroke-width: 2.4;
}

.charts-container  > .charts-tick-animation {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    position: absolute;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 6px;
    left: 6px;
    animation-name: chartsRippleMain;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
}

.charts-container  > .charts-tick-animation > img {
    position: relative;
    left: 1px;
    top: 1px;
    animation-name: chartsRippleTick;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
}

.charts-container  > .charts-tick-animation > .ripple  {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    top: 0px;
    left: 0px;
    transform: scale(0);
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.9s;
}

.charts-container  > .charts-tick-animation > .ripple.green  {
    background-color: #c6e1af;
    animation-name: chartsRippleGreen;
    
}

.charts-container  > .charts-tick-animation > .ripple.white  {
    background-color: #fff;
    animation-name: chartsRippleWhite;
}

@keyframes chartsRippleGreen {
    0% {transform: scale(0)}
    40% {transform: scale(1);}
    70% {transform: scale(1); }
    100% {transform: scale(1); }
}

@keyframes chartsRippleWhite {
    0% {transform: scale(0)}
    20% {transform: scale(0);}
    70% {transform: scale(1); }
    100% {transform: scale(1); }
}

@keyframes chartsRippleMain {
    

    0% { opacity: 1;}
    40% { opacity: 1;}
    100% { opacity: 0;}
}

@keyframes chartsRippleTick {
    0% { opacity: 1;}
    40% { opacity: 1;}
    41% { opacity: 1;}
    100% { opacity: 0;}
}




.sfmc-sent-box {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6px;
    box-sizing: border-box;
}

.sfmc-sent-box > .sfmc-logo {
    margin-top: -6px;
    width: 32px;
    height: 32px
}

.sfmc-sent-box > .sfmc-text {
    width: 100%;
    flex-grow: 1;
    font-size: 10px;
    line-height: 10px;
    color: #858b91;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sfmc-sent-box > .sfmc-text .sfmc-text-big {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin-top: 1px;
    display: block;
}


.radio-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.radio-toggle .radio-button-container {
    width: 32px;
    height: 16px;
    background-color: #cacccf;
    border-radius: 8px;
    position: relative;
    margin: 0px 8px;
    transition: 0.3s background-color; 
    cursor: pointer;

}

.radio-toggle .radio-button {
    width: 14px;
    height: 14px;
    position: absolute;
    background-color: #fff;
    border-radius: 7px;
    top: 1px;
    left: 1px;
    transition: 0.3s left; 
    pointer-events: none;
    
}

.radio-toggle .radio-button-container.active {
    background-color: #0258ad;
}

.radio-toggle .radio-button-container.active .radio-button {
    left: 17px;
}

.radio-toggle .radio-button-container.active {
    background-color: #0258ad;
}

.radio-toggle .radio-button-container .radio-button.has-text {
    background-color: #0258ad;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    padding: 0px 2px
}

.radio-toggle .radio-button-container.active .radio-button.has-text {
    background-color: #fff;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    padding: 0px
}



.suggested-actions {
    width: calc(100% - 36px);
    min-height: 166px;
    margin: 16px 18px;
    padding: 11px;
    position: relative;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    
    
}

.suggested-actions.closed {
    height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    opacity: 0;
    overflow: hidden;
    transition: 0.4s height, 0.4s padding, 0.4s margin, 0.4s opacity;
}

.suggested-actions-title {
    width: 100%;
    height: 20px;
    font-size: 10px;
    line-height: 11px;
    font-weight: 700;
}

.suggested-actions-title.light {
    color: #858b91;
    font-weight: 500;
}

.suggested-actions-sender {
    width:  calc(100% - 32px);
    font-size: 16px;
    line-height: 16px;
    height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.suggested-actions-sender > .sender-type {
    font-weight: bold;
}

.suggested-actions-sender > .sender-name {
    font-weight: bold;
    color: #0258ad;
    white-space: nowrap;
}

.suggested-actions-location {
    width: calc(100% - 32px);
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 16px;
}



.suggested-actions-details {
    width: calc(100% - 32px);
    font-size: 14px;
    line-height: 14px;
    margin-top: 6px;
}

.suggested-actions-footnote {
    width: calc(100% - 32px);
    font-size: 14px;
    line-height: 14px;
    color: #0258ad;
    font-weight: 500;
    margin-top: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.suggested-actions-select-content .suggested-actions-sender,  
.suggested-actions-select-content .suggested-actions-location {
    width: 100%;
}

.suggested-actions-divider {
    width: 100%;
    height: 1px;
    background-color: #f4f5fa;
    margin: 8px 0px;
}


.suggested-actions-button-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.suggested-actions-button-shadow {
    width: auto;
    min-width: 24px;
    position: relative;
    height: 28px;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    box-shadow: 0px 0px 4px #cdd9ed;
    right: -11px;
    box-sizing: border-box;
    padding: 0px 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #808080;
    line-height: 0.95;
    font-weight: 500;

}

.suggested-actions-star {
    cursor: pointer;
    position: absolute;
    bottom: 4px;
    right: 2px;
}

.suggested-actions-star .selected {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transition: 0.3s opacity, 0.3s transform;
}

.suggested-actions-star .unselected {
    opacity: 1;
    pointer-events: none;
    transition: 0.3s opacity, 0.3s transform;
}

.suggested-actions-star.active .selected {
    opacity: 1;
    transform: scale(1);
}

.suggested-actions-star.active .unselected {
    opacity: 0;
}


.suggested-actions-close {
    position: absolute;
    cursor: pointer;
    top: 11px;
    right: 11px;
}

.suggested-actions-close * {
    pointer-events: none;
}

.suggested-actions-dismiss-mask {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    display: none;
}

.suggested-actions-dismiss-dark {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    display: none;
    background-color: rgba(0,0,0,0.15);
}

.suggested-actions-dismiss-dark.active {
    display: block;
}

.event-select-content-button *,
.event-schedule-button * {
    pointer-events: none;
}

.suggested-actions.selecting {
    z-index: 3;
    background-color: #fff;
}

.suggested-actions.closing .suggested-actions-dismiss-mask,
.suggested-actions.selecting .suggested-actions-dismiss-mask  {
    display: block;
}

.suggested-actions-dismiss,
.suggested-actions-select-content {
    position: fixed;
    width: 250px;
    height: auto;
    min-height: 80px;
    background-color: #fff;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9) translateY(10px);
  
    display: inline-block;
}

.suggested-actions-select-content  {
    margin-left: -310px;
    padding: 16px;
    width: 292px;
    box-sizing: border-box;
}

.suggested-actions-dismiss.transform,
.suggested-actions-select-content.transform {
    transition: transform 0.2s, opacity 0.2s;
}

.suggested-actions.closing .suggested-actions-dismiss,
.suggested-actions.selecting .suggested-actions-select-content  {
    opacity: 1;
    transform: scale(1) translateY(0px);
    pointer-events: all;
}

.suggested-actions-checklist {
    width: calc(100% + 32px);
    min-height: 60px;
    max-height: 318px;
    border-top: 1px solid rgb(232,235,241);
    border-bottom: 1px solid rgb(232,235,241);
    margin-left: -16px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.css-checkbox { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; } .css-checkbox + label { position: relative; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; height: 22px; color: rgb(0, 0, 0); }.css-checkbox + label::before { content: " "; display: inline-block; vertical-align: middle; margin-right: 3px; width: 20px; height: 20px; background-color: #fff; border-width: 2px; border-style: solid; border-color: #0258ad; border-radius: 4px; box-shadow: none; overflow: hidden;}.css-checkbox:checked + label::after {  content: " "; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+"); background-repeat: no-repeat; background-size: 12px 12px; background-position: center center; position: absolute; display: flex; justify-content: center; align-items: center; margin-left: 0px; left: 0px; top: 0px; text-align: center; background-color: transparent; font-size: 10px; height: 22px; width: 22px; background-color: #0258ad; border-radius: 4px;} .css-checkbox:checked + label::before {background-color: #0258ad;}

.checklist-actions-row {
    width: 100%;
    margin: 6px 0px;
    display: flex;
    position: relative;
}

.checklist-actions-row .checkbox-container {
    width: 24px;
    padding-top: 8px;
    box-sizing: border-box;
}

.checklist-actions-row .text-container {
    width: calc(100% - 36px);
    font-size: 14px;
    margin-left: 12px;
    position: relative;
}

.checklist-actions-row .text-container .text-line {
    width: 100%;
    margin: 2px 0px;
}

.checklist-actions-row .text-container .text-line.suggested-actions-footnote {
    height: 14px;
    overflow: hidden;
}


.suggested-actions-dismiss .dismiss-comic-arrow,
.suggested-actions-select-content .dismiss-comic-arrow {
    position: absolute;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    right: 18px;
    top: -8px;
    background-color: #fff;
    box-shadow: 2px 1px 10px 0px rgb(210, 223, 232, 0.9);
    z-index: 2;
}

.suggested-actions-select-content .dismiss-comic-arrow {
    right: -8px;
    top: 128px;
}

.suggested-actions-select-content.from-bottom .dismiss-comic-arrow {
    right: -8px;
    top: auto;
    bottom: 18px;
}



.suggested-actions-dismiss.from-bottom .dismiss-comic-arrow {
    top: auto;
    bottom: -8px;
    /* box-shadow: 2px 8px 10px 0px rgb(210, 223, 232, 0.9); */
    box-shadow: 0px 3px 6px 0px rgba(36, 36, 36, 0.31);
}

.suggested-actions-dismiss .dismiss-bg-white,
.suggested-actions-select-content .dismiss-bg-white {
    position: absolute;
    background-color: #fff;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.suggested-actions-dismiss .dismiss-content,
.suggested-actions-select-content .dismiss-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    float: left;
    position: relative;
    z-index: 4;
    box-sizing: border-box;
    padding:16px;
}

.suggested-actions-select-content .dismiss-content  {
    padding: 0px;
}
    
.suggested-actions-dismiss .dismiss-caption {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.suggested-actions-dismiss .dismiss-options {
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.suggested-actions-dismiss .dismiss-options.other {
    margin-bottom: -4px;
    
}

.suggested-actions-dismiss .dismiss-options.send {
    margin-bottom: 0px;
    margin-top: 6px;
}



.suggested-actions-dismiss .dismiss-options label {
    font-size: 12px;
    cursor: pointer;
    width: calc(100% - 32px);
}

.suggested-actions-dismiss .dismiss-options input[type=radio] {
    width: 24px;
    height: 24px;
    position: relative;
    margin: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    margin-right: 8px;
    cursor: pointer;
}

.suggested-actions-dismiss .dismiss-options input[type=radio]::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid #0258ad;
}

.suggested-actions-dismiss .dismiss-options input[type=radio]:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #0258ad;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
}

.suggested-actions-dismiss .dismiss-options input[type=text] {
    width: calc(100% - 32px);
    margin-left: 32px;
    border: none;
    outline: none;
    border-bottom: 2px solid #0258ad;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    font-family: "Karbon";
} 

.calendar-date-picker {
    width: auto;
    height: 24px;
    display: flex;
    margin-right: 28px;
    font-size: 13px;
    font-weight: 500;
    justify-content: space-between;
}


.calendar-date-picker .calendar-date-picker-arrow-left {
    width: 24px;
    height: 24px;
    background-image: url(./svgIcons/iconArrowdown.svg);
    transform: rotate(90deg);
    position: relative;
    top: 1px;
    cursor: pointer;
}

.calendar-date-picker .calendar-date-picker-arrow-right {
    width: 24px;
    height: 24px;
    background-image: url(./svgIcons/iconArrowdown.svg);
    transform: rotate(270deg);
    position: relative;
    top: 1px;
    cursor: pointer;
}

.calendar-date-picker .calendar-date-picker-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-date-picker .calendar-date-picker-text  .calendar-date-picker-text-month {
    padding-right: 4px
}

.calendar-date-picker .calendar-date-picker-text  .calendar-date-picker-text-year {
    padding-left: 4px
}

#list-date-shower {
    display: none;
}