custom_popup.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .custom--pop--wrapper{
  2. position: fixed;
  3. top:0px;
  4. left:0px;
  5. width:100%;
  6. height:100%;
  7. background: rgba(0,0,0,.3);
  8. z-index: 10;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .custom--pop--wrapper .custom--pop--wrapper--inner{
  14. display: flex;
  15. flex-direction: column;
  16. background: #fff;
  17. position: relative;
  18. z-index: 1;
  19. /*padding:27px 20px 25px 20px;*/
  20. border-radius:30px;
  21. max-width:calc(100vw - 40px);
  22. }
  23. .custom--pop--wrapper .custom--pop--wrapper--inner .close--btn{
  24. width:30px;
  25. height:30px;
  26. background: url(/manage/img/x.svg) no-repeat center;
  27. position: absolute;
  28. top:13px;
  29. right:13px;
  30. z-index: 9;
  31. border:0px;
  32. }
  33. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content{
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. flex-direction: column;
  38. margin-bottom:25px;
  39. }
  40. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content > h2{
  41. font-weight: 700;
  42. font-size: 18px;
  43. line-height: 100%;
  44. text-align: center;
  45. letter-spacing: -0.03em;
  46. color: #000000;
  47. margin-top:30px;
  48. }
  49. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content > p{
  50. font-weight: 400;
  51. font-size: 16px;
  52. line-height: 30px;
  53. text-align: center;
  54. letter-spacing: -0.03em;
  55. color: #666666;
  56. margin-top:10px;
  57. }
  58. .custom--pop--wrapper .custom--pop--wrapper--inner .custom--pop--content{
  59. padding-top:25px;
  60. }
  61. .custom--pop--wrapper .custom--pop--wrapper--inner .custom--pop--content > h2:before{
  62. content:'';
  63. display: inline-block;
  64. width:60px;
  65. height:60px;
  66. border-radius: 60px;
  67. background: #E2E4F0 url(../img/pp_ic.svg) no-repeat center;
  68. margin-bottom:30px;
  69. }
  70. .custom--pop--wrapper .custom--pop--wrapper--inner .custom--pop--content > h2{
  71. font-weight: 500;
  72. font-size: 16px;
  73. line-height: 1.5;
  74. text-align: center;
  75. letter-spacing: -0.03em;
  76. color: #000000;
  77. margin: 0px;
  78. padding: 0px;
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: center;
  82. align-items: center;
  83. padding:0 20px;
  84. }
  85. .custom--pop--wrapper .custom--pop--wrapper--inner .btn--wrap{
  86. width:100%;
  87. display: flex;
  88. padding: 20px;
  89. border-top: 0px;
  90. }
  91. .custom--pop--wrapper .custom--pop--wrapper--inner .btn--wrap button{
  92. width:100%;
  93. height: 50px;
  94. /*background: #0D6FFC;*/
  95. font-weight: 400;
  96. font-size: 14px;
  97. text-align: center;
  98. letter-spacing: -0.02em;
  99. color: #FFFFFF;
  100. border:0px;
  101. }
  102. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content.price--contents > p,
  103. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content.price--contents > h2{
  104. text-align: left!important;
  105. width:100%;
  106. justify-content:flex-start;
  107. }
  108. /*.custom--pop--wrapper .custom--pop--wrapper--inner .price--btn--wrap button:nth-of-type(1){background: #CBD8E0;}
  109. .custom--pop--wrapper .custom--pop--wrapper--inner .price--btn--wrap button:nth-of-type(2){
  110. margin-left:15px;
  111. }*/
  112. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap{
  113. width:100%;
  114. height:48px;
  115. border:1px solid #EDEDED;
  116. border-radius:3px;
  117. display:flex;
  118. align-items: center;
  119. justify-content:flex-start;
  120. overflow:hidden;
  121. margin-top:40px;
  122. }
  123. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap input{
  124. border:0px;
  125. height:48px;
  126. width:100%;
  127. text-align:right;
  128. font-family: 'Roboto';
  129. font-style: normal;
  130. font-weight: 400;
  131. font-size: 16px;
  132. line-height: 100%;
  133. color: #5D676F;
  134. }
  135. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap label{
  136. white-space:nowrap;
  137. padding-right:20px;
  138. padding-left:6px;
  139. font-weight: 400;
  140. font-size: 13px;
  141. line-height: 100%;
  142. text-align: right;
  143. color: #5D676F;
  144. }