/*!
 * Version: 1.2.2
 * Author: DNL Omnimedia Inc.
 * Author URI: http://www.dnlomnimedia.com
 * @author DNL Omnimedia Inc.
 * @version 1.2.2
 * (c) Copyright DNL Omnimedia Inc. 2023. All rights reserved. This source code is confidential and proprietary information of DNL Ominmedia, Inc. and may be used only by a recipient designated by and for the purposes permitted by DNL Ominmedia, Inc. in writing.  Reproduction of, dissemination of, modifications to or creation of derivative works from this source code, whether in source or binary forms, by any means and in any form or manner, is expressly prohibited, except with the prior written permission of DNL Ominmedia, Inc. .  THIS CODE AND ANY ADDITIONAL INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. This notice may not be removed from the software by any user thereof.
 *
 * Note: Compiled with SASS, see source files for modifications.
 */
/**
 * Does a simple conversion of pixels to rem units
 * Round the value to 2 decimal points
 * @param  {[type]} $pixels Font size in the format 11px
 * @return {[type]}         Fonr size in teh format 1.2rem
 */
/**
 * Retrieves the breakpoint form the breakpoints map
 * @param  {string} $name [description]
 * @return {string}       [description]
 */
/* Basic V2 theme css */
.luminate-donationContainer .billing-info {
  display: inline-block;
}

.luminate-donationContainer .billing-info-conf-container {
  display: table;
}

.luminate-donationContainer .billing-info-container {
  display: table-row;
}
@media ((max-width: 599px)) {
  .luminate-donationContainer .billing-info-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.59rem;
  }
}

.luminate-donationContainer .billing-info-label {
  display: table-cell;
  font-weight: bold;
  padding-right: 0.3rem;
}
@media ((max-width: 599px)) {
  .luminate-donationContainer .billing-info-label {
    display: initial;
  }
}

.luminate-donationContainer .billing-info-field-value {
  display: table-cell;
}
@media ((max-width: 599px)) {
  .luminate-donationContainer .billing-info-field-value {
    display: initial;
  }
}