/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.order-protection-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-protection-option-label .label {
  font-weight: bold;
  font-size: 16px;
}
.order-protection-option-label .description {
  margin: 0;
}
.order-protection-option-label .field-tooltip {
  position: static;
}
.order-protection-option-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
  /* The switch - the box around the slider */
}
.order-protection-option-price .price {
  font-weight: bold;
  font-size: 16px;
  margin-left: 6px;
  margin-right: 6px;
}
.order-protection-option-price .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 30px;
  /* The slider */
}
.order-protection-option-price .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.order-protection-option-price .switch input:checked + .slider {
  background-color: #1979c3;
}
.order-protection-option-price .switch input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}
.order-protection-option-price .switch input:focus + .slider {
  box-shadow: 0 0 1px #1979c3;
}
.order-protection-option-price .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  /* Rounded sliders */
}
.order-protection-option-price .switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.order-protection-option-price .switch .slider.round {
  border-radius: 30px;
}
.order-protection-option-price .switch .slider.round:before {
  border-radius: 50%;
}
.order-protection-option-wrapper {
  padding: 15px 0;
}
.order-protection-option-wrapper hr {
  display: none;
}
.order-protection-option-wrapper .order-protection-option-label .label {
  font-size: 14px;
}
.order-protection-option-wrapper .order-protection-option-price {
  flex-direction: column;
}
.order-protection-option-wrapper .order-protection-option-price .price {
  font-size: 14px;
}
.order-protection-steps {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
.order-protection-steps .order-protection-step {
  max-width: 160px;
  display: flex;
  align-items: flex-start;
}
.order-protection-steps .order-protection-step input[type="radio"] {
  margin: 4px 10px 0 0;
}
.order-protection-steps .order-protection-step .price {
  font-weight: bold;
}
.op-claim-wrapper {
  max-width: 560px;
  margin: 0 auto;
}
.op-claim-wrapper h1 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.op-claim-wrapper p {
  text-align: center;
}
.op-claim-form .actions {
  text-align: center;
}
